:root {
  --original-blue: #31a3dd;
  --original-blue-dark: #1786bf;
  --original-purple: #c6aae2;
  --ink: #343434;
  --soft: #f6f6f6;
  --white: #fff;
  --line: #dbeefa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--original-purple); font: 400 16px/1.65 Arial, Helvetica, sans-serif; }
a { color: inherit; }
.container { width: min(1100px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; top: 12px; left: -999px; z-index: 10; padding: 8px 12px; color: var(--ink); background: var(--white); }
.skip-link:focus { left: 12px; }

.site-header { background: rgb(255 255 255 / 96%); border-top: 5px solid var(--original-blue); box-shadow: 0 1px 0 rgb(23 134 191 / 8%); }
.header-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--original-blue); text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand strong { display: block; font-family: Arial, Helvetica, sans-serif; font-size: clamp(18px, 2vw, 25px); line-height: 1.1; }
.brand small { display: block; margin-top: 4px; color: #777; font-size: 15px; }
nav { display: flex; align-self: stretch; }
nav a { display: grid; place-items: center; min-width: 90px; padding: 0 16px; color: var(--white); background: var(--original-blue); border-left: 1px solid #2490c7; font-size: 14px; font-weight: 700; text-decoration: none; transition: background-color .18s ease, transform .18s ease; }
nav a:hover, nav a:focus-visible { background: var(--original-blue-dark); }

.hero { overflow: hidden; background: linear-gradient(110deg, var(--white) 0%, var(--white) 62%, #f6effc 100%); }
.hero-grid { min-height: 450px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; }
.hero-copy { padding: 76px 0; }
.eyebrow { margin: 0 0 9px; color: var(--original-blue); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; color: var(--original-blue); font-size: clamp(48px, 7vw, 78px); line-height: .95; letter-spacing: -.055em; }
.lead { margin-bottom: 27px; color: #666; font-size: 20px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 45px; padding: 10px 17px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.button-primary { color: var(--white); background: var(--original-blue); border-color: var(--original-blue); box-shadow: 0 8px 18px rgb(49 163 221 / 22%); }
.button-primary:hover { background: var(--original-blue-dark); border-color: var(--original-blue-dark); box-shadow: 0 11px 21px rgb(23 134 191 / 25%); transform: translateY(-1px); }
.button-secondary { color: var(--original-blue); border-color: var(--original-blue); }
.button-secondary:hover { color: var(--white); background: var(--original-blue); }
.hero-mark { position: relative; height: 100%; min-height: 450px; display: grid; place-items: center; background: linear-gradient(135deg, rgb(198 170 226 / 52%), var(--original-purple)); }
.hero-mark::before { content: ""; position: absolute; width: min(27vw, 310px); aspect-ratio: 1; border: 1px solid rgb(255 255 255 / 65%); border-radius: 50%; }
.hero-mark img { position: relative; width: min(230px, 55%); border-radius: 50%; box-shadow: 0 18px 38px rgb(63 49 76 / 16%); }

.section { background: var(--soft); padding: 88px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: clamp(31px, 4vw, 46px); letter-spacing: -.04em; line-height: 1.08; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.person-card { display: flex; align-items: center; gap: 24px; padding: 27px; background: var(--white); border-bottom: 3px solid var(--original-blue); border-radius: 8px; box-shadow: 0 10px 25px rgb(31 90 120 / 8%); transition: box-shadow .2s ease, transform .2s ease; }
.person-card:hover { box-shadow: 0 16px 34px rgb(31 90 120 / 13%); transform: translateY(-2px); }
.person-card img { width: 124px; height: 124px; object-fit: cover; border: 4px solid var(--original-purple); border-radius: 50%; }
.person-card h3 { margin-bottom: 5px; font-size: 24px; line-height: 1.15; }
.person-card p { margin: 0; color: var(--original-blue); font-weight: 700; }

.contact-section { padding: 88px 0 0; color: var(--white); background: var(--original-blue); }
.section-heading-light .eyebrow { color: #d9f1ff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 20px; }
.contact-card { min-height: 278px; padding: 29px; background: var(--white); color: var(--ink); border-top: 4px solid var(--original-purple); border-radius: 8px 8px 0 0; box-shadow: 0 10px 24px rgb(18 101 145 / 14%); }
.contact-card h3 { margin-bottom: 20px; color: var(--original-blue); font-size: 22px; }
.contact-card address { margin-bottom: 16px; font-style: normal; }
.contact-card > a:not(.button) { display: block; margin: 5px 0; color: var(--original-blue); font-weight: 700; text-decoration: none; }
.contact-card > a:not(.button):hover { text-decoration: underline; }
.hours { margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours dt { font-weight: 700; }
.hours dd { margin: 0; color: #666; }
.button-light { margin-top: 8px; color: var(--white); background: var(--original-blue); }
.button-light:hover { background: var(--original-blue-dark); }
.map-frame { margin-top: 42px; overflow: hidden; border-radius: 10px 10px 0 0; box-shadow: 0 -8px 26px rgb(18 101 145 / 16%); }
.map-frame iframe { display: block; width: 100%; height: 315px; border: 0; }
.site-footer { padding: 20px 0; color: var(--white); background: #333; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.site-footer a { color: var(--white); }

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 1100px); }
  .header-inner { min-height: 0; display: block; padding-top: 18px; }
  .brand { margin-bottom: 18px; }
  nav { margin-inline: -18px; }
  nav a { flex: 1; min-width: 0; min-height: 48px; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 58px 0 40px; }
  .hero-mark { min-height: 245px; }
  .hero-mark img { width: 145px; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 62px 0 0; }
  .section { padding: 62px 0; }
  .map-frame { margin-top: 30px; border-radius: 7px 7px 0 0; }
  .map-frame iframe { height: 270px; }
  .footer-inner { flex-direction: column; gap: 3px; }
}
