/* ════════════════════════════════════════════════════════
   F31 — bold single-page landing (dark luxe + kinetic marquees)
   Outfit + DM Serif Display · navy near-black + gold gradient
════════════════════════════════════════════════════════ */

:root {
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Outfit', system-ui, -apple-system, sans-serif;
  --navy: #15140f; --navy2: #1c1a15;
  --cream: #f0e9dd; --muted: #c4bbad; --t3: #8c8478;
  --gold: #c9a86a; --gold-d: #b08a4f; --gold-pale: #e7ddca;
  --line: #322e26;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--navy); color: var(--cream);
  font-family: var(--sans); -webkit-font-smoothing: antialiased;
  min-height: 100%; display: flex; flex-direction: column; overflow-x: hidden;
  position: relative;
}
/* warm gold glow */
body::before {
  content: ""; position: fixed; top: -28vh; left: 50%; transform: translateX(-50%);
  width: 130vw; height: 90vh;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--gold-d) 24%, transparent), transparent 60%);
  filter: blur(46px); pointer-events: none; z-index: 0;
}
a { color: inherit; text-decoration: none; }

/* content shell (padded), fills space above the marquees */
.shell {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column;
  padding: clamp(24px, 3.4vw, 48px);
  max-width: 1280px; width: 100%; margin: 0 auto;
}

.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: 0.12em; font-size: 20px; }
.brand svg { width: 30px; height: 30px; }
.meta { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--t3); }

.mid { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 28px 0; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: min(3vh, 26px); }
.mid h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 15vw, 248px); line-height: 0.84; letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold-d));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sub { margin-top: min(4vh, 32px); max-width: 50ch; font-size: clamp(16px, 1.7vw, 21px); line-height: 1.55; color: var(--muted); }

.mark { display: block; margin-bottom: min(3vh, 28px); }
.mark svg { width: clamp(56px, 8vw, 96px); height: clamp(56px, 8vw, 96px); }
.foot-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--t3); }
.foot-line a { color: var(--gold); font-weight: 600; transition: color 0.2s var(--ease); }
.foot-line a:hover { color: var(--gold-pale); }

/* ── kinetic marquees ────────────────────── */
.marq { position: relative; z-index: 1; overflow: hidden; white-space: nowrap; }
.marq-top { background: var(--gold); border-bottom: 1px solid var(--gold-d); }
.marq:not(.marq-top) { border-top: 1px solid var(--line); }
.track { display: inline-block; will-change: transform; animation: scroll 30s linear infinite;
  font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; }
.marq:not(.marq-top) .track { font-size: clamp(24px, 4.2vw, 54px); padding: 16px 0; color: var(--cream);
  animation-duration: 38s; }
.marq-top .track { font-size: clamp(15px, 2vw, 24px); padding: 13px 0; color: var(--navy);
  animation-duration: 38s; animation-direction: reverse; }
.track span { padding: 0 0.4em; }
.track .dot { color: var(--gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .track { animation: none; } }

@media (max-width: 640px) { .meta { display: none; } }
