/* ══════════════════════════════════════════════════════════════════════
   Unlisted Trips — v1
   Cinematic editorial dark luxury. Charcoal + bone + brass.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg:        #0F0F0E;   /* near-black charcoal */
  --text:      #EDE8E0;   /* warm off-white / parchment */
  --accent:    #B8763E;   /* burnt amber / brass */
  --accent-hi: #d1965f;   /* lighter brass for AAA-leaning hover text */
  --muted:     #8C877E;   /* warm gray */
  --hairline:  #2A2926;   /* 1px separators */

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

  /* Rhythm */
  --container: 1180px;
  --measure: 640px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent); color: #100c07;
  padding: .7rem 1.1rem; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Layout helpers ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .85;
}

.section-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Serif display */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.14; letter-spacing: -.01em; }

/* ══════════════════════════════════════════════════════════════════════
   1 · HERO
   ══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }

/* Dark gradient overlay — strongest at bottom for text legibility, subtle at top-left */
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(15,15,14,.55) 0%, rgba(15,15,14,0) 28%, rgba(15,15,14,0) 55%, rgba(15,15,14,.85) 100%),
    linear-gradient(105deg, rgba(15,15,14,.45) 0%, rgba(15,15,14,0) 45%);
}

.hero__top {
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
}
.wordmark { display: inline-flex; align-items: center; gap: .1rem; color: var(--text); }
.wordmark svg { height: 20px; width: auto; }

.hero__body {
  margin-top: auto;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  max-width: 940px;
}
.hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 4.2rem);
  line-height: 1.08;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__subhead {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text);
  opacity: .82;
  max-width: 46ch;
  line-height: 1.5;
}
.hero__actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

/* CTA button — the single brass button on the page */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent);
  color: #120d07;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.65rem;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  min-height: 48px;
}
.btn:hover { background: var(--accent-hi); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 15px; height: 15px; }

.link-quiet {
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--text);
  opacity: .82;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}
.link-quiet:hover { color: var(--accent-hi); border-color: var(--accent-hi); opacity: 1; }

/* ══════════════════════════════════════════════════════════════════════
   Shared section rhythm
   ══════════════════════════════════════════════════════════════════════ */
.section { padding-block: clamp(4.5rem, 11vh, 9rem); }
.section--tight { padding-block: clamp(4rem, 9vh, 7rem); }

/* ══════════════════════════════════════════════════════════════════════
   2 · LATEST VIDEO
   ══════════════════════════════════════════════════════════════════════ */
.video__head { max-width: 720px; margin-bottom: 2.6rem; }
.video__head .section-label { display: block; margin-bottom: 1rem; }
.video h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  max-width: 20ch;
  text-wrap: balance;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #0a0a09;
}
.video__frame iframe,
.video__frame .video__facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Facade / placeholder */
.video__facade {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem;
  cursor: default;
  background:
    radial-gradient(120% 90% at 50% 35%, rgba(184,118,62,.10), transparent 60%),
    #100f0d;
  border: 1px solid var(--hairline);
  color: var(--muted);
  text-align: center;
  padding: 1.5rem;
}
.video__facade.is-playable { cursor: pointer; }
.video__facade .play-ring {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(237,232,224,.28);
  display: grid; place-items: center;
  color: var(--text);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.video__facade.is-playable:hover .play-ring { border-color: var(--accent); background: rgba(184,118,62,.14); transform: scale(1.04); }
.video__facade .play-ring svg { width: 24px; height: 24px; margin-left: 3px; }
.video__facade .facade-note { font-size: .95rem; letter-spacing: .02em; }

.video__caption {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 62ch;
}
.video__more {
  margin-top: 1.4rem;
  display: inline-block;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.video__more:hover { color: var(--accent-hi); border-color: var(--accent-hi); }

/* ══════════════════════════════════════════════════════════════════════
   3 · MISSION
   ══════════════════════════════════════════════════════════════════════ */
.mission { border-top: 1px solid var(--hairline); }
.mission .inner { max-width: var(--measure); margin-inline: auto; text-align: center; }
.mission p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.72rem);
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -.005em;
}
.mission p em { color: var(--accent-hi); font-style: italic; }

/* ══════════════════════════════════════════════════════════════════════
   4 · FEATURED OPERATORS
   ══════════════════════════════════════════════════════════════════════ */
.operators { border-top: 1px solid var(--hairline); }
.operators__head { margin-bottom: 3rem; }
.operators__head .section-label { display: block; margin-bottom: .9rem; }
.operators__head h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }

.operators__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.op-tile {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  min-height: 132px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background .25s ease;
}
.op-tile--live { color: var(--text); }
.op-tile--live a {
  display: inline-flex; flex-direction: column; align-items: center; gap: .4rem;
  filter: grayscale(1) opacity(.72);
  transition: filter .3s ease, color .2s ease;
}
.op-tile--live a:hover { filter: grayscale(0) opacity(1); color: var(--accent-hi); }
.op-tile--live .op-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.op-tile--live .op-region {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.op-tile--empty { color: var(--hairline); }
.op-tile--empty span {
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #4a4842;
}

.operators__micro {
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 1rem;
}
.operators__micro a { color: var(--text); border-bottom: 1px solid var(--hairline); padding-bottom: 2px; transition: color .2s ease, border-color .2s ease; }
.operators__micro a:hover { color: var(--accent-hi); border-color: var(--accent-hi); }

/* ══════════════════════════════════════════════════════════════════════
   5 · NEWSLETTER
   ══════════════════════════════════════════════════════════════════════ */
.newsletter { border-top: 1px solid var(--hairline); }
.newsletter .inner { max-width: 620px; margin-inline: auto; text-align: center; }
.newsletter h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  text-wrap: balance;
}
.newsletter__sub {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 44ch; margin-inline: auto;
}
.newsletter form {
  margin-top: 2.4rem;
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin-inline: auto;
}
.newsletter label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.newsletter input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  padding: .85rem .25rem;
  transition: border-color .25s ease;
  min-height: 48px;
}
.newsletter input[type="email"]::placeholder { color: var(--muted); }
.newsletter input[type="email"]:focus { outline: none; border-bottom-color: var(--accent); }
.newsletter__trust {
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.5;
  max-width: 48ch; margin-inline: auto;
  opacity: .85;
}
.newsletter__thanks { margin-top: 2rem; color: var(--accent-hi); font-family: var(--serif); font-size: 1.25rem; }

/* ══════════════════════════════════════════════════════════════════════
   6 · FOLLOW ALONG
   ══════════════════════════════════════════════════════════════════════ */
.follow {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--hairline);
  color: var(--text);
}
.follow__media { position: absolute; inset: 0; z-index: -2; }
.follow__media img { width: 100%; height: 100%; object-fit: cover; }
.follow__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(15,15,14,.86), rgba(15,15,14,.72) 50%, rgba(15,15,14,.9));
}
.follow .inner { text-align: center; }
.follow .section-label { display: block; margin-bottom: 1rem; }
.follow h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); text-wrap: balance; max-width: 22ch; margin-inline: auto; }
.follow__links {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.follow__link {
  display: inline-flex; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--text);
  transition: color .2s ease, transform .25s ease;
  min-width: 44px;
}
.follow__link svg { width: 30px; height: 30px; transition: color .2s ease; }
.follow__link .fl-name { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.follow__link .fl-handle { font-size: .82rem; color: var(--muted); }
.follow__link:hover { color: var(--accent-hi); transform: translateY(-3px); }
.follow__link:hover .fl-handle { color: var(--accent-hi); }

/* ══════════════════════════════════════════════════════════════════════
   7 · FOOTER
   ══════════════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--hairline); padding-block: clamp(3rem, 6vh, 4.5rem); }
.footer .wordmark svg { height: 18px; }
.footer__tagline {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  opacity: .85;
  max-width: 40ch;
}
.footer__meta { margin-top: 1.8rem; color: var(--muted); font-size: .92rem; line-height: 1.9; }
.footer__meta a { color: var(--text); border-bottom: 1px solid var(--hairline); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.footer__meta a:hover { color: var(--accent-hi); border-color: var(--accent-hi); }
.footer__copy { margin-top: 1.4rem; color: var(--muted); font-size: .82rem; opacity: .8; }

/* ══════════════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero__media img { object-position: 66% center; }
  .newsletter form { flex-direction: column; }
  .newsletter form .btn { justify-content: center; }
  .follow__links { gap: 1.8rem; }
}

@media (max-width: 420px) {
  .operators__grid { grid-template-columns: repeat(2, 1fr); }
}
