/* ============================================================
   GARÇON CATERING — mobile-first, dark & cinematic
   ============================================================ */

:root {
  --ink: #0d0d0d;
  --coal: #161616;
  --white: #f6f6f6;
  --white-dim: rgba(255, 255, 255, 0.85);
  --accent: #ffffff;
  --accent-soft: #ededed;
  --line: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: var(--ink); }

/* ---------- typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 7.5vw, 4rem);
  letter-spacing: 0.01em;
}

h2 em, .hero-tag em, .contact-where em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
}

h3 {
  font-size: clamp(1.5rem, 4.5vw, 1.9rem);
  margin-bottom: 0.35rem;
}

p { max-width: 60ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.1rem;
}

/* ---------- helpers ---------- */
.section { padding: clamp(4.5rem, 12vw, 8.5rem) var(--pad); }

.section-head { margin-bottom: clamp(2.25rem, 7vw, 4rem); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: -4rem; left: 1rem;
  z-index: 200;
  background: var(--accent);
  color: var(--ink);
  padding: 0.6rem 1.1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

section[id] { scroll-margin-top: var(--header-h); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn:active { transform: scale(0.97); }

.btn-solid {
  background: var(--white);
  color: var(--ink);
}
.btn-solid:hover { background: var(--accent); }

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }

.btn-wide { width: 100%; text-align: center; }

.link-arrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.25s, border-color 0.25s;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 var(--pad);
  transition: background 0.35s, backdrop-filter 0.35s;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand img { width: clamp(108px, 14vw, 138px); height: auto; }

.header-cta {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-dim);
  transition: color 0.25s;
}
.header-cta:hover { color: var(--accent); }

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 7px;
  width: 2.9rem;
  height: 2.9rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, translate 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child { transform: rotate(45deg); translate: 0 4.25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child { transform: rotate(-45deg); translate: 0 -4.25px; }

/* ---------- fullscreen menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: calc(var(--header-h) + 1rem) var(--pad) calc(2.5rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  background: rgba(13, 13, 13, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0s 0.35s;
}

.menu[hidden] { display: none; }

.menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s, visibility 0s;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: clamp(0.4rem, 1.8vh, 1rem);
  margin-top: auto; /* centers when there is room, collapses when the menu must scroll */
}

.menu-foot { margin-bottom: auto; }

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 8.5vw, 3.4rem);
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  transform: translateY(1.2rem);
  opacity: 0;
  transition: color 0.25s, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.5s;
}

.menu.open .menu-list a { transform: none; opacity: 1; }
.menu.open .menu-list li:nth-child(2) a { transition-delay: 0.05s; }
.menu.open .menu-list li:nth-child(3) a { transition-delay: 0.1s; }
.menu.open .menu-list li:nth-child(4) a { transition-delay: 0.15s; }
.menu.open .menu-list li:nth-child(5) a { transition-delay: 0.2s; }
.menu.open .menu-list li:nth-child(6) a { transition-delay: 0.25s; }

.menu-list a:hover { color: var(--accent-soft); }

.menu-list span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.menu-foot a {
  display: inline-block;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.25s;
}
.menu-foot a:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) clamp(5rem, 14vh, 7.5rem);
}

/* own stacking context so the video/shade z-indexes stay behind the text */
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

/* ambient hero video (mobile only); the photo sits behind it as instant
   poster/fallback and is the sole visual on desktop + reduced-motion */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-video.is-playing { opacity: 1; }

/* photo hero everywhere: mobile gets the portrait forest table,
   desktop swaps to the wide forest dinner (see media query below) */
.hero-photo {
  position: absolute;
  inset: 0;
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/hero-mobile.jpg");
  background-image: image-set(
    url("../img/hero-mobile-700.jpg") 1x,
    url("../img/hero-mobile.jpg") 1.5x
  );
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(13, 13, 13, 0.62) 0%,
      rgba(13, 13, 13, 0.3) 38%,
      rgba(13, 13, 13, 0.55) 66%,
      rgba(13, 13, 13, 0.96) 100%);
}

.hero-inner { position: relative; z-index: 1; max-width: 46rem; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
}

.hero-title { margin: 0 0 1.1rem; }
.hero-title img {
  width: min(78vw, 26rem);
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.35));
}

.hero-tag {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.75rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-scroll {
  position: absolute;
  right: calc(var(--pad) + 0.4rem);
  bottom: 0;
  height: 5.5rem;
  width: 1px;
  pointer-events: none;
}

.hero-scroll-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero entrance */
.hero .reveal { transition-duration: 0.9s; }
.hero .reveal:nth-child(2) { transition-delay: 0.12s; }
.hero .reveal:nth-child(3) { transition-delay: 0.24s; }
.hero .reveal:nth-child(4) { transition-delay: 0.36s; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0;
  background: var(--coal);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white-dim);
}

.marquee i { color: var(--accent); font-style: normal; font-size: 0.7rem; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- story ---------- */
.story-grid { display: grid; gap: 2.5rem; }

.story-grid figure { position: relative; overflow: hidden; }

.story-grid img {
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-grid figure:hover img { transform: scale(1.04); }

.story-img-b { width: 78%; justify-self: end; margin-top: -0.75rem; }

.story-img-b figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white-dim);
  padding-top: 0.6rem;
}

.story-copy p:not(.lead) { color: var(--white-dim); margin-bottom: 1.6rem; }

/* ---------- video band ---------- */
.band {
  position: relative;
  min-height: 64vh;
  min-height: 64svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5rem var(--pad);
}

.band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.band-shade { position: absolute; inset: 0; background: rgba(13, 13, 13, 0.55); }

.band-quote {
  position: relative;
  max-width: 42rem;
  text-align: center;
}

.band-quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
}

/* ---------- events ---------- */
.events { background: var(--coal); }

.event-cards { display: grid; gap: 3rem; }

.event-card figure {
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.event-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.event-card:hover img { transform: scale(1.05); }

.event-card p { color: var(--white-dim); margin: 0.5rem 0 1.2rem; }

.events-note {
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white-dim);
  max-width: 48rem;
}

/* ---------- gallery ---------- */
.gallery { padding-right: 0; padding-left: 0; }
.gallery .section-head { padding: 0 var(--pad); position: relative; }

.swipe-hint {
  margin-top: 1.4rem;
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-strip {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  overflow-x: auto;
  padding: 0 var(--pad) 1.5rem;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip.dragging { cursor: grabbing; }

.gallery-strip figure {
  flex: 0 0 auto;
}

.gallery-btn {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.gallery-strip img {
  height: clamp(19rem, 56vw, 30rem);
  width: auto;
  object-fit: cover;
  transition: opacity 0.3s;
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-strip figure:hover img { opacity: 0.88; }

/* ---------- team ---------- */
.team { background: var(--coal); }

.team-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.team-card figure { overflow: hidden; margin-bottom: 1.3rem; }

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-card:hover img { transform: scale(1.04); }

.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.team-card p:not(.team-role) { color: var(--white-dim); }

.team-group img { width: 100%; }

.team-group figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white-dim);
  padding-top: 0.85rem;
}

/* ---------- partners ---------- */
.section-light,
.partners {
  background: var(--white);
  color: var(--ink);
  padding: clamp(3.5rem, 9vw, 6rem) var(--pad);
  text-align: center;
}

.partners .eyebrow { color: rgba(13, 13, 13, 0.62); }
.partners-title { margin-bottom: 0; }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 7vw, 4.5rem);
  margin: 2rem 0 1.75rem;
}

.partner-logos img {
  height: clamp(2.1rem, 6vw, 3.2rem);
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  mix-blend-mode: multiply;
  transition: filter 0.3s, opacity 0.3s;
}

.partner-logos img:hover { filter: grayscale(0); opacity: 1; }

.partners-note {
  margin: 0 auto;
  color: rgba(13, 13, 13, 0.62);
  font-size: 0.95rem;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 3.5rem; }

.contact-direct > p:first-child { color: var(--white-dim); margin-bottom: 2.2rem; }

.contact-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 5.5vw, 1.9rem);
  font-weight: 500;
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.3s;
}

.contact-line:first-of-type { border-top: 1px solid var(--line); }

.contact-line small {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-line:hover { color: var(--accent-soft); padding-left: 0.5rem; }

.contact-where {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white-dim);
}

/* form */
.contact-form { display: grid; gap: 1.4rem; }

.field { display: grid; gap: 0.45rem; }

.field-row { display: grid; gap: 1.4rem; }

.field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  padding: 0.55rem 0.1rem;
  transition: border-color 0.25s;
}

.field textarea { resize: vertical; min-height: 7rem; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.55); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-status { min-height: 1.4rem; font-size: 0.9rem; color: var(--accent-soft); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem var(--pad) calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
}

.footer-logo { width: 9.5rem; margin: 0 auto 2rem; opacity: 0.95; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  display: inline-block;
  padding: 0.55rem 0.2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-dim);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-meta { margin: 0 auto 0.9rem; font-size: 0.9rem; color: var(--white-dim); }
.footer-meta a { display: inline-block; padding: 0.45rem 0.15rem; text-decoration: none; }
.footer-meta a:hover { color: var(--accent); }

.footer-copy {
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- floating CTA (mobile) ---------- */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 80;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  translate: -50% 1rem;
  transition: opacity 0.35s, translate 0.35s, visibility 0s 0.35s;
  pointer-events: none;
}

.float-cta.show {
  opacity: 1;
  visibility: visible;
  translate: -50% 0;
  transition: opacity 0.35s, translate 0.35s, visibility 0s;
  pointer-events: auto;
}

/* ---------- lightbox ---------- */
.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: min(94vw, 70rem);
  max-height: 92vh;
  max-height: 92svh;
}

.lightbox::backdrop {
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  max-height: 86svh;
  width: auto;
  margin: 0 auto;
}

.lightbox-close {
  position: fixed;
  top: max(0.9rem, env(safe-area-inset-top));
  right: max(1.1rem, env(safe-area-inset-right));
  width: 2.9rem;
  height: 2.9rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--white);
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

/* ---------- reveal animations (only when JS is running) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   TABLET & UP
   ============================================================ */
@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }

  .story-img-a { grid-row: 1 / 3; }
  .story-copy { padding-top: 1rem; }
  .story-img-b { width: 70%; justify-self: start; margin-top: 1.5rem; }

  .event-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.4rem, 3vw, 2.5rem);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
  }

  .float-cta { display: none; }
}

/* ============================================================
   DESKTOP — photo hero with slow zoom, video stays on mobile
   ============================================================ */
@media (min-width: 900px) {
  /* wide forest-dinner photo sits behind the landscape video as instant poster */
  .hero-photo {
    background-image: url("../img/hero-desktop-1600.jpg");
    background-image: image-set(
      url("../img/hero-desktop-1200.jpg") 1x,
      url("../img/hero-desktop-1600.jpg") 1.5x
    );
  }

  .hero { align-items: center; }
  .hero-inner { margin-top: 8vh; }

  .swipe-word { display: none; }
  .swipe-hint::before { content: "Sleep"; }
}

@media (max-width: 899px) {
  .header-cta { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .hero-photo { animation: none; }
  .hero-video { display: none; } /* honour reduced-motion: keep the still photo */
  .hero-scroll-line { animation: none; transform: none; }

  .story-grid img,
  .event-card img,
  .team-card img { transition: none; }
}
