:root {
  --paper: #fbf6ed;
  --paper-deep: #f1ead9;
  --ink: #12233b;
  --ink-soft: #4b5d73;
  --line: rgba(18, 35, 59, 0.12);
  --navy: #17365f;
  --coral: #ef5d3f;
  --teal: #0fa3a5;
  --gold: #f5b841;
  --plum: #733d7c;
  --shadow: 0 24px 50px rgba(21, 38, 63, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 93, 63, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(15, 163, 165, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 48%, #f6f0e3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(23, 54, 95, 0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(23, 54, 95, 0.02) 25%, transparent 25%);
  background-size: 44px 44px;
  opacity: 0.7;
}

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

figure {
  margin: 0;
}

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

.site-frame {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.site-header,
.hero-slab,
.overview-band,
.editorial-layout,
.subhero,
.statement-panel,
.fan-panel,
.quote-sash,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 244, 0.9);
  box-shadow: var(--shadow);
}

.site-header::after,
.hero-slab::after,
.overview-band::after,
.subhero::after,
.quote-sash::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal), var(--navy));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  background:
    linear-gradient(120deg, rgba(245, 184, 65, 0.08), transparent 30%),
    linear-gradient(240deg, rgba(15, 163, 165, 0.08), transparent 28%),
    rgba(255, 251, 244, 0.95);
}

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

.brand-kicker,
.eyebrow,
.signal-strip span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-kicker,
.eyebrow {
  color: var(--teal);
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.brand-name {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1;
}

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

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

.site-nav a,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.nav-toggle:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.hero-slab,
.subhero,
.editorial-layout {
  display: grid;
  gap: 22px;
  margin-top: 20px;
  padding: clamp(20px, 3vw, 34px);
}

.hero-slab {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.hero-copy,
.subhero-copy,
.editorial-copy {
  align-self: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.5rem, 8vw, 6.7rem);
  line-height: 0.9;
}

.hero-copy h1 {
  max-width: 10.5ch;
}

.subhero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 0.96;
}

.lead,
.story-card p,
.editorial-copy p,
.lineup-card p,
.statement-panel p,
.fan-panel p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--coral), #ff7c58);
}

.button-secondary {
  border-color: rgba(23, 54, 95, 0.16);
  background: rgba(255, 255, 255, 0.8);
}

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

.signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(23, 54, 95, 0.12);
}

.hero-media {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
  min-height: 620px;
}

.hero-image {
  overflow: hidden;
  border-radius: 28px;
}

.hero-image-main {
  min-height: 620px;
}

.hero-image-top {
  min-height: 420px;
  align-self: end;
}

.overview-band,
.statements-row,
.fan-columns,
.mosaic-grid,
.cards-grid,
.gallery-ribbon {
  margin-top: 20px;
}

.overview-band {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(241, 234, 217, 0.92));
}

.band-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.band-heading h2 {
  max-width: 14ch;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-card,
.lineup-card,
.statement-panel,
.fan-panel,
.text-tile {
  border-radius: var(--radius-lg);
}

.story-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
}

.accent-coral {
  background: linear-gradient(180deg, rgba(239, 93, 63, 0.14), rgba(255, 255, 255, 0.88));
}

.accent-blue {
  background: linear-gradient(180deg, rgba(23, 54, 95, 0.11), rgba(255, 255, 255, 0.88));
}

.accent-gold {
  background: linear-gradient(180deg, rgba(245, 184, 65, 0.16), rgba(255, 255, 255, 0.9));
}

.photo-story {
  overflow: hidden;
  min-height: 280px;
  padding: 0;
}

.editorial-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background:
    linear-gradient(135deg, rgba(23, 54, 95, 0.05), transparent 34%),
    rgba(255, 250, 242, 0.96);
}

.photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stack-photo,
.subhero-photo,
.lineup-card figure,
.fan-panel figure,
.mosaic-grid figure,
.gallery-ribbon figure {
  overflow: hidden;
  border-radius: 24px;
}

.wide-shot {
  grid-column: 1 / -1;
  min-height: 240px;
}

.gallery-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-ribbon figure {
  min-height: 170px;
  box-shadow: var(--shadow);
}

.subhero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-right .subhero-copy {
  order: 2;
}

.split-right .subhero-photo {
  order: 1;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lineup-card {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow);
}

.lineup-card figure {
  min-height: 180px;
}

.statements-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.statement-panel {
  padding: 22px;
  background: rgba(255, 252, 246, 0.94);
}

.strong-panel {
  background: linear-gradient(135deg, rgba(15, 163, 165, 0.14), rgba(255, 255, 255, 0.92));
}

.compact-ribbon {
  grid-template-columns: 1fr;
}

.fan-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fan-panel {
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.warm-panel {
  background: linear-gradient(180deg, rgba(245, 184, 65, 0.14), rgba(255, 255, 255, 0.92));
}

.cool-panel {
  background: linear-gradient(180deg, rgba(115, 61, 124, 0.12), rgba(255, 255, 255, 0.92));
}

.fan-panel figure {
  margin-top: 16px;
  min-height: 220px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.mosaic-large {
  grid-row: 1 / span 2;
  min-height: 420px;
}

.mosaic-grid figure:not(.mosaic-large),
.mosaic-copy {
  min-height: 200px;
  box-shadow: var(--shadow);
}

.text-tile {
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 54, 95, 0.06), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow);
}

.text-tile p:last-child {
  margin-bottom: 0;
}

.ribbon-copy,
.mosaic-copy {
  align-self: stretch;
}

.quote-sash {
  margin-top: 20px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(23, 54, 95, 0.92), rgba(15, 163, 165, 0.88));
  color: #fff;
}

.quote-sash .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.quote-sash h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .hero-slab,
  .editorial-layout,
  .subhero,
  .cards-grid,
  .fan-columns,
  .band-grid,
  .gallery-ribbon,
  .mosaic-grid,
  .statements-row {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: auto;
  }

  .hero-image-main,
  .hero-image-top {
    min-height: 280px;
  }

  .lineup-card {
    grid-template-columns: 1fr;
  }

  .statements-row {
    grid-template-columns: 1fr;
  }

  .mosaic-large {
    grid-row: auto;
    min-height: 340px;
  }
}

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

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-media,
  .photo-stack,
  .compact-ribbon {
    grid-template-columns: 1fr;
  }

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

  .gallery-ribbon figure,
  .subhero-photo,
  .fan-panel figure,
  .wide-shot,
  .mosaic-large,
  .mosaic-grid figure:not(.mosaic-large) {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
