:root {
  --bg: #1a1814;
  --jade: #2b2b2b;
  --gold: #ffd700;
  --gold-dim: #c9a227;
  --red: #d22b2b;
  --purple: #804080;
  --text: #fdfdfd;
  --muted: #a8a29a;
  --max: 720px;
  --pill-radius: 999px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 64, 128, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(210, 43, 43, 0.15), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: #fff; }

/* Floating pill nav */
.floating-pill {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  gap: 0.15rem;
  padding: 0.35rem 0.5rem;
  background: rgba(43, 43, 43, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--pill-radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.floating-pill a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--pill-radius);
  transition: color 0.2s, background 0.2s;
}

.floating-pill a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

/* Editorial type hero */
.editorial-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.25rem;
}

.editorial-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 1.5rem;
}

.hero-line1 {
  display: block;
  font-size: clamp(3rem, 12vw, 5.5rem);
  color: var(--text);
}

.hero-line2 {
  display: block;
  font-size: clamp(3.2rem, 13vw, 6rem);
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 28ch;
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

.hero-sub {
  max-width: 42ch;
  color: rgba(253, 253, 253, 0.78);
  margin: 0;
  font-size: 1rem;
}

/* Sections */
main section {
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.section-intro {
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.section-intro.left { text-align: left; }

.section-intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
}

.prose-column {
  max-width: var(--max);
  margin: 0 auto;
}

.prose-column p {
  margin: 0 0 1.35rem;
  color: rgba(253, 253, 253, 0.88);
}

.prose-column p strong {
  color: var(--gold);
  font-weight: 600;
}

/* Gallery strip */
.gallery-strip {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Inline screenshot thumbnails in prose */
.inline-screens .screen-inline {
  margin: 1.75rem 0;
  max-width: 280px;
}

.inline-screens .screen-inline--right {
  margin-left: auto;
}

.inline-screens img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.inline-screens figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Two-column legal */
.legal-columns {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.legal-col h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.legal-col h3:not(:first-child) {
  margin-top: 1.75rem;
}

.legal-col p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(253, 253, 253, 0.82);
}

.legal-muted {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  margin-top: 1.5rem !important;
}

.support-band {
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.support-band .prose-column p {
  margin: 0 0 1rem;
  color: rgba(253, 253, 253, 0.88);
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

@media (max-width: 700px) {
  .floating-pill {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
  }

  .editorial-hero {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .legal-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inline-screens .screen-inline,
  .inline-screens .screen-inline--right {
    margin-left: auto;
    margin-right: auto;
  }
}
