/* =============================================================
   The Marriage Operating Manual — shared stylesheet
   Palette, type, layout and components for index.html + book.html
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Locked brand palette */
  --cream:      #FBF6EE;
  --cream-deep: #F3EAD9;
  --wine:       #6E2233;
  --rose:       #C4456B;
  --deep-rose:  #A23E58;
  --gold:       #C6A15B;

  /* Derived tints */
  --wine-soft:  #8A3247;
  --ink:        #3A2029;   /* readable body text on cream */
  --ink-muted:  #6d5560;
  --rose-tint:  #f7e6ec;
  --gold-tint:  #f0e4c8;
  --line:       rgba(110, 34, 51, 0.14);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 18px;
  --radius-lg: 26px;

  /* Motion + elevation */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 10px rgba(110, 34, 51, 0.06);
  --shadow-md: 0 14px 34px -18px rgba(110, 34, 51, 0.30);
  --shadow-lg: 0 34px 70px -30px rgba(110, 34, 51, 0.42);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--deep-rose); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--rose); color: #fff; }

/* ---------- Typographic scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--wine);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-rose);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-muted); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--cream-deep); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rose);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95em 1.7em;
  border: none;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--deep-rose); color:#fff; }
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--wine);
  box-shadow: none;
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--wine); color: #fff; border-color: var(--wine); }

.btn--disabled,
.btn[disabled] {
  --btn-bg: var(--gold-tint);
  --btn-fg: var(--wine);
  cursor: not-allowed;
  box-shadow: none;
  border: 1.5px dashed var(--gold);
  opacity: 1;
}
.btn--disabled:hover,
.btn[disabled]:hover { transform: none; box-shadow: none; background: var(--gold-tint); color: var(--wine); }

.btn--lg { font-size: 1.08rem; padding: 1.05em 2em; }

.textlink {
  color: var(--deep-rose);
  font-weight: 600;
  border-bottom: 2px solid rgba(196, 69, 107, 0.35);
  padding-bottom: 1px;
  transition: border-color .3s, color .3s;
}
.textlink:hover { border-color: var(--rose); color: var(--rose); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(110,34,51,.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--wine);
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--wine); }
.brand .brand-radar { width: 34px; height: 34px; flex: none; }
.brand small { display:block; font-family: var(--sans); font-weight:500; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); margin-top:2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--wine); }
.nav-cta { margin-left: 6px; }

.nav-toggle { display: none; }

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

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .4s var(--ease);
    pointer-events: none;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-links li:last-child { padding-top: 14px; }
  .nav-cta { margin: 0; width: 100%; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.reveal[data-delay="5"] { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   HERO — shared shell, page-specific tweaks below
   ============================================================= */
.hero { position: relative; padding-top: clamp(46px, 7vw, 88px); padding-bottom: var(--section-y); overflow: hidden; }
.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 60% 40%, rgba(196,69,107,.16), transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { margin-top: 20px; }
.hero-copy .lede { margin-top: 22px; max-width: 30ch; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 22px; font-size: .92rem; color: var(--ink-muted); }
.hero-note a { font-weight: 600; }

/* Landing hero image (lifestyle mockup) */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
  transition: transform .6s var(--ease);
  border: 6px solid #fff;
}
.hero-visual:hover .hero-photo { transform: rotate(0deg) scale(1.01); }
.hero-badge {
  position: absolute;
  bottom: -22px; left: -18px;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wine);
  font-size: .95rem;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px var(--rose-tint); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .eyebrow { justify-content: center; }
}

/* =============================================================
   PAGE 1 — email capture
   ============================================================= */
.capture-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.capture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.capture-card h3 { font-size: 1.35rem; }
.capture-card .form-sub { margin-top: 6px; color: var(--ink-muted); font-size: .95rem; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.form-row label { font-weight: 600; font-size: .82rem; letter-spacing: .04em; color: var(--wine); text-transform: uppercase; }
.form-row input {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85em 1em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-row input::placeholder { color: #b39aa3; }
.form-row input:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px var(--rose-tint);
}
.capture-card .btn { width: 100%; margin-top: 22px; }
.form-micro { margin-top: 16px; font-size: .82rem; color: var(--ink-muted); line-height: 1.55; text-align: center; }

/* The commented MailerLite placeholder made visible as a styled slot */
.embed-slot {
  border: 2px dashed var(--gold);
  border-radius: 14px;
  background: var(--gold-tint);
  padding: 20px;
  text-align: center;
  color: var(--wine);
  font-size: .88rem;
}
.embed-slot strong { display:block; font-family: var(--serif); font-size: 1rem; margin-bottom: 4px; }

/* "The ten, in one line" strip */
.ten-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.ten-strip li {
  list-style: none;
  background: #fff;
  padding: 20px 18px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  transition: background .3s;
}
.ten-strip li:hover { background: var(--rose-tint); }
.ten-strip .n { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.ten-strip .t { font-weight: 500; color: var(--wine); font-size: .96rem; line-height: 1.35; }

/* "Not therapy-speak" three-up value row */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-card .ic { width: 48px; height: 48px; margin-bottom: 16px; color: var(--rose); }
.value-card h3 { font-size: 1.2rem; }
.value-card p { margin-top: 10px; color: var(--ink-muted); font-size: .98rem; }
@media (max-width: 720px) { .value-row { grid-template-columns: 1fr; } }

/* =============================================================
   PAGE 2 — full book page
   ============================================================= */
/* Book hero cover */
.cover-visual { perspective: 1600px; display: flex; justify-content: center; }
.cover-shell {
  position: relative;
  transform: rotateY(-14deg) rotateX(3deg);
  transition: transform .7s var(--ease);
  transform-style: preserve-3d;
}
.cover-visual:hover .cover-shell { transform: rotateY(-6deg) rotateX(1deg); }
.cover-img {
  border-radius: 6px 12px 12px 6px;
  box-shadow:
    -14px 0 0 -2px #e7d9be,           /* page block hint */
    var(--shadow-lg);
  border-left: 3px solid var(--gold);
}
.cover-shell::after { /* soft floor shadow */
  content:"";
  position: absolute;
  left: 8%; right: -6%; bottom: -6%;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(110,34,51,.28), transparent 70%);
  filter: blur(6px);
  transform: rotateX(60deg);
  z-index: -1;
}
.price-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top: 26px; }
.price-pill {
  background: #fff; border:1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: .9rem; color: var(--wine); font-weight:500;
  display:inline-flex; gap:8px; align-items:center;
}
.price-pill b { font-weight: 700; }
.price-pill .was { text-decoration: line-through; color: var(--ink-muted); font-weight: 400; margin-left: 4px; }

/* What's inside — the ten cards */
.dates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.date-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  align-items: flex-start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.date-card::before {
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:4px;
  background: linear-gradient(var(--rose), var(--gold));
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease);
}
.date-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.date-card:hover::before { transform: scaleY(1); }
.date-num {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--rose-tint);
  color: var(--deep-rose);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid; place-items: center;
  transition: background .35s, color .35s;
}
.date-card:hover .date-num { background: var(--rose); color: #fff; }
.date-card h3 { font-size: 1.12rem; }
.date-card p { margin-top: 4px; color: var(--ink-muted); font-size: .95rem; line-height: 1.5; }

.date-card--capstone {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--wine), var(--deep-rose));
  border: none;
}
.date-card--capstone h3, .date-card--capstone p { color: #fff; }
.date-card--capstone p { color: rgba(255,255,255,.85); }
.date-card--capstone .date-num { background: rgba(255,255,255,.16); color: #fff; }
.date-card--capstone::before { display:none; }
.date-card--capstone:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.capstone-tag { font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold); font-weight:700; margin-bottom: 4px; display:block; }
.date-card--capstone .capstone-tag { color: var(--gold); }

@media (max-width: 760px) { .dates-grid { grid-template-columns: 1fr; } }

/* Compass mechanic */
.compass { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.compass-steps { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 20px; }
.compass-steps li { display: flex; gap: 16px; }
.compass-steps .step-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--wine);
  font-family: var(--serif); font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.compass-steps h3 { font-size: 1.05rem; }
.compass-steps p { color: var(--ink-muted); font-size: .95rem; margin-top: 2px; }

.compass-viz {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.compass-viz svg { width: 100%; max-width: 340px; height: auto; margin-inline: auto; }
.dials { display: flex; justify-content: center; gap: 34px; margin-top: 22px; }
.dial { text-align: center; }
.dial svg { width: 92px; height: 92px; }
.dial .dial-label { font-family: var(--serif); color: var(--wine); font-weight: 600; margin-top: 6px; font-size: 1rem; }
.dial .dial-sub { font-size: .78rem; color: var(--ink-muted); }
@media (max-width: 820px) { .compass { grid-template-columns: 1fr; } }

/* Buy / launch band */
.launch-band {
  background: linear-gradient(140deg, var(--wine) 0%, #571a29 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.launch-band::after {
  content:""; position:absolute; inset:auto -10% -60% -10%; height: 320px;
  background: radial-gradient(circle at 50% 0, rgba(198,161,91,.28), transparent 60%);
  pointer-events:none;
}
.launch-band h2 { color: #fff; position: relative; }
.launch-band p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 16px auto 0; position: relative; }
.launch-band .btn { margin-top: 28px; position: relative; }
.launch-price { display:flex; justify-content:center; gap:26px; flex-wrap:wrap; margin-top: 30px; position: relative; }
.launch-price .lp { text-align:center; }
.launch-price .lp .amt { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color:#fff; display:block; }
.launch-price .lp .amt .was { font-size: 1rem; text-decoration: line-through; color: rgba(255,255,255,.55); font-weight:400; margin-left:6px; }
.launch-price .lp small { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size:.72rem; font-weight:600; }

/* Testimonials */
.tcarousel { position: relative; }
.ttrack {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ttrack::-webkit-scrollbar { display: none; }
.tcard {
  scroll-snap-align: start;
  flex: 0 0 min(380px, 82vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tcard .quote-mark { font-family: var(--serif); font-size: 3rem; line-height: .6; color: var(--gold); height: 26px; }
.tcard blockquote { font-family: var(--serif); font-size: 1.15rem; color: var(--wine); line-height: 1.5; margin-top: 8px; }
.tcard .stars { color: var(--gold); letter-spacing: 2px; margin-top: 16px; font-size: .95rem; }
.tcard cite { margin-top: 12px; font-style: normal; font-weight: 600; color: var(--ink); font-size: .92rem; }
.tcard cite span { display:block; font-weight: 400; color: var(--ink-muted); font-size: .82rem; }
.placeholder-note {
  margin-top: 20px; text-align: center; font-size: .85rem; color: var(--ink-muted);
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.placeholder-note .pin { color: var(--gold); }
.tnav { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.tnav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--wine);
  display: grid; place-items: center;
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.tnav button:hover { background: var(--wine); color: #fff; border-color: var(--wine); transform: translateY(-2px); }

/* FAQ accordion */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 44px 24px 4px;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 600; color: var(--wine);
  position: relative; line-height: 1.3;
}
.faq-q .plus {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; flex:none;
}
.faq-q .plus::before, .faq-q .plus::after {
  content:""; position: absolute; background: var(--rose); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s;
}
.faq-q .plus::before { left: 0; right: 0; top: 12px; height: 2px; }
.faq-q .plus::after  { top: 0; bottom: 0; left: 12px; width: 2px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 44px 24px 4px; color: var(--ink-muted); }
.faq-item.open .faq-q { color: var(--rose); }

/* =============================================================
   Footer (shared)
   ============================================================= */
.site-footer {
  background: var(--wine);
  color: rgba(255,255,255,.82);
  padding-block: clamp(48px, 7vw, 84px) 34px;
  margin-top: var(--section-y);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.7); margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.footer-tagline { font-family: var(--serif); font-style: italic; color: var(--gold); margin-top: 16px; font-size: 1.05rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  display: grid; place-items: center; color: #fff;
  transition: background .3s, transform .3s, border-color .3s;
}
.social-links a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; }
.footer-handle { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Radar draw-on animation (used in hero + brand mark) */
.radar-draw path, .radar-draw circle, .radar-draw line, .radar-draw polygon {
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1.6s var(--ease);
}
.radar-draw.in path, .radar-draw.in circle, .radar-draw.in line, .radar-draw.in polygon {
  stroke-dashoffset: 0;
}
.radar-draw polygon.fill { transition: stroke-dashoffset 1.6s var(--ease), fill-opacity 1s ease .8s; fill-opacity: 0; }
.radar-draw.in polygon.fill { fill-opacity: 0.16; }
@media (prefers-reduced-motion: reduce) {
  .radar-draw path, .radar-draw circle, .radar-draw line, .radar-draw polygon { stroke-dashoffset: 0; }
  .radar-draw polygon.fill { fill-opacity: 0.16; }
}
