/* ============================================================
   Modern Mind Therapy — site styles
   Palette: warm ivory, dusty mauve, soft clay, deep charcoal.
   ============================================================ */

:root {
  /* Base */
  --ivory:        #f6f1e8;
  --ivory-soft:   #fbf7ef;
  --ivory-deep:   #ece4d3;

  /* Sage / olive */
  --sage:         #a78f8a;
  --sage-soft:    #cbb8b2;
  --sage-deep:    #826863;
  --olive:        #6f5147;
  --olive-deep:   #332b27;

  /* Warm neutrals */
  --taupe:        #c7b7a7;
  --taupe-soft:   #e1d3c5;
  --clay:         #a96455;
  --clay-soft:    #d8a99c;

  /* Text */
  --ink:          #332f2b;
  --ink-soft:     #625852;
  --ink-mute:     #968b84;
  --ink-on-dark:  #f4eedf;

  /* Type */
  --serif: 'Source Serif 4', 'Source Serif Pro', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 22px 55px -28px rgba(51, 43, 39, 0.24);
  --shadow-card: 0 14px 40px -22px rgba(51, 43, 39, 0.22);
}

/* ----------------------------------------------------------
   Reset / base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--olive-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .75rem;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }
em { font-style: italic; color: var(--olive); }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--olive-deep); color: var(--ivory);
  padding: .75rem 1rem; border-radius: 0 0 .5rem 0;
  z-index: 200;
}
.skip:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----------------------------------------------------------
   Header / nav
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(140, 154, 130, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  padding-bottom: .9rem;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--olive-deep);
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-line {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--olive-deep);
}
.brand-sub {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: .25rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-size: .92rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.primary-nav a:hover { color: var(--olive-deep); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  background: var(--olive-deep);
  color: var(--ivory);
  padding: .65rem 1.15rem;
  border-radius: 999px;
  letter-spacing: .02em;
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover {
  background: var(--olive);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--olive-deep);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .98rem;
  letter-spacing: .015em;
  font-weight: 500;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--olive-deep);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--olive); color: var(--ivory); }
.btn-ghost {
  background: transparent;
  border-color: rgba(74, 82, 64, 0.35);
  color: var(--olive-deep);
}
.btn-ghost:hover { border-color: var(--olive-deep); color: var(--olive-deep); background: rgba(255,255,255,.4); }
.btn-ghost.light {
  border-color: rgba(244, 238, 223, 0.5);
  color: var(--ivory);
}
.btn-ghost.light:hover {
  background: rgba(244, 238, 223, 0.08);
  color: var(--ivory);
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }
.btn-icon { display: inline-block; transform: translateY(-1px); }
.btn-icon-envelope {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transform: translateY(0);
}


/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem);
  min-height: clamp(560px, 76vh, 760px);
  display: flex;
  align-items: center;
  background: var(--ivory);
}
.hero-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.64) 0%, rgba(246, 241, 232, 0.48) 55%, rgba(246, 241, 232, 0.7) 100%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.68) 0%, rgba(246, 241, 232, 0.4) 50%, rgba(246, 241, 232, 0.62) 100%);
}
.hero .container {
  max-width: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}
.hero-copy {
  max-width: 100%;
  text-align: center;
}
.hero-copy h1 {
  max-width: 100%;
  font-size: 69px;
}
.eyebrow {
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.25rem;
}
.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 1.25rem 0 1.75rem;
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

/* ----------------------------------------------------------
   Section primitives
   ---------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
}
.section-soft { background: var(--ivory-soft); }
.section-deep {
  background: var(--olive-deep);
  color: var(--ink-on-dark);
  overflow: hidden;
}
.section-deep h2,
.section-deep h3 { color: var(--ivory); }
.section-deep p { color: rgba(244, 238, 223, 0.82); }
.section-deep a { color: var(--clay-soft); }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.kicker {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 .85rem;
}
.kicker.light { color: var(--sage-soft); }

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.col-head h2 { margin-top: 0; }
.col-body p:last-child { margin-bottom: 0; }

.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: .85rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .65rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: var(--ivory);
}

/* ----------------------------------------------------------
   "What sessions feel like" cards
   ---------------------------------------------------------- */
.feel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.feel-card {
  background: var(--ivory-soft);
  border: 1px solid rgba(140, 154, 130, 0.18);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feel-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--clay);
  letter-spacing: .15em;
}
.feel-card h3 {
  margin-top: .75rem;
  margin-bottom: .6rem;
}
.feel-card p { margin: 0; }

/* ----------------------------------------------------------
   Specialties — pillars + chips
   ---------------------------------------------------------- */
.spec-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.pillar {
  padding: 1.85rem 1.65rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.pillar h3 {
  font-size: 1.45rem;
  margin-bottom: .5rem;
}
.pillar p { margin: 0; }

.chips-wrap {
  text-align: center;
  border-top: 1px solid rgba(140, 154, 130, 0.25);
  padding-top: 2.25rem;
}
.chips-label {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.25rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.chips li {
  font-size: .88rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid rgba(140, 154, 130, 0.3);
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chips li:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
}
.chips-foot {
  font-size: .88rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

/* ----------------------------------------------------------
   Approach list
   ---------------------------------------------------------- */
.approach-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.approach-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(140, 154, 130, 0.25);
  color: var(--ink-soft);
  align-items: baseline;
}
.approach-list li:last-child {
  border-bottom: 1px solid rgba(140, 154, 130, 0.25);
}
.approach-tag {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--olive-deep);
  letter-spacing: .01em;
}

/* ----------------------------------------------------------
   About (deep section)
   ---------------------------------------------------------- */
.about-shape {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 223, 0.18);
  top: -180px; right: -180px;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-portrait {
  margin: 0;
  position: relative;
}
.about-portrait img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -25px rgba(0,0,0,0.45);
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 18px -18px 80px 18px;
  border: 1px solid rgba(244, 238, 223, 0.25);
  border-radius: var(--radius-lg);
  z-index: -1;
  max-width: 380px;
}
.about-copy h2 { margin-top: .25rem; }
.creds {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 238, 223, 0.18);
}
.creds div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; }
.creds dt {
  font-family: var(--serif);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.creds dd {
  margin: 0;
  color: rgba(244, 238, 223, 0.92);
  font-size: .98rem;
}

/* ----------------------------------------------------------
   Fees
   ---------------------------------------------------------- */
.fees-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.fee-card {
  padding: 2.25rem 2rem;
  background: var(--ivory-soft);
  border: 1px solid rgba(140, 154, 130, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.fee-card-feature {
  background: linear-gradient(160deg, var(--olive-deep), var(--olive));
  border: 0;
  color: var(--ivory);
}
.fee-card-feature .fee-label,
.fee-card-feature .fee-note { color: rgba(244, 238, 223, 0.78); }
.fee-card-feature .fee-amount { color: var(--ivory); }
.fee-label {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}
.fee-amount {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--olive-deep);
  margin: 0 0 .5rem;
}
.fee-currency {
  font-size: 1.8rem;
  vertical-align: top;
  margin-right: .15rem;
  color: var(--sage-soft);
}
.fee-note { font-size: .95rem; margin-bottom: 1.75rem; }
.fee-list {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.25rem;
}
.fee-list li {
  font-size: .95rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.fee-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .7em;
  width: 6px; height: 1px;
  background: var(--sage);
}
.fee-foot {
  font-size: .88rem;
  color: var(--ink-mute);
  margin-top: auto;
  margin-bottom: 0;
}
.alma-link {
  margin-top: auto;
  font-size: .92rem;
  color: var(--olive-deep);
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  letter-spacing: .03em;
}
.alma-link:hover { color: var(--clay); gap: .55rem; }

/* ----------------------------------------------------------
   Availability
   ---------------------------------------------------------- */
.availability .states-label {
  margin-top: 1.25rem;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.states {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .85rem 0 1.25rem;
}
.states li {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--olive-deep);
  padding: .35rem .85rem;
  background: var(--ivory);
  border: 1px solid rgba(140, 154, 130, 0.25);
  border-radius: 8px;
}
.fine {
  font-size: .85rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ----------------------------------------------------------
   Steps + FAQ
   ---------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 3.5rem;
  padding: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--ivory-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(140, 154, 130, 0.18);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.steps h3 { margin: .15rem 0 .35rem; font-size: 1.15rem; }
.steps p { margin: 0; font-size: .95rem; }

.faq {
  max-width: 44rem;
  margin: 0 auto;
  border-top: 1px solid rgba(140, 154, 130, 0.25);
}
.faq details {
  border-bottom: 1px solid rgba(140, 154, 130, 0.25);
  padding: 1.1rem 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--olive-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--sage);
  transition: transform .25s ease, color .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--clay); }
.faq details p {
  margin: .85rem 0 0;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* ----------------------------------------------------------
   CTA section
   ---------------------------------------------------------- */
.section-cta {
  background:
    radial-gradient(circle at 30% 30%, rgba(179, 191, 169, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(214, 169, 140, 0.18), transparent 60%),
    var(--olive-deep);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-shape {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 223, 0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}
.section-cta h2 { color: var(--ivory); margin-bottom: .85rem; }
.cta-lede {
  color: rgba(244, 238, 223, 0.82);
  font-size: 1.08rem;
  margin: 0 auto 2rem;
  max-width: 36rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 238, 223, 0.18);
}
.cta-meta li {
  font-size: .92rem;
  color: rgba(244, 238, 223, 0.85);
}
.cta-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: .25rem;
  font-weight: 400;
}
.cta-meta a { color: var(--ivory); }
.cta-meta a:hover { color: var(--clay-soft); }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
  background: var(--ivory-deep);
  padding: 4rem 0 2rem;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(140, 154, 130, 0.25);
}
.foot-brand img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}
.foot-brand {
  display: flex;
  align-items: flex-start;
}
.foot-col h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--olive-deep);
  margin: 0 0 1rem;
}
.foot-col ul { display: grid; gap: .55rem; }
.foot-col a { font-size: .92rem; color: var(--ink-soft); }
.foot-col a:hover { color: var(--olive-deep); }
.foot-col address {
  font-style: normal;
  font-size: .92rem;
  line-height: 1.7;
}
.foot-fine {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.foot-fine p { margin: 0; font-size: .82rem; color: var(--ink-mute); }
.disclaim { max-width: 60rem; }

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .about-portrait img { max-width: 320px; }
  .feel-grid,
  .spec-pillars,
  .steps,
  .fees-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .approach-list li { grid-template-columns: 1fr; gap: .35rem; }
  .creds div { grid-template-columns: 1fr; gap: .15rem; }
}

@media (max-width: 720px) {
  .nav {
    min-height: 76px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .hero { min-height: 620px; }
  .hero-video-overlay {
    background: linear-gradient(180deg, rgba(246, 241, 232, 0.78) 0%, rgba(246, 241, 232, 0.58) 54%, rgba(246, 241, 232, 0.78) 100%);
  }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ivory);
    padding: 1.25rem var(--gutter) 1.5rem;
    border-bottom: 1px solid rgba(140, 154, 130, 0.25);
    transform: translateY(calc(-100% - 90px));
    transition: transform .3s ease;
    gap: .25rem;
  }
  .primary-nav a {
    padding: .85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(140, 154, 130, 0.18);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav .nav-cta {
    margin-top: .5rem;
    text-align: center;
    padding: .85rem 1rem;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-meta { flex-direction: column; gap: 1.25rem; }
  .btn { padding: .85rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 720px) {
  .hero-break { display: none; }
  .hero-copy h1 { font-size: clamp(2.25rem, 10.8vw, 2.95rem); }
}

@media (max-width: 720px) {
  .hero-ctas {
    flex-wrap: nowrap;
    gap: .35rem;
  }
  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: .74rem .5rem;
    font-size: clamp(.66rem, 2.85vw, .8rem);
    gap: .35rem;
    white-space: nowrap;
  }
  .hero-ctas .btn-ghost {
    flex-grow: .72;
  }
}
