/* ============================================================
   The Success Mindset Roadmap — Landing Page
   Design system: warm, elegant, nurturing
   ============================================================ */

/* Brand fonts: The Seasons (display) → Cormorant Garamond stand-in; Montserrat + Blinker (sans).
   Brand colours: #BD2C36 crimson · #821719 maroon · #D0757F dusty rose · #FCCFD4 blush. */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Montserrat:wght@400;500;600;700&family=Blinker:wght@300;400;600&family=Pinyon+Script&display=swap');

:root {
  /* Color — brand palette */
  --cream:        #FFF8F6;
  --cream-2:      #FCEDED;
  --sand:         #FBE3E4;
  --blush:        #FCCFD4;
  --blush-2:      #FDE3E6;
  --clay:         #BD2C36;  /* crimson — primary */
  --clay-deep:    #821719;  /* maroon — deep accent */
  --rose:         #D0757F;  /* dusty rose — secondary */
  --gold:         #D0757F;  /* (no gold in brand) maps to rose */
  --espresso:     #3A1518;  /* near-black maroon ink */
  --espresso-2:   #2A0B0D;  /* deepest maroon — dark sections */
  --ink-soft:     #6F5256;
  --line:         rgba(58,21,24,0.14);
  --line-soft:    rgba(58,21,24,0.07);
  --white:        #FFFDFC;

  /* Type */
  --serif: 'Cormorant Garamond', 'The Seasons', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;
  --soft:  'Blinker', 'Montserrat', sans-serif;
  --script:'Pinyon Script', cursive;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(54,39,31,0.06);
  --shadow:    0 18px 50px -22px rgba(54,39,31,0.32);
  --shadow-lg: 0 40px 90px -40px rgba(54,39,31,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.eyebrow {
  font-family: var(--soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--clay); opacity: 0.6;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--espresso); }
h2 { font-size: clamp(34px, 5vw, 60px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.12; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.7; }
em.it { font-style: italic; color: var(--clay-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--clay); color: var(--white);
  box-shadow: 0 12px 26px -12px rgba(140,92,59,0.7);
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(140,92,59,0.75); }
.btn-ghost {
  background: transparent; color: var(--espresso);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--clay); color: var(--clay-deep); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--espresso); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(250,244,238,0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--clay), var(--rose));
  color: var(--white); font-family: var(--serif); font-size: 21px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand-name { line-height: 1.1; }
.brand-name { display: block; }
.brand-name b { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; letter-spacing: 0.01em; line-height: 1.12; white-space: nowrap; }
.brand-name span { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--espresso); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 12px 22px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(60px, 9vw, 120px); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(44px, 6.6vw, 80px); line-height: 1.08; margin: 22px 0 0; padding-bottom: 0.08em; }
.hero h1 .accent { font-style: italic; color: var(--clay); }
.hero .lede { margin-top: 58px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -12px;
  background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.hero-trust small { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
.hero-trust small b { color: var(--espresso); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }

/* Book mockup */
.hero-visual { position: relative; display: grid; place-items: center; }
.book-stage {
  position: relative;
  width: min(420px, 86%);
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.book-stage::before {
  content: "";
  position: absolute; inset: 4% 6% 2%;
  background: radial-gradient(circle at 50% 42%, var(--blush), transparent 68%);
  border-radius: 50%;
  z-index: 0;
}
.halo-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--line); z-index: 0;
}
.halo-ring.r2 { inset: 9%; border-color: var(--line-soft); }
.book {
  position: relative; z-index: 2;
  width: 270px; aspect-ratio: 3/4;
  border-radius: 6px 12px 12px 6px;
  background:
    linear-gradient(160deg, #FFFBFA 0%, #FCE6E8 100%);
  box-shadow: var(--shadow-lg),
    inset 7px 0 0 -2px rgba(255,255,255,0.7),
    inset 11px 0 14px -10px rgba(54,39,31,0.25);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transform: rotate(-4deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(255,255,255,0.6);
}
.book::before { /* spine */
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--clay), var(--rose)); opacity: 0.5; border-radius: 2px;
}
.book:hover { transform: rotate(-2deg) translateY(-6px); }
.book .b-eyebrow { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.book .b-the { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-soft); margin-top: 18px; }
.book .b-title { font-family: var(--serif); font-size: 33px; line-height: 0.98; color: var(--espresso); margin-top: 2px; }
.book .b-rule { height: 1px; background: var(--line); margin: 16px 0; }
.book .b-sub { font-size: 10.5px; line-height: 1.45; color: var(--ink-soft); }
.book .b-foot { margin-top: auto; font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.book-badge {
  position: absolute; z-index: 3; right: -6px; top: -14px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--espresso); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  transform: rotate(8deg);
  box-shadow: var(--shadow);
}
.book-badge .bb-inner { line-height: 1.05; }
.book-badge b { font-family: var(--serif); font-size: 24px; display: block; }
.book-badge small { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; }
@keyframes spin-badge { to { transform: rotate(368deg); } }
@media (prefers-reduced-motion: reduce){ .book-badge { animation: none; } }
.float-tag {
  position: absolute; z-index: 4;
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  font-size: 13px; font-weight: 500;
}
.float-tag .ft-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--cream-2); color: var(--clay); }
.float-tag.t1 { left: -7%; top: 8%; }
.float-tag.t2 { right: -9%; bottom: 12%; }
@media (max-width: 980px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .float-tag.t1 { left: 0; }
  .float-tag.t2 { right: 0; }
}

/* ============================================================
   Marquee / trust strip
   ============================================================ */
.strip { background: var(--espresso); color: var(--cream); padding-block: 18px; overflow: hidden; }
.marquee { display: flex; gap: 56px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 20px; opacity: 0.82; white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 13px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee { animation: none; } }

/* ============================================================
   Problem / empathy
   ============================================================ */
.bg-cream2 { background: var(--cream-2); }
.bg-espresso { background: var(--espresso); color: var(--cream); }
.bg-espresso h2, .bg-espresso h3 { color: var(--cream); }
.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 20px; }

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.pain {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
}
.pain q { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--espresso); display: block; line-height: 1.25; }
.pain q::before, .pain q::after { color: var(--clay); }
.pain p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width:680px){ .pain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   The 5 Shifts
   ============================================================ */
.shifts-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.shifts { margin-top: 56px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.shift {
  display: grid; grid-template-columns: 96px 1.1fr 1.2fr 44px;
  gap: 28px; align-items: center;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .3s, padding .3s;
  position: relative;
}
.shift:hover { background: rgba(178,122,84,0.05); padding-inline: 18px; }
.shift-num { font-family: var(--serif); font-size: 50px; color: var(--blush); line-height: 1; transition: color .3s; }
.shift:hover .shift-num { color: var(--clay); }
.shift-from {  }
.shift-from .from { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.shift-from .arrow-row { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.shift-from h3 { font-size: clamp(20px, 2.2vw, 27px); }
.shift-from .to { color: var(--clay-deep); }
.shift-arrow { color: var(--clay); flex: none; }
.shift-desc { color: var(--ink-soft); font-size: 15px; }
.shift-go { justify-self: end; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--clay); transition: background .3s, color .3s, transform .3s; }
.shift:hover .shift-go { background: var(--clay); color: var(--white); transform: translateX(0) rotate(0); }
@media (max-width: 860px){
  .shift { grid-template-columns: 60px 1fr; gap: 14px 18px; align-items: start; }
  .shift-num { font-size: 36px; }
  .shift-desc { grid-column: 2; }
  .shift-go { display: none; }
}

/* ============================================================
   Benefits / what you'll gain
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 58px; }
.benefit {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit .b-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--clay-deep); margin-bottom: 20px;
}
.benefit h3 { font-size: 23px; }
.benefit p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px){ .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================================
   For you / not for you
   ============================================================ */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.fit-card { border-radius: var(--radius); padding: 36px 34px; border: 1px solid var(--line-soft); }
.fit-card.yes { background: var(--white); box-shadow: var(--shadow-sm); }
.fit-card.no  { background: transparent; border-style: dashed; border-color: var(--line); }
.fit-card h3 { font-size: 24px; display: flex; align-items: center; gap: 12px; }
.fit-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 15px; }
.fit-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.fit-list li svg { flex: none; margin-top: 3px; }
.fit-card.yes .fit-list li svg { color: var(--clay); }
.fit-card.no .fit-list li svg { color: var(--ink-soft); opacity: .6; }
@media (max-width: 760px){ .fit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About Sam
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 220px 220px 24px 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  --slot-bg: var(--cream-2);
}
.about-photo image-slot { width: 100%; height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-card {
  position: absolute; right: -18px; bottom: 26px;
  background: var(--white); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; gap: 14px; align-items: center; max-width: 230px;
}
.about-card .ac-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--cream-2); color: var(--clay); display: grid; place-items: center; flex: none; }
.about-card small { font-size: 12px; color: var(--ink-soft); line-height: 1.3; }
.about-card b { display: block; font-family: var(--serif); font-size: 16px; }
.about-copy .lede { margin-top: 22px; }
.about-copy p + p { margin-top: 16px; }
.sig { font-family: var(--script); font-size: 52px; color: var(--clay-deep); line-height: 1; margin-top: 26px; }
.sig-role { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 2px; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { font-size: 12.5px; font-weight: 500; padding: 8px 15px; border-radius: 999px; background: var(--cream-2); color: var(--clay-deep); border: 1px solid var(--line-soft); }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 420px; margin-inline: auto; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.testi {
  background: var(--cream); border-radius: var(--radius); padding: 32px 30px;
  border: 1px solid var(--line-soft); display: flex; flex-direction: column;
}
.bg-espresso .testi { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.testi .stars { margin-bottom: 16px; }
.testi blockquote { font-family: var(--serif); font-size: 21px; line-height: 1.32; color: var(--espresso); font-style: italic; flex: 1; }
.bg-espresso .testi blockquote { color: var(--cream); }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.testi .who .ph { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--clay); font-family: var(--serif); font-size: 19px; flex: none; }
.bg-espresso .testi .who .ph { background: rgba(255,255,255,0.08); color: var(--blush); }
.testi .who b { font-size: 15px; font-weight: 600; display: block; }
.testi .who small { font-size: 12.5px; color: var(--ink-soft); }
.bg-espresso .testi .who small { color: rgba(250,244,238,0.6); }
.placeholder-note { font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); opacity: .7; margin-top: 18px; text-align: center; }
.bg-espresso .placeholder-note { color: rgba(250,244,238,0.5); }
@media (max-width: 860px){ .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Audio upsell
   ============================================================ */
.audio-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.audio-list { display: flex; flex-direction: column; gap: 2px; margin-top: 30px; }
.audio-row { display: flex; align-items: center; gap: 16px; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.audio-row:last-child { border-bottom: none; }
.audio-row .play { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: var(--blush); transition: background .25s, color .25s; }
.audio-row:hover .play { background: var(--gold); color: var(--espresso); }
.audio-row .a-meta b { font-family: var(--serif); font-size: 19px; font-weight: 500; display: block; line-height: 1.1; }
.audio-row .a-meta small { font-size: 12.5px; color: rgba(250,244,238,0.6); }
.audio-row .a-price { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--gold); }
.audio-visual { position: relative; display: grid; place-items: center; min-height: 320px; }
.wave { display: flex; align-items: center; gap: 5px; height: 120px; }
.wave i { width: 5px; border-radius: 4px; background: linear-gradient(var(--gold), var(--rose)); animation: pulse 1.3s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ height: 16px; } 50%{ height: 92px; } }
@media (prefers-reduced-motion: reduce){ .wave i { animation: none; height: 50px; } }
@media (max-width: 800px){ .audio-band { grid-template-columns: 1fr; } .audio-visual { min-height: 180px; } }

/* ============================================================
   Sign-up / CTA
   ============================================================ */
.signup { position: relative; }
.signup-card {
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 72px);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,64px); align-items: center;
  position: relative; overflow: hidden;
}
.signup-card::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 340px; height: 340px;
  background: radial-gradient(circle, var(--blush), transparent 70%); opacity: .8; z-index: 0;
}
.signup-copy { position: relative; z-index: 1; }
.signup-copy h2 { margin-top: 16px; }
.signup-copy .lede { margin-top: 18px; }
.signup-perks { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }
.signup-perks li { display: flex; gap: 11px; align-items: center; font-size: 15px; color: var(--espresso); font-weight: 500; }
.signup-perks li svg { color: var(--clay); flex: none; }

.form-card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 20px; padding: 32px 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line-soft);
}
.form-card h3 { font-size: 25px; }
.form-card p.sub { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.field { margin-top: 18px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.field input {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--espresso);
  padding: 15px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--cream); transition: border .2s, box-shadow .2s, background .2s;
}
.field input::placeholder { color: #B6A597; }
.field input:focus { outline: none; border-color: var(--clay); background: var(--white); box-shadow: 0 0 0 4px rgba(178,122,84,0.12); }
.field input.invalid { border-color: #C0573F; box-shadow: 0 0 0 4px rgba(192,87,63,0.1); }
.field .err { font-size: 12.5px; color: #C0573F; margin-top: 7px; display: none; }
.field .err.show { display: block; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 22px; font-size: 16px; padding: 17px; }

/* Consent checkbox */
.field.consent { margin-top: 20px; }
.field.consent .checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; user-select: none; margin-bottom: 0; text-transform: none; letter-spacing: normal; font-weight: 400; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox .box {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  border: 1px solid var(--line); background: var(--cream);
  display: grid; place-items: center; color: var(--white);
  transition: background .2s, border-color .2s, transform .15s;
  margin-top: 1px;
}
.checkbox .box svg { opacity: 0; transform: scale(.6); transition: opacity .15s, transform .15s; }
.checkbox input:checked + .box { background: var(--clay); border-color: var(--clay); }
.checkbox input:checked + .box svg { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .box { box-shadow: 0 0 0 4px rgba(189,44,54,0.15); }
.checkbox .consent-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.field.consent.invalid .box { border-color: #C0573F; box-shadow: 0 0 0 4px rgba(192,87,63,0.1); }
.form-fine { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 16px; line-height: 1.5; }
.form-fine a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 2px; }

.form-success { display: none; text-align: center; padding: 14px 0; }
.form-success.show { display: block; animation: rise .5s cubic-bezier(.2,.8,.2,1); }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--clay); color: var(--white); display: grid; place-items: center; margin: 4px auto 18px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 840px){ .signup-card { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: clamp(20px,2.3vw,25px); color: var(--espresso);
  padding: 26px 44px 26px 0; position: relative; display: block; }
.faq-q .plus { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; transition: transform .3s; color: var(--clay); }
.faq-item.open .faq-q .plus { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 40px 26px 0; color: var(--ink-soft); font-size: 15.5px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--espresso-2); color: rgba(250,244,238,0.72); padding-block: 64px 36px; }
.footer h2 { color: var(--cream); }
.footer .wrap { display: grid; gap: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand-name b { color: var(--cream); }
.footer .brand-name span { color: rgba(250,244,238,0.5); white-space: normal; letter-spacing: 0.14em; line-height: 1.5; max-width: 340px; }
.footer .brand-name span { color: rgba(250,244,238,0.5); }
.footer-col h4 { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; font-family: var(--sans); }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-col a.social { display: inline-flex; align-items: center; gap: 9px; }
.footer-col a.social svg { flex: none; transition: color .2s; }
.footer-about { max-width: 320px; font-size: 14.5px; line-height: 1.6; margin-top: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }
