@import url("https://fonts.googleapis.com/css2?family=Limelight&family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@500;600&display=swap");

:root {
  --bg-dark: #0a0a0b;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;

  /* Clay-like variables */
  --clay-base: #18181b;
  --clay-highlight: rgba(255, 255, 255, 0.08);
  --clay-shadow: rgba(0, 0, 0, 0.9);
  --clay-inset-light: rgba(255, 255, 255, 0.04);
  --clay-inset-dark: rgba(0, 0, 0, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

main,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Clinical SaaS Grid Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* Typography */
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--text-muted);
}

/* Navigation */
.ac-header {
  align-items: center;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1.5rem 2.5rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
}

.ac-menu-toggle {
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  height: 24px;
  padding: 0;
  pointer-events: auto;
  position: relative;
  width: 38px;
  z-index: 3;
}

.ac-menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
  width: 100%;
}

.ac-menu-toggle span:nth-child(1) { top: 4px; }
.ac-menu-toggle span:nth-child(2) { top: 11px; }
.ac-menu-toggle span:nth-child(3) { top: 18px; }
.ac-menu-toggle span:nth-child(4) { opacity: 0; top: 11px; }

.ac-header.is-menu-open .ac-menu-toggle span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.ac-header.is-menu-open .ac-menu-toggle span:nth-child(2) { opacity: 0; }
.ac-header.is-menu-open .ac-menu-toggle span:nth-child(3) { opacity: 0; }
.ac-header.is-menu-open .ac-menu-toggle span:nth-child(4) { opacity: 1; top: 11px; transform: rotate(-45deg); }

.ac-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
  margin-right: 0;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.ac-brand img {
  display: block;
  height: 2.8rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.ac-brand__text {
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.88rem, 1.05vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ac-header.is-menu-open .ac-brand {
  opacity: 0;
  pointer-events: none;
}

.ac-breadcrumb {
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  margin-left: auto;
  text-transform: uppercase;
  display: none;
}

.ac-menu-panel {
  align-items: flex-start;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  height: 100vh;
  height: 100svh;
  inset: 0;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  opacity: 0;
  overflow-y: auto;
  padding: clamp(6rem, 12vw, 10rem);
  pointer-events: none;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.2s ease;
  width: 100vw;
  z-index: 2;
}

.ac-header.is-menu-open .ac-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ac-menu-panel a {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.ac-menu-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 700 1rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  height: 2.8rem;
  justify-content: center;
  position: fixed;
  right: clamp(1.5rem, 4vw, 2.5rem);
  top: clamp(1.15rem, 3vw, 1.5rem);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  width: 2.8rem;
}

.ac-menu-close:hover,
.ac-menu-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.ac-menu-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ac-menu-panel a:hover::after,
.ac-menu-panel a:focus-visible::after {
  transform: scaleX(1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.9), transparent);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--clay-base);
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 40px;
  box-shadow: 4px 4px 10px var(--clay-shadow),
    inset 1px 1px 2px var(--clay-inset-light),
    inset -1px -1px 2px var(--clay-inset-dark);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Clay-like Chunky Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  color: var(--bg-dark);
  background: var(--text-main);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.chunky-btn {
  box-shadow: 0px 4px 0px rgba(161, 161, 170, 0.4),
    /* Chunky bottom edge */ 0px 6px 10px rgba(0, 0, 0, 0.4),
    inset 0px -2px 5px rgba(0, 0, 0, 0.1),
    inset 0px 2px 5px rgba(255, 255, 255, 0.8);
}
.chunky-btn:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 0px rgba(161, 161, 170, 0.4),
    0px 2px 5px rgba(0, 0, 0, 0.4), inset 0px -1px 2px rgba(0, 0, 0, 0.1);
}

.menu-btn {
  background: var(--clay-base);
  color: var(--text-main);
  box-shadow: 0px 4px 0px #09090a, 0px 6px 10px rgba(0, 0, 0, 0.6),
    inset 1px 1px 2px var(--clay-inset-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 12rem 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  background: rgba(0, 0, 0, 0.38);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero > *:not(.hero-video-wrap) {
  position: relative;
  z-index: 2;
}

.chunky-badge {
  background: var(--clay-base);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 4px 4px 8px var(--clay-shadow),
    inset 2px 2px 4px var(--clay-inset-light),
    inset -2px -2px 4px var(--clay-inset-dark);
}

.hero h1 {
  font-family: "Limelight", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 860px;
  text-transform: uppercase;
}
.hero p {
  color: var(--text-muted);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  letter-spacing: 0.12em;
  max-width: 520px;
  text-transform: uppercase;
}

.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  color: var(--text-main);
  text-decoration: none;
  animation: floatHint 2.2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 2rem;
  height: 2rem;
}

.hero-scroll-hint__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--text-main);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.35);
  animation: pulseHint 2.2s ease-in-out infinite;
}

@keyframes floatHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes pulseHint {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.45); opacity: 0.35; }
}

/* 3D Gallery Section */
.gallery-container {
  position: relative;
  height: 300vh; /* Scroll length */
  width: 100%;
}

.scene {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  overflow: hidden;
}

.sphere {
  position: relative;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
}

/* Clay Card Styling */
.clay-card {
  position: absolute;
  width: 160px;
  height: 220px;
  left: -80px;
  top: -110px;
  background: var(--clay-base);
  border-radius: 16px;
  padding: 8px;
  transform-style: preserve-3d;
  backface-visibility: visible;
  border: 1px solid rgba(255, 255, 255, 0.03);
  /* Matte, chunky clay shadow */
  box-shadow: 8px 8px 16px var(--clay-shadow),
    -4px -4px 10px rgba(255, 255, 255, 0.02),
    inset 3px 3px 6px var(--clay-inset-light),
    inset -3px -3px 6px var(--clay-inset-dark);
  transition: filter 0.4s ease;
}

.clay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(80%) brightness(0.6);
  transition: all 0.4s ease;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.clay-card.active-card {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}
.clay-card.active-card img {
  filter: grayscale(0%) brightness(1);
}

/* Floating Text Side Panels */
.floating-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  z-index: 10;
  position: sticky;
  margin-left: 10%;
}
.floating-text h2 {
  font-family: "Limelight", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}
.floating-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.network-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Journey Section */
.journey-section {
  --film-gold: #c79b5c;
  --film-red: #d51f18;
  align-items: center;
  background: #060606;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  min-height: 115svh;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4.5rem);
  position: relative;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  overflow: hidden;
}

.journey-section::before,
.journey-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Quiet editorial shapes that give the constellation room to breathe. */
.journey-section::before {
  background: repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5rem), radial-gradient(circle at 20% 20%, rgba(199, 155, 92, 0.14), transparent 35%);
  inset: 0;
  z-index: 0;
}

.journey-section::after {
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.4), rgba(6, 6, 6, 0.86));
  inset: 0;
  z-index: 1;
}

.journey-section .category-world__copy { position: relative; z-index: 2; }
.journey-section .category-world__label { align-items: center; color: var(--film-gold); display: inline-flex; font-size: 0.72rem; gap: 0.65rem; letter-spacing: 0.22em; margin-bottom: 1rem; text-transform: uppercase; }
.journey-section .category-world__label::before { animation: record-pulse 1.35s ease-in-out infinite; background: var(--film-red); border-radius: 50%; box-shadow: 0 0 1rem var(--film-red); content: ""; height: 0.48rem; width: 0.48rem; }
.journey-section .category-world__copy h2 { font-family: "Limelight", Georgia, serif; font-size: clamp(2.6rem, 6.2vw, 6.8rem); font-weight: 400; letter-spacing: 0; line-height: 0.96; max-width: 10ch; text-transform: uppercase; }
.journey-section .category-world__copy p { color: rgba(247, 247, 245, 0.72); font-size: clamp(1rem, 1.25vw, 1.18rem); margin-top: 1.35rem; max-width: 35rem; }
.motion-list { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }
.motion-list span { border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; color: rgba(255, 255, 255, 0.82); font-size: 0.68rem; letter-spacing: 0.13em; padding: 0.48rem 0.7rem; text-transform: uppercase; }
.category-world__stage { display: grid; gap: clamp(0.9rem, 1.5vw, 1.3rem); grid-template-columns: repeat(8, 1fr); min-height: min(45rem, 75vh); perspective: 1000px; position: relative; z-index: 2; }
.video-tile { animation: video-float 5.5s ease-in-out infinite; background: #111; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 8px; box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.5); grid-column: var(--cols); grid-row: var(--rows); isolation: isolate; min-height: 10rem; overflow: hidden; position: relative; transform: rotate(var(--rot, 0deg)); }
.video-tile:nth-child(2) { animation-delay: -1.2s; }.video-tile:nth-child(3) { animation-delay: -2.4s; }.video-tile:nth-child(4) { animation-delay: -3.5s; }
.video-tile video { height: 100%; object-fit: cover; opacity: 0.78; transform: scale(1.12); width: 100%; }
.video-tile::after { background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62)); content: ""; inset: 0; pointer-events: none; position: absolute; z-index: 1; }
.video-tile__caption { align-items: center; background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent); bottom: 0; display: flex; font-size: 0.72rem; justify-content: space-between; left: 0; letter-spacing: 0.12em; padding: 2.8rem 0.95rem 0.8rem; position: absolute; right: 0; text-transform: uppercase; z-index: 2; }.video-tile__caption b { color: #fff; font-weight: 600; }.video-tile__caption span { color: var(--film-gold); }
.video-tile--wide { --cols: 1 / 6; --rows: 1 / 4; --rot: -2deg; }.video-tile--tall { --cols: 5 / 9; --rows: 2 / 6; --rot: 3deg; aspect-ratio: 4 / 5; }.video-tile--small-a { --cols: 2 / 5; --rows: 4 / 7; --rot: 4deg; }.video-tile--small-b { --cols: 6 / 9; --rows: 1 / 3; --rot: -4deg; }
@keyframes record-pulse { 50% { opacity: 0.35; transform: scale(1.6); } }
@keyframes video-float { 50% { translate: 0 -0.7rem; } }

@media (max-width: 800px) {
  .journey-section { grid-template-columns: 1fr; min-height: auto; }
  .category-world__stage { min-height: 30rem; }
}

@media (max-width: 520px) {
  .category-world__stage { min-height: 24rem; }
  .video-tile { min-height: 0; }
}

/* Fixed Film & TV edit wall: matches the Featured Work composition. */
.journey-section .category-world__stage {
  background:
    radial-gradient(circle at 22% 18%, rgba(199, 155, 92, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #060606;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  gap: 0;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  height: clamp(24rem, 58vw, 43rem);
  min-height: 0;
  overflow: hidden;
  perspective: none;
  width: 100%;
}

.journey-section .category-world__stage::before {
  border: 1px solid rgba(255, 255, 255, 0.26);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 6;
}

.journey-section .category-world__stage::after {
  background:
    linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(255, 255, 255, 0.16) calc(33.333% - 0.5px) calc(33.333% + 0.5px), transparent calc(33.333% + 0.5px)),
    linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(255, 255, 255, 0.16) calc(66.666% - 0.5px) calc(66.666% + 0.5px), transparent calc(66.666% + 0.5px)),
    linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.14) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.journey-section .video-tile {
  animation: none;
  background: #000;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  transform: none;
}

.journey-section .video-tile video {
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: none;
}

.journey-section .video-tile--wide { --cols: 1 / 7; --rows: 1 / 5; }
.journey-section .video-tile--tall { --cols: 6 / 9; --rows: 1 / 7; aspect-ratio: auto; }
.journey-section .video-tile--small-a { --cols: 1 / 4; --rows: 5 / 7; }
.journey-section .video-tile--small-b { --cols: 4 / 6; --rows: 5 / 7; }

@media (max-width: 800px) {
  .journey-section .category-world__stage { height: min(110vw, 38rem); }
}

.journey-content {
  text-align: center;
  z-index: 2;
  background: rgba(10, 10, 11, 0.6);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.journey-content h2 {
  font-family: "Limelight", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.journey-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.large-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 40px;
}

.constellation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.constellation-card {
  position: absolute;
  width: 100px;
  height: 140px;
  opacity: 0.5;
}

/* Editorial magazine cover within the constellation background. */
.journey-cover {
  width: min(88vw, 740px);
  min-height: min(76vh, 660px);
  padding: clamp(2rem, 5vw, 4.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.45));
  box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.07), 0 25px 60px rgba(0, 0, 0, 0.55);
}

.journey-cover::before,
.journey-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.journey-cover::before {
  width: 4.5rem;
  height: 4.5rem;
  top: 1rem;
  right: 1rem;
  border-top: 2px solid #d8ff43;
  border-right: 2px solid #d8ff43;
}

.journey-cover::after {
  width: 7rem;
  height: 1px;
  right: -3.5rem;
  bottom: 2.1rem;
  background: #d8ff43;
}

.journey-gallery-link {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #d8ff43;
  font-family: Limelight, "Brush Script MT", cursive;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
  transform: rotate(-7deg);
  transition: color 0.25s ease, transform 0.25s ease;
}

.journey-gallery-link svg {
  width: clamp(2rem, 4vw, 3.25rem);
  height: clamp(2rem, 4vw, 3.25rem);
  transition: transform 0.25s ease;
}

.journey-gallery-link:hover,
.journey-gallery-link:focus-visible {
  color: #ffffff;
  transform: rotate(-7deg) translate(-0.2rem, -0.2rem);
}

.journey-gallery-link:hover svg,
.journey-gallery-link:focus-visible svg {
  transform: translate(0.25rem, -0.25rem);
}

.journey-cover__kicker,
.journey-cover__issue {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.journey-cover__title {
  margin: 1.4rem 0 1rem;
  color: #f7f4ed;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.71;
  text-transform: uppercase;
}

.journey-cover__title em {
  display: block;
  margin-left: clamp(1.4rem, 8vw, 5.5rem);
  color: #d8ff43;
  font-family: Limelight, Georgia, serif;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: none;
}

.journey-cover__strapline {
  max-width: 21rem;
  margin: 0 0 1.4rem;
  color: #eeeae0;
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  font-style: italic;
  line-height: 1.2;
}

.journey-cover__disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin-bottom: auto;
  color: #fff;
  font-size: clamp(0.68rem, 1.25vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-cover__disciplines span:not(:last-child)::after {
  content: " /";
  color: #d8ff43;
}

@media (max-width: 600px) {
  .journey-cover { min-height: 67vh; box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.07); }
  .journey-cover__title { font-size: clamp(4rem, 18vw, 6.2rem); }
  .journey-cover__kicker { font-size: 0.56rem; letter-spacing: 0.12em; }
  .journey-gallery-link { bottom: 1.25rem; right: 1.5rem; }
}

/* Horizontal Parallax Gallery */
.parallax-gallery-section {
  min-height: 100vh;
  background: radial-gradient(circle at center, #111113 0%, var(--bg-dark) 70%);
  position: relative;
}

.parallax-gallery-sticky {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0 2rem;
  position: relative;
}

.parallax-gallery-heading {
  max-width: 760px;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.parallax-gallery-kicker {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.parallax-gallery-heading h2 {
  color: #fff;
  font-family: "Limelight", Georgia, serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
}

.parallax-gallery-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1.25rem;
  max-width: 380px;
}

.parallax-gallery-viewport {
  overflow: hidden;
  padding: 1rem clamp(1.25rem, 5vw, 4rem) 2rem;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.parallax-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.parallax-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.parallax-gallery-item {
  flex: 0 0 clamp(250px, 46vw, 600px);
  height: clamp(180px, 33vw, 400px);
  border-radius: 12px;
  overflow: hidden;
  background: var(--clay-base);
}

.parallax-gallery-item img {
  display: block;
  width: 130%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.parallax-gallery-credit {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.parallax-gallery-credit a {
  color: #ff8e78;
  font-size: inherit;
}

/* Scrubbed Bento Gallery */
.marquee-band { background: #fff; color: #050505; overflow: hidden; padding: 1.25rem 0; }
.marquee-track { animation: marquee-slide 28s linear infinite; display: flex; width: max-content; }
.marquee-track span { align-items: center; display: inline-flex; font-family: "Limelight", Georgia, serif; font-size: clamp(1.8rem, 3.6vw, 4rem); gap: 1.5rem; letter-spacing: 0; padding-right: 1.5rem; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { background: #050505; border-radius: 50%; display: inline-block; height: 0.45rem; width: 0.45rem; }
@keyframes marquee-slide { to { transform: translateX(-50%); } }

.bento-section { background: var(--bg-dark); }

.bento-gallery-wrap {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.bento-gallery {
  align-content: center;
  display: grid;
  flex: none;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.bento-gallery--final {
  gap: 1vh;
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
}

.bento-gallery__item { overflow: hidden; position: relative; }
.bento-gallery__item img { height: 100%; object-fit: cover; width: 100%; }
.bento-gallery__item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.bento-gallery__item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.bento-gallery__item:nth-child(3) { grid-area: 2 / 2 / 4 / 3; }
.bento-gallery__item:nth-child(4) { grid-area: 1 / 3 / 3 / 4; }
.bento-gallery__item:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
.bento-gallery__item:nth-child(6) { grid-area: 3 / 3 / 5 / 4; }
.bento-gallery__item:nth-child(7) { grid-area: 4 / 1 / 5 / 2; }
.bento-gallery__item:nth-child(8) { grid-area: 4 / 2 / 5 / 3; }

/* GSAP Wind Blown Text */
.wind-text-section {
  background: #f0efe9;
  color: #1a1917;
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.wind-intro,
.wind-panel {
  border-bottom: 1px solid #d8d5cc;
  min-height: 100vh;
}

.wind-intro { align-items: center; display: flex; justify-content: center; }
.wind-intro__inner { text-align: center; }

.wind-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
  padding: 6rem 2rem;
}

.wind-panel--body { max-width: 720px; }
.wind-label { color: #000; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.68rem; letter-spacing: 0.18em; margin-bottom: 1.75rem; text-transform: uppercase; }
.wind-cue { animation: wind-breathe 2.5s ease-in-out infinite; color: #000; font-family: "Limelight", Georgia, serif; font-size: clamp(1.5rem, 3.2vw, 2.7rem); font-weight: 400; letter-spacing: 0; line-height: 1.12; text-transform: uppercase; }
.wind-team-list { display: grid; gap: 0.65rem 2rem; grid-template-columns: repeat(2, minmax(10rem, 1fr)); list-style: none; margin: clamp(2rem, 5vw, 4rem) auto 0; max-width: 38rem; padding: 0; text-align: left; }
.wind-team-list li { border-top: 1px solid rgba(0, 0, 0, 0.28); color: #000; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: clamp(0.7rem, 1.1vw, 0.84rem); letter-spacing: 0.12em; padding-top: 0.65rem; text-transform: uppercase; }
.wind-team-list li::before { content: "•"; margin-right: 0.55rem; }
@keyframes wind-breathe { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.wind-fly-text { position: relative; transform-style: preserve-3d; }
.wind-panel h2 { color: #000; font-family: "Limelight", Georgia, serif; font-size: clamp(2rem, 4.35vw, 4.35rem); font-weight: 400; letter-spacing: 0; line-height: 1.12; text-transform: uppercase; }
.wind-panel p.wind-fly-text { color: #000; font-size: clamp(1.15rem, 2.1vw, 1.55rem); line-height: 1.68; text-shadow: none; }
.wind-char { position: absolute; transform-style: preserve-3d; will-change: transform, opacity; }

@media (max-width: 520px) {
  .wind-panel {
    padding: 2rem 1.25rem;
  }

  .wind-team-list {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

  .wind-panel {
    padding: 3rem 1.25rem;
  }
}
.wind-outro { align-items: center; display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; min-height: 60vh; padding: 6rem 2rem; text-align: center; }
.wind-outro .wind-label { max-width: 34rem; }
.wind-contact-button { background: #000; border: 1px solid #000; color: #fff; display: inline-flex; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.75rem; justify-content: center; letter-spacing: 0.16em; padding: 1rem 1.5rem; text-transform: uppercase; transition: background 0.25s ease, color 0.25s ease; }
.wind-contact-button:hover, .wind-contact-button:focus-visible { background: transparent; color: #000; }

/* Editorial Artist Story */
.art-story {
  background: var(--bg-dark);
  color: #242423;
}

.art-story-intro {
  align-items: flex-end;
  background: #c0d7d8;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 6rem);
  position: relative;
}

.art-story-intro-copy {
  max-width: min(35rem, 48vw);
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.art-story-eyebrow,
.art-story-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.art-story-intro h2,
.art-story-copy h3 {
  font-family: "Limelight", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.art-story-intro h2 {
  font-size: clamp(7rem, 22vw, 19rem);
  margin-bottom: 2rem;
}

.art-story-intro-copy > p:last-child {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

.art-story-intro-image {
  height: auto;
  max-width: 390px;
  position: absolute;
  width: min(35vw, 390px);
}

.art-story-intro-image--front { bottom: 35%; left: 10%; z-index: 2; }
.art-story-intro-image--back { bottom: 40%; left: 25%; z-index: 1; }

.art-story-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(75vh, 760px);
  overflow: hidden;
  align-items: stretch;
}

.art-story-copy,
.art-story-image-wrap {
  min-height: 100%;
  width: 100%;
}

.art-story-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 7rem);
}

.art-story-copy h3 {
  font-size: clamp(4.75rem, 10vw, 10rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.art-story-copy > p:last-child { line-height: 1.55; max-width: 24rem; }

.art-story-image-wrap {
  overflow: hidden;
  position: relative;
  min-height: min(75vh, 760px);
}
.art-story-image-wrap img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: transform;
}

.art-story-slide--rose .art-story-copy { background: #d8c0c0; }
.art-story-slide--blue .art-story-copy { background: #97aac7; }
.art-story-slide--gold .art-story-copy { background: #f3d3b0; }
.art-story-slide--blush .art-story-copy { background: #f8e9e6; }
.art-story-slide--ice .art-story-copy { background: #d1e2ec; }
.art-story-slide--stone .art-story-copy { background: #d7cec5; }

.site-footer {
  background:
    linear-gradient(135deg, rgba(7, 7, 8, 0.98), rgba(15, 13, 11, 0.98)),
    radial-gradient(circle at 82% 18%, rgba(214, 179, 109, 0.18), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: grid;
  gap: clamp(1.5rem, 2.8vw, 2.8rem);
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 4.5rem) 1.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 31rem;
}

.site-footer__brand-mark {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.site-footer__brand img {
  height: clamp(3.5rem, 5vw, 6rem);
  object-fit: contain;
  object-position: left center;
  width: min(19rem, 72vw);
}

.site-footer__brand-text {
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ac-brand img[src$=".png"],
.site-footer__brand img[src$=".png"] {
  image-rendering: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.site-footer__top,
.site-footer__bottom {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.site-footer__top {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 3vw, 4rem);
  grid-template-columns: minmax(19rem, 1.35fr) minmax(9rem, 0.8fr) minmax(12rem, 0.9fr) minmax(12rem, 0.9fr);
}

.site-footer__nav,
.site-footer__studio,
.site-footer__social {
  align-content: start;
  display: grid;
  gap: 0.72rem;
}

.site-footer__nav strong,
.site-footer__studio strong,
.site-footer__social strong,
.site-footer__cta span,
.site-footer__bottom span {
  color: var(--text-main);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__studio a,
.site-footer__studio span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.5;
}

.site-footer__studio {
  justify-self: start;
  max-width: 18rem;
  width: 100%;
}

.site-footer__social {
  justify-self: end;
  max-width: 16rem;
  width: 100%;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.15rem 0 1.2rem;
}

.social-link {
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  display: inline-flex;
  height: 2.4rem;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  width: 2.4rem;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.social-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--text-main);
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-end;
}

.site-footer__cta {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.site-footer__cta a {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  display: inline-flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  justify-content: center;
  letter-spacing: 0.16em;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.site-footer__cta a:hover,
.site-footer__cta a:focus-visible {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__links {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.2rem;
}

.site-footer a,
.site-footer__columns span {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease;
}

.site-footer__columns a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text-main);
}

.site-footer__columns a:hover::after,
.site-footer__columns a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__cta a:hover,
.site-footer__cta a:focus-visible {
  background: transparent;
  color: #ffffff;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.15rem;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
}

@media (max-width: 768px) {
  .ac-header { padding: 1.25rem 1.5rem; }
  .ac-breadcrumb { display: none; }
  .ac-menu-panel { padding: 7rem 2rem; }
  .ac-brand__text { display: none; }
  .site-footer__brand-mark { align-items: flex-start; flex-direction: column; }
  .site-footer__brand-text { font-size: 0.95rem; }

  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-top: auto;
    max-width: 18ch;
  }
  .floating-text {
    position: absolute;
    top: 80%;
    margin-left: 5%;
    width: 90%;
    text-align: center;
  }
  .clay-card {
    width: 120px;
    height: 160px;
    left: -60px;
    top: -80px;
  }

  .parallax-gallery-section {
    min-height: 100vh;
  }

  .parallax-gallery-sticky {
    padding-top: 5rem;
  }

  .bento-gallery {
    grid-template-columns: repeat(3, 32vw);
    grid-template-rows: repeat(4, 22vh);
  }

  .art-story-intro { align-items: flex-end; min-height: 90vh; }
  .art-story-intro-copy { max-width: 80vw; }
  .art-story-intro-image { width: 58vw; }
  .art-story-intro-image--front { bottom: 52%; left: 14%; }
  .art-story-intro-image--back { bottom: 59%; left: 35%; }
  .art-story-slide {
    display: block;
    min-height: auto;
    position: relative;
  }
  .art-story-copy {
    min-height: auto;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  .art-story-image-wrap {
    position: relative;
    height: auto;
    width: 100%;
    inset: auto;
    margin-top: 1.5rem;
  }
  .art-story-image-wrap::after {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 2rem;
  }

  .site-footer__links,
  .site-footer__socials {
    gap: 0.85rem;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .social-link {
    height: 2.2rem;
    width: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: flex-start;
    min-height: 100svh;
    padding: 5.5rem 1.5rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
    margin-top: auto;
    max-width: 18ch;
  }

  .hero p {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-scroll-hint {
    margin-top: auto;
    margin-bottom: 0.75rem;
  }

  .hero-scroll-hint {
    margin-top: auto;
    margin-bottom: 0.75rem;
  }

  .gallery-container {
    height: 240vh;
  }

  .scene {
    height: 90vh;
  }

  .floating-text {
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 38rem);
    text-align: center;
    margin-left: 0;
  }

  .journey-section {
    padding: 4rem 1.5rem 3rem;
  }

  .journey-section .category-world__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    min-height: auto;
    height: auto;
    gap: 1rem;
  }

  .journey-section .video-tile {
    min-height: 10rem;
  }

  .journey-section .video-tile--wide {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }

  .journey-section .video-tile--tall {
    grid-column: 1 / 2;
    grid-row: 2;
    aspect-ratio: 4 / 5;
  }

  .journey-section .video-tile--small-a {
    grid-column: 2 / 3;
    grid-row: 2;
    aspect-ratio: 4 / 5;
  }

  .journey-section .video-tile--small-b {
    grid-column: 1 / -1;
    grid-row: 3;
    aspect-ratio: 16 / 9;
  }

  .journey-section .video-tile__caption {
    padding: 1.2rem 0.95rem 0.75rem;
  }

  .bento-gallery-wrap {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .bento-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 22vh);
    height: auto;
  }

  .bento-gallery__item {
    grid-area: auto;
    min-height: 0;
  }

  .parallax-gallery-heading {
    padding: 0 1.5rem;
  }

  .parallax-gallery-heading h2 {
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .parallax-gallery-viewport {
    padding: 1rem 1rem 2rem;
  }

  .parallax-gallery-item {
    height: clamp(180px, 30vw, 280px);
  }

  .art-story-intro {
    padding: 2rem 1.5rem 3rem;
  }

  .art-story-intro h2 {
    font-size: clamp(4rem, 16vw, 8rem);
  }

  .art-story-intro-copy {
    max-width: 100%;
  }

  .art-story-intro-image {
    width: 80vw;
  }

  .art-story-copy {
    min-height: auto;
    padding: 2rem;
    width: 100%;
  }

  .art-story-image-wrap {
    margin-top: 0px;
    height: 50vh;
  }

  .art-story-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 6rem 1rem 2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-scroll-hint svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero-scroll-hint__dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .gallery-container {
    height: 200vh;
  }

  .floating-text {
    top: 76%;
    width: 100%;
    padding: 0 1rem;
  }

  .journey-section .category-world__stage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .journey-section .video-tile--wide,
  .journey-section .video-tile--tall,
  .journey-section .video-tile--small-a,
  .journey-section .video-tile--small-b {
    grid-column: 1 / -1;
  }

  .bento-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 20vh);
  }

  .parallax-gallery-item {
    flex: 0 0 90vw;
  }

  .site-footer {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* Mobile Bento reset: prevent the desktop Flip/grid state from reserving blank rows. */
@media (max-width: 768px) {
  .bento-section { overflow: hidden; }

  .bento-gallery-wrap {
    display: block;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
  }

  .bento-gallery {
    align-content: start;
    grid-auto-rows: clamp(10rem, 45vw, 16rem);
    grid-template-rows: none !important;
    height: auto !important;
  }

  .bento-gallery__item {
    grid-area: auto !important;
    height: auto !important;
    min-height: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .bento-gallery {
    grid-auto-rows: clamp(11rem, 70vw, 18rem);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-footer__top,
  .site-footer__middle,
  .site-footer__bottom {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr;
  }

  .site-footer__cta {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 2rem;
    padding: 2rem 1rem 1.2rem;
  }

  .site-footer__media {
    min-height: 12rem;
  }
}
