:root {
  --bg: #f8f6f2;
  --bg-elevated: rgba(255, 255, 255, 0.72);
  --panel: #ffffff;
  --panel-strong: #f2ede7;
  --text: #161311;
  --text-soft: rgba(22, 19, 17, 0.68);
  --line: rgba(22, 19, 17, 0.1);
  --accent: #c4121a;
  --accent-strong: #9f0d14;
  --shadow: 0 30px 70px rgba(53, 30, 25, 0.13);
  --hero-shadow: 0 40px 90px rgba(31, 14, 13, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1280px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", sans-serif;
  --ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-night {
  --bg: #090909;
  --bg-elevated: rgba(18, 18, 18, 0.68);
  --panel: #131313;
  --panel-strong: #1c1c1c;
  --text: #f8f4ee;
  --text-soft: rgba(248, 244, 238, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #dd2028;
  --accent-strong: #ff4047;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  --hero-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(196, 18, 26, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(196, 18, 26, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  transition: background-color var(--ease), color var(--ease);
  overflow-x: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 20px 0;
}

.nav-shell {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elevated);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.site-header.is-scrolled .nav-shell {
  transform: translateY(4px);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brandmark img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.brandmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brandmark-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brandmark-copy span,
.eyebrow,
.section-label,
.meta-kicker,
.card-label,
.footer-title,
.film-copy span,
.reel-copy span {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brandmark-copy span {
  color: var(--text-soft);
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--ease), transform var(--ease);
}

.nav-menu a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

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

.theme-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.toggle-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.toggle-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.toggle-thumb {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.7) 35%, var(--accent) 100%);
  box-shadow: 0 8px 20px rgba(196, 18, 26, 0.25);
  transition: transform var(--ease), background var(--ease);
}

body.theme-night .toggle-thumb {
  transform: translateX(2px);
  background:
    radial-gradient(circle at 30% 30%, #fff8d8, rgba(255, 248, 216, 0.8) 28%, #7a1017 100%);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease);
}

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

.button-primary {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 36px rgba(196, 18, 26, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.button-primary:hover::after {
  opacity: 1;
}

.shimmer-button {
  overflow: hidden;
}

.shimmer-button::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42) 50%, transparent 65%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shimmer-button:hover::before {
  transform: translateX(120%) rotate(8deg);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
}

body.theme-night .button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.section-shell,
.hook-strip,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 42px 20px 30px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 18, 26, 0.14), transparent 22%),
    radial-gradient(circle at 90% 20%, rgba(196, 18, 26, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-r-wrap {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 0.85;
  filter: drop-shadow(var(--hero-shadow));
}

.hero-r-video {
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 5%, 66% 5%, 84% 12%, 84% 37%, 72% 47%, 87% 71%, 73% 95%, 54% 76%, 39% 76%, 39% 95%, 12% 95%, 12% 5%, 39% 31%, 60% 31%, 60% 18%, 39% 18%, 39% 58%, 54% 58%, 63% 65%, 39% 65%, 39% 31%);
  border-radius: 40px;
  overflow: hidden;
  background: #000;
}

.hero-r-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(196, 18, 26, 0.18), transparent 40%, rgba(196, 18, 26, 0.12));
}

.hero-r-video video {
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero-r-outline {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: clamp(18rem, 42vw, 34rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 19, 17, 0.18);
  pointer-events: none;
}

body.theme-night .hero-r-outline {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.16);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.meta-kicker,
.card-label,
.footer-title,
.film-copy span,
.reel-copy span {
  color: var(--accent);
  font-weight: 700;
}

.hero-copy h1,
.section-head h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
}

.hero-lead,
.story-copy p,
.experience-copy p,
.menu-overlay p,
.social-copy p,
.cta-panel p,
.film-copy strong,
.event-copy p,
.footer-grid p {
  color: var(--text-soft);
}

.hero-lead {
  max-width: 34rem;
  margin: 22px 0 30px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.hero-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hook-strip {
  margin-top: 18px;
  padding: 20px 28px 0;
}

.hook-strip p {
  margin: 0;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.section-shell {
  padding: 110px 0 0;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.story-grid,
.weekend-grid,
.cta-panel,
.footer-grid {
  display: grid;
  gap: 28px;
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.story-copy,
.countdown-panel,
.story-card,
.note-card,
.event-card,
.experience-card,
.menu-card,
.social-card,
.cta-panel,
.film-card,
.reel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.story-copy {
  padding: clamp(28px, 4vw, 44px);
}

.story-copy p,
.story-copy blockquote {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-copy blockquote {
  margin: 26px 0 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.3;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
}

.stat-label-text {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.5;
}

.story-media {
  position: relative;
  padding-bottom: 38px;
}

.story-media img {
  min-height: 560px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.story-card {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(320px, calc(100% - 48px));
  padding: 22px;
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
}

.story-card p {
  margin: 10px 0 0;
  line-height: 1.6;
}

.weekend-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.countdown-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(196, 18, 26, 0.08), transparent 42%),
    var(--panel);
}

.countdown-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-panel h3 {
  margin: 20px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.countdown-panel > p {
  margin: 0 0 22px;
  color: var(--text-soft);
}

.countdown-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.time-box {
  padding: 16px 10px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  text-align: center;
}

.time-box span {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.time-box small {
  color: var(--text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weekend-notes,
.event-stack {
  display: grid;
  gap: 16px;
}

.note-card {
  padding: 18px 20px;
}

.note-card p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.event-card {
  overflow: hidden;
}

.event-card img {
  aspect-ratio: 1.3;
  object-fit: cover;
}

.event-copy,
.experience-copy,
.social-copy {
  padding: 22px;
}

.event-copy h3,
.experience-copy h3,
.menu-overlay h3,
.social-copy h3,
.film-copy strong {
  margin: 10px 0 8px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text);
}

.film-scroll,
.reel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 28vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.film-scroll::-webkit-scrollbar,
.reel-track::-webkit-scrollbar {
  display: none;
}

.film-card,
.reel-card {
  overflow: hidden;
  min-height: 100%;
}

.film-card img {
  aspect-ratio: 0.78;
  object-fit: cover;
}

.film-copy {
  padding: 18px;
}

.reel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.reel-control {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), color var(--ease);
}

.reel-control:hover {
  transform: scale(1.06);
  border-color: var(--accent);
  color: var(--accent);
}

.reel-card img {
  aspect-ratio: 0.62;
  object-fit: cover;
}

.reel-copy {
  padding: 16px 18px 18px;
}

.reel-copy strong {
  display: block;
  font-size: 0.95rem;
}

.experience-grid,
.menu-grid,
.social-grid {
  display: grid;
  gap: 18px;
}

.experience-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.experience-card,
.social-card {
  overflow: hidden;
}

.experience-card img,
.social-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.experience-card.wide img {
  aspect-ratio: 1.36;
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #110d0d;
}

.menu-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover img {
  transform: scale(1.06);
}

.menu-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background:
    linear-gradient(180deg, transparent 10%, rgba(32, 12, 12, 0.4) 44%, rgba(95, 5, 11, 0.88)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.06), transparent 28%);
}

.menu-overlay h3,
.menu-overlay p,
.menu-overlay .card-label {
  color: #fff;
}

.cta-band {
  padding-bottom: 40px;
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(196, 18, 26, 0.12), transparent 40%),
    var(--panel);
}

.site-footer {
  padding: 36px 0 50px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-grid a {
  color: var(--text-soft);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(196, 18, 26, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(196, 18, 26, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--text) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(196, 18, 26, 0.12);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.footer-social-link span {
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--ease);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 18, 26, 0.55);
  box-shadow: 0 20px 36px rgba(196, 18, 26, 0.18);
  color: var(--accent) !important;
}

.footer-social-link:hover span {
  transform: translate(2px, -1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 20px;
  margin-inline: auto;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(196, 18, 26, 0.08), rgba(255, 255, 255, 0.38));
  color: var(--text-soft);
  font-size: 0.88rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

body.theme-night .footer-credit {
  background: linear-gradient(135deg, rgba(221, 32, 40, 0.14), rgba(255, 255, 255, 0.03));
}

.footer-credit-heart {
  color: var(--accent);
  font-size: 1rem;
}

.footer-credit a {
  position: relative;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--ease), transform var(--ease);
}

.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform var(--ease);
}

.footer-credit a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.footer-credit a:hover::after {
  transform: scaleX(1);
}

.mobile-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: none;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 22px 40px rgba(196, 18, 26, 0.32);
}

.mobile-fab svg {
  width: 26px;
  height: 26px;
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .weekend-grid,
  .experience-grid,
  .menu-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
  }

  .hero-r-wrap {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 12px;
  }

  .nav-shell {
    padding: 12px 14px;
    border-radius: 28px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--bg-elevated);
    backdrop-filter: blur(18px);
  }

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

  .nav-book {
    width: 100%;
  }

  .hamburger {
    display: inline-block;
  }

  .theme-toggle {
    order: -1;
  }

  .hero {
    padding-inline: 12px;
  }

  .section-shell,
  .hook-strip,
  .site-footer {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .hero-grid {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-meta,
  .story-stats,
  .countdown-row {
    grid-template-columns: 1fr 1fr;
  }

  .reel-shell {
    grid-template-columns: 1fr;
  }

  .reel-control {
    display: none;
  }

  .mobile-fab {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .brandmark-copy span,
  .toggle-label {
    display: none;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-credit {
    border-radius: 24px;
  }

  .hero-meta,
  .story-stats,
  .countdown-row {
    grid-template-columns: 1fr;
  }

  .hook-strip {
    padding-inline: 0;
  }

  .hook-strip p {
    padding-inline: 18px;
  }

  .story-media img {
    min-height: 420px;
  }

  .film-scroll,
  .reel-track {
    grid-auto-columns: 78vw;
  }

  .menu-card {
    min-height: 420px;
  }
}
