/* ============ header ============ */
.site-header { border-bottom: var(--hair); background: var(--bg); position: sticky; top: 0; z-index: 40; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); min-height: 76px; }
.wordmark { display: inline-block; padding-block: var(--s2); font-family: var(--font-display); font-size: var(--step-1); font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none; line-height: 1.05; }
.wordmark:hover { color: var(--brand); }
.wordmark span { display: block; font-family: var(--font-text); font-size: 0.6em;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

.nav { display: flex; align-items: center; gap: var(--s6); }
.nav__list { display: flex; gap: var(--s6); list-style: none; padding: 0; }
.nav__list a { color: var(--ink); text-decoration: none; font-size: var(--step--1);
  font-weight: 500; letter-spacing: 0.01em; padding-block: var(--s2); border-bottom: 2px solid transparent; }
.nav__list a:hover { color: var(--brand); border-bottom-color: var(--border-strong); }
.nav__list a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--brand); }

.nav-toggle { display: none; align-items: center; gap: var(--s2); min-height: 44px; padding: 0 var(--s4);
  background: transparent; border: 1px solid var(--border-strong); border-radius: var(--radius);
  font: 600 var(--step--1)/1 var(--font-text); color: var(--ink); cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 76px 0 auto; background: var(--bg); border-bottom: var(--hair);
    flex-direction: column; align-items: stretch; gap: 0; padding: var(--s4) var(--gutter) var(--s7); }
  .nav[hidden] { display: none; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { display: block; padding: var(--s4) 0; border-bottom: var(--hair); font-size: var(--step-0); }
  .nav .btn { margin-top: var(--s5); }
}

/* ============ status pill — the signature moment ============ */
.status { display: inline-flex; align-items: baseline; gap: var(--s2); font-size: var(--step--1);
  font-weight: 600; color: var(--ink-muted); }
.status__dot { width: 7px; height: 7px; border-radius: 9999px; background: var(--border-strong);
  align-self: center; flex: none; }
.status[data-open="true"] .status__dot { background: var(--open); }
.status[data-open="true"] .status__state { color: var(--open); }
.status[data-open="false"] .status__state { color: var(--ink); }
.status__next { font-weight: 500; }

/* ============ hero ============ */
.hero { padding-block: clamp(56px, 8vw, 128px) clamp(48px, 7vw, 104px); }
.hero__eyebrow { margin-bottom: var(--s5); }
.hero h1 { max-width: 15ch; }
.hero__rule { height: 1px; background: var(--border-strong); margin-block: var(--s7) var(--s6);
  transform-origin: left; animation: draw 720ms var(--ease-enter) both; }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__grid { display: grid; gap: var(--s7) var(--s8); grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: var(--s6); } }
.hero__actions { margin-top: var(--s6); }
.hero__aside { border-left: var(--hair); padding-left: var(--s6); }
@media (max-width: 860px) { .hero__aside { border-left: 0; border-top: var(--hair);
  padding-left: 0; padding-top: var(--s5); } }

/* ============ hours ============ */
.hours { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.hours th, .hours td { text-align: left; padding: var(--s3) 0; border-bottom: var(--hair); font-weight: 500; }
.hours th { color: var(--ink-muted); font-weight: 500; }
.hours td { text-align: right; font-weight: 600; }
.hours tr.is-closed th, .hours tr.is-closed td { color: var(--ink-muted); font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours__note { display: block; font-weight: 500; color: var(--ink-muted); }
.hours caption { text-align: left; padding-bottom: var(--s3); }

/* ============ generic band ============ */
.band { background: var(--surface); border-block: var(--hair); }
.band--dark { background: var(--surface-deep); color: var(--ink-invert); border-block: 0; }
.band--dark h2, .band--dark h3 { color: var(--ink-invert); }



.band--dark .btn--secondary { color: var(--ink-invert); border-color: var(--border-strong); }
.band--dark .btn--secondary:hover { background: oklch(0.275 0.014 258); color: var(--ink-invert); }


.head { max-width: 56ch; margin-bottom: var(--s7); }
.head h2 + p { margin-top: var(--s4); }

/* ============ doctors ============ */
.docs { display: grid; gap: var(--s6); grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.doc { border-top: 2px solid var(--brand); padding-top: var(--s5); }
.doc__name { font-size: var(--step-1); }
.doc__cred { color: var(--ink-muted); font-family: var(--font-text); font-size: 0.62em;
  font-weight: 600; letter-spacing: 0.04em; }
.doc__facts { margin-top: var(--s5); display: grid; gap: var(--s3); }
.doc__facts > div { display: grid; grid-template-columns: 11rem 1fr; gap: var(--s4);
  padding-bottom: var(--s3); border-bottom: var(--hair); font-size: var(--step--1); }
.doc__facts dt { color: var(--ink-muted); }
.doc__facts dd { margin: 0; font-weight: 600; }
@media (max-width: 480px) { .doc__facts > div { grid-template-columns: 1fr; gap: var(--s1); } }

/* ============ services ============ */
.svc { display: grid; gap: var(--s7) var(--s8); grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.svc__group h3 { font-size: var(--step-1); padding-bottom: var(--s3); border-bottom: 2px solid var(--brand); }
.svc__group ul { list-style: none; padding: 0; margin-top: var(--s4); }
.svc__group li { padding: var(--s3) 0; border-bottom: var(--hair); font-size: var(--step--1); }

/* ============ steps (uneven count by design) ============ */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: var(--s5);
  max-width: 68ch; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 2.5rem 1fr;
  gap: var(--s4); padding-bottom: var(--s5); border-bottom: var(--hair); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display);
  font-size: var(--step-1); color: var(--brand); line-height: 1.1; }
.steps h3 { font-size: var(--step-0); font-family: var(--font-text); font-weight: 700; }
.steps p { margin-top: var(--s2); color: var(--ink-muted); font-size: var(--step--1); }

/* ============ faq ============ */
.faq { max-width: 68ch; border-top: var(--hair); }
.faq details { border-bottom: var(--hair); scroll-margin-top: calc(var(--s7) + 4rem); }
.faq__q { margin-right: auto; }
/* permalink: quiet until wanted, always reachable on touch and by keyboard */
.faq__permalink { flex: none; color: var(--ink-muted); text-decoration: none; opacity: 0;
  transition: opacity var(--motion-fast) var(--ease-hover), color var(--motion-fast) var(--ease-hover); }
.faq summary:hover .faq__permalink, .faq__permalink:focus-visible { opacity: 1; }
.faq__permalink:hover, .faq__permalink:focus-visible { color: var(--accent); }
@media (hover: none) { .faq__permalink { opacity: 1; } }
.faq summary { display: flex; justify-content: space-between; gap: var(--s5); align-items: baseline;
  padding: var(--s5) 0; cursor: pointer; font-weight: 600; list-style: none;
  transition: color var(--motion-fast) var(--ease-hover); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: var(--step-1);
  color: var(--ink-muted); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding-bottom: var(--s5); color: var(--ink-muted); max-width: 60ch; }
.faq details > div > * + * { margin-top: var(--s4); }
.faq ul { padding-left: var(--s5); }

/* ============ dl grid (insurance / policies) ============ */
/* min() on the track floor — a bare 340px floor is wider than a 320px phone and
   pushes the whole page sideways */
.facts { display: grid; gap: var(--s6) var(--s8); grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }
.facts > div { border-top: var(--hair); padding-top: var(--s4); }
.facts dt { font-size: var(--step--1); letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600; }
.facts dd { margin: var(--s3) 0 0; }

/* ============ form ============ */
.form { max-width: 40rem; display: grid; gap: var(--s5); }
.field { display: grid; gap: var(--s2); }
.field > label { font-size: var(--step--1); font-weight: 600; }
.field .hint { font-size: var(--step--1); color: var(--ink-muted); }
.field input, .field select, .field textarea {
  font: 400 var(--step-0)/1.5 var(--font-text); color: var(--ink); background: var(--bg);
  border: 1px solid var(--border-strong); border-radius: var(--radius); padding: var(--s3) var(--s4);
  min-height: 48px; width: 100%; transition: border-color var(--motion-fast) var(--ease-hover);
  /* after the font shorthand, which resets it — a typed phone number is data */
  font-variant-numeric: tabular-nums; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-muted); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: oklch(0.470 0.150 28); }
.field .error { font-size: var(--step--1); color: oklch(0.440 0.155 28); font-weight: 600; }
.field .error:empty { display: none; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form__note { font-size: var(--step--1); color: var(--ink-muted); }

.confirm { border: 1px solid var(--open); border-left-width: 3px; border-radius: var(--radius);
  padding: var(--s6); max-width: 40rem; }
.confirm h2 { font-size: var(--step-1); }
.confirm dl { margin-top: var(--s5); display: grid; gap: var(--s3); }
.confirm dl > div { display: grid; grid-template-columns: 9rem 1fr; gap: var(--s4);
  font-size: var(--step--1); padding-bottom: var(--s3); border-bottom: var(--hair); }
.confirm dt { color: var(--ink-muted); }
.confirm dd { margin: 0; font-weight: 600; }

/* ============ verify placeholder ============ */
.verify { display: block; border: 1px dashed var(--border-strong); border-radius: var(--radius);
  padding: var(--s5); font-size: var(--step--1); color: var(--ink-muted); max-width: 52ch; }
.verify strong { display: block; color: var(--ink); letter-spacing: 0.09em; text-transform: uppercase;
  font-size: 0.85em; margin-bottom: var(--s2); }

/* ============ map ============ */
.map { width: 100%; aspect-ratio: 16 / 9; border: var(--hair); border-radius: var(--radius);
  background: var(--surface); }
@media (max-width: 700px) { .map { aspect-ratio: 4 / 3; } }

/* ============ footer ============ */
.site-footer { border-top: var(--hair); padding-block: var(--s8) var(--s6); }
/* Mobile-first and explicit. The previous rule paired minmax(0,1.2fr) with
   repeat(auto-fit, minmax(180px,1fr)): auto-fit took every track it could fit and
   left the address column 7px wide, one word per line. auto-fit next to a
   collapsible fr track is the trap. Widening here can only ever add columns. */
.site-footer__grid { display: grid; gap: var(--s7) var(--s8);
  grid-template-columns: minmax(0, 1fr); }
@media (min-width: 620px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
}
@media (min-width: 1000px) {
  .site-footer__grid { grid-template-columns: minmax(15rem, 1.3fr) repeat(3, minmax(9rem, 1fr)); }
}
.site-footer h2 { font-size: var(--step-0); font-family: var(--font-text); font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--s4); }
.site-footer address { font-style: normal; line-height: 1.7; }
/* narrow footer column: keep "Closed now" on one line and drop the detail below it */
.site-footer .status { flex-wrap: wrap; align-items: baseline; }
.site-footer .status__state { white-space: nowrap; }
.site-footer .status__next { flex: 1 0 100%; margin-top: var(--s1); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--s2); }
.site-footer__legal { margin-top: var(--s8); padding-top: var(--s5); border-top: var(--hair);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6); font-size: var(--step--1); color: var(--ink-muted); }

/* ============ sticky mobile call bar ============ */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--s3);
    position: fixed; inset: auto 0 0; z-index: 50; padding: var(--s3) var(--gutter)
    calc(var(--s3) + env(safe-area-inset-bottom)); background: var(--bg); border-top: var(--hair);
    box-shadow: 0 -1px 2px oklch(0.235 0.016 258 / 0.05), 0 -8px 24px -12px oklch(0.235 0.016 258 / 0.14); }
  .callbar .btn { padding: 0 var(--s5); font-size: var(--step--1); white-space: nowrap; }
  body { padding-bottom: 84px; }
}

.site-footer .foot-label { font-size: var(--step-0); font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--s4); }

/* --- dark band: re-specified palette, not an inversion --- */
.band--dark {
  --ink-muted: oklch(0.775 0.010 258);
  --border: oklch(0.330 0.014 258);
  --border-strong: oklch(0.440 0.016 258);
  --brand: oklch(0.870 0.008 258);
  --accent: oklch(0.790 0.095 240);
  --accent-hover: oklch(0.880 0.070 240);
  color: var(--ink-invert);
}
.band--dark p, .band--dark li, .band--dark dd, .band--dark td { color: var(--ink-invert); }
.band--dark .lede, .band--dark .eyebrow, .band--dark .hint,
.band--dark dt, .band--dark .hours th, .band--dark .doc__cred { color: var(--ink-muted); }
.band--dark .status__state { color: var(--ink-invert); }
.band--dark .btn--primary { background: var(--ink-invert); color: var(--surface-deep); }
.band--dark .btn--primary:hover { background: oklch(1 0 0); color: var(--surface-deep); }
.band--dark .btn--primary:active { background: oklch(0.905 0.006 258); }

@media (max-width: 560px) { .hero__actions .btn { width: 100%; } }

/* homepage curates: group names and a sample, not the full inventory */
.svc--brief { gap: var(--s6) var(--s8); grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.svc__brief { border-top: var(--hair); padding-top: var(--s4); }
.svc__brief h3 { font-family: var(--font-text); font-size: var(--step-0); font-weight: 700; }
.svc__brief p { margin-top: var(--s2); font-size: var(--step--1); color: var(--ink-muted); }

/* ============ photography ============
   The practice's own images, re-cropped and graded to one treatment.
   Two ratios only: 21:9 for the hero band, 3:2 for insets. */
.shot { margin: 0; position: relative; }
.shot img { width: 100%; height: auto; object-fit: cover; display: block; }

.shot--hero img { height: 100%; }
.shot--hero { aspect-ratio: 1660 / 760; overflow: clip; background: var(--surface); }
.shot--hero img { object-position: 50% 26%; }
@media (min-width: 1100px) { .shot--hero { aspect-ratio: 2.55 / 1; } }
.shot--hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(78deg, oklch(0.235 0.016 258 / 0.42) 0%,
    oklch(0.235 0.016 258 / 0.14) 30%, transparent 54%); }
@media (max-width: 700px) {
  .shot--hero { aspect-ratio: 5 / 4; }
  .shot--hero img { object-position: 50% 22%; }
  .shot--hero::after { background: linear-gradient(0deg, oklch(0.235 0.016 258 / 0.62) 0%,
    oklch(0.235 0.016 258 / 0.10) 44%, transparent 68%); }
  /* the address already has a home in the footer — the card keeps only the live status */
  .shot__card > p:not(.status) { display: none; }
  .shot__card { padding: var(--s4) var(--s5); }
}

/* signature bet: live open/closed as a floating proof card over the photograph */
.shot__card { position: absolute; left: var(--gutter); bottom: clamp(20px, 3vw, 40px);
  z-index: 1; width: min(26rem, 42%); padding: var(--s5) var(--s6);
  background: oklch(0.982 0.006 258 / 0.94); backdrop-filter: blur(6px);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px oklch(0.235 0.016 258 / 0.10), 0 14px 36px -14px oklch(0.235 0.016 258 / 0.34); }
.shot__card .status { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s3);
  font-size: var(--step-0); }
.shot__card .status .status__next { flex: 1 0 100%; font-size: var(--step--1); }
.shot__card p { margin-top: var(--s2); font-size: var(--step--1); color: var(--ink-muted); }
@media (max-width: 900px) { .shot__card { left: var(--gutter); right: var(--gutter); width: auto; } }

.shot--inset { max-width: 300px; }
/* their non-hero sources top out around 250-300px; capping the display width keeps
   them from going soft on a 2x screen. They still want replacing with real photography. */
.shot--detail { max-width: 300px; margin-inline: auto; }  /* shares a centre line with the AGD mark above it */
.shot--detail img { border: var(--hair); border-radius: var(--radius); }
.shot--inset img { aspect-ratio: 300 / 198; border: var(--hair); border-radius: var(--radius);
  object-fit: cover; }
.shot figcaption { margin-top: var(--s3); font-size: var(--step--1); color: var(--ink-muted);
  max-width: 30ch; line-height: 1.5; }

.with-aside { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: var(--s7) var(--s8); align-items: start; }
@media (max-width: 900px) { .with-aside { grid-template-columns: 1fr; } }

.credential { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s6); }
.credential img { width: 52px; height: 48px; object-fit: contain; opacity: 0.72; flex: none; }
.credential p { font-size: var(--step--1); color: var(--ink-muted); margin: 0; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* keyboard parity for every hover-only affordance in this file */
.nav__list a:focus-visible, .wordmark:focus-visible, .faq summary:focus-visible { color: var(--brand); }

@media (prefers-reduced-motion: no-preference) {
  .btn[data-loading="true"]::after { animation: spin 640ms linear infinite; }
}

/* ============ interaction: hover + press across the site ============ */

/* nav: underline grows from the left, snaps back faster than it drew */
.nav__list a { position: relative; border-bottom-color: transparent; }
.nav__list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 90ms var(--ease-hover); }
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1);
  transition-duration: var(--motion-base); }
.nav__list a[aria-current="page"]::after { transform: scaleX(1); background: var(--brand); }
.nav__list a:active { color: var(--accent-hover); }

/* service lists + footer links: wash and a small nudge */
.svc__group li, .svc__brief { transition: background-color var(--motion-fast) var(--ease-hover); }
.svc__group li:hover { background: var(--accent-wash); }
.site-footer ul a { display: inline-block; transition: transform var(--motion-fast) var(--ease-hover),
  color var(--motion-fast) var(--ease-hover); }
.site-footer ul a:hover, .site-footer ul a:focus-visible { transform: translateX(2px); }

/* FAQ: whole row responds, marker rotates instead of swapping glyphs */
.faq summary { transition: color var(--motion-fast) var(--ease-hover), background-color var(--motion-fast) var(--ease-hover);
  padding-inline: var(--s3); margin-inline: calc(var(--s3) * -1); }
.faq summary:hover, .faq summary:focus-visible { background: var(--accent-wash); }
.faq summary:active { background: oklch(0.520 0.152 242 / 0.14); }
.faq summary::after { content: "+"; transition: transform var(--motion-base) var(--ease-enter), color var(--motion-fast) var(--ease-hover); }
.faq summary:hover::after { color: var(--accent); }
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }

/* status dot gets the bright step — non-text, so it can be loud */
.status[data-open="true"] .status__dot { background: var(--open);
  box-shadow: 0 0 0 3px oklch(0.455 0.098 152 / 0.18); }
.status[data-open="false"] .status__dot { background: var(--accent-bright);
  box-shadow: 0 0 0 3px oklch(0.660 0.170 240 / 0.16); }

/* form fields: accent on focus, not just a browser ring */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  border-color: var(--accent); outline-offset: 1px; }

/* prose links: underline thickens from the accent */
.prose a, .faq a, p a:not(.btn) { text-decoration-color: oklch(0.520 0.152 242 / 0.4);
  transition: text-decoration-color var(--motion-fast) var(--ease-hover), color var(--motion-fast) var(--ease-hover); }
.prose a:hover, .faq a:hover, p a:not(.btn):hover { text-decoration-color: var(--accent); }

/* dark band keeps the bright step so the accent still reads */
.band--dark { --accent-wash: oklch(0.800 0.075 238 / 0.12); }
.band--dark .nav__list a::after { background: var(--accent-bright); }

/* ============ statement band — the display moment ============ */

.statement__grid { display: grid; gap: var(--s7) var(--s8); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .statement__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); } }
.statement__shot img { width: 100%; border-radius: var(--radius); }
.statement__line { font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 1.35rem + 2.9vw, 3.45rem); line-height: 1.06;
  letter-spacing: -0.035em; margin-top: var(--s5); text-wrap: balance; }
.statement__line em { font-style: italic; color: var(--accent); }
.statement__note { margin-top: var(--s6); max-width: 46ch; color: var(--ink-muted); }
.statement__grid > p:last-child, .statement__copy > p:last-child { margin-top: var(--s5); }
.statement__shot img { border: 1px solid oklch(0.435 0.016 258); border-radius: var(--radius); }


/* ============ services: names at scale, details alongside ============ */
.svc-bold { display: grid; gap: var(--s7) var(--s8); grid-template-columns: 1fr; }
@media (min-width: 900px) { .svc-bold { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); } }
.svc-bold__list { list-style: none; padding: 0; margin-top: var(--s6);
  columns: 2; column-gap: var(--s8); border-top: 1px solid var(--border-strong); }
.svc-bold__list li { break-inside: avoid; padding: var(--s3) 0; border-bottom: var(--hair);
  font-family: var(--font-display); font-size: var(--step-1); letter-spacing: -0.015em; }
.svc-bold__more { margin-top: var(--s6); }
@media (max-width: 560px) { .svc-bold__list { columns: 1; } }


/* ============ closing band ============ */
.close__grid { display: grid; gap: var(--s7) var(--s8); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .close__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 298px); } }
.close__shot img { border: 1px solid oklch(0.435 0.016 258); border-radius: var(--radius); width: 100%; }

/* ============ hamburger: three rules that settle into a cross ============ */
/* Three equal rules, one timing, no hover choreography — the label beside them
   already says Menu or Close, so the mark only has to agree with it quietly. */
.nav-toggle { gap: var(--s3); }
.nav-toggle__label { min-width: 3.1em; text-align: left; }
.burger { position: relative; width: 18px; height: 12px; flex: none; display: block; }
.burger i { position: absolute; left: 0; width: 100%; height: 1.5px; border-radius: 9999px;
  background: currentColor; transform-origin: center;
  transition: transform var(--motion-fast) var(--ease-enter), opacity var(--motion-fast) linear; }
.burger i:nth-child(1) { top: 0; }
.burger i:nth-child(2) { top: 5.25px; }
.burger i:nth-child(3) { top: 10.5px; }
[aria-expanded="true"] .burger i:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
[aria-expanded="true"] .burger i:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .burger i:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* ============ shelf: the mobile nav slides down and the rows follow ============ */
@media (max-width: 900px) {
  /* scrim sits under the shelf so the page reads as behind it */
  .nav-scrim { position: fixed; inset: 0; z-index: 30; border: 0; padding: 0;
    background: oklch(0.235 0.016 258 / 0.34); opacity: 0; pointer-events: none;
    transition: opacity var(--motion-base) var(--ease-hover); }
  .nav-scrim[data-shelf="open"] { opacity: 1; pointer-events: auto; }
  body[data-nav-open="true"] { overflow: hidden; }
  body[data-nav-open="true"] .callbar { opacity: 0; pointer-events: none;
    transform: translateY(100%); transition: opacity var(--motion-fast) var(--ease-hover),
      transform var(--motion-base) var(--ease-enter); }
  .callbar { transition: opacity var(--motion-fast) var(--ease-hover), transform var(--motion-base) var(--ease-enter); }
  .nav { transform-origin: top; box-shadow: 0 18px 32px -22px oklch(0.235 0.016 258 / 0.45); transition: transform var(--motion-medium) var(--ease-enter),
      opacity var(--motion-fast) var(--ease-hover), visibility 0s linear var(--motion-medium); }
  .nav[data-shelf="closed"] { transform: translateY(-10px) scaleY(0.985); opacity: 0;
    visibility: hidden; pointer-events: none; }
  .nav[data-shelf="open"] { transform: none; opacity: 1; visibility: visible;
    transition-delay: 0s, 0s, 0s; }
  .nav li, .nav > .btn { transition: transform var(--motion-medium) var(--ease-enter), opacity var(--motion-base) var(--ease-hover); }
  .nav[data-shelf="closed"] li, .nav[data-shelf="closed"] > .btn {
    transform: translateY(-6px); opacity: 0; }
  .nav[data-shelf="open"] li, .nav[data-shelf="open"] > .btn { transform: none; opacity: 1; }
  .nav[data-shelf="open"] li:nth-child(1) { transition-delay: 40ms; }
  .nav[data-shelf="open"] li:nth-child(2) { transition-delay: 80ms; }
  .nav[data-shelf="open"] li:nth-child(3) { transition-delay: var(--motion-fast); }
  .nav[data-shelf="open"] > .btn { transition-delay: var(--motion-fast); }
}

/* ============ primary CTA: the arrow leads on hover ============ */
/* Absolute, so the hidden arrow takes no width — in flow it reserved space at
   the end and pushed the label off the button's centre. */
.btn--primary { overflow: hidden; }
.btn--primary::after { content: "\2192"; position: absolute; right: 0.85em; top: 50%;
  opacity: 0; transform: translate(-5px, -50%);
  transition: opacity var(--motion-fast) var(--ease-hover), transform var(--motion-base) var(--ease-enter); }
.btn--primary:hover::after, .btn--primary:focus-visible::after { opacity: 1; transform: translate(0, -50%); }
.btn--primary[data-loading="true"]::after { content: ""; }

@media (prefers-reduced-motion: reduce) {
  .nav[data-shelf="closed"] { visibility: hidden; }
  .nav li, .nav > .btn { transform: none !important; opacity: 1 !important; }
}

@media (min-width: 901px) { .nav-scrim { display: none; } }

/* ============ confirmation: a rare, deliberate moment ============ */
.confirm { animation: settle var(--motion-slow) var(--ease-enter) both; }
@keyframes settle { from { opacity: 0; transform: scale(0.985) translateY(6px); }
                    to   { opacity: 1; transform: none; } }
.tick { width: 30px; height: 30px; margin-bottom: var(--s4); display: block;
  fill: none; stroke: var(--open); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round; }
.tick path { stroke-dasharray: 26; stroke-dashoffset: 26;
  animation: draw var(--motion-slow) var(--ease-enter) 120ms forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.confirm__when { margin-top: var(--s3); color: var(--ink-muted); max-width: 46ch; }
.confirm__urgent { margin-top: var(--s4); padding: var(--s4) var(--s5);
  border-left: 3px solid var(--accent); background: var(--accent-wash);
  border-radius: 0 var(--radius) var(--radius) 0; font-size: var(--step--1); max-width: 46ch; }
.confirm__urgent[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  .confirm { animation: none; }
  .tick path { animation: none; stroke-dashoffset: 0; }
}

/* ============ full-bleed hero ============
   The source is 960px upscaled to 1920. That only works because the image is
   atmosphere behind type, not a photograph you inspect: heavy scrim, white copy
   on top. A real photo of this office would let it be crisp instead. */
.hero-full { position: relative; isolation: isolate; overflow: clip;
  display: grid; align-items: center;
  min-height: clamp(30rem, 76vh, 46rem);
  background: var(--surface-deep); color: var(--ink-invert); }
.hero-full__media { position: absolute; inset: -14% 0; z-index: -2; will-change: transform; }
.hero-full__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero-full::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(96deg, oklch(0.155 0.014 258 / 0.90) 0%,
      oklch(0.155 0.014 258 / 0.72) 30%, oklch(0.155 0.014 258 / 0.30) 62%,
      oklch(0.155 0.014 258 / 0.10) 100%),
    linear-gradient(0deg, oklch(0.155 0.014 258 / 0.34) 0%, transparent 38%); }
.hero-full__inner { width: 100%; padding-block: clamp(72px, 9vw, 132px); }
.hero-full__copy { max-width: 34rem; }
.hero-full h1 { color: var(--ink-invert); max-width: 13ch; }
.hero-full .eyebrow, .hero-full .lede, .hero-full__line { color: oklch(0.855 0.008 258); }
.hero-full .hero__rule { background: oklch(0.985 0.003 258 / 0.34); }
.hero-full__hours { margin-top: var(--s6); padding-top: var(--s5);
  border-top: 1px solid oklch(0.985 0.003 258 / 0.20); max-width: 34rem; }
.hero-full__line { margin-top: var(--s2); font-size: var(--step--1); line-height: 1.6; }
.hero-full .status[data-open] .status__state { color: var(--ink-invert); }
.hero-full .status__next { color: oklch(0.820 0.008 258); }
.hero-full .status[data-open="true"] .status__dot { background: oklch(0.760 0.170 152); }
.hero-full .btn--secondary { color: var(--ink-invert); border-color: oklch(0.985 0.003 258 / 0.44); }
.hero-full .btn--secondary:hover { background: oklch(0.985 0.003 258 / 0.12);
  color: var(--ink-invert); border-color: var(--ink-invert); }

@media (max-width: 860px) {
  /* one column: the seal follows the buttons instead of floating over them */
  .hero-full { display: block; }
  /* the copy column spans the full width here, so the scrim has to be vertical
     and much stronger — the image's bright side sits directly under the text */
  .hero-full::after { background:
    linear-gradient(180deg, oklch(0.155 0.014 258 / 0.88) 0%,
      oklch(0.155 0.014 258 / 0.82) 55%, oklch(0.155 0.014 258 / 0.92) 100%); }
}

.close__address { font-style: normal; margin-top: var(--s5); line-height: 1.7; }
.callbar__call { padding-inline: var(--s5); }
.callbar__call svg { fill: currentColor; }

/* AGD membership mark — the badge already carries its own wording, so it needs
   no chip. multiply drops its white ground into the surface behind it. */
.svc-bold__aside { display: grid; gap: var(--s6); align-content: start; }
/* centred in its own column at every width — pinned to the right edge it read as
   marooned on phone and tablet, where the column is the full page */
.agd-mark { width: 132px; height: auto; display: block; margin-inline: auto;
  mix-blend-mode: multiply; opacity: 0.92; }
