:root {
  color-scheme: dark;
  font-family: "Cinzel", serif;
  background: #000000;
  color: #f5f1e8;
  --border: rgba(245, 241, 232, 0.18);
  --text-soft: rgba(245, 241, 232, 0.76);
  --header-height: 72px;
  --desktop-frame: min(66.6667vw, 1200px);
}

* {
  box-sizing: border-box;
}

html {
  background: #000000;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: #f5f1e8;
}

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

.site-shell {
  min-height: 100vh;
}

.site-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  width: 100%;
  margin: 0 auto;
}

.header-bar {
  min-height: var(--header-height);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 1px;
  background: #f5f1e8;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav {
  display: none;
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
  background: transparent;
}

.site-nav[data-open="true"] {
  display: block;
}

.site-nav-inner {
  width: 100%;
  margin: 0 auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.9rem 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: #ffffff;
}

.nav-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid #f5f1e8;
  color: #f5f1e8;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 1.05rem 2rem;
  border: 1px solid #f5f1e8;
  background: transparent;
  color: #f5f1e8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.site-cta:hover,
.site-cta:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-image,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  margin: 0;
}

.hero-image img {
  display: block;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  text-align: center;
}

.hero h2 {
  margin: 0;
  font-size: clamp(3rem, 14vw, 7rem);
  line-height: 0.92;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero p {
  margin: 0.9rem 0 0;
  color: rgba(245, 241, 232, 0.9);
  font-size: clamp(1rem, 4.2vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.sponsor-actions,
.special-thanks-actions {
  display: flex;
  justify-content: center;
}

.hero-actions {
  margin-top: 1.5rem;
}

.story-section {
  padding: 4rem 1rem 4.5rem;
}

.story-inner,
.sponsor-inner,
.credits-inner,
.page-inner {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
}

.story-section p,
.sponsor-copy,
.special-thanks p,
.page-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.story-heading {
  font-size: 1.18rem;
  line-height: 1.75;
}

.story-section p + p,
.page-copy p + p {
  margin-top: 1.5rem;
}

.story-section strong,
.sponsor-copy strong,
.special-thanks strong,
.page-copy strong {
  color: #f5f1e8;
  font-weight: 700;
}

.sponsor-section {
  padding: 0 1rem 4.5rem;
}

.sponsor-title,
.credits-title,
.page-title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  line-height: 1;
  font-weight: 600;
}

.page-title-compact {
  font-size: clamp(1.9rem, 7vw, 2.6rem);
}

.sponsor-actions {
  margin-top: 2.25rem;
}

.credits-section {
  padding: 0 1rem 5rem;
}

.credits-list {
  margin: 0;
}

.credit-item + .credit-item {
  margin-top: 1.5rem;
}

.credit-role {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f1e8;
}

.credit-names {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.special-thanks {
  margin-top: 3.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.special-thanks p + p {
  margin-top: 1rem;
}

.special-thanks-actions {
  margin-top: 2rem;
}

.content-page {
  padding: calc(4.5rem + var(--header-height)) 1rem 6rem;
}

.page-copy {
  max-width: 52rem;
  margin: 0 auto;
}

.gallery-page {
  padding: calc(4rem + var(--header-height)) 1rem 6rem;
}

.gallery-inner {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
}

.gallery-title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  line-height: 1;
  font-weight: 600;
}

.gallery-intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  color: var(--text-soft);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.gallery-grid {
  column-count: 1;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border: 1px solid var(--border);
  background: #050505;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 800px) {
  :root {
    --header-height: 88px;
  }

  .site-header-shell,
  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    max-width: var(--desktop-frame);
  }

  .header-bar {
    min-height: var(--header-height);
    flex-wrap: nowrap;
    padding: 0;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    width: auto;
    border-top: 0;
    padding: 0;
    margin-left: auto;
    background: transparent;
  }

  .site-nav-inner {
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    padding: 0;
    font-size: 0.92rem;
  }

  .nav-link-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }

  .hero-copy {
    max-width: var(--desktop-frame);
    padding: 0 0 5.5rem;
  }

  .hero h2 {
    font-size: clamp(4.5rem, 8vw, 7.5rem);
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero-actions {
    margin-top: 1.9rem;
  }

  .story-section {
    padding: 5.5rem 0 6rem;
  }

  .story-inner,
  .sponsor-inner,
  .credits-inner,
  .page-inner {
    max-width: 52rem;
  }

  .story-section p,
  .sponsor-copy,
  .special-thanks p,
  .page-copy p {
    font-size: 1.1rem;
  }

  .story-heading {
    font-size: 1.35rem;
  }

  .sponsor-section {
    padding: 0 0 5.5rem;
  }

  .credits-section {
    padding: 0 0 7rem;
  }

  .credits-title,
  .sponsor-title,
  .page-title {
    margin-bottom: 2.75rem;
  }

  .page-title-compact {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .credit-role {
    font-size: 1.05rem;
  }

  .credit-names {
    font-size: 1.05rem;
  }

  .content-page {
    padding: calc(5.5rem + var(--header-height)) 0 7rem;
  }

  .gallery-page {
    padding: calc(5.5rem + var(--header-height)) 0 7rem;
  }

  .gallery-inner {
    max-width: var(--desktop-frame);
  }

  .gallery-title {
    margin-bottom: 1.5rem;
  }

  .gallery-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 1.25rem;
  }

  .gallery-item {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
  }

  .gallery-item {
    margin-bottom: 1.5rem;
  }
}
