/* ==========================================================================
   TranSugarBaby — Design System
   Dark luxe aesthetic: deep plum / charcoal base, gold & rose-gold accents.
   Fonts: Playfair Display (display serif) + Inter (sans), via Google Fonts.
   Mobile-first. No external images: gradients + inline SVG only.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Palette */
  --bg:            #150e1b;  /* deep plum-charcoal */
  --bg-alt:        #1c1324;
  --surface:       #241a2e;
  --surface-2:     #2d2139;
  --surface-3:     #37284a;
  --ink:           #f5f0f6;
  --muted:         #bcadc9;
  --faint:         #8f7fa0;
  --gold:          #d9b36c;
  --gold-bright:   #f0d9a6;
  --gold-deep:     #b8934a;
  --rose:          #e0a392;
  --rose-deep:     #c9836f;
  --line:          rgba(217, 179, 108, 0.16);
  --line-soft:     rgba(217, 179, 108, 0.09);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 10px 30px rgba(217, 179, 108, 0.22);
  --header-h: 74px;

  --grad-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --grad-hero:
    radial-gradient(900px 520px at 82% -10%, rgba(224, 163, 146, 0.16), transparent 60%),
    radial-gradient(760px 480px at 8% 0%, rgba(217, 179, 108, 0.14), transparent 55%),
    linear-gradient(180deg, #1d1226 0%, var(--bg) 78%);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: inline-block; vertical-align: middle; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1.1em; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-bright); }

main a:not(.btn):not(.card-link) { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
main a:not(.btn):not(.card-link):hover { text-decoration-color: var(--gold); }

ul, ol { padding-left: 1.25rem; margin: 0 0 1.1em; }
li { margin-bottom: 0.45em; }

strong { color: var(--ink); font-weight: 600; }

::selection { background: rgba(217, 179, 108, 0.32); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn svg { flex: 0 0 auto; }

.btn-gold {
  background: var(--grad-gold);
  color: #2a1c08;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(217, 179, 108, 0.34); color: #1d1304; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(217, 179, 108, 0.07); }

.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.06rem; }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(21, 14, 27, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(21, 14, 27, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.brand-text em { font-style: normal; color: var(--gold); }

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li { margin: 0; }
.main-nav a.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width 0.22s ease;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link[aria-current="page"] { color: var(--ink); }
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link[aria-current="page"]::after { width: 100%; }

/* Guides dropdown (desktop: hover/focus; mobile: JS toggle) */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}
.dropdown-toggle:hover { color: var(--ink); }
.dropdown-toggle .caret { transition: transform 0.2s ease; }
.has-dropdown.is-open .caret { transform: rotate(180deg); }

.main-nav ul.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 0.55rem;
  list-style: none;
  margin: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  z-index: 70;
}
.has-dropdown:hover ul.dropdown,
.has-dropdown:focus-within ul.dropdown,
.has-dropdown.is-open ul.dropdown { display: block; }
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}
.dropdown a:hover { background: rgba(217, 179, 108, 0.1); color: var(--gold-bright); }

.nav-cta { margin-left: 1.4rem; padding: 0.62rem 1.35rem; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  position: relative;
  transition: transform 0.22s ease, opacity 0.22s ease;
  content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top: 6px;  left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 900px) {
  .main-nav { display: flex; align-items: center; }
  .nav-toggle { display: none; }
}

/* Mobile nav panel */
@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(24, 16, 31, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.25rem 1.6rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .main-nav a.nav-link, .dropdown-toggle { display: block; width: 100%; padding: 0.7rem 0.4rem; font-size: 1.05rem; text-align: left; }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0.4rem 1rem;
    min-width: 0;
  }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-cta { margin: 0.9rem 0 0; width: 100%; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(21, 14, 27, 0.94) 0%, rgba(21, 14, 27, 0.78) 48%, rgba(21, 14, 27, 0.42) 100%),
    url("/assets/img/hero-home.webp") center 30% / cover no-repeat,
    var(--grad-hero);
  padding: 5.4rem 0 4.8rem;
  overflow: hidden;
}
.hero::before {
  /* subtle lattice pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(217, 179, 108, 0.07) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 85%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.hero h1, .hero p.lead, .hero .eyebrow, .hero .trust-badges, .hero .hero-note { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
.hero .eyebrow { margin-bottom: 1.1rem; }
.hero .eyebrow { justify-content: center; }
.hero p.lead { font-size: 1.14rem; color: var(--muted); max-width: 640px; margin-inline: auto; }
.hero .hero-actions,
.hero .trust-badges { justify-content: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 2.2rem; }
.hero-note { font-size: 0.88rem; color: var(--faint); margin: 0; }

@media (max-width: 600px) {
  .hero { padding-block: 2.4rem; }
  .hero-actions { margin-block: 1.35rem 1.6rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad-gold);
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.55rem 1rem;
  background: rgba(36, 26, 46, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-badges svg { color: var(--gold); flex: 0 0 auto; }

/* ---------- 7. Sections ---------- */
.section { padding: 4.4rem 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--grad-gold); }
.section-head p.lead, p.lead { color: var(--muted); font-size: 1.08rem; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; color: var(--gold-bright); font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; letter-spacing: 0.01em; }

.two-col { display: grid; gap: 2.2rem; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }

/* ---------- 8. Cards ---------- */
.card-grid { display: grid; gap: 1.3rem; }
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow-card); }
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(217, 179, 108, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* ---------- 9. Perspective split (babies / daddies) ---------- */
.split-grid { display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .split-grid { grid-template-columns: 1fr 1fr; } }

.split-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.split-panel.babies  { background: linear-gradient(160deg, rgba(224, 163, 146, 0.1), transparent 55%), var(--surface); }
.split-panel.daddies { background: linear-gradient(160deg, rgba(217, 179, 108, 0.12), transparent 55%), var(--surface); }
.split-panel h3 { font-size: 1.45rem; }
.split-panel p { color: var(--muted); }
.split-panel ul { color: var(--muted); font-size: 0.95rem; }
.split-panel ul li::marker { color: var(--gold); }
.split-panel .card-link { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.95rem; margin-top: 0.4rem; }

/* ---------- 10. Steps ---------- */
.steps { display: grid; gap: 1.3rem; counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.7rem;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.3rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(217, 179, 108, 0.22);
  line-height: 1;
}
.step h3 { margin-top: 0.2rem; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- 11. Testimonials ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}
.quote-card blockquote::before { content: "\201C"; color: var(--gold); }
.quote-card blockquote::after  { content: "\201D"; color: var(--gold); }
.quote-meta { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #2a1c08;
  background: var(--grad-gold);
}
.quote-meta .name { font-weight: 600; font-size: 0.95rem; }
.quote-meta .role { font-size: 0.84rem; color: var(--faint); }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; }

/* ---------- 12. FAQ ---------- */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: 0.97rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- 13. CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 5rem 0;
  background:
    radial-gradient(700px 380px at 50% 120%, rgba(217, 179, 108, 0.2), transparent 65%),
    linear-gradient(180deg, var(--bg-alt), #1a1023);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
}
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band p { color: var(--muted); max-width: 560px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0.6rem; }
.cta-note { font-size: 0.86rem; color: var(--faint); }

/* ---------- 14. Feature list w/ check icons ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.98rem;
}
.check-list svg { flex: 0 0 auto; margin-top: 0.28rem; color: var(--gold); }

/* ---------- 15. Page hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(100deg, rgba(21, 14, 27, 0.94) 0%, rgba(21, 14, 27, 0.78) 48%, rgba(21, 14, 27, 0.42) 100%),
    var(--hero-img, none) center 30% / cover no-repeat,
    var(--grad-hero);
  padding: 4.2rem 0 3.6rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-hero[style*="--hero-img"] {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(217, 179, 108, 0.07) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 90%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
}
.page-hero[style*="--hero-img"] .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-hero h1, .page-hero p.lead, .page-hero .breadcrumbs { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
.page-hero p.lead { max-width: 640px; margin-bottom: 0; }
.page-hero[style*="--hero-img"] h1 { max-width: 900px; }
.page-hero[style*="--hero-img"] p.lead { margin-inline: auto; }
.page-hero[style*="--hero-img"] .hero-actions { justify-content: center; margin-bottom: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: var(--faint);
}
.page-hero[style*="--hero-img"] .breadcrumbs { justify-content: center; }
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: 0.45rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs .sep { color: var(--faint); }
.breadcrumbs [aria-current="page"] { color: var(--gold); }

/* ---------- 16. Signup form (join page) ---------- */
.signup-wrap { display: grid; gap: 2.4rem; }
@media (min-width: 940px) { .signup-wrap { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }

.signup-card {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.signup-card h2 { margin-bottom: 0.35em; }
.signup-card .form-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }

.form-field { margin-bottom: 1.15rem; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(21, 14, 27, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 179, 108, 0.18);
}
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.form-check input { margin-top: 0.25rem; accent-color: var(--gold); width: 17px; height: 17px; flex: 0 0 auto; }

.signup-card .btn-gold { width: 100%; }
.form-fine { font-size: 0.8rem; color: var(--faint); text-align: center; margin: 0.9rem 0 0; }

.signup-side .card { margin-bottom: 1.2rem; }
.signup-side .card h3 { font-size: 1.12rem; }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: #100a16;
  border-top: 1px solid var(--line-soft);
  padding: 3.6rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }

.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-col h2, .footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--muted); font-size: 0.92rem; text-decoration: none; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-legal {
  border-top: 1px solid var(--line-soft);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-legal p { margin: 0; font-size: 0.84rem; color: var(--faint); }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 0.2rem 0.5rem;
  border: 1.5px solid var(--rose-deep);
  border-radius: 7px;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.footer-legal-row { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }

/* ---------- 18. Utilities ---------- */
.text-gold { color: var(--gold-bright); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- 19. Brand logo & imagery ---------- */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer .brand-logo { height: 44px; }

.hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.page-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  margin: 1.5rem 0 0;
  box-shadow: var(--shadow-card);
}
.content-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-card);
}
.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
