:root {
  --bg: #160d12;
  --bg-soft: #24121a;
  --card: rgba(38, 22, 31, 0.92);
  --card-strong: rgba(52, 28, 39, 0.96);
  --text: #fff6ef;
  --muted: #d7beb1;
  --line: rgba(255, 255, 255, 0.09);
  --clay: #ff8a5b;
  --gold: #f5bf59;
  --rose: #ff5d8f;
  --mint: #8be7d2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --wrap: 1200px;
  --radius-xl: 34px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 191, 89, 0.14), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(139, 231, 210, 0.1), transparent 20%),
    linear-gradient(180deg, #120a0f 0%, #1a1016 48%, #220f19 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 180px 180px, 100% 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
}

.brand {
  display: grid;
  gap: 3px;
}

.brand-mark,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 0.95;
}

.brand-mark {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 800;
}

.brand-note,
.eyebrow,
.micro-label,
.signal-ribbon span {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-note,
.eyebrow,
.micro-label {
  color: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a,
.menu-toggle,
.button {
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-nav a,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 16, 24, 0.76);
  backdrop-filter: blur(10px);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.menu-toggle:hover {
  background: var(--gold);
  color: #1a0c12;
  border-color: rgba(245, 191, 89, 0.8);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  color: var(--text);
  cursor: pointer;
}

.hero-grid,
.feature-row,
.triptych,
.subhero-grid,
.editorial-strip {
  display: grid;
  gap: 18px;
}

.hero-grid {
  margin-top: 22px;
  grid-template-columns: 1.05fr 0.78fr 0.5fr;
  align-items: stretch;
}

.poster-card,
.story-card,
.info-card {
  background: linear-gradient(180deg, rgba(52, 28, 39, 0.96), rgba(30, 17, 24, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.poster-card,
.story-card,
.info-card {
  padding: 28px;
}

.poster-card {
  display: grid;
  align-content: center;
}

h1 {
  margin-top: 12px;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

.lead,
.story-card p,
.info-card,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.lead {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background: var(--clay);
  color: white;
  border-color: rgba(255, 138, 91, 0.75);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button:hover {
  transform: translateY(-2px);
}

.signal-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-ribbon span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 93, 143, 0.12);
  border: 1px solid rgba(255, 93, 143, 0.2);
}

.hero-image {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  filter: saturate(1.06) contrast(1.02);
}

.tall-photo {
  min-height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 74% 100%, 0 100%);
}

.hero-column {
  display: grid;
  grid-template-rows: 1.2fr auto;
  gap: 18px;
}

.short-photo {
  min-height: 100%;
}

.info-card strong {
  display: block;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.5;
  margin-top: 10px;
}

.feature-row,
.editorial-strip {
  grid-template-columns: 1fr 1fr;
  margin: 18px 0;
}

.reverse-feature {
  grid-template-columns: 0.92fr 1.08fr;
}

.story-card h2,
.story-card h3 {
  margin: 10px 0 14px;
}

.clay-card {
  background: linear-gradient(180deg, rgba(255, 138, 91, 0.12), rgba(30, 17, 24, 0.96));
}

.dusk-card {
  background: linear-gradient(180deg, rgba(245, 191, 89, 0.12), rgba(30, 17, 24, 0.96));
}

.diagonal-photo {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.triptych {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.subhero {
  padding-bottom: 18px;
}

.compact-bar {
  padding-top: 0;
}

.subhero-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
}

.reverse-grid {
  grid-template-columns: 0.94fr 1.06fr;
}

.subhero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.7vw, 5rem);
}

.subhero-photo {
  min-height: 420px;
}

.site-footer {
  padding: 8px 0 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-row,
  .triptych,
  .subhero-grid,
  .editorial-strip,
  .reverse-feature,
  .reverse-grid {
    grid-template-columns: 1fr;
  }

  .hero-column {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .tall-photo,
  .diagonal-photo {
    clip-path: none;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    width: min(280px, calc(100% - 32px));
    padding: 12px;
    border-radius: 24px;
    background: rgba(24, 13, 19, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 40;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .poster-card,
  .story-card,
  .info-card {
    padding: 22px;
  }

  h1,
  .subhero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 22px), var(--wrap));
  }

  .hero-actions,
  .signal-ribbon,
  .hero-column {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button,
  .signal-ribbon span {
    width: 100%;
    justify-content: center;
  }
}
