/* ═══════════════════════════════════════════════════
   Film Night — Shared Stylesheet
   filmnight.co · Vintage Marquee Theme
═══════════════════════════════════════════════════ */

:root {
  --bg:          #0d0704;
  --red-deep:    #7a1220;
  --red:         #a8202f;
  --red-mid:     #a8202f;
  --amber:       #e8b647;
  --amber-light: #f0c96a;
  --amber-dark:  #c8941f;
  --amber-pale:  rgba(232,182,71,0.10);
  --text:        #f8f0e2;
  --text-muted:  #cfbda2;
  --text-dim:    #8a7560;
  --card-bg:     #1a100a;
  --card-border: rgba(232,182,71,0.2);
  --curtain-w:   0px;
  --nav-h:       64px;
  --radius:      10px;
  --radius-sm:   8px;
  --serif:       Georgia, 'Times New Roman', serif;
  --sans:        Arial, Helvetica, sans-serif;
  --t:           0.18s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: radial-gradient(circle at 50% -10%, #2a160c 0%, var(--bg) 60%) fixed;
  color: var(--text);
  min-height: 100vh; overflow-x: hidden; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Keyframes ── */
@keyframes flick  { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes risein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════
   CINEMA BACKDROP
═══════════════════════════════════════════════════ */
.backdrop { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
/* Ensure page content always paints above the drapes */
main, .quiz-stage, .page-wrap, .hiw-stage { position: relative; z-index: 1; }
/* Full-bleed red theater drapes — exact match to artifact */
.curtain-left {
  position: absolute; inset: 0; width: auto;
  opacity: 0.4;
  background:
    repeating-linear-gradient(90deg, #3a0a12 0px, #5c1019 22px, #2e070d 44px, #1c0508 66px),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  background-blend-mode: multiply;
  box-shadow: inset 0 -120px 160px rgba(0,0,0,0.85), inset 0 60px 120px rgba(0,0,0,0.6);
}
.curtain-right, .valance, .vignette { display: none; }

/* ── Marquee bulbs ── */
.marquee { display: flex; justify-content: center; gap: 10px; }
.marquee .bulb {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ffd97a;
  box-shadow: 0 0 6px #ffd97a, 0 0 14px rgba(255,217,122,0.7), 0 0 26px rgba(232,182,71,0.45);
  display: inline-block;
  animation: flick 1.4s infinite;
}
.marquee .bulb:nth-child(4n+2) { animation-delay: 0.25s; }
.marquee .bulb:nth-child(4n+3) { animation-delay: 0.5s; }
.marquee .bulb:nth-child(4n+4) { animation-delay: 0.75s; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 calc(var(--curtain-w) + 24px);
  background: rgba(13,7,4,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,182,71,0.15);
}
.nav-logo { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: #f6cd66; flex-shrink: 0; letter-spacing: 1px; text-shadow: 0 0 8px rgba(255,217,122,0.6), 0 0 20px rgba(232,182,71,0.4); }
.nav-logo span { color: var(--text); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-muted); transition: color var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-cta {
  margin-left: 20px;
  background: linear-gradient(180deg, var(--amber), var(--amber-dark));
  color: #2a160c !important; font-weight: 700; font-size: 0.84rem;
  padding: 8px 20px; border-radius: var(--radius-sm);
  box-shadow: 0 0 14px rgba(232,182,71,0.25);
  transition: opacity var(--t), transform var(--t);
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-toggle { display: none; color: var(--text-muted); font-size: 1.6rem; margin-left: auto; }

@media (max-width: 700px) {
  .site-nav { padding: 0 14px 0 calc(var(--curtain-w) + 12px); }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(13,7,4,0.98); padding: 20px 24px; gap: 20px;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; display: block; }
}

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.page-wrap {
  position: relative; z-index: 1;
  padding: 0 calc(var(--curtain-w) + 36px);
  max-width: 1020px; margin: 0 auto;
}
@media (max-width: 700px) { .page-wrap { padding: 0 calc(var(--curtain-w) + 16px); } }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero { text-align: center; padding: 72px 0 48px; }
.eyebrow { display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.hero h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.2; margin-bottom: 16px; color: var(--amber); letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 30px rgba(232,182,71,0.4); }
.hero h1 em { color: var(--text); font-style: normal; }
.hero > p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; }
.hero-features { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 44px; font-family: var(--sans); font-size: 0.82rem; color: var(--text-muted); }
.hero-feature::before { content: '✦'; color: var(--amber); margin-right: 6px; font-size: 0.65rem; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.5px;
  transition: all var(--t);
}
.btn-primary {
  background: linear-gradient(180deg, var(--amber), var(--amber-dark));
  color: #2a160c;
  box-shadow: 0 0 20px rgba(232,182,71,0.25);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 26px rgba(232,182,71,0.35); }
.btn-outline { border: 1px solid rgba(232,182,71,0.33); color: var(--amber); background: transparent; font-weight: 600; }
.btn-outline:hover { border-color: var(--amber); background: var(--amber-pale); }
.btn:disabled { opacity: 0.38; pointer-events: none; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* ═══════════════════════════════════════════════════
   QUIZ
═══════════════════════════════════════════════════ */
#quiz-app { max-width: 660px; margin: 0 auto; padding-bottom: 80px; }

.quiz-start { text-align: center; padding: 2rem 0; }
.quiz-start .marquee { margin-bottom: 14px; }
.quiz-start .marquee:last-of-type { margin-top: 24px; margin-bottom: 0; }
.quiz-icon { display: inline-block; font-size: 3.4rem; margin-bottom: 0.6rem; filter: drop-shadow(0 0 16px rgba(232,182,71,0.4)); }
.quiz-kicker { font-family: var(--sans); color: #ffd97a; letter-spacing: 0.5em; font-size: 0.78rem; margin: 0 0 0.25rem; text-transform: uppercase; text-shadow: 0 0 8px rgba(255,217,122,0.8), 0 0 18px rgba(232,182,71,0.5); }
.quiz-title { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 900; margin: 0 0 0.5rem; color: #f6cd66; letter-spacing: 3px; text-shadow: 0 0 6px rgba(255,217,122,0.85), 0 0 16px rgba(246,205,102,0.65), 0 0 36px rgba(232,182,71,0.5), 0 0 70px rgba(232,182,71,0.35); text-transform: uppercase; line-height: 1.1; }
.quiz-tagline { color: var(--text-muted); font-size: 1.1rem; max-width: 420px; margin: 0.5rem auto 2rem; line-height: 1.6; }

.quiz-progress { margin-bottom: 28px; }
.quiz-progress-labels { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 8px; text-transform: uppercase; }
.quiz-bar-track { height: 6px; background: #2a1a10; border: 1px solid rgba(232,182,71,0.13); border-radius: 99px; overflow: hidden; }
.quiz-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--amber)); border-radius: 99px; transition: width 0.3s ease; }

.quiz-question h2 { font-family: var(--serif); font-size: 1.85rem; font-weight: 700; line-height: 1.3; margin-bottom: 24px; color: #fdfaf4; text-shadow: 0 0 14px rgba(255,255,255,0.12); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--card-bg); border: 1px solid rgba(232,182,71,0.2);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-family: var(--serif); font-size: 1.05rem; text-align: left; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: all 0.15s; color: #faf5ec;
}
@media (hover: hover) {
  .quiz-option:hover { border-color: var(--amber); background: #241710; }
}
.quiz-option.selected { border-color: var(--amber); background: #2a1810; }
.quiz-arrow { color: var(--amber); flex-shrink: 0; }
.quiz-check { width: 17px; height: 17px; border-radius: 50%; border: 1px solid rgba(232,182,71,0.27); flex-shrink: 0; }
.quiz-option.selected .quiz-check { border: none; background: var(--amber); box-shadow: 0 0 8px rgba(232,182,71,0.6); }

.quiz-text-input {
  width: 100%; background: var(--card-bg); border: 1px solid rgba(232,182,71,0.33);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-family: var(--serif); font-size: 1.05rem; color: var(--text); outline: none;
  transition: border-color var(--t); margin-bottom: 12px;
}
.quiz-text-input::placeholder { color: var(--text-dim); }
.quiz-text-input:focus { border-color: var(--amber); box-shadow: 0 0 14px rgba(232,182,71,0.15); }
.quiz-skip { width: 100%; color: var(--amber); font-size: 0.92rem; padding: 12px; border: 1px solid rgba(232,182,71,0.33); border-radius: var(--radius-sm); transition: all var(--t); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.quiz-skip:hover { border-color: var(--amber); background: var(--amber-pale); }
.quiz-back { margin-top: 14px; color: var(--amber); font-size: 0.92rem; padding: 10px 18px; border: 1px solid rgba(232,182,71,0.33); border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 6px; transition: all var(--t); }
.quiz-back:hover { border-color: var(--amber); background: var(--amber-pale); }

.quiz-loading { text-align: center; padding: 5rem 0; }
.quiz-spinner { font-size: 3.2rem; display: inline-block; animation: spin 2s linear infinite; margin-bottom: 1.5rem; color: var(--amber); filter: drop-shadow(0 0 12px rgba(232,182,71,0.4)); }
.quiz-loading h3 { font-size: 1.3rem; font-weight: 700; color: var(--amber); margin-bottom: 8px; }
.quiz-loading p  { color: var(--text-muted); font-family: var(--sans); font-size: 0.9rem; }

.usage-banner { background: var(--amber-pale); border: 1px solid rgba(232,182,71,0.27); border-radius: var(--radius-sm); padding: 10px 16px; font-family: var(--sans); font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.usage-banner strong { color: var(--amber); }

.quiz-results-header { text-align: center; margin-bottom: 24px; }
.quiz-results-header .marquee { margin-bottom: 10px; }
.quiz-results-header h2 { font-family: var(--serif); font-size: 2.1rem; font-weight: 900; color: #f6cd66; letter-spacing: 2px; text-transform: uppercase; margin: 0.25rem 0; text-shadow: 0 0 6px rgba(255,217,122,0.85), 0 0 16px rgba(246,205,102,0.6), 0 0 36px rgba(232,182,71,0.45), 0 0 70px rgba(232,182,71,0.3); }
.quiz-results-header p  { color: var(--text-muted); font-family: var(--sans); font-size: 0.88rem; }

/* ── Movie cards ── */
.movie-card {
  background: var(--card-bg); border: 1px solid rgba(232,182,71,0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 20px; margin-bottom: 14px;
  transition: opacity var(--t);
}
.movie-card.enter { animation: risein 0.4s both; }
.movie-card.replacing { opacity: 0.5; }
.movie-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.movie-main { flex: 1; min-width: 0; }
.movie-title-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 3px; }
.movie-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--text); }
.movie-year  { font-size: 0.95rem; color: var(--text-dim); font-weight: 500; }
.movie-genre { display: block; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 8px; }
.movie-reason { font-size: 0.98rem; color: #d8c4a8; line-height: 1.6; margin-bottom: 12px; }

.movie-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.badge { display: inline-flex; align-items: center; gap: 5px; border-radius: 6px; padding: 3px 9px; font-family: var(--sans); font-size: 0.82rem; }
.badge-imdb     { background: rgba(232,182,71,0.1);  border: 1px solid rgba(232,182,71,0.33); color: #fde9b8; }
.badge-imdb b   { font-weight: 900; letter-spacing: 1px; font-size: 0.7rem; color: var(--amber); }
.badge-critics  { background: rgba(168,32,47,0.18);  border: 1px solid rgba(168,32,47,0.47); color: #f4b8c0; }
.badge-audience { background: rgba(232,182,71,0.08); border: 1px solid rgba(232,182,71,0.2);  color: #e8cfa0; }
.badge-watch    { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); color: #cdbba0; }

.movie-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.movie-link { display: inline-flex; align-items: center; gap: 4px; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; transition: opacity var(--t); }
.movie-link:hover { opacity: 0.75; }
.link-rt      { color: #f4b8c0; }
.link-imdb    { color: #fde9b8; }
.link-trailer { color: #e8cfa0; }
.link-watch   { color: #ffd27a; }
.link-google  { color: #a8c7f0; }

.movie-side { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.movie-match-pill {
  background: rgba(232,182,71,0.12); border: 1px solid rgba(232,182,71,0.33);
  border-radius: 99px; padding: 4px 11px;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 700; color: #fde9b8;
  white-space: nowrap;
}
.movie-icon-btn { padding: 4px; font-size: 1.25rem; line-height: 1; transition: transform var(--t), color var(--t); color: #6b5642; -webkit-tap-highlight-color: transparent; }
@media (hover: hover) {
  .movie-icon-btn:hover { transform: scale(1.15); }
}
.movie-icon-btn.saved { color: var(--red); }

/* ── Seen list ── */
.seen-toggle { width: 100%; justify-content: center; padding: 0.7rem; border-style: dashed !important; }
.seen-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.25); border: 1px solid rgba(232,182,71,0.12);
  border-radius: var(--radius-sm); padding: 0.6rem 0.85rem; margin-bottom: 8px;
}
.seen-row-title { color: #d8c4a8; font-weight: 600; }
.seen-row-year  { color: var(--text-dim); margin-left: 6px; font-size: 0.85rem; }
.seen-row-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.seen-bring-back { flex-shrink: 0; border: 1px solid rgba(232,182,71,0.33); color: var(--amber); border-radius: var(--radius-sm); padding: 0.45rem 0.8rem; font-family: var(--sans); font-size: 0.82rem; transition: all var(--t); }
.seen-bring-back:hover { border-color: var(--amber); background: var(--amber-pale); }

.quiz-error { text-align: center; padding: 5rem 0; }
.quiz-error p { font-size: 1.25rem; color: #f4b8c0; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════ */
.page-header { padding: 56px 0 40px; border-bottom: 1px solid var(--card-border); margin-bottom: 48px; }
.page-header .eyebrow { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; display: block; }
.page-header h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.22; margin-bottom: 12px; color: var(--amber); letter-spacing: 1px; }
.page-header p { color: var(--text-muted); max-width: 520px; font-size: 0.98rem; }

/* ═══════════════════════════════════════════════════
   PROSE
═══════════════════════════════════════════════════ */
.prose { max-width: 680px; padding-bottom: 80px; }
.prose h2 { font-family: var(--serif); font-size: 1.45rem; margin: 44px 0 14px; color: var(--text); }
.prose h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; color: var(--amber); margin: 28px 0 10px; }
.prose p  { color: var(--text-muted); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.78; }
.prose ul { list-style: none; padding: 0; margin-bottom: 18px; }
.prose ul li { color: var(--text-muted); font-size: 0.97rem; padding: 4px 0 4px 20px; position: relative; line-height: 1.65; }
.prose ul li::before { content: '✦'; color: var(--amber); font-size: 0.58rem; position: absolute; left: 0; top: 9px; }
.prose a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

.faq-item { border-bottom: 1px solid var(--card-border); padding: 22px 0; }
.faq-q { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.faq-a { color: var(--text-muted); font-size: 0.94rem; line-height: 1.72; }

/* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; margin-top: 8px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--t), transform var(--t); }
.blog-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.blog-thumb { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: rgba(0,0,0,0.25); border-bottom: 1px solid var(--card-border); }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.blog-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-footer { padding: 12px 20px; border-top: 1px solid var(--card-border); font-family: var(--sans); font-size: 0.76rem; color: var(--text-dim); display: flex; justify-content: space-between; }
.blog-read-more { color: var(--amber); font-size: 0.76rem; }

.blog-post { max-width: 680px; padding-bottom: 80px; }
.blog-post-meta { display: flex; gap: 16px; font-family: var(--sans); font-size: 0.78rem; color: var(--text-dim); margin-bottom: 32px; flex-wrap: wrap; }
.blog-post h2 { font-family: var(--serif); font-size: 1.45rem; margin: 44px 0 16px; color: var(--text); }
.blog-post p  { color: var(--text-muted); font-size: 0.97rem; line-height: 1.78; margin-bottom: 16px; }

.pick { background: var(--card-bg); border: 1px solid var(--card-border); border-left: 4px solid var(--red); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.pick-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 3px; }
.pick-meta  { font-family: var(--sans); font-size: 0.76rem; color: var(--amber); margin-bottom: 8px; letter-spacing: 0.05em; }
.pick-desc  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

.blog-cta { background: var(--amber-pale); border: 1px solid rgba(232,182,71,0.33); border-radius: var(--radius); padding: 32px; text-align: center; margin: 52px 0; }
.blog-cta h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 10px; color: var(--amber); }
.blog-cta p  { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 22px; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 36px calc(var(--curtain-w) + 36px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--amber); letter-spacing: 1px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-family: var(--sans); font-size: 0.78rem; color: var(--text-dim); transition: color var(--t); }
.footer-links a:hover { color: var(--amber); }
.footer-copy { width: 100%; font-family: var(--sans); font-size: 0.76rem; color: var(--text-dim); margin-top: 6px; }
@media (max-width: 700px) { .site-footer { padding: 28px 16px; } }
