/* ============================================================
   Adi Rose Co. — Energy Healing
   "The Field" — warm obsidian + antique & rose gold
   ============================================================ */

:root {
  /* Palette */
  --obsidian:   #0B0A08;   /* page base — warm near-black */
  --obsidian-2: #121009;   /* raised panels */
  --obsidian-3: #1A1610;   /* cards */
  --gold:       #C9A24B;   /* antique gold — primary accent */
  --gold-lite:  #E8CE8A;   /* highlight / glow */
  --gold-deep:  #8C6F30;   /* dim borders */
  --rose:       #C98C78;   /* rose gold — secondary accent, sparing */
  --cream:      #F3ECDD;   /* primary text */
  --muted:      #B4A992;   /* secondary text */
  --line:       rgba(201, 162, 75, 0.16);
  --line-strong:rgba(201, 162, 75, 0.30);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Mulish", system-ui, -apple-system, sans-serif;

  /* Metrics */
  --wrap: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--obsidian);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }

/* Warm grain / vignette atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(201,162,75,0.10), transparent 55%),
    radial-gradient(100% 80% at 50% 110%, rgba(201,140,120,0.06), transparent 60%);
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

.wrap { width: min(var(--wrap), 100% - (var(--gutter) * 2)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--obsidian); padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 24ch;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
  line-height: 1.15;
  color: var(--cream);
}
.lead { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem); color: var(--cream); }
.section p { color: var(--muted); }
.section .lead { color: var(--cream); }

.section { padding-block: clamp(4.5rem, 3rem + 8vw, 9rem); }
.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__sub { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold));
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  box-shadow: 0 10px 30px -12px rgba(201,162,75,0.55);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201,162,75,0.7); }
.btn:focus-visible { outline: 2px solid var(--gold-lite); outline-offset: 3px; }
.btn--lg { padding: 1.05em 2em; font-size: 1rem; }
.btn--sm { padding: 0.6em 1.15em; font-size: 0.85rem; }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line-strong); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lite); box-shadow: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,8,0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--gold); }
.brand__mark { color: var(--gold); flex: none; display: inline-flex; }
.brand__mark img { display: block; width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 1.25rem; color: var(--cream); letter-spacing: 0.01em; }
.brand__co { color: var(--gold-lite); }
.brand__sub {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.35rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav > a:not(.btn) {
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em; position: relative; padding-block: 0.3rem;
  transition: color .3s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--cream); }
.nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0.5rem var(--gutter) 1.4rem;
  background: rgba(11,10,8,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: 1.3rem; color: var(--cream);
}
.mobile-nav a:last-child { color: var(--gold); border-bottom: 0; }

/* ============================================================
   Hero + "The Field"
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: center;
  padding-block: clamp(5rem, 12vh, 9rem);
  overflow: hidden;
  text-align: center;
}
.hero__inner { position: relative; z-index: 2; max-width: 52rem; margin-inline: auto; }

.eyebrow { color: var(--gold); }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0.4rem 0 0;
  text-wrap: balance;
}
.hero__title .line { display: block; }
.hero__title em { font-style: normal; color: var(--gold-lite); }
.hero__lede {
  max-width: 40rem; margin: 1.8rem auto 0;
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--muted);
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero__trust {
  margin-top: 2.2rem; font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--muted); text-transform: none;
}

/* The Field — ethereal gold spiral */
.field {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center; pointer-events: none;
  overflow: hidden;
}
.field__halo {
  position: absolute; width: min(96vw, 860px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.20), rgba(201,140,120,0.07) 42%, transparent 68%);
  filter: blur(14px);
  animation: halo 11s var(--ease) infinite;
}
.spiral {
  position: absolute;
  width: min(92vw, 86vh, 800px);
  aspect-ratio: 1;
  transform-origin: center;
  animation: drift 90s linear infinite;
  will-change: transform;
}
.spiral__glow { filter: blur(9px); opacity: 0.24; }
.spiral__arms { opacity: 0.4; }
.spiral__dots { opacity: 0.7; animation: twinkle 6.5s ease-in-out infinite; }
.field__core {
  position: absolute; width: 16px; aspect-ratio: 1; border-radius: 50%;
  background: var(--gold-lite);
  box-shadow: 0 0 26px 8px rgba(232,206,138,0.75), 0 0 72px 26px rgba(201,162,75,0.4);
  animation: pulse 5s var(--ease) infinite;
}

@keyframes drift { to { transform: rotate(360deg); } }
@keyframes halo {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.07); opacity: 1; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Scrim so the spiral recedes behind the headline */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(58% 54% at 50% 45%, rgba(11,10,8,0.72), rgba(11,10,8,0.32) 46%, transparent 72%);
}
.hero__title { text-shadow: 0 2px 34px rgba(11,10,8,0.6); }
.hero__lede { text-shadow: 0 1px 20px rgba(11,10,8,0.7); }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line-strong); border-radius: 20px;
  display: grid; place-items: start center; padding-top: 8px; z-index: 3;
}
.scroll-cue span { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   The Work
   ============================================================ */
.work__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.work__intro em { color: var(--gold-lite); font-style: italic; }
.feels-col { margin-top: 2.2rem; }
.feels__label {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--gold-lite);
  margin: 0 0 1rem;
}
.feels {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}
.feels li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line);
  color: var(--cream); font-size: 1.02rem;
}
.feels__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.14);
}

/* ============================================================
   Modalities + seals
   ============================================================ */
.mod__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.badge-progress {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  padding: 0.45rem 0.95rem; border-radius: 999px;
}
.mod-card {
  background: linear-gradient(180deg, var(--obsidian-3), var(--obsidian-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.1rem, 2.2vw, 1.6rem);
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.mod-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.mod-card p { color: var(--muted); }
.mod-card .h3 { margin: 0.4rem 0 0.9rem; }

.mod-card__seal { margin: 0 auto 1.4rem; }
.mod-card__badge {
  width: clamp(130px, 32%, 156px); height: auto; margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45));
  transition: transform .4s var(--ease);
}
.mod-card:hover .mod-card__badge { transform: translateY(-3px) scale(1.02); }
.mod-card__badge--ribbon { width: min(82%, 232px); height: auto; margin-block: 2.7rem; filter: none; }
.mod-card__placeholder { display: block; aspect-ratio: 1; filter: none; }
.mod__foot { text-align: center; margin-top: 2.4rem; color: var(--muted); font-style: italic; font-family: var(--display); font-size: 1.05rem; }

/* ============================================================
   Process
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2rem); counter-reset: step; }
.step { border-top: 1px solid var(--line-strong); padding-top: 1.4rem; }
.step__num {
  font-family: var(--display); font-size: 1.4rem; color: var(--gold);
  display: block; margin-bottom: 1rem; letter-spacing: 0.05em;
}
.step__title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ============================================================
   About
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__portrait { position: relative; justify-self: center; }
.portrait {
  width: min(78vw, 340px); aspect-ratio: 4/5; border-radius: 220px 220px 20px 20px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(201,162,75,0.16), transparent 60%),
    var(--obsidian-3);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.portrait__ph { color: var(--muted); font-family: var(--display); font-style: italic; }
.portrait__ring {
  position: absolute; inset: -14px; border: 1px solid var(--line);
  border-radius: 230px 230px 30px 30px; pointer-events: none;
}
.about__body .lead { margin-bottom: 1.2rem; }
.about__body .btn { margin-top: 1rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.stories .section-head { text-align: center; margin-inline: auto; }
.quote__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.quote {
  margin: 0;
  background: linear-gradient(180deg, var(--obsidian-3), var(--obsidian-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute; top: 0.1em; left: 0.4rem;
  font-family: var(--display); font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: 0.28;
}
.quote blockquote {
  margin: 0.6rem 0 1.4rem;
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.5; color: var(--cream);
}
.quote figcaption {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   Sessions
   ============================================================ */
.session__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); margin-inline: auto; }
.session__prepaid { text-align: center; margin-top: 2.4rem; color: var(--muted); font-size: 0.98rem; }
.session__prepaid a { color: var(--gold); border-bottom: 1px solid var(--gold-deep); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.session__prepaid a:hover { color: var(--gold-lite); border-color: var(--gold); }
.session-card {
  position: relative;
  background: var(--obsidian-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex; flex-direction: column;
}
.session-card--feature {
  background: linear-gradient(180deg, rgba(201,162,75,0.10), var(--obsidian-2) 42%);
  border-color: var(--line-strong);
}
.session-card__tag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-lite), var(--gold)); color: var(--obsidian);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
}
.session-card__label { font-family: var(--display); font-size: 1.25rem; color: var(--cream); margin: 0; }
.session-card__price { font-family: var(--display); font-size: clamp(3rem, 2rem + 4vw, 4.2rem); line-height: 1; color: var(--gold-lite); margin: 0.6rem 0 0.4rem; }
.session-card__cur { font-size: 0.42em; vertical-align: super; color: var(--gold); margin-right: 0.1em; }
.session-card__meta { color: var(--muted); font-size: 0.92rem; margin: 0 0 1.4rem; }
.session-card__list { margin: 0 0 1.8rem; display: grid; gap: 0.7rem; }
.session-card__list li { position: relative; padding-left: 1.6rem; color: var(--cream); font-size: 0.96rem; }
.session-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.16);
}
.session-card .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   Booking
   ============================================================ */
.booking .section-head { text-align: center; margin-inline: auto; }
.calendly-shell {
  background: var(--obsidian-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(0.5rem, 2vw, 1rem);
  overflow: hidden;
}
.calendly-inline-widget { border-radius: var(--radius-sm); }
.calendly-fallback { padding: 3rem; text-align: center; color: var(--muted); }
.calendly-fallback a { color: var(--gold); text-decoration: underline; }

/* Have more questions — CTA section */
.questions__head { text-align: center; margin-inline: auto; max-width: 46rem; margin-bottom: 0; }
.questions__head .section-head__sub { margin-bottom: 0; }
.questions__cta { margin-top: 2rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem; margin-top: 2rem; }
.footer__close { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.footer__ornament { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); position: relative; }
.footer__ornament::before, .footer__ornament::after { content: ""; position: absolute; top: 50%; width: clamp(2rem, 8vw, 3.5rem); height: 1px; background: linear-gradient(to var(--dir, right), var(--gold-deep), transparent); }
.footer__ornament::before { right: 10px; transform: translateY(-50%) scaleX(-1); }
.footer__ornament::after { left: 10px; }
.footer__invite { font-family: var(--display); font-size: clamp(1.35rem, 3vw, 1.85rem); color: var(--cream); margin: 0; font-style: italic; }
.footer__email { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.02em; border-bottom: 1px solid var(--gold-deep); padding-bottom: 2px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer__email:hover { color: var(--gold-lite); border-color: var(--gold); }
.footer__fine { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2rem; border-top: 1px solid var(--line); text-align: center; }
.disclaimer { color: var(--muted); font-size: 0.8rem; max-width: 100%; line-height: 1.6; }
.copyright { color: var(--muted); font-size: 0.8rem; margin: 0.8rem 0 0; opacity: 0.7; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Info sections (Energy Healing / Heart-Wall) ---------- */
.info__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: start;
}
.info__head { grid-column: 1 / -1; }
.info__head .h2 { margin-bottom: 0; }
/* Section "question" headline — a touch smaller than a full section title */
.info__q {
  font-size: clamp(1.55rem, 1.15rem + 1.7vw, 2.4rem);
}
.info__intro em,
.info__panel em { color: var(--gold-lite); font-style: italic; }
.info__intro .lead { margin-bottom: 1.2rem; }
.info__intro p + p { margin-top: 1.1rem; }
.info__panel {
  position: relative;
  background: var(--obsidian-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.9rem, 3vw, 2.8rem);
}
.info__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid var(--line-strong);
  margin-bottom: 1.1rem;
}
.info__glyph--img { overflow: hidden; }
.info__glyph--img img { width: 30px; height: 30px; object-fit: contain; }
.info__panel .h3 { color: var(--gold); margin-bottom: 0.9rem; }
.info__panel p { color: var(--muted); }
.info__panel-lede { margin-bottom: 1.3rem; }
.info__list { display: grid; gap: 1.05rem; }
.info__list li {
  display: flex;
  gap: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}
.info__list strong { color: var(--cream); font-weight: 600; }
.info__dot {
  flex: none;
  width: 7px; height: 7px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.14);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .about__grid, .mod__grid, .session__grid, .quote__grid, .info__grid { grid-template-columns: 1fr; }
  .feels-col { margin-top: 0; }
  .about__grid { gap: 3rem; }
  .about__portrait { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .h2 { max-width: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spiral, .field__halo, .spiral__dots, .field__core, .scroll-cue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .mod-card { transition: none; }
}
