/* ═══════════════════════════════════════════════════════════
   MAÏA ORACLE — luxury tarot atelier
   Palette: ink · ivory · antique gold · midnight blue
   ═══════════════════════════════════════════════════════════ */

:root{
  --ink:#0D0D0E;
  --ink-2:#151517;
  --ink-3:#1D1D1F;
  --espresso:#151517;
  --cream:#F2EFE9;
  --cream-2:#E6E2DA;
  --paper:#F7F5F0;
  --gold:#C1A15C;
  --gold-2:#D2B579;
  --gold-3:#E9D9AC;
  --gold-deep:#977B43;
  --ivory:#FCFAF5;
  --midnight:#1E2E44;
  --taupe:#7A7973;
  --taupe-2:#5B5A54;
  --line-l:rgba(18,18,20,.12);

  --serif:'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --body:'Jost', 'Helvetica Neue', Arial, sans-serif;
  --sans:'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
  --maxw:1280px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  font-weight:300;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
/* no click/tap focus boxes, but keep keyboard focus rings for accessibility */
a:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none}
em{font-style:italic}
::selection{background:var(--gold);color:var(--paper)}

/* ── shared type ── */
.eyebrow{
  font-family:var(--sans);
  font-weight:400;
  font-size:10.5px;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.2rem;
}
.eyebrow--light{color:var(--gold-3)}
.stars{color:var(--gold-3);letter-spacing:.3em;font-size:1.2rem}
.section{padding:clamp(5rem,10vw,9rem) clamp(1.4rem,5vw,5rem)}
.section__head{max-width:680px;margin:0 auto 66px;text-align:center}
.section__title{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(36px,4.6vw,58px);
  line-height:1.04;
  letter-spacing:.005em;
  text-transform:uppercase;
}
.section__title em{color:var(--gold-deep);text-transform:none;font-style:italic;font-weight:400}
.section__title--light{color:var(--ivory)}
.section__title--light em{color:var(--gold-3)}
.section__lede{
  margin-top:6px;
  font-size:17px;
  color:var(--taupe-2);
}
.section__lede--light{color:var(--cream-2);opacity:.8}

/* ── buttons ── */
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-size:.74rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  padding:1.05em 2.4em;
  border:1px solid var(--gold);
  transition:all .5s var(--ease);
  cursor:pointer;
  background:transparent;
}
.btn--solid{background:var(--gold);color:#1b140b;border-color:var(--gold)}
.btn--solid:hover{background:var(--gold-2);border-color:var(--gold-2);color:#1b140b}
.btn--ghost{color:var(--gold-deep)}
.btn--ghost:hover{background:var(--gold);color:var(--paper)}
.btn--light{color:var(--cream);border-color:var(--gold-3)}
.btn--light:hover{background:var(--gold-3);color:var(--ink)}

.link-arrow{
  font-family:var(--sans);
  font-size:.72rem;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold-deep);
  display:inline-flex;
  gap:.6em;
  align-items:center;
}
.link-arrow span{transition:transform .4s var(--ease)}
.link-arrow:hover span{transform:translateX(6px)}

.ornament{display:flex;align-items:center;justify-content:center;gap:16px;color:var(--gold);font-size:13px;margin:16px auto 22px;letter-spacing:0}
.ornament::before,.ornament::after{content:"";width:60px;height:1px;background:var(--gold);opacity:.5}
.ornament span{opacity:.9}
.it{font-family:var(--serif);font-style:italic;font-weight:400;text-transform:none;color:var(--gold-3)}

/* ═══ RIBBON (static) ═══ */
.ribbon{
  background:#0B0B0C;
  color:var(--gold-3);
  text-align:center;
  padding:.95rem 1rem;
  font-family:var(--sans);
  font-size:.66rem;
  font-weight:400;
  letter-spacing:.32em;
  text-transform:uppercase;
}
@media(max-width:640px){.ribbon{font-size:.56rem;letter-spacing:.22em}}

/* ═══ NAV (solid · sticky · generous) ═══ */
.nav{
  position:sticky;top:0;z-index:60;
  background:#0B0B0C;
  border-top:1px solid rgba(228,212,168,.14);
  border-bottom:1px solid rgba(228,212,168,.14);
  transition:box-shadow .4s var(--ease);
}
.nav__inner{
  max-width:var(--maxw);margin:0 auto;
  padding:1.65rem clamp(1.4rem,5vw,3rem);
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:1rem;
}
.nav__links{display:flex;gap:2.3rem;align-items:center}
.nav__links--right{justify-content:flex-end}
.nav__links a{
  font-family:var(--sans);font-size:.74rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--cream);opacity:.82;transition:opacity .3s,color .3s;
  position:relative;padding-bottom:2px;
}
.nav__links a:hover{opacity:1;color:var(--gold-3)}
.nav__links a::after{content:'';position:absolute;left:0;bottom:-2px;width:0;height:1px;background:var(--gold-3);transition:width .4s var(--ease)}
.nav__links a:hover::after{width:100%}
.nav__cta{border:1px solid var(--gold-3);padding:.78em 1.6em!important;border-radius:1px;color:var(--gold-3)!important}
.nav__cta:hover{background:var(--gold-3);color:var(--ink)!important}
.nav__cta::after{display:none}
.nav__brand{justify-self:center}
.nav__wordmark{
  font-family:var(--serif);font-weight:500;text-transform:uppercase;
  letter-spacing:.36em;font-size:1.8rem;color:var(--cream);white-space:nowrap;
}
.nav.scrolled{box-shadow:0 14px 34px -22px rgba(0,0,0,.9)}

.nav__toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer}
.nav__toggle span{width:26px;height:1.5px;background:var(--cream);transition:.3s}

/* mobile menu */
.menu{
  position:fixed;inset:0;z-index:55;background:var(--ink);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.6rem;
  overflow-y:auto;padding:1.5rem;
  transform:translateY(-100%);transition:transform .6s var(--ease);
}
.menu.open{transform:translateY(0)}
.menu__wordmark{font-family:var(--serif);font-weight:500;text-transform:uppercase;letter-spacing:.3em;font-size:1.4rem;color:var(--gold-3);margin-bottom:1rem}
.menu a{font-family:var(--serif);font-size:1.8rem;color:var(--cream);letter-spacing:.02em}
.menu a:hover{color:var(--gold-3)}
.menu__cta{font-family:var(--sans)!important;font-size:.8rem!important;letter-spacing:.24em;text-transform:uppercase;border:1px solid var(--gold-3);padding:.9em 2em;margin-top:1rem}

/* ═══ HERO — dark editorial split ═══ */
.hero{
  position:relative;min-height:620px;min-height:calc(100svh - 118px);
  display:grid;grid-template-columns:1.05fr 1fr;background:var(--ink);overflow:hidden;
}
.hero__left{
  position:relative;z-index:2;display:flex;align-items:center;
  padding:clamp(3rem,7vw,5rem) clamp(1.6rem,5vw,4.5rem);
  background:
    radial-gradient(90% 60% at 20% 30%,rgba(177,138,78,.10),transparent 70%),
    var(--ink);
}
.hero__left-inner{max-width:540px;margin-left:auto;width:100%}
.hero__title{font-family:var(--serif);margin:.4rem 0 0;line-height:.92}
.hero__title-bold{
  display:block;font-weight:700;text-transform:uppercase;letter-spacing:.005em;
  color:var(--ivory);font-size:clamp(3rem,6.4vw,5.7rem);
}
.hero__title-italic{
  display:block;font-style:italic;font-weight:300;
  color:var(--gold-3);font-size:clamp(3rem,6.4vw,5.7rem);margin-top:.06em;
}
.hero__sub{margin-top:1.9rem;font-size:1.12rem;line-height:1.55;color:var(--cream-2);opacity:.82;max-width:440px}
.hero__actions{margin-top:2.4rem;display:flex;gap:1rem;flex-wrap:wrap}
.hero__proof{margin-top:2.6rem;display:flex;align-items:center;gap:.9rem;flex-wrap:wrap}
.hero__proof .stars{font-size:.95rem}
.hero__proof-txt{font-family:var(--sans);font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--cream-2);opacity:.7}

.hero__right{position:relative;overflow:hidden;background:#0d0d0e}
.hero__right img,.hero__right video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 30%;filter:brightness(.94) saturate(.96) contrast(1.02)}
.hero__poster{z-index:0}
.hero__vid{z-index:1}

/* celestial arrow accent (falling-star pointing down) */
.celestial{display:inline-block;margin-bottom:1.6rem;line-height:0;opacity:.92;transition:opacity .4s}
.celestial:hover{opacity:1}
.celestial svg{width:34px;height:74px;animation:arrowbob 2.6s var(--ease) infinite}
.celestial__star{fill:var(--gold);filter:drop-shadow(0 0 7px rgba(180,151,95,.45))}
.celestial__spark{fill:var(--gold);opacity:.8}
.celestial__line,.celestial__tip{fill:none;stroke:var(--gold);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round}
.celestial__line{opacity:.7}
@keyframes arrowbob{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}
.hero__right-scrim{position:absolute;inset:0;z-index:3;
  background:
    linear-gradient(90deg,var(--ink) 0%,rgba(13,13,14,.9) 7%,rgba(13,13,14,.5) 20%,rgba(13,13,14,.16) 34%,transparent 46%),
    linear-gradient(180deg,rgba(13,13,14,.7) 0%,rgba(13,13,14,.2) 16%,transparent 30%),
    radial-gradient(120% 90% at 70% 60%,transparent 55%,rgba(13,13,14,.5) 100%);
}
/* blurred feather where the black panel meets the video */
.hero__blend{position:absolute;top:0;left:0;bottom:0;width:32%;z-index:2;pointer-events:none;
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  -webkit-mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.7) 35%,transparent 100%);
          mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.7) 35%,transparent 100%);
}

@media(max-width:820px){
  .hero{grid-template-columns:1fr}
  .hero__right{position:absolute;inset:0;z-index:0}
  /* photo stays clean — the copy now sits on its own black strip below */
  .hero__right img,.hero__right video{filter:brightness(.94) saturate(1) contrast(1.02)}
  .hero__blend{display:none}
  .hero__right-scrim{
    background:linear-gradient(180deg,rgba(13,13,14,.28) 0%,rgba(13,13,14,.04) 20%,transparent 45%);
  }
  /* solid black strip hugging the bottom, holding all the hero copy */
  .hero__left{
    display:block;
    align-self:end;                 /* strip is only as tall as its content */
    z-index:2;
    background:linear-gradient(180deg,
      rgba(13,13,14,0) 0,
      rgba(13,13,14,.86) 9%,
      var(--ink) 22%,
      var(--ink) 100%);
    padding:1.5rem clamp(1.4rem,6vw,2.2rem) 1.25rem;
    text-align:center;              /* centred headline + eyebrow on phones */
  }
  /* phones: less is more — headline + buttons only */
  .hero__sub{display:none}          /* paragraph lives on desktop only */
  .hero .eyebrow{display:none}      /* "Tarot · Healing · Ubud, Bali" — desktop only */
  .hero__seal{display:none}         /* keep the strip uncluttered on phones */
  .hero__left-inner{margin:0;max-width:none}
  .hero__sub{max-width:none}
}

/* ═══ DRAW A CARD (white) ═══ */
.draw{background:#fff;text-align:center;position:relative;overflow:hidden}
.draw__head{position:relative;max-width:760px;margin:0 auto 3.4rem}

/* fanned, overlapping deck */
.deck{position:relative;display:flex;justify-content:center;align-items:flex-start;padding-top:2rem;min-height:320px;perspective:1600px}
.tcard{
  --rot:0deg;--c1:#20344f;--c2:#0f1a2b;
  position:relative;width:158px;height:262px;margin:0 -20px;padding:0;border:none;background:none;
  cursor:pointer;outline:none;transform:rotate(var(--rot));
  transition:transform .6s var(--ease),opacity .5s var(--ease),filter .5s var(--ease);
}
.tcard:nth-child(1){--rot:-12deg;margin-top:14px}
.tcard:nth-child(2){--rot:-6deg;margin-top:3px}
.tcard:nth-child(3){--rot:0deg}
.tcard:nth-child(4){--rot:6deg;margin-top:3px}
.tcard:nth-child(5){--rot:12deg;margin-top:14px}
/* navy & hot pink palette (left → right across the fan) */
.tcard--oxblood {--c1:#030059;--c2:#010030} /* navy */
.tcard--midnight{--c1:#000182;--c2:#000152} /* blue */
.tcard--amethyst{--c1:#fdb3df;--c2:#f68fcb} /* light pink */
.tcard--teal    {--c1:#fc68b6;--c2:#eb4fa0} /* medium pink */
.tcard--gold    {--c1:#ff3d96;--c2:#e01f78} /* hot pink */

/* white glow outline from behind the card */
.tcard__halo{
  position:absolute;inset:-3px;border-radius:15px;z-index:0;pointer-events:none;
  box-shadow:0 0 16px 3px rgba(13,13,14,.10);opacity:.6;
  transition:opacity .5s var(--ease),box-shadow .5s var(--ease);
}
.tcard:hover{z-index:9;transform:rotate(var(--rot)) translateY(-22px)}
.tcard:hover .tcard__halo,.tcard:focus-visible .tcard__halo{opacity:1;box-shadow:0 0 34px 8px rgba(180,151,95,.55)}

.tcard__inner{
  position:absolute;inset:0;border-radius:12px;transform-style:preserve-3d;
  transition:transform .9s var(--ease);box-shadow:0 18px 40px -22px rgba(0,0,0,.85);
}
.tcard.flipped .tcard__inner{transform:rotateY(180deg)}
.tcard__back,.tcard__face{
  position:absolute;inset:0;border-radius:12px;border:1px solid var(--gold);
  -webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;
  box-shadow:inset 0 0 0 3px rgba(227,205,155,.16);
}
.tcard__back{
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.95) 0 1px, transparent 1.7px),
    radial-gradient(circle at 33% 63%, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 55% 30%, rgba(255,247,225,.95) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 71%, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 22%, rgba(255,247,225,.9) 0 1px, transparent 1.6px),
    radial-gradient(circle at 24% 86%, rgba(255,255,255,.72) 0 1px, transparent 1.4px),
    radial-gradient(circle at 62% 89%, rgba(255,247,225,.85) 0 1px, transparent 1.5px),
    radial-gradient(circle at 45% 12%, rgba(255,255,255,.8) 0 1px, transparent 1.4px),
    radial-gradient(circle at 90% 54%, rgba(255,255,255,.72) 0 1px, transparent 1.4px),
    radial-gradient(circle at 9% 52%, rgba(255,247,225,.8) 0 1px, transparent 1.4px),
    radial-gradient(circle at 78% 43%, rgba(255,255,255,.7) 0 1px, transparent 1.3px),
    radial-gradient(circle at 40% 44%, rgba(255,255,255,.6) 0 1px, transparent 1.3px),
    linear-gradient(160deg,var(--c1),var(--c2));
  display:flex;align-items:center;justify-content:center;
}
/* soft sweeping shine */
.tcard__back::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(115deg,transparent 34%,rgba(255,255,255,.35) 50%,transparent 66%);
  background-size:260% 100%;
  animation:cardshine 5s linear infinite;
}
.tcard:nth-child(2) .tcard__back::before{animation-delay:1s}
.tcard:nth-child(3) .tcard__back::before{animation-delay:2s}
.tcard:nth-child(4) .tcard__back::before{animation-delay:3s}
.tcard:nth-child(5) .tcard__back::before{animation-delay:4s}
@keyframes cardshine{0%{background-position:130% 0}100%{background-position:-30% 0}}
.tcard__mark{position:relative;color:var(--gold-3);font-size:1.7rem;opacity:.92;text-shadow:0 0 14px rgba(227,205,155,.5)}
.tcard__face{
  transform:rotateY(180deg);background:linear-gradient(165deg,var(--c1),var(--c2));
  display:flex;align-items:center;justify-content:center;padding:5px;
}
.tcard__art{width:100%;height:100%;object-fit:cover;border-radius:8px;display:block;
  box-shadow:0 2px 10px rgba(0,0,0,.4)}

/* selected + locked states */
.tcard.selected{transform:rotate(0deg) translateY(-16px);z-index:12}
.tcard.selected .tcard__halo{opacity:1;box-shadow:0 0 44px 11px rgba(180,151,95,.6)}
.deck.locked .tcard{cursor:default}
.deck.locked .tcard:not(.selected){opacity:.34;filter:saturate(.7) brightness(1.02)}
.deck.locked .tcard:not(.selected):hover{transform:rotate(var(--rot));z-index:auto}
.deck.locked .tcard:not(.selected):hover .tcard__halo{opacity:.6;box-shadow:0 0 16px 3px rgba(13,13,14,.10)}

/* meaning panel below */
.reveal-card{margin:3rem auto 0;max-width:440px;opacity:0;transform:translateY(20px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal-card[hidden]{display:none}
.reveal-card.show{opacity:1;transform:translateY(0)}
.rc__inner{
  border:1px solid var(--gold);padding:2.4rem 2rem;border-radius:8px;
  background:var(--paper);
  box-shadow:inset 0 0 0 5px rgba(180,151,95,.12),0 26px 50px -32px rgba(13,13,14,.45);
}
.rc__no{font-family:var(--serif);font-style:italic;color:var(--gold-deep);font-size:1.3rem;letter-spacing:.1em}
.rc__name{font-family:var(--serif);font-weight:500;color:var(--ink);font-size:2.3rem;margin:.3rem 0 .8rem}
.rc__key{font-family:var(--sans);font-size:.68rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:1.1rem}
.rc__line{color:var(--taupe-2);font-style:italic;font-size:1.1rem;line-height:1.5;margin-bottom:1.8rem}

@media(max-width:560px){
  .deck{padding-top:1.4rem;min-height:250px}
  .tcard{width:108px;height:180px;margin:0 -20px}
  .tcard:nth-child(1){--rot:-10deg;margin-top:12px}
  .tcard:nth-child(2){--rot:-5deg;margin-top:3px}
  .tcard:nth-child(4){--rot:5deg;margin-top:3px}
  .tcard:nth-child(5){--rot:10deg;margin-top:12px}
  .tcard:hover{transform:rotate(var(--rot))}
  .tcard__face{padding:4px}
  .tcard.selected{transform:rotate(0deg) translateY(-14px)}
}

/* ═══ INVITATION ═══ */
.invitation{background:var(--cream);text-align:center;border-top:1px solid rgba(193,161,92,.16)}
.invitation__inner{max-width:900px;margin:0 auto}
.statement{
  font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:clamp(1.8rem,3.7vw,2.9rem);line-height:1.32;color:var(--ink);
}
.statement em{color:var(--gold-deep);font-weight:500}
.statement__small{font-family:var(--serif);font-style:italic;font-weight:400;font-size:1.35rem;color:var(--taupe-2)}

/* ═══ SOCIAL PROOF BAR (white) ═══ */
.proof{background:#fff;border-bottom:1px solid var(--line-l)}
.proof__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr)}
.proof__cell{
  display:flex;align-items:center;justify-content:center;gap:.7rem;
  padding:1.5rem 1.1rem;border-right:1px solid var(--line-l);text-align:left;
  font-family:var(--sans);font-size:.68rem;font-weight:400;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink);line-height:1.4;
}
.proof__cell:last-child{border-right:0}
.proof__cell svg{width:20px;height:20px;stroke:var(--gold);fill:none;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;flex:none}
.proof__stars{color:var(--gold);letter-spacing:.1em;font-size:.82rem;flex:none}

/* ═══ TRUST BAR ═══ */
.trust{background:var(--cream);color:var(--ink)}
.trust__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr)}
.trust__cell{display:flex;align-items:center;gap:1rem;justify-content:center;padding:1.9rem 1.5rem;border-right:1px solid var(--line-l)}
.trust__cell:last-child{border-right:0}
.trust__cell svg{width:26px;height:26px;stroke:var(--gold);fill:none;stroke-width:1.3;flex:none}
.trust__t{font-family:var(--sans);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ink);line-height:1.5}
.trust__t small{display:block;font-size:.82rem;letter-spacing:.02em;color:var(--taupe-2);text-transform:none;margin-top:2px;font-family:var(--body)}

/* ═══ COLLECTIONS ═══ */
.cols{background:var(--cream);border-top:1px solid rgba(193,161,92,.16)}
.cols__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.col{position:relative;aspect-ratio:3/4.1;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;text-align:center}
.col img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .9s var(--ease)}
.col::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(12,12,13,.12) 0%,rgba(12,12,13,.34) 45%,rgba(12,12,13,.82) 100%);transition:.5s}
.col:hover img{transform:scale(1.06)}
.col:hover::after{background:linear-gradient(180deg,rgba(12,12,13,.24) 0%,rgba(12,12,13,.46) 45%,rgba(12,12,13,.9) 100%)}
.col__in{position:relative;z-index:2;padding:0 20px 40px;color:#fff}
.col__k{font-family:var(--sans);font-size:9.5px;letter-spacing:.32em;text-transform:uppercase;color:var(--gold-2)}
.col__h{font-family:var(--serif);font-weight:500;font-size:25px;color:#fff;margin:10px 0 16px;line-height:1.05;text-transform:uppercase;letter-spacing:.005em}
.col__now{font-family:var(--sans);font-size:10px;letter-spacing:.24em;text-transform:uppercase;color:#fff;border-bottom:1px solid var(--gold);padding-bottom:4px}

/* ═══ FEATURE SPLIT ═══ */
.feat{background:var(--ink-2);display:grid;grid-template-columns:1fr 1fr;align-items:stretch}
.feat__text{padding:clamp(4rem,8vw,7rem) clamp(1.6rem,5vw,4.5rem);display:flex;flex-direction:column;justify-content:center}
.feat__title{font-family:var(--serif);font-weight:600;font-size:clamp(2.2rem,3.9vw,3.4rem);text-transform:uppercase;color:var(--ivory);margin:1.2rem 0 .4rem;line-height:1.02;letter-spacing:.01em}
.feat__title .it{display:block}
.feat__text p{color:var(--cream-2);opacity:.72;font-size:1.04rem;margin-top:1rem;max-width:460px}
.feat__text .btn{margin-top:2.2rem;align-self:flex-start}
.feat__img{background-position:center 30%;background-size:cover;background-repeat:no-repeat;min-height:520px}

/* ═══ WAYS (Experience formats) ═══ */
.ways{background:var(--paper);border-top:1px solid rgba(193,161,92,.16)}
.ways__grid{max-width:900px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:1.8rem}
.way{background:#fff;border:1px solid var(--line-l);display:flex;flex-direction:column;transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.way:hover{transform:translateY(-6px);box-shadow:0 30px 60px -34px rgba(20,14,8,.4)}
.way__img{aspect-ratio:4/3;overflow:hidden;position:relative}
.way__img img{width:100%;height:100%;object-fit:cover;transition:.8s var(--ease)}
.way:hover .way__img img{transform:scale(1.05)}
.way__tag{position:absolute;top:14px;left:14px;background:rgba(13,13,14,.85);color:var(--gold-3);font-family:var(--sans);font-size:.58rem;letter-spacing:.22em;text-transform:uppercase;padding:7px 13px}
.way__body{padding:2rem 2rem 2.2rem;text-align:center;display:flex;flex-direction:column;align-items:center;gap:.5rem}
.way__h{font-family:var(--serif);font-weight:500;font-size:1.8rem;color:var(--ink);text-transform:uppercase}
.way__place{font-family:var(--sans);font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--taupe-2)}
.way__body p{color:var(--taupe-2);font-size:1rem;margin:.5rem 0}
.way__price{font-family:var(--sans);font-size:.64rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:.5rem}
.way__book{font-family:var(--sans);font-size:.66rem;letter-spacing:.22em;text-transform:uppercase;color:var(--ink);border:1px solid var(--ink);padding:.9em 2em;transition:.35s var(--ease)}
.way__book:hover{background:var(--ink);color:var(--cream)}

/* ═══ QUOTE BAND ═══ */
.qband{position:relative;text-align:center;padding:clamp(6rem,12vw,10rem) 1.5rem;color:#fff;overflow:hidden}
.qband__bg{position:absolute;inset:0;background-position:center 30%;background-size:cover}
.qband__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,11,12,.74),rgba(11,11,12,.66))}
.qband__in{position:relative;max-width:840px;margin:0 auto}
.qband__mark{font-family:var(--serif);font-size:4rem;color:var(--gold-3);line-height:0;height:2rem}
.qband blockquote{font-family:var(--serif);font-weight:400;font-style:italic;font-size:clamp(1.5rem,2.9vw,2.1rem);line-height:1.44;color:#fff}
.qband__who{font-family:var(--sans);font-size:.66rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold-3);margin-top:1.8rem}

/* ═══ MENTORSHIP ═══ */
.mentor{position:relative;padding:clamp(5rem,10vw,9rem) 1.5rem;overflow:hidden}
.mentor__bg{position:absolute;inset:0;background-position:center 25%;background-size:cover}
.mentor__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,11,12,.9),rgba(11,11,12,.82))}
.mentor__box{position:relative;max-width:760px;margin:0 auto;text-align:center;border:1px solid var(--gold);padding:clamp(2.6rem,5vw,4.4rem) clamp(1.6rem,4vw,3.6rem);background:rgba(13,13,14,.5)}
.mentor__box::before{content:"";position:absolute;inset:9px;border:1px solid rgba(227,205,155,.22);pointer-events:none}
.mentor__title{font-family:var(--serif);font-weight:600;font-size:clamp(2rem,4.6vw,3.4rem);text-transform:uppercase;color:var(--ivory);margin:1rem 0 .2rem;line-height:1.05}
.mentor__title .it{display:inline}
.mentor .ornament{margin:1.2rem auto 1.6rem}
.mentor__p{color:var(--cream-2);opacity:.78;font-size:1.08rem;max-width:560px;margin:0 auto 1.4rem}
.mentor__marks{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem 1.6rem;margin:1.6rem 0 2.2rem}
.mentor__marks span{font-family:var(--sans);font-size:.64rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-3)}
.mentor__marks span::before{content:"✦";margin-right:9px;color:var(--gold)}
.mentor__fine{font-family:var(--sans);font-size:.6rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cream-2);opacity:.5;margin-top:1.5rem}

/* ═══ REVIEWS (cards) ═══ */
.revs{background:var(--cream);border-top:1px solid rgba(193,161,92,.16)}
.revs__top{text-align:center;margin-bottom:clamp(2.6rem,5vw,4rem)}
.revs__top .stars{color:var(--gold);font-size:1.2rem;letter-spacing:.16em}
.revs__meta{font-family:var(--sans);font-size:.66rem;letter-spacing:.24em;text-transform:uppercase;color:var(--taupe-2);margin-top:.6rem}
.revs__top .section__title{color:var(--ink);margin-top:1rem;text-transform:uppercase}
.revs__grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.rev{background:#fff;border:1px solid var(--line-l);padding:2.6rem 2.2rem;text-align:center}
.rev__m{font-family:var(--serif);font-size:3rem;color:var(--gold);line-height:0;height:1.6rem}
.rev p{font-family:var(--sans);font-weight:300;font-style:normal;font-size:1.02rem;line-height:1.75;color:var(--ink)}
.rev__who{font-family:var(--sans);font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--taupe-2);margin-top:1.4rem}

/* ═══ GALLERY STRIP ═══ */
.gstrip{padding:0}
.gstrip__grid{display:grid;grid-template-columns:repeat(4,1fr)}
.gstrip__cell{position:relative;aspect-ratio:3/4;overflow:hidden}
.gstrip__cell img{width:100%;height:100%;object-fit:cover;transition:.8s var(--ease);filter:saturate(.94) brightness(.9)}
.gstrip__cell:hover img{transform:scale(1.06);filter:saturate(1) brightness(1)}

/* ═══ NEWSLETTER ═══ */
.news{background:var(--espresso);color:var(--cream)}
.news__inner{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.3fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.news__title{font-family:var(--serif);font-weight:600;font-size:clamp(2rem,4vw,3rem);text-transform:uppercase;color:var(--ivory);margin-top:.8rem}
.news__p{color:var(--cream-2);opacity:.66;margin-top:.9rem;max-width:420px}
.news__form{display:flex;margin-top:2rem;max-width:460px;border:1px solid rgba(227,205,155,.22)}
.news__form input{flex:1;background:transparent;border:0;padding:1rem 1.2rem;color:var(--cream);font-family:var(--sans);font-size:.78rem;letter-spacing:.08em;outline:none}
.news__form input::placeholder{color:rgba(242,235,221,.45);text-transform:uppercase;letter-spacing:.16em;font-size:.66rem}
.news__form button{background:var(--gold);color:#17120c;border:0;padding:0 1.9rem;font-family:var(--sans);font-size:.66rem;letter-spacing:.22em;text-transform:uppercase;cursor:pointer;transition:.35s}
.news__form button:hover{background:var(--gold-3)}
.news__ok{margin-top:1.4rem;color:var(--gold-3);font-style:italic;font-size:1.1rem}
.news__badge{justify-self:center}
.news__badge svg{width:150px;height:150px}
.news__badge .bt{font-family:var(--sans);font-size:8px;letter-spacing:.3em;fill:var(--gold-3);text-transform:uppercase}

/* ═══ DARK ENERGY CLEARING (light) ═══ */
.clearing{position:relative;overflow:hidden;text-align:center;background:#fff}
.clearing__glow{position:absolute;left:50%;top:-16%;transform:translateX(-50%);
  width:min(820px,94%);height:480px;pointer-events:none;
  background:radial-gradient(ellipse at center, rgba(180,151,95,.12), transparent 66%)}
.clearing__inner{position:relative;max-width:760px;margin:0 auto}
.clearing__cross{display:block;width:34px;height:auto;margin:0 auto 1.4rem;color:var(--gold);
  filter:drop-shadow(0 0 10px rgba(180,151,95,.35))}
/* on white: dark headings, warm gold accents */
.clearing .eyebrow{color:var(--gold-deep)}
.clearing .section__title{color:var(--ink)}
.clearing .section__title em{color:var(--gold-deep)}
/* one uniform line */
.clearing__title{white-space:nowrap;font-size:clamp(1.7rem,7vw,3.6rem);line-height:1.05}
.clearing__lede{margin:1.6rem auto 0;max-width:600px;color:var(--taupe-2);font-size:1.12rem;line-height:1.72}
.clearing__signs{position:relative;margin:2.6rem auto 0;max-width:640px;
  border:1px solid rgba(180,151,95,.32);border-radius:10px;
  padding:2.4rem 2.2rem 2.6rem;background:var(--paper)}
.clearing__signs::before{content:"";position:absolute;inset:7px;border:1px solid rgba(180,151,95,.18);border-radius:6px;pointer-events:none}
.clearing__signs-head{font-family:var(--sans);font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:1.6rem}
.signs{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:.9rem 2rem;text-align:left}
.signs li{position:relative;padding-left:1.6rem;color:var(--taupe-2);font-size:1.02rem;line-height:1.45}
.signs li::before{content:"✦";position:absolute;left:0;top:.02em;color:var(--gold);font-size:.78rem}
.clearing__reassure{margin:2.6rem auto 2.2rem;max-width:600px;font-family:var(--serif);font-style:italic;font-weight:400;font-size:1.4rem;line-height:1.5;color:var(--ink)}
.clearing__reassure em{color:var(--gold-deep)}
.clearing__soft{margin-top:1.4rem;font-size:.95rem;color:var(--taupe-2)}
.clearing__soft a{color:var(--gold-deep);border-bottom:1px solid rgba(180,151,95,.45)}
.clearing__soft a:hover{color:var(--ink)}
@media(max-width:560px){
  .signs{grid-template-columns:1fr;gap:.85rem}
  .clearing__signs{padding:2rem 1.4rem 2.2rem}
  .clearing__reassure{font-size:1.2rem}
}

/* ═══ FINAL CTA ═══ */
.final{position:relative;text-align:center;padding:clamp(6rem,13vw,11rem) 1.5rem;color:#fff;overflow:hidden}
.final__bg{position:absolute;inset:0;background-position:center 40%;background-size:cover}
.final__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,11,12,.8),rgba(11,11,12,.72))}
.final__in{position:relative;max-width:720px;margin:0 auto}
.final__title{font-family:var(--serif);font-weight:700;font-size:clamp(2.6rem,5.6vw,4.6rem);text-transform:uppercase;color:#fff;line-height:.98;margin:.4rem 0}
.final__title .it{display:block;font-weight:300}
.final__p{color:rgba(255,255,255,.82);margin:1.2rem 0 2rem;font-size:1.1rem}

/* ═══ FOOTER ═══ */
.footer{background:var(--ink);color:var(--cream);text-align:center;padding:clamp(4rem,8vw,6rem) 1.4rem 2.4rem;position:relative;overflow:hidden}
.footer__glow{position:absolute;top:-40%;left:50%;transform:translateX(-50%);width:120%;height:80%;background:radial-gradient(ellipse at center,rgba(177,138,78,.18),transparent 60%);pointer-events:none}
.footer__inner{position:relative;max-width:680px;margin:0 auto;display:flex;flex-direction:column;align-items:center}
.footer__logo{height:88px;margin-bottom:1.4rem}
.footer__tag{font-family:var(--sans);font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;color:var(--cream-2);opacity:.75;line-height:2}
.footer__connect{font-family:var(--serif);font-style:italic;font-size:1.7rem;color:var(--gold-3);margin:2.6rem 0 1.4rem}
.socials{display:flex;gap:1.1rem;margin-bottom:2.4rem}
.socials a{
  width:48px;height:48px;border:1px solid rgba(227,205,155,.4);border-radius:50%;
  display:flex;align-items:center;justify-content:center;color:var(--gold-3);
  transition:all .45s var(--ease);
}
.socials a:hover{background:var(--gold-3);color:var(--ink);transform:translateY(-4px)}
.socials svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.4}
.footer__hand{font-family:var(--serif);font-style:italic;color:var(--cream-2);opacity:.7;margin-bottom:2.8rem}
.footer__base{width:100%;border-top:1px solid rgba(227,205,155,.15);padding-top:1.8rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem;
  font-family:var(--sans);font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--cream-2);opacity:.6}

/* ═══ GOLD HAIRLINE FRAMING & PRICE LIST ═══ */
/* framed photos — thin gold rule inset over the image */
.feat__img{position:relative}
.way__img::after,.feat__img::after{content:"";position:absolute;pointer-events:none;z-index:2;border:1px solid rgba(233,217,172,.5)}
.way__img::after{inset:8px}
.feat__img::after{inset:18px;border-color:rgba(233,217,172,.32)}
/* collection tiles — gold frame appears on hover */
.col::before{content:"";position:absolute;inset:12px;z-index:3;pointer-events:none;border:1px solid rgba(233,217,172,0);transition:border-color .5s var(--ease)}
.col:hover::before{border-color:rgba(233,217,172,.55)}
/* gallery — gold frame on hover */
.gstrip__cell::after{content:"";position:absolute;inset:10px;z-index:2;pointer-events:none;border:1px solid rgba(233,217,172,0);transition:border-color .5s var(--ease)}
.gstrip__cell:hover::after{border-color:rgba(233,217,172,.5)}
/* reading prices — couture price list with dotted leaders */
.way__prices{width:100%;max-width:290px;margin:.3rem 0 1.1rem}
.pl{display:flex;align-items:baseline;gap:.6rem;font-family:var(--sans);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--taupe-2);margin:.36rem 0}
.pl__n{white-space:nowrap}
.pl__d{flex:1;border-bottom:1px dotted rgba(151,123,67,.55);transform:translateY(-3px)}
.pl__p{white-space:nowrap;color:var(--gold-deep);letter-spacing:.08em}

/* ═══ CELESTIAL GOLD ACCENTS ═══ */
/* twinkling sparkles */
.spark{position:absolute;pointer-events:none;color:var(--gold-3);opacity:.2;z-index:2;line-height:1;
  text-shadow:0 0 10px rgba(233,217,172,.55);animation:twinkle 4.6s var(--ease) infinite}
@keyframes twinkle{0%,100%{opacity:.16;transform:scale(.72) rotate(0deg)}50%{opacity:.92;transform:scale(1.12) rotate(18deg)}}

/* slow-rotating gold seal */
.seal{width:114px;height:114px;position:relative}
.seal svg{width:100%;height:100%;overflow:visible}
.seal__ring{animation:sealspin 30s linear infinite;transform-origin:60px 60px}
.seal__txt{font-family:var(--sans);font-size:8.1px;letter-spacing:.24em;fill:var(--gold-3);text-transform:uppercase}
.seal__c{fill:none;stroke:rgba(233,217,172,.5);stroke-width:1}
.seal__star{fill:var(--gold-3);filter:drop-shadow(0 0 6px rgba(233,217,172,.75))}
@keyframes sealspin{to{transform:rotate(360deg)}}
/* floating gold ✦ — decorative overlay, must not take layout space */
.hero__sparkles{position:absolute;inset:0;z-index:4;pointer-events:none}
.hero__sparkles .spark{
  position:absolute;color:var(--gold-3);line-height:1;
  text-shadow:0 0 10px rgba(228,212,168,.55);
  animation:twinkle 4.5s ease-in-out infinite;
}
@keyframes twinkle{0%,100%{opacity:.2;transform:scale(.85)}50%{opacity:.85;transform:scale(1.1)}}
@media(max-width:820px){.hero__sparkles{display:none}}

.hero__seal{position:absolute;z-index:5;right:clamp(1.2rem,4vw,2.8rem);bottom:clamp(1.2rem,4vw,2.4rem)}
@media(max-width:820px){.hero__seal{right:1rem;bottom:1rem}.seal{width:82px;height:82px}}

/* ═══ REVEAL ANIMATION ═══ */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
.reveal.in{opacity:1;transform:translateY(0)}

/* ═══════════════════════════════════════════════
   NEED A MIRACLE? — prayer card
   White-and-ivory prayer card · antique-gold rule
   old European prayer card meets a Ralph Lauren invitation
   ═══════════════════════════════════════════════ */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.prayer{background:var(--paper)}
.prayer__card{
  position:relative;
  max-width:720px;
  margin:0 auto;
  text-align:center;
  padding:clamp(2.8rem,6vw,4.8rem) clamp(1.5rem,5vw,4rem);
  background:linear-gradient(180deg,#FFFEFB 0%,var(--ivory) 60%,#FBF8F1 100%);
  border:1px solid var(--gold);
  box-shadow:0 40px 90px -55px rgba(70,52,18,.45);
  overflow:hidden;
}
/* the inset second rule — the classic prayer-card frame */
.prayer__card::before{
  content:"";position:absolute;inset:11px;
  border:1px solid rgba(193,161,92,.4);
  pointer-events:none;z-index:1;
}
.prayer__card > *{position:relative;z-index:2}

.prayer__stars{position:absolute;inset:0;z-index:1;pointer-events:none}
.prayer__stars .spark{text-shadow:0 0 8px rgba(210,181,121,.5);color:var(--gold-2)}

.prayer__cross{width:30px;height:auto;color:var(--gold);margin:0 auto .4rem;opacity:.9}
.prayer__eyebrow{margin-bottom:1rem}
.prayer__title{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(34px,4.6vw,52px);
  line-height:1.05;
  letter-spacing:.01em;
  color:var(--ink);
}
.prayer__hand{
  font-family:'Tangerine',cursive;
  font-weight:400;
  font-size:clamp(1.9rem,3.4vw,2.5rem);
  line-height:1.1;
  color:var(--gold-deep);
  margin:.35rem 0 1.9rem;
}
.prayer__intro{max-width:52ch;margin:0 auto;color:var(--taupe-2)}
.prayer__intro p{margin:0 auto 1.1rem}
.prayer__open{margin-top:2.2rem}

/* ── collapsible ── */
.prayer__panel{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  transition:grid-template-rows .6s var(--ease),opacity .5s var(--ease),margin-top .6s var(--ease);
  margin-top:0;
}
.prayer__panel.open{grid-template-rows:1fr;opacity:1;margin-top:2.4rem}
.prayer__panel-inner{overflow:hidden;min-height:0}

.prayer__rule{display:flex;align-items:center;justify-content:center;gap:16px;color:var(--gold);font-size:12px;margin:0 auto 1.8rem}
.prayer__rule::before,.prayer__rule::after{content:"";width:54px;height:1px;background:var(--gold);opacity:.5}
.prayer__q{
  font-family:var(--serif);font-weight:600;
  font-size:clamp(22px,3vw,30px);text-transform:uppercase;letter-spacing:.02em;color:var(--ink);
}
.prayer__qsub{color:var(--taupe-2);font-size:.98rem;margin:.5rem 0 2rem}

/* ── category chips ── */
.prayer__cats{border:0;display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-bottom:2.2rem}
.pcat{
  font-family:var(--sans);
  font-size:.66rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-deep);
  background:transparent;
  border:1px solid var(--gold);
  border-radius:100px;
  padding:.62em 1.15em;
  cursor:pointer;
  transition:all .35s var(--ease);
}
.pcat:hover{background:rgba(193,161,92,.1)}
.pcat.on{background:var(--gold);border-color:var(--gold);color:#fff;box-shadow:0 6px 16px -8px rgba(151,123,67,.6)}

/* ── fields ── */
.prayer__form{max-width:520px;margin:0 auto;text-align:left}
.prayer__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem 1.4rem;margin-top:1.4rem}
.prayer__field{display:flex;flex-direction:column}
.prayer__field--wide{grid-column:1/-1}
.prayer__field label{
  font-family:var(--sans);font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--taupe-2);margin-bottom:.5rem;
}
.prayer__label-note{
  display:inline;font-family:var(--serif);font-style:italic;font-size:.82rem;
  letter-spacing:0;text-transform:none;color:var(--taupe);margin-left:.35rem;
}
.prayer__hint{font-family:var(--serif);font-style:italic;font-size:.9rem;color:var(--taupe);margin:-.15rem 0 .6rem}
.prayer__form input,
.prayer__form textarea{
  font-family:var(--sans);font-size:.95rem;font-weight:300;color:var(--ink);
  background:#fff;border:1px solid var(--line-l);border-radius:2px;
  padding:.85rem 1rem;width:100%;transition:border-color .3s,box-shadow .3s;
}
.prayer__form textarea{resize:vertical;min-height:130px;line-height:1.7}
.prayer__form input:focus,
.prayer__form textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(193,161,92,.14)}
.prayer__form input::placeholder,
.prayer__form textarea::placeholder{color:var(--taupe);opacity:.6}
.prayer__send{display:block;width:100%;margin-top:1.9rem}

/* ── after submission ── */
.prayer__done{padding:1rem 0 .5rem}
.prayer__done-star{font-size:1.6rem;color:var(--gold);margin-bottom:1rem;text-shadow:0 0 14px rgba(210,181,121,.5)}
.prayer__done-title{
  font-family:var(--serif);font-weight:600;font-size:clamp(26px,3.6vw,38px);
  text-transform:uppercase;letter-spacing:.02em;color:var(--ink);
}
.prayer__done-line{font-family:'Tangerine',cursive;font-size:clamp(1.9rem,3.4vw,2.4rem);color:var(--gold-deep);margin:.4rem 0 1.8rem}
.prayer__verse{
  font-family:var(--serif);font-style:italic;font-size:1.2rem;line-height:1.7;
  color:var(--taupe-2);max-width:30ch;margin:0 auto 2rem;
}
.prayer__verse cite{display:block;font-style:normal;font-family:var(--sans);
  font-size:.68rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gold-deep);margin-top:.9rem}
.prayer__home{margin-top:.4rem}

/* face ⇄ blessing swap */
.prayer__card.sent .prayer__face{display:none}

@media(max-width:560px){
  .prayer__grid{grid-template-columns:1fr}
  .prayer__card::before{inset:8px}
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px){
  .cols__grid{grid-template-columns:repeat(2,1fr)}
  .feat{grid-template-columns:1fr}
  .feat__img{min-height:380px;order:-1}
  .ways__grid{grid-template-columns:1fr;max-width:460px}
  .revs__grid{grid-template-columns:1fr;max-width:620px}
  .trust__grid{grid-template-columns:1fr 1fr}
  .trust__cell:nth-child(2){border-right:0}
  .trust__cell:nth-child(1),.trust__cell:nth-child(2){border-bottom:1px solid var(--line-l)}
  .proof__grid{grid-template-columns:1fr 1fr}
  .proof__cell:nth-child(2){border-right:0}
  .proof__cell:nth-child(1),.proof__cell:nth-child(2){border-bottom:1px solid var(--line-l)}
  .news__inner{grid-template-columns:1fr;gap:2.6rem}
  .gstrip__grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  body{font-size:17px}
  .nav__links{display:none}
  .nav__toggle{display:flex}
  .nav__inner{grid-template-columns:auto 1fr auto}
  .nav__toggle{order:0}
  .nav__brand{order:1;justify-self:center}
  .nav__wordmark{font-size:1.14rem;letter-spacing:.24em}
  .cols__grid{grid-template-columns:1fr;max-width:420px}
  .gstrip__grid{grid-template-columns:1fr 1fr}
  .trust__grid{grid-template-columns:1fr}
  .trust__cell{border-right:0;border-bottom:1px solid var(--line-l)!important;justify-content:flex-start;padding-left:2rem}
  .proof__cell{font-size:.6rem;letter-spacing:.1em;gap:.5rem;padding:1.15rem .8rem}
  .proof__cell svg{width:17px;height:17px}
  .mentor__box{padding:2.4rem 1.4rem}
  .footer__base{justify-content:center;text-align:center}
}
/* ═══ PHONE POLISH — slimmer header + tighter hero copy,
       so more of the hero photograph is visible ═══ */
@media(max-width:600px){
  /* reclaim vertical space from the header */
  .ribbon{padding:.62rem .8rem;font-size:.52rem;letter-spacing:.16em}
  .nav__inner{padding:1.05rem clamp(1.2rem,5vw,3rem)}
  .nav__wordmark{font-size:1.2rem;letter-spacing:.26em}

  /* use the full viewport below the header, so the photo gets maximum room */
  .hero{min-height:calc(100svh - 108px)}   /* = ribbon + nav, so the CTAs stay above the fold */
  /* compact the hero copy so the black strip stays low and shallow */
  /* only the headline + CTAs remain, so the headline can breathe */
  .hero__title-bold,.hero__title-italic{font-size:2.35rem}
  /* both CTAs identical width, stacked */
  .hero__actions{margin-top:.8rem;gap:.4rem;flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%;text-align:center;padding:.72em 1rem;font-size:.56rem;letter-spacing:.15em}
}

@media(prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto}
  .reveal{opacity:1;transform:none}
  .hero__vid{display:none}
}
