/* ==========================================================================
   BookTrailers4Authors — shared stylesheet
   ========================================================================== */

:root {
  --bg: #0c0b09;
  --bg-soft: #14120e;
  --bg-card: #1a1712;
  --line: #2b2620;
  --text: #f2ede4;
  --text-dim: #b3a996;
  --gold: #d4a94e;
  --gold-bright: #e8c273;
  --gold-deep: #a87f2e;
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Arial, Helvetica, sans-serif;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.sans { font-family: var(--sans); }
.center { text-align: center; }

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #171307;
  padding: 10px 18px;
  z-index: 200;
  font-family: var(--sans);
  font-size: 0.85rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(12, 11, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo em { color: var(--gold); font-style: normal; }

nav.main-nav { display: flex; gap: 26px; align-items: center; }
nav.main-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a:focus-visible { color: var(--gold-bright); }
nav.main-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold-deep);
  padding: 8px 18px;
  border-radius: 3px;
  color: var(--gold-bright) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .nav-open nav.main-nav { max-height: 420px; }
  nav.main-nav a {
    padding: 15px 6vw;
    border-top: 1px solid var(--line);
  }
  .nav-cta {
    border: none;
    border-top: 1px solid var(--line) !important;
    border-radius: 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #171307;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 38px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-deep);
}
.btn-ghost:hover { background: rgba(212, 169, 78, 0.1); }
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 6vw 110px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 115%, rgba(212, 169, 78, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(212, 169, 78, 0.07), transparent),
    var(--bg);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  background: #000;
  z-index: 1;
}
.hero::before { top: 0; box-shadow: 0 1px 0 var(--line); }
.hero::after { bottom: 0; box-shadow: 0 -1px 0 var(--line); }
.hero > * { position: relative; z-index: 2; }

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.12;
  max-width: 850px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); white-space: nowrap; }
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-note {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  text-align: center;
  padding: 84px 6vw 66px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(212, 169, 78, 0.09), transparent),
    var(--bg);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 18px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--gold-bright); }
.page-hero p {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
section { padding: 92px 6vw; }
section.tight { padding-top: 64px; padding-bottom: 64px; }
.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 58px; }
.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-head p, .page-hero p, .cta-strip p { text-wrap: pretty; }
.section-head h2 em { font-style: italic; color: var(--gold-bright); }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* Prose blocks (about / legal) */
.prose h2 {
  font-weight: 400;
  font-size: 1.6rem;
  margin: 44px 0 14px;
  color: var(--text);
}
.prose h3 {
  font-weight: 400;
  font-size: 1.2rem;
  margin: 30px 0 10px;
  color: var(--gold-bright);
}
.prose p { color: var(--text-dim); margin-bottom: 18px; font-size: 1.04rem; }
.prose ul, .prose ol { color: var(--text-dim); margin: 0 0 20px 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--gold-bright); }
.prose > h2:first-child, .prose > p:first-child { margin-top: 0; }
.prose strong { color: var(--text); font-weight: 400; }
.lead {
  font-size: 1.22rem !important;
  color: var(--text) !important;
  line-height: 1.6;
}
.legal-date {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
}

/* ---------- Trailer cards ---------- */
.trailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.trailer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.trailer-card:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.trailer-thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trailer-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
}
.thumb-1 { background: linear-gradient(135deg, #1d1b2f 0%, #3b2d52 55%, #6b4a2e 100%); }
.thumb-2 { background: linear-gradient(135deg, #101d22 0%, #1e3a42 55%, #27515a 100%); }
.thumb-3 { background: linear-gradient(135deg, #26140f 0%, #4a2318 55%, #7a4020 100%); }
.thumb-4 { background: linear-gradient(135deg, #1a1524 0%, #402a3f 55%, #7d4a55 100%); }
.thumb-5 { background: linear-gradient(135deg, #0f1a14 0%, #1f3a2a 55%, #3f6b45 100%); }
.thumb-6 { background: linear-gradient(135deg, #211a10 0%, #47351a 55%, #806029 100%); }

.slate {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--sans);
  padding: 14px 18px;
  border: 1px solid rgba(232, 194, 115, 0.45);
  border-radius: 4px;
  background: rgba(12, 11, 9, 0.5);
  backdrop-filter: blur(2px);
}
.slate b {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.slate span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
}
.trailer-info { padding: 18px 20px 22px; }
.trailer-info h3 { font-weight: 400; font-size: 1.15rem; margin-bottom: 4px; }
.trailer-info .genre {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.trailer-info p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-top: 10px;
}

.community-line {
  text-align: center;
  margin-top: 52px;
  font-family: var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--text-dim);
}
.community-line b { color: var(--gold); font-weight: 400; }

/* Placeholder notice */
.placeholder-note {
  max-width: 620px;
  margin: 44px auto 0;
  text-align: center;
  border: 1px dashed var(--gold-deep);
  border-radius: 6px;
  padding: 22px 26px;
  background: rgba(212, 169, 78, 0.04);
}
.placeholder-note p {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.placeholder-note b { color: var(--gold-bright); font-weight: 600; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-weight: 400; font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.98rem; }

/* Detailed timeline (how it works page) */
.timeline { max-width: 780px; margin: 0 auto; }
.tl-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: none; }
.tl-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.3rem;
  color: var(--gold-deep);
  line-height: 1;
  text-align: right;
}
.tl-body h3 { font-weight: 400; font-size: 1.35rem; margin-bottom: 8px; }
.tl-body .tl-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tl-body p { color: var(--text-dim); margin-bottom: 12px; }
.tl-body ul { color: var(--text-dim); margin-left: 20px; font-size: 0.97rem; }
.tl-body li { margin-bottom: 7px; }
@media (max-width: 560px) {
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .tl-num { text-align: left; }
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 28px;
}
.feature h3 {
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gold-bright);
}
.feature p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 26px;
  max-width: 1050px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured { border-color: var(--gold-deep); box-shadow: 0 0 40px rgba(212, 169, 78, 0.08); }
.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #171307;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 { font-weight: 400; font-size: 1.3rem; margin-bottom: 6px; }
.price-card .tagline {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.price {
  font-size: 2.6rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
  line-height: 1;
}
.price small { font-size: 0.9rem; color: var(--text-dim); }
.price-card ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.price-card li {
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(43, 38, 32, 0.6);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.price-card .btn { text-align: center; }

/* Comparison table */
.compare-wrap { overflow-x: auto; max-width: var(--maxw); margin: 0 auto; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-family: var(--sans);
  font-size: 0.92rem;
}
table.compare th, table.compare td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
table.compare tbody th { font-weight: 400; color: var(--text); }
table.compare td { color: var(--text-dim); text-align: center; }
table.compare td.yes { color: var(--gold-bright); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details[open] summary { color: var(--gold-bright); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 42px 24px 0;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--gold-bright); }
.faq .answer { padding: 0 42px 26px 0; }
.faq .answer p { color: var(--text-dim); margin-bottom: 14px; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer ul { color: var(--text-dim); margin: 0 0 14px 20px; }
.faq .answer li { margin-bottom: 7px; }
.faq .answer a { color: var(--gold-bright); }
.faq-group-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 52px 0 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-deep);
}
.faq-group-title:first-child { margin-top: 0; }

/* ---------- Forms ---------- */
.form-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 46px 44px;
}
@media (max-width: 560px) { .form-box { padding: 32px 22px; } }
.field { margin-bottom: 22px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field label .hint { text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1rem;
  padding: 13px 14px;
  transition: border-color 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select {
  appearance: none;
  -webkit-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% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.form-box .btn { width: 100%; margin-top: 6px; }
.form-note {
  text-align: center;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.form-note a { color: var(--gold-bright); }
.success { display: none; text-align: center; padding: 26px 6px; }
.success h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 10px; color: var(--gold-bright); }
.success p { color: var(--text-dim); }
.form-error {
  display: none;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #e8956f;
  text-align: center;
}
.hp { position: absolute; left: -9999px; }

/* ---------- Brief section wrapper ---------- */
.brief-bg {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 169, 78, 0.1), transparent),
    var(--bg);
}

/* ---------- Quote / testimonial ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}
blockquote.quote {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold-deep);
  border-radius: 4px;
  padding: 30px 30px 26px;
}
blockquote.quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
}
blockquote.quote footer {
  border: none;
  padding: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  text-align: center;
  padding: 82px 6vw;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(212, 169, 78, 0.12), transparent),
    var(--bg-soft);
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-bright); }
.cta-strip p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---------- Stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat span {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 6vw 40px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto 40px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
}
.footer-brand .logo { font-family: var(--serif); display: inline-block; margin-bottom: 12px; }
.footer-brand p { max-width: 320px; line-height: 1.7; }
@media (max-width: 700px) { .footer-brand p { margin: 0 auto; } }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-bright); }
@media (max-width: 700px) { .footer-bottom { justify-content: center; text-align: center; } }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
