:root {
  --ink: #1a120c;
  --ink-soft: #6a5344;
  --paper: #f4ead6;
  --dusk: #23160f;
  --gold: #e3b34a;
  --gold-deep: #c4922a;
  --amber: #d36b24;
  --copper: #b33c1c;
  --moss: #3e6a4c;
  --cream: #faf4e6;
  --line: rgba(26, 18, 12, 0.12);
  --radius: 1.15rem;
  --shadow-soft: 0 22px 48px rgba(26, 18, 12, 0.16);
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --header-h: 4.35rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(227, 179, 74, 0.28), transparent 58%),
    radial-gradient(820px 420px at 100% 4%, rgba(179, 60, 28, 0.14), transparent 52%),
    linear-gradient(180deg, #efe0c4 0%, var(--paper) 32%, #efe4cc 100%);
  line-height: 1.58;
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(244, 234, 214, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 234, 214, 0.94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.logo em {
  font-style: normal;
  color: var(--copper);
}

.logo-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(250, 244, 230, 0.7);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 26px rgba(179, 60, 28, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  background: #c44824;
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  min-height: 2.4rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(250, 244, 230, 0.82);
  color: var(--ink);
  box-shadow: none;
  border: 1px solid rgba(26, 18, 12, 0.12);
}

.btn-ghost:hover {
  background: #fff8ea;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  color: #fff8ea;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-stage picture,
.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo {
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 12, 0.12) 0%, rgba(26, 18, 12, 0.28) 40%, rgba(18, 10, 6, 0.9) 100%),
    radial-gradient(ellipse 70% 50% at 72% 30%, transparent 0%, rgba(18, 10, 6, 0.4) 100%);
}

.hero-beam {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(90deg, transparent, rgba(227, 179, 74, 0.22), transparent);
  mix-blend-mode: soft-light;
  animation: beam-sweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(255, 236, 180, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 55%, rgba(227, 179, 74, 0.4) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.25) 0 1px, transparent 2px);
  background-size: 180px 180px, 240px 240px, 140px 140px;
  animation: dust-drift 16s linear infinite;
  opacity: 0.55;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 12vh, 7rem) 0 clamp(2.8rem, 7vh, 4.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  margin: 0 0 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: brand-in 0.85s ease both;
}

.hero-brand-main {
  font-size: clamp(2.5rem, 8.6vw, 5.2rem);
}

.hero-brand-ver {
  font-size: clamp(2rem, 6.4vw, 3.7rem);
  color: var(--gold);
  transform: translateY(-0.06em);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  animation: brand-in 0.85s ease 0.08s both;
}

.hero-lead {
  margin: 0 0 1.55rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: rgba(255, 248, 234, 0.9);
  max-width: 36ch;
  animation: brand-in 0.85s ease 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: brand-in 0.85s ease 0.24s both;
}

.hero .btn-ghost {
  background: rgba(255, 248, 234, 0.12);
  color: #fff8ea;
  border-color: rgba(255, 248, 234, 0.28);
  backdrop-filter: blur(8px);
}

.hero .btn-ghost:hover {
  background: rgba(255, 248, 234, 0.22);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.overview-copy h2,
.highlights-copy h2,
.cta-band h2,
.faq .section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-head p:not(.eyebrow),
.overview-copy p,
.cta-band p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.overview-grid,
.highlights-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.overview-copy p + p {
  margin-top: 1rem;
}

.fact-row {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.fact-row li {
  padding: 0.95rem 0.85rem;
  border-top: 3px solid var(--gold);
  background: rgba(250, 244, 230, 0.62);
}

.fact-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.fact-row span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.overview-figure,
.highlights-figure,
.play-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 179, 74, 0.28);
}

.overview-figure img,
.highlights-figure img,
.play-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.highlights-figure img,
.play-shot img {
  aspect-ratio: 16 / 10;
}

.overview-figure figcaption {
  padding: 0.85rem 1rem 1rem;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  padding: 1.35rem 1.25rem 1.4rem;
  background: rgba(250, 244, 230, 0.7);
  border-left: 4px solid var(--amber);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  color: var(--copper);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.mode-list {
  display: grid;
  gap: 1rem;
}

.mode {
  padding: 1.4rem 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 1.05rem;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mode:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 179, 74, 0.55);
}

.mode h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.mode p {
  margin: 0;
  color: var(--ink-soft);
}

.mode:nth-child(1) { border-top: 4px solid var(--moss); }
.mode:nth-child(2) { border-top: 4px solid var(--gold); }
.mode:nth-child(3) { border-top: 4px solid var(--amber); }
.mode:nth-child(4) { border-top: 4px solid var(--copper); }

.feature-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.feature-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}

.feature-list span {
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.gallery-item {
  display: block;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.015);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.audience-grid {
  display: grid;
  gap: 1rem;
}

.audience-item {
  padding: 1.35rem 1.25rem 1.45rem;
  background: rgba(250, 244, 230, 0.78);
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.audience-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.audience-item p {
  margin: 0;
  color: var(--ink-soft);
}

.reel-stage {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dusk);
  box-shadow: var(--shadow-soft);
}

.reel-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reel-stage img.is-active {
  opacity: 1;
}

.reel-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.45rem 0.75rem;
  border-radius: 0.55rem;
  background: rgba(26, 18, 12, 0.62);
  color: #fff8ea;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.mode-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
}

.mode-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.mode-table caption {
  text-align: left;
  padding: 1rem 1.1rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.mode-table th,
.mode-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.mode-table thead th {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 0;
}

.mode-table tbody th {
  font-family: var(--font-display);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 920px;
  margin: 0 auto;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(26, 18, 12, 0.95);
  color: #fff8ea;
  box-shadow: 0 18px 40px rgba(26, 18, 12, 0.32);
}

.cookie-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cookie-text {
  margin: 0;
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.92rem;
  max-width: 42rem;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-actions .btn-ghost {
  background: transparent;
  color: #fff8ea;
  border-color: rgba(255, 248, 234, 0.28);
  box-shadow: none;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-details li {
  color: var(--ink-soft);
}

.contact-details strong {
  display: inline-block;
  min-width: 4.5rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem;
  border-radius: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fffaf0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(227, 179, 74, 0.45);
  border-color: var(--gold-deep);
}

.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500 !important;
  color: var(--ink-soft);
}

.check-row input {
  width: auto;
  margin-top: 0.2rem;
}

.form-hint {
  margin: 0;
  color: var(--copper);
  font-size: 0.92rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.error-inner {
  text-align: center;
}

.error-inner h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
}

.error-inner p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.legal-page {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.legal-updated {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list details {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.cta-band {
  padding-top: 0;
}

.cta-inner {
  padding: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(227, 179, 74, 0.22), rgba(179, 60, 28, 0.12)),
    var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}

.cta-inner p {
  margin: 0 auto 1.35rem;
  max-width: 36rem;
}

.cta-inner .hero-cta {
  justify-content: center;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(250, 244, 230, 0.5);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 40rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18, 10, 6, 0.9);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 0.75rem;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.12);
  color: #fff8ea;
  font-size: 1.75rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.4%, -1%, 0); }
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes beam-sweep {
  from { opacity: 0.35; transform: translateX(-4%); }
  to { opacity: 0.7; transform: translateX(4%); }
}

@keyframes dust-drift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 80px -40px, -60px 30px, 40px 70px; }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .mode-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-item:nth-child(1) { grid-column: span 4; }
  .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: span 3; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 3; }

  .gallery-item:nth-child(1) img { aspect-ratio: 16 / 9; }
  .gallery-item:nth-child(2) img { aspect-ratio: 3 / 4; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

@media (min-width: 960px) {
  .overview-grid,
  .highlights-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .highlights-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .mode-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 719px) {
  .header-inner .btn-small {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(244, 234, 214, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-photo {
    object-position: center 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo,
  .hero-beam,
  .hero-dust,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-cta {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
