/* ==========================================================================
   ALMARITA / HYPNOSE — design system
   Tokens: --burgundy --red --ivory --dark-brown (+ gold micro-accent)
   Type: Bebas Neue (display) / IBM Plex Sans (body) / Caveat (extremely limited accent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@400;500;600;700&family=Caveat:wght@600&display=swap');

:root{
  --burgundy:#8B0303;
  --burgundy-deep:#6d0202;
  --red:#ED3131;
  --ivory:#FAF5EE;
  --white:#FFFFFF;
  --ink:#261B18;              /* dark brown — never pure black */
  --ink-soft:rgba(38,27,24,0.68);
  --on-burgundy:#FAF5EE;
  --on-burgundy-soft:rgba(250,245,238,0.72);
  --gold:#B8874A;             /* micro-accent only: numbering, hairline, tiny detail */
  --rule:rgba(38,27,24,0.12);
  --rule-on-burgundy:rgba(250,245,238,0.16);

  --font-display:'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:'IBM Plex Sans', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --font-accent:'Caveat', cursive;

  --container:1240px;
  --gutter:clamp(20px, 5vw, 64px);
}

/* This is a deliberate single dark-on-light editorial system (burgundy / ivory / white),
   not a light+dark adaptive theme — it stays constant across OS/browser theme. */

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
p{margin:0;}
button{font:inherit;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

::selection{background:var(--red); color:var(--ivory);}

:focus-visible{outline:2px solid var(--red); outline-offset:3px;}

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

/* ---------- type ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  text-transform:uppercase;
  font-weight:400;
  line-height:0.92;
  letter-spacing:-0.01em;
  text-wrap:balance;
  margin:0;
}
h1{font-size:clamp(3.1rem, 11vw, 9.5rem); line-height:0.88;}
h2{font-size:clamp(2.6rem, 8vw, 6.8rem); line-height:0.9;}
h3{font-size:clamp(1.6rem, 3.2vw, 2.3rem); line-height:0.96;}
.eyebrow{
  font-family:var(--font-body);
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
}
.lede{font-size:1.14rem; line-height:1.6; max-width:44ch;}
.script{font-family:var(--font-accent); font-weight:600; font-size:1.7rem; line-height:1.2;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-body); font-weight:700; font-size:0.78rem;
  letter-spacing:0.16em; text-transform:uppercase;
  padding:16px 30px; border-radius:999px;
  border:1px solid transparent; cursor:pointer;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:active{transform:translateY(1px);}
.btn svg{flex:none; transition:transform .2s ease;}
.btn:hover svg{transform:translateX(3px);}
.btn-red{background:var(--red); color:var(--ivory);}
.btn-red:hover{background:var(--ink); color:var(--ivory);}
.btn-outline-on-burgundy{border-color:var(--rule-on-burgundy); color:var(--on-burgundy);}
.btn-outline-on-burgundy:hover{border-color:var(--on-burgundy); background:rgba(250,245,238,0.06);}
.btn-outline-on-ivory{border-color:var(--rule); color:var(--ink);}
.btn-outline-on-ivory:hover{border-color:var(--ink); background:rgba(38,27,24,0.04);}
.btn-sm{padding:11px 22px; font-size:0.72rem;}

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:var(--burgundy); color:var(--on-burgundy);
  border-bottom:1px solid var(--rule-on-burgundy);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px var(--gutter); max-width:var(--container); margin:0 auto;}
.brand{display:flex; align-items:baseline; gap:8px; font-family:var(--font-display); font-size:1.5rem; letter-spacing:0.01em;}
.brand .tag{font-family:var(--font-body); font-size:0.66rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--on-burgundy-soft);}
.nav-links{display:flex; gap:30px;}
.nav-links a{
  font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--on-burgundy-soft); padding-bottom:3px; border-bottom:1px solid transparent;
  transition:color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a.active{color:var(--on-burgundy); border-color:var(--red);}
.nav-right{display:flex; align-items:center; gap:18px;}
.menu-btn{display:none; background:none; border:none; color:var(--on-burgundy); cursor:pointer; padding:6px;}
.mobile-nav{display:none; flex-direction:column; gap:2px; background:var(--burgundy-deep); padding:8px var(--gutter) 18px;}
.mobile-nav a{padding:12px 0; font-size:0.85rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--on-burgundy-soft); border-top:1px solid var(--rule-on-burgundy);}
.mobile-nav.open{display:flex;}

@media (max-width:900px){
  .nav-links{display:none;}
  .menu-btn{display:inline-flex;}
}
@media (max-width:480px){
  .nav-right .btn{display:none;}
  .mobile-nav .btn{display:inline-flex; margin-bottom:8px; white-space:nowrap;}
}

/* ---------- sections / rhythm ---------- */
section{position:relative; padding:96px 0;}
.on-burgundy{background:var(--burgundy); color:var(--on-burgundy);}
.on-burgundy .ink-soft, .on-burgundy p{color:var(--on-burgundy-soft);}
.on-white{background:var(--white); border-top:1px solid var(--rule); border-bottom:1px solid var(--rule);}
.section-num{
  font-family:var(--font-body); font-size:0.72rem; font-weight:700; letter-spacing:0.22em;
  color:var(--red); display:block; margin-bottom:14px;
}
.on-burgundy .section-num{color:#ffb3ac;}
.ghost-num{
  position:absolute; top:-0.35em; right:var(--gutter);
  font-family:var(--font-display); font-size:clamp(6rem,22vw,15rem); line-height:1;
  color:transparent; -webkit-text-stroke:1px var(--rule); opacity:0.7;
  pointer-events:none; z-index:0; user-select:none;
}
.on-burgundy .ghost-num{-webkit-text-stroke:1px var(--rule-on-burgundy);}
section > .wrap{position:relative; z-index:1;}

@media (max-width:720px){
  section{padding:64px 0;}
  .ghost-num{font-size:5.5rem; right:12px;}
}

/* ---------- editorial image block (photography placeholder) ---------- */
.editorial-image{
  position:relative; overflow:hidden; border-radius:2px;
  background:linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 55%, var(--ink) 130%);
  aspect-ratio:4/5;
}
.editorial-image img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;}
.editorial-image .streaks{position:absolute; inset:0; opacity:0.5;}
.editorial-image .streaks span{
  position:absolute; left:-10%; right:-10%; height:2px; background:var(--on-burgundy);
  opacity:0.12; transform:rotate(-18deg);
}
.editorial-image .tag{
  position:absolute; left:14px; bottom:14px;
  font-size:0.62rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--on-burgundy); background:rgba(38,27,24,0.35); border:1px dashed rgba(250,245,238,0.5);
  padding:6px 10px; border-radius:20px; backdrop-filter:blur(2px);
}
.editorial-image.tone-ivory{background:linear-gradient(135deg, var(--ivory) 0%, #efe6d6 60%, var(--rule) 140%);}
.editorial-image.tone-ivory .streaks span{background:var(--burgundy); opacity:0.18;}
.editorial-image.tone-ivory .tag{color:var(--ink); background:rgba(255,255,255,0.55); border-color:rgba(38,27,24,0.3);}
.editorial-image.wide{aspect-ratio:16/10;}

/* ---------- marquee ---------- */
.marquee{overflow:hidden; background:var(--ivory); border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); padding:26px 0;}
.marquee-track{display:flex; width:max-content; gap:0; animation:marquee 34s linear infinite;}
.marquee-track:hover{animation-play-state:paused;}
.marquee span.item{
  display:inline-flex; align-items:center; gap:28px;
  font-family:var(--font-display); font-size:clamp(1.6rem,3.4vw,2.6rem); letter-spacing:0.01em;
  padding:0 28px; white-space:nowrap;
}
.marquee span.item .dot{width:9px; height:9px; border-radius:50%; background:var(--red);}
.marquee span.item.outline{-webkit-text-stroke:1.3px var(--ink); color:transparent;}
.marquee span.item.solid-red{color:var(--red);}
@keyframes marquee{from{transform:translateX(0);} to{transform:translateX(-50%);}}
@media (prefers-reduced-motion: reduce){.marquee-track{animation:none;}}

/* ---------- hero ---------- */
.hero{position:relative; padding-top:64px; padding-bottom:0; overflow:hidden;}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-bg img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%; display:block;}
.hero-scrim{position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,2,2,0.15) 0%, rgba(20,2,2,0.4) 50%, var(--burgundy) 96%);}
.hero > .wrap{position:relative; z-index:1;}
.hero-eyebrow{display:flex; align-items:center; gap:12px; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; color:var(--on-burgundy-soft);}
.hero-eyebrow .neq{font-family:var(--font-display); font-size:1.3rem; color:var(--red); letter-spacing:0;}
.hero-eyebrow .rule{width:34px; height:1px; background:var(--on-burgundy-soft); flex:none;}
.hero-copy{position:relative; z-index:2; padding:64px 0 96px;}
.hero-copy h1{margin-top:2px;}
.hero-copy-body{max-width:533px; margin-left:auto; margin-top:34px;}
.hero-copy .lede{font-size:1.1rem; color:var(--on-burgundy-soft);}
.hero-copy .script{margin-top:18px; color:var(--on-burgundy);}
.hero-actions{display:flex; align-items:center; gap:20px; margin-top:38px; flex-wrap:wrap;}
@media (max-width:900px){
  .hero-copy-body{max-width:none; margin-left:0;}
}
.hero-tagstrip{position:relative; z-index:1; display:flex; border-top:1px solid var(--rule-on-burgundy); background:var(--burgundy-deep); margin-top:0;}
.hero-tagstrip .tag-cell{flex:1; padding:16px var(--gutter); font-size:0.7rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--on-burgundy-soft); border-right:1px solid var(--rule-on-burgundy); text-align:center;}
.hero-tagstrip .tag-cell:last-child{border-right:none;}
@media (max-width:900px){
  .hero-copy{max-width:none; padding:44px 0 64px;}
  .hero-tagstrip{flex-wrap:wrap;}
  .hero-tagstrip .tag-cell{flex:1 1 50%; border-bottom:1px solid var(--rule-on-burgundy);}
}

/* ---------- identification ---------- */
.identification h2{max-width:16ch;}
.id-head{display:flex; align-items:center; gap:14px; margin-bottom:14px;}
.id-head .num{font-family:var(--font-display); font-size:1.9rem; color:var(--red); line-height:1;}
.id-head .rule{width:34px; height:2px; background:var(--red);}
.id-head .label{font-size:0.78rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-soft);}
.on-burgundy .id-head .label{color:var(--on-burgundy-soft);}
.id-columns{display:grid; grid-template-columns:1.3fr 1fr; gap:52px; margin-top:36px; align-items:start;}
.id-columns .col-left p{color:var(--ink-soft); font-size:1.04rem; line-height:1.7;}
.id-columns .col-left p + p{margin-top:22px;}
.id-columns .col-right{border-left:1px solid var(--rule); padding-left:64px;}
.id-columns .col-right .callout{font-family:var(--font-display); font-size:clamp(1.5rem,2.6vw,1.9rem); color:var(--red); text-transform:uppercase; line-height:1.08;}
.id-columns .col-right .callout-list{margin-top:20px; color:var(--ink); font-size:1.04rem; line-height:1.65;}
.id-full-row{display:grid; grid-template-columns:1.3fr 1fr; gap:52px; margin-top:36px;}
.id-full-row p{color:var(--ink-soft); font-size:1.04rem; line-height:1.7;}
.id-close{margin-top:32px; font-family:var(--font-body); font-weight:700; font-size:1rem; color:var(--red); line-height:1.6; text-transform:none;}
@media (max-width:760px){
  .id-columns{grid-template-columns:1fr; gap:28px;}
  .id-columns .col-right{border-left:none; padding-left:0; border-top:1px solid var(--rule); padding-top:24px;}
  .id-full-row{grid-template-columns:1fr;}
}

/* ---------- three states ---------- */
.states{display:flex; flex-direction:column; gap:1px; background:var(--rule);}
.state{background:var(--ivory); display:grid; grid-template-columns:1fr 1fr; gap:0; align-items:stretch;}
.state-copy{position:relative; overflow:hidden; padding:64px var(--gutter); display:flex; flex-direction:column; justify-content:center; gap:20px;}
.state-copy .section-num{margin-bottom:0;}
.state-copy p{color:var(--ink-soft); font-size:1.04rem; max-width:38ch;}
.state-ghost{
  position:absolute; top:-0.12em; right:20px;
  font-family:var(--font-display); font-size:clamp(4.5rem,10vw,8rem); line-height:1;
  color:rgba(38,27,24,0.08); pointer-events:none; user-select:none; z-index:0;
}
.state.on-burgundy .state-ghost{color:rgba(250,245,238,0.1);}
.state-copy > *{position:relative; z-index:1;}
.state-list{list-style:none; margin:14px 0 0; padding:0; display:flex; flex-direction:column;}
.state-list li{
  display:flex; align-items:center; gap:12px; padding:13px 0;
  border-top:1px solid var(--rule); font-weight:700; font-size:0.92rem; letter-spacing:0.03em; text-transform:uppercase;
}
.state-list li .diamond{width:7px; height:7px; background:var(--red); transform:rotate(45deg); flex:none;}
.state.on-burgundy .state-list li{border-top-color:var(--rule-on-burgundy);}
.state-media{position:relative; min-height:320px;}
.state-media .editorial-image{position:absolute; inset:0; aspect-ratio:auto; border-radius:0;}
.state.reverse{grid-template-columns:1fr 1fr;}
.state.reverse .state-media{order:-1;}
.state.on-burgundy{background:var(--burgundy); color:var(--on-burgundy);}
@media (max-width:840px){
  .state{grid-template-columns:1fr;}
  .state-media{min-height:260px; order:-1 !important;}
  .state-copy{padding:48px var(--gutter);}
}

/* ---------- rupture line ---------- */
.rupture{padding:120px 0; text-align:center;}
.rupture h2{max-width:20ch; margin:0 auto;}
.rupture .accent{color:var(--red);}

/* ---------- hypnosis explainer list ---------- */
.explain-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--rule-on-burgundy); border:1px solid var(--rule-on-burgundy); margin-top:56px;}
.explain-item{background:var(--burgundy); padding:28px 26px;}
.explain-item .n{font-family:var(--font-body); font-weight:700; font-size:0.72rem; letter-spacing:0.18em; color:var(--red);}
.explain-item .title{margin-top:12px; font-weight:700; font-size:1rem; letter-spacing:0.02em; text-transform:uppercase; color:var(--on-burgundy);}
.explain-item p{margin-top:10px; font-size:1rem; color:var(--on-burgundy-soft);}
@media (max-width:720px){.explain-grid{grid-template-columns:1fr;}}

/* ---------- approach tags ---------- */
.credential-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:32px;}
.credential-row span{font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:9px 16px; border:1px solid var(--rule); border-radius:20px;}
.credential-row span.muted{opacity:0.6; font-weight:600;}

/* ---------- process steps ---------- */
.process{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule); margin-top:56px;}
.process-step{background:var(--white); padding:34px 24px;}
.process-step .n{font-family:var(--font-display); font-size:2.6rem; color:var(--rule); -webkit-text-stroke:1px var(--ink); color:transparent;}
.process-step h3{margin-top:14px; font-size:1.3rem;}
@media (max-width:900px){.process{grid-template-columns:1fr 1fr;}}
@media (max-width:520px){.process{grid-template-columns:1fr;}}

/* ---------- process, accordion ---------- */
.process-detailed{margin-top:56px; max-width:840px;}
.process-item{border-top:1px solid var(--rule);}
.process-item:last-child{border-bottom:1px solid var(--rule);}
.on-burgundy .process-item, .on-burgundy .process-item:last-child{border-color:var(--rule-on-burgundy);}
.process-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; text-align:left; color:inherit; cursor:pointer;
  padding:26px 0; font-family:var(--font-body);
}
.process-q .step-label{font-size:0.86rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#8B0303;}
.on-burgundy .process-q .step-label{color:#ff9fb8;}
.process-q .plus{flex:none; width:20px; height:20px; position:relative;}
.process-q .plus::before, .process-q .plus::after{content:""; position:absolute; background:var(--red); border-radius:1px;}
.process-q .plus::before{width:14px; height:2px; top:9px; left:3px;}
.process-q .plus::after{width:2px; height:14px; left:9px; top:3px; transition:transform .25s ease;}
.process-item[data-open="true"] .plus::after{transform:rotate(90deg); opacity:0;}
.process-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.process-a .step-text{padding-bottom:32px; max-width:64ch;}
.process-a .step-text p{color:var(--ink-soft); font-size:1rem; line-height:1.7;}
.on-burgundy .process-a .step-text p{color:var(--on-burgundy-soft);}
.process-a .step-text p + p{margin-top:16px;}

/* ---------- testimonials (slideshow) ---------- */
.testimonial-slider{margin-top:56px; max-width:680px;}
.testimonial-viewport{overflow:hidden; border:1px solid var(--rule); background:var(--white);}
.testimonial-track{display:flex; transition:transform .45s cubic-bezier(.4,0,.2,1);}
.testimonial-card{flex:0 0 100%; background:var(--white); padding:36px 32px; min-height:220px; display:flex; flex-direction:column; gap:16px;}
.testimonial-card .stars{display:flex; gap:3px; color:var(--red);}
.testimonial-card q{font-family:var(--font-body); font-size:1.05rem; color:var(--ink-soft); line-height:1.65; quotes:none;}
.testimonial-card .who{margin-top:auto; padding-top:6px;}
.testimonial-card .who .name{font-weight:700; font-size:0.92rem; color:var(--ink);}
.testimonial-card .who .meta{display:block; margin-top:2px; font-size:0.76rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.06em;}
.slider-controls{display:flex; align-items:center; justify-content:center; gap:20px; margin-top:22px;}
.slider-arrow{width:38px; height:38px; flex:none; border-radius:50%; border:1px solid var(--rule); background:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--ink); transition:border-color .2s ease, color .2s ease;}
.slider-arrow:hover{border-color:var(--red); color:var(--red);}
.slider-dots{display:flex; gap:9px;}
.slider-dots .dot{width:8px; height:8px; border-radius:50%; background:var(--rule); border:none; cursor:pointer; padding:0;}
.slider-dots .dot[aria-current="true"]{background:var(--red);}
@media (prefers-reduced-motion: reduce){.testimonial-track{transition:none;}}

/* ---------- pricing ---------- */
.pricing-grid{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--rule-on-burgundy); border:1px solid var(--rule-on-burgundy); margin-top:56px;}
.price-card{background:var(--burgundy); padding:44px 36px;}
.price-card .kicker{font-size:0.7rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--on-burgundy-soft);}
.price-card h3{margin-top:10px; font-size:1.6rem;}
.price-figure{display:flex; align-items:baseline; gap:10px; margin-top:26px;}
.price-figure .amount{font-family:var(--font-display); font-size:4rem; line-height:1;}
.price-figure .duration{font-size:0.85rem; color:var(--on-burgundy-soft); text-transform:uppercase; letter-spacing:0.08em;}
.price-card p.desc{margin-top:18px; color:var(--on-burgundy-soft); font-size:0.96rem; max-width:34ch;}
.price-note{margin-top:22px; font-size:0.82rem; color:var(--ink-soft);}
@media (max-width:720px){.pricing-grid{grid-template-columns:1fr;}}

/* ---------- about ---------- */
.about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center;}
.about-copy .lede{margin-top:22px; font-size:1.1rem;}
.about-copy p + p{margin-top:16px; color:var(--ink-soft);}
@media (max-width:840px){.about-grid{grid-template-columns:1fr;}}

/* ---------- FAQ ---------- */
.faq-list{max-width:820px; margin-top:56px;}
.faq-item{border-top:1px solid var(--rule);}
.faq-list.on-burgundy .faq-item{border-top:1px solid var(--rule-on-burgundy);}
.faq-item:last-child{border-bottom:1px solid var(--rule);}
.faq-list.on-burgundy .faq-item:last-child{border-bottom:1px solid var(--rule-on-burgundy);}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px;
  background:none; border:none; text-align:left; color:inherit; cursor:pointer;
  padding:24px 0; font-family:var(--font-body); font-weight:700; font-size:1.02rem; letter-spacing:0.01em; text-transform:uppercase;
}
.faq-q .plus{flex:none; width:20px; height:20px; position:relative;}
.faq-q .plus::before, .faq-q .plus::after{content:""; position:absolute; background:var(--red); border-radius:1px;}
.faq-q .plus::before{width:14px; height:2px; top:9px; left:3px;}
.faq-q .plus::after{width:2px; height:14px; left:9px; top:3px; transition:transform .25s ease;}
.faq-item[data-open="true"] .plus::after{transform:rotate(90deg); opacity:0;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{padding-bottom:24px; max-width:64ch; color:var(--ink-soft); font-size:0.98rem; line-height:1.7;}
.on-burgundy .faq-a p{color:var(--on-burgundy-soft);}

/* ---------- final cta ---------- */
.final-cta{padding:140px 0; text-align:center;}
.final-cta h2{max-width:22ch; margin:0 auto;}
.final-cta .actions{margin-top:38px; display:flex; justify-content:center;}

/* ---------- footer ---------- */
footer{background:var(--ink); color:rgba(250,245,238,0.65); padding:64px 0 28px; font-size:0.88rem;}
.foot-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px;}
.foot-brand{color:var(--ivory); font-family:var(--font-display); font-size:1.4rem;}
.foot-col h4{font-family:var(--font-body); font-size:0.7rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:rgba(250,245,238,0.85); margin-bottom:14px;}
.foot-col a, .foot-col p{display:block; margin-bottom:9px; color:inherit;}
.foot-col a:hover{color:var(--ivory);}
.foot-badges{display:flex; gap:12px; align-items:center; margin-top:16px;}
.foot-badges img{width:42px; height:42px; object-fit:contain;}
.foot-badges img:first-child{width:58px; height:58px;}
.foot-bottom{margin-top:52px; padding-top:22px; border-top:1px solid rgba(250,245,238,0.12); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:0.78rem;}
@media (max-width:840px){.foot-grid{grid-template-columns:1fr 1fr; row-gap:32px;}}
@media (max-width:520px){.foot-grid{grid-template-columns:1fr;}}

/* ---------- todo tag (content ops marker, not user-facing brand voice) ---------- */
.todo{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-body); font-size:0.66rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold); border:1px dashed var(--gold); padding:3px 9px; border-radius:20px;
}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference){
  .reveal-init{opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease;}
  .reveal-init.in{opacity:1; transform:none;}
}

/* ---------- rdv request form ---------- */
.rdv-form{display:grid; grid-template-columns:1fr 1fr; gap:18px 24px; margin-top:28px;}
.rdv-form .field{display:flex; flex-direction:column; gap:6px;}
.rdv-form .field.full{grid-column:1 / -1;}
.rdv-form label{font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-soft);}
.rdv-form input, .rdv-form textarea{
  font-family:var(--font-body); font-size:0.95rem; color:var(--ink);
  background:var(--white); border:1px solid var(--rule); padding:12px 14px; border-radius:2px;
}
.rdv-form input:focus, .rdv-form textarea:focus{outline:none; border-color:var(--burgundy);}
.rdv-form textarea{resize:vertical; min-height:110px;}
.rdv-form button.full{grid-column:1 / -1; justify-self:flex-start;}
@media (max-width:640px){ .rdv-form{grid-template-columns:1fr;} }

/* ---------- inner page hero (secondary pages) ---------- */
.page-hero{padding:64px 0 88px;}
.page-hero h1{font-size:clamp(2.6rem,8vw,6rem);}
.page-hero .lede{margin-top:24px;}
.breadcrumb{font-size:0.7rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--on-burgundy-soft); margin-bottom:18px; display:block;}

/* ---------- utility ---------- */
.center{text-align:center; margin-left:auto; margin-right:auto;}
.mt-lg{margin-top:56px;}
.hairline{height:1px; background:var(--rule); border:none; margin:0;}
