/* =========================================================================
   ULTRA INTUITIVE × SEDONA MAGO: Design System
   Reverse-engineered from sedonamagoretreat.org (see analysis/sedona-design-system.md)
   Driven by: frontend-design (tokens/components), ui-ux-pro-max (rhythm/register)
   Portable: single global stylesheet, relative font/asset paths, no build hashing.
   ========================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("/ui/fonts/montserrat-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Palette: warm nonprofit-wellness, drawn from Sedona red rock + desert sage */
  --cream:        #F4F2ED;
  --cream-deep:   #ECE7DD;
  --white:        #FFFFFF;
  --ink:          #414141;
  --ink-soft:     #5C5B57;
  --ink-muted:    #7C7A74;
  --terracotta:   #A66E3D;  /* headings, links, rules */
  --terracotta-btn:#C77F44; /* primary button */
  --terracotta-dk:#A4622F;  /* button hover */
  --clay:         #AA6556;  /* promo bar, warm accent */
  --sage:         #818B8D;  /* eyebrows, secondary */
  --sage-green:   #899074;
  --olive:        #6A7B65;
  --line:         rgba(65, 65, 65, .12);
  --line-warm:    rgba(166, 110, 61, .22);
  --shadow-sm:    0 1px 3px rgba(60,50,40,.06), 0 6px 18px rgba(60,50,40,.05);
  --shadow-md:    0 4px 14px rgba(60,50,40,.08), 0 18px 48px rgba(60,50,40,.07);

  /* Type */
  --font-head: "Optima Medium", Optima, Candara, "Gill Sans Nova", "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-wide: 1340px;
  --container-narrow: 760px;
  --radius-pill: 26px;
  --radius-card: 8px;
  --radius-img: 10px;

  /* Spacing scale */
  --s-1: .5rem; --s-2: .875rem; --s-3: 1.25rem; --s-4: 1.75rem;
  --s-5: 2.5rem; --s-6: 3.5rem; --s-7: 5rem; --s-8: 7rem;
  --section-y: clamp(3.5rem, 7vw, 7rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--terracotta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta-dk); }
strong, b { font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}

/* Fluid display scale (Optima register) */
h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--terracotta); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--deep  { background: var(--cream-deep); }
.section--white { background: var(--white); }
.center { text-align: center; }
.measure { max-width: 64ch; }
.measure.center { margin-inline: auto; }
.stack > * + * { margin-top: var(--s-3); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); line-height: 1.7; }

/* Eyebrow: recreates the eyebrow-rule device as a tracked sage label w/ terracotta rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--terracotta); opacity: .8; }
.center .eyebrow::after { content: ""; width: 2.4rem; height: 1px; background: var(--terracotta); opacity: .8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: .015em;
  padding: .9rem 2rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
  transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn--primary { background: var(--terracotta-btn); color: var(--white); box-shadow: 0 6px 18px rgba(166,110,61,.22); }
.btn--primary:hover { background: var(--terracotta-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(166,110,61,.30); }
.btn--ghost { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn--ghost:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--terracotta); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); }
.btn--lg { font-size: 1.08rem; padding: 1.05rem 2.4rem; }
.btn:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

/* CTA group: button + calm reassurance line */
.cta { margin-top: var(--s-4); }
.cta__note { display: block; margin-top: .9rem; font-size: .85rem; color: var(--ink-muted); letter-spacing: .01em; }
.cta__date { display:block; margin-top:.55rem; font-size:.8rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--sage); }

/* ---------- Top promo bar ---------- */
.promobar { background: var(--clay); color: #fff; text-align: center; font-size: .85rem; letter-spacing: .01em; padding: .6rem 1rem; }
.promobar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,242,237,.92); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .85rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--ink-soft); font-size: .9rem; font-weight: 500; letter-spacing: .01em; }
.nav a:hover { color: var(--terracotta); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { color: var(--ink-soft); font-size: .92rem; font-weight: 600; white-space: nowrap; }
.header-cta { padding: .6rem 1.4rem; font-size: .9rem; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--cream); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { /* warm legibility wash */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(58,40,28,.34) 0%, rgba(58,40,28,.30) 40%, rgba(58,40,28,.55) 100%);
}
.hero__inner { padding-block: clamp(5rem, 14vw, 9.5rem); max-width: 46rem; }
.hero .eyebrow { color: rgba(244,242,237,.95); text-shadow: 0 1px 12px rgba(40,28,18,.4); }
.hero .eyebrow::before { background: var(--cream); }
.hero h1 { color: var(--cream); font-size: clamp(2.8rem, 6.6vw, 4.6rem); text-shadow: 0 2px 24px rgba(40,28,18,.38); }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(244,242,237,.95); margin-top: 1.25rem; line-height: 1.5; max-width: 34ch; text-shadow: 0 1px 16px rgba(40,28,18,.4); }
.hero__meta { margin-top: 1.5rem; font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(244,242,237,.95); text-shadow: 0 1px 12px rgba(40,28,18,.45); }
.hero .cta__note, .hero .cta__date { color: rgba(244,242,237,.92); text-shadow: 0 1px 10px rgba(40,28,18,.5); }

/* ---------- Trust strip ---------- */
.trust { background: var(--cream-deep); border-block: 1px solid var(--line); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 3rem; padding-block: 1.6rem; text-align: center; }
.trust__item { display: flex; flex-direction: column; line-height: 1.2; }
.trust__num { font-family: var(--font-head); font-size: 1.7rem; color: var(--terracotta); }
.trust__label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-top: .25rem; }
.trust__sep { width: 1px; height: 2.4rem; background: var(--line); }

/* ---------- Generic content blocks ---------- */
.block { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.block--split { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px){ .block--split { grid-template-columns: 1fr; } }
.block__media img { border-radius: var(--radius-img); box-shadow: var(--shadow-md); width: 100%; }
.block p + p { margin-top: 1rem; }

/* Calm date line band */
.dateline { text-align: center; font-family: var(--font-head); font-size: clamp(1.4rem,2.6vw,2rem); color: var(--terracotta); }
.dateline span { display:block; font-family: var(--font-body); font-size: .95rem; color: var(--ink-soft); margin-top:.5rem; letter-spacing: normal; }

/* ---------- Facts list (heart/science, attributed) ---------- */
.facts { display: grid; gap: 1.1rem; max-width: 60ch; margin-inline: auto; margin-top: 2rem; }
.facts li { list-style: none; position: relative; padding-left: 2rem; line-height: 1.6; }
.facts li::before { content: ""; position: absolute; left: 0; top: .55em; width: .7rem; height: .7rem; border-radius: 50%; border: 2px solid var(--terracotta); }
.attrib { font-size: .82rem; color: var(--ink-muted); font-style: italic; margin-top: 1.25rem; }

/* ---------- Qualifier (is this for you) ---------- */
.qual { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); margin-top: 2.5rem; }
@media (max-width: 760px){ .qual { grid-template-columns: 1fr; } }
.qual__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: clamp(1.5rem,3vw,2.25rem); box-shadow: var(--shadow-sm); }
.qual__col h4 { color: var(--terracotta); margin-bottom: 1.1rem; }
.qual__col ul { padding: 0; }
.qual__col li { list-style: none; padding-left: 1.8rem; position: relative; margin-bottom: .85rem; line-height: 1.55; color: var(--ink-soft); }
.qual__col--yes li::before { content: ""; position: absolute; left: 0; top: .35em; width: 1rem; height: .55rem; border-left: 2px solid var(--sage-green); border-bottom: 2px solid var(--sage-green); transform: rotate(-45deg); }
.qual__col--no li::before { content: "–"; position: absolute; left: .2rem; top: 0; color: var(--ink-muted); font-weight: 700; }

/* ---------- Day cards / agenda ---------- */
.daycards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,2.25rem); margin-top: 2.5rem; }
@media (max-width: 760px){ .daycards { grid-template-columns: 1fr; } }
.daycard { background: var(--white); border-radius: var(--radius-card); padding: clamp(1.75rem,3vw,2.5rem); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.daycard__num { font-family: var(--font-head); font-size: 3rem; color: var(--line-warm); line-height: 1; }
.daycard h3 { margin: .25rem 0 1rem; }
.daycard p { color: var(--ink-soft); }

.agenda { display: grid; gap: 1.4rem; margin-top: 2rem; }
.agenda__item { background: var(--white); border-left: 3px solid var(--terracotta); border-radius: 0 var(--radius-card) var(--radius-card) 0; padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.agenda__item h4 { color: var(--ink); margin-bottom: .4rem; }
.agenda__item p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Testimonials ---------- */
.stories { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); margin-top: 2.5rem; }
@media (max-width: 760px){ .stories { grid-template-columns: 1fr; } }
.story { background: var(--white); border-radius: var(--radius-card); padding: clamp(1.75rem,3vw,2.5rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.story__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.story__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--cream-deep); }
.story__name { font-family: var(--font-head); font-size: 1.25rem; color: var(--terracotta); }
.story p { color: var(--ink-soft); }
.story__quote { margin-top: 1.1rem; padding-left: 1.1rem; border-left: 2px solid var(--line-warm); font-style: italic; color: var(--ink); }
.disclosure { text-align: center; font-size: .82rem; color: var(--ink-muted); font-style: italic; margin-top: 1.75rem; }

/* ---------- Offer / registration ---------- */
.offer { background: var(--white); border: 1px solid var(--line-warm); border-radius: var(--radius-card); box-shadow: var(--shadow-md); max-width: 620px; margin-inline: auto; overflow: hidden; }
.offer__head { background: var(--terracotta); color: var(--cream); text-align: center; padding: 1.5rem; }
.offer__head h3 { color: var(--cream); }
.offer__body { padding: clamp(1.75rem,4vw,2.5rem); }
.offer__row { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.offer__row:last-of-type { border-bottom: 0; }
.offer__row dt { color: var(--ink-muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.offer__row dd { font-weight: 600; text-align: right; }
.offer__price { font-family: var(--font-head); font-size: 2.5rem; color: var(--terracotta); text-align: center; margin: 1.25rem 0 .25rem; }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--cream-deep); border: 1px solid var(--line-warm); border-radius: var(--radius-card); padding: clamp(1.75rem,4vw,2.75rem); max-width: 720px; margin-inline: auto; text-align: center; }
.guarantee h3 { color: var(--terracotta); margin-bottom: 1rem; }
.guarantee p { color: var(--ink-soft); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin-inline: auto; margin-top: 2.5rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); }
.faq__q:hover { color: var(--terracotta); }
.faq__icon { flex: none; width: 1.4rem; height: 1.4rem; position: relative; transition: transform .3s ease; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; background: var(--terracotta); border-radius: 2px; }
.faq__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: opacity .3s ease; }
.faq__item[aria-expanded="true"] .faq__icon::after { opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq__a-inner { padding-bottom: 1.4rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Video frame ---------- */
.videoframe { position: relative; max-width: 880px; margin-inline: auto; border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-md); background: #2a2420; aspect-ratio: 16/9; }
.videoframe video, .videoframe img { width: 100%; height: 100%; object-fit: cover; }
.videoframe__poster { position: absolute; inset: 0; cursor: pointer; }
.videoframe__play { position: absolute; inset: 0; display: grid; place-items: center; }
.videoframe__play span { width: 84px; height: 84px; border-radius: 50%; background: rgba(244,242,237,.92); display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .25s ease, background .25s ease; }
.videoframe__play span::before { content:""; border-style: solid; border-width: 14px 0 14px 24px; border-color: transparent transparent transparent var(--terracotta); margin-left: 6px; }
.videoframe__poster:hover .videoframe__play span { transform: scale(1.07); background: var(--white); }

/* ---------- Video series navigator ---------- */
.series { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); margin-top: 2.5rem; }
@media (max-width: 720px){ .series { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.series__item { display: block; color: inherit; text-decoration: none; transition: transform .25s ease; }
a.series__item:hover { transform: translateY(-4px); }
.series__thumb { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-md); background: #2a2420; }
.series__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .3s ease; }
a.series__item:hover .series__thumb img { transform: scale(1.05); }
.series__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,28,18,.05), rgba(40,28,18,.45)); }
.series__badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; background: rgba(244,242,237,.92); color: var(--terracotta); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 100px; }
.series__icon { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; color: var(--terracotta); }
.series__icon svg { background: rgba(244,242,237,.92); border-radius: 50%; padding: 14px; width: 56px; height: 56px; box-shadow: var(--shadow-md); transition: transform .25s ease, background .25s ease; }
a.series__item:hover .series__icon svg { transform: scale(1.08); background: var(--white); }
.series__meta { display: flex; flex-direction: column; gap: .15rem; margin-top: .9rem; text-align: left; }
.series__title { font-family: var(--font-head); font-size: 1.18rem; color: var(--ink); line-height: 1.2; }
a.series__item:hover .series__title { color: var(--terracotta); }
.series__state { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); }
.series__item--current .series__thumb { outline: 3px solid var(--terracotta); outline-offset: 3px; }
.series__item--current .series__state { color: var(--terracotta); }
/* Locked state */
.series__item--locked { cursor: not-allowed; }
.series__item--locked .series__thumb img { filter: grayscale(.55) brightness(.62); }
.series__item--locked .series__icon { color: var(--cream); }
.series__item--locked .series__icon svg { background: rgba(40,28,18,.42); }
.series__item--locked .series__title { color: var(--ink-muted); }

/* ---------- Upsell specifics ---------- */
.upsell-banner { background: var(--clay); color: #fff; text-align: center; padding: .75rem 1rem; font-size: .9rem; letter-spacing: .02em; }
.charge-disclosure { background: var(--cream-deep); border: 1px solid var(--line-warm); border-radius: var(--radius-card); padding: 1.4rem 1.6rem; max-width: 620px; margin: 2rem auto 0; font-size: .95rem; color: var(--ink-soft); }
.charge-disclosure strong { color: var(--ink); }
.decline-link { display: inline-block; margin-top: 1.5rem; color: var(--ink-muted); text-decoration: underline; text-underline-offset: 3px; font-size: .95rem; }
.decline-link:hover { color: var(--ink); }

/* ---------- Footer (faithful Sedona Mago replica) ---------- */
.site-footer { background: var(--cream-deep); border-top: 1px solid var(--line); color: var(--ink-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.75rem,3vw,3rem); padding-block: clamp(3rem,5vw,4.5rem); }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.1rem; }
.footer-col a { display: inline-block; color: var(--ink-soft); margin-bottom: .55rem; font-size: .95rem; }
.footer-col a:hover { color: var(--terracotta); }
.footer-col p { font-size: .95rem; margin-bottom: .55rem; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-mission { font-size: .95rem; line-height: 1.7; }
.footer-seals { display: flex; gap: 1rem; align-items: center; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-seal { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: .5rem .7rem; font-size: .7rem; color: var(--sage); text-align: center; line-height: 1.3; max-width: 120px; }
.footer-disclaimer { border-top: 1px solid var(--line); padding-block: 1.75rem; font-size: .8rem; line-height: 1.65; color: var(--ink-muted); max-width: 90ch; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--ink-muted); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; }
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--terracotta); }

/* ---------- Scroll reveal (motion) ----------
   Only hides when JS is present (html.js). No-JS users + crawlers always see content. */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .btn:hover { transform: none !important; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .5rem; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
  .site-header.nav-open .nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: .25rem; background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem clamp(1.25rem,4vw,2.5rem) 1.5rem; }
  .site-header.nav-open .nav a { padding: .6rem 0; width: 100%; }
  .site-header.nav-open .header-phone { display: block; padding-top: .75rem; }
  .site-header.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
