/* ============================================================
   POUR CHOICES — Cocktail Masterclass
   Brand: Cream #FFF8F0 · Charcoal #3F3938 · Coral #D47957
   Type: Montserrat (display + body) · Dancing Script (accents)
   Direction: editorial, engraved, performance. Awwwards pass.
   ============================================================ */

:root {
  --cream: #fff8f0;
  --cream-2: #fef7ef;
  --cream-3: #f7ecdf;
  --charcoal: #3f3938;
  --charcoal-soft: rgba(63, 57, 56, 0.68);
  --charcoal-faint: rgba(63, 57, 56, 0.42);
  --coral: #d47957;
  --coral-deep: #b85f3d;
  --line: rgba(63, 57, 56, 0.16);
  --coral-line: rgba(212, 121, 87, 0.35);

  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --font-script: "Dancing Script", cursive;

  --pad-x: clamp(20px, 5.5vw, 90px);
  --sec-y: clamp(90px, 13vw, 180px);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--cream); }

img { display: block; max-width: 100%; }
a { color: inherit; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

/* engraved hatch texture helper */
.hatch {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--coral-line) 0 1px,
    transparent 1px 5px
  );
}

/* ---------- preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.loader img { width: clamp(120px, 16vw, 190px); }
.loader .pour-fill {
  width: clamp(140px, 20vw, 240px);
  height: 3px;
  background: rgba(212, 121, 87, 0.2);
  overflow: hidden;
}
.loader .pour-fill i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--coral);
}
.loader .loader-line {
  font-family: var(--font-script);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--coral);
}
body.loading { overflow: hidden; }

/* ---------- custom cursor (fine pointers only) ---------- */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 300;
    width: 14px; height: 14px;
    margin: -7px 0 0 -7px;
    border-radius: 50%;
    background: var(--coral);
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .cursor.grow { transform: scale(3.4); opacity: 0.5; }
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--pad-x);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo img { height: 52px; width: auto; }
.brand-logo .wordmark {
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 15px;
  text-transform: uppercase;
}
.brand-logo .wordmark small {
  display: block;
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--coral);
  margin-top: -2px;
}
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.site-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--coral); }
.nav-phone { font-variant-numeric: tabular-nums; }

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.btn-solid { background: var(--coral); color: var(--cream); }
.btn-solid:hover { background: var(--coral-deep); box-shadow: 0 10px 30px rgba(212, 121, 87, 0.35); }
.btn-ghost { border-color: var(--charcoal); color: var(--charcoal); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-light { background: var(--cream); color: var(--charcoal); }
.btn-light:hover { background: var(--cream-3); }

@media (max-width: 780px) {
  .nav-phone, .site-nav .hide-mobile { display: none; }
  .brand-logo img { height: 42px; }
  .brand-logo .wordmark { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(110px, 16vh, 170px) var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: clamp(16px, 2.6vh, 30px);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(46px, 10.5vw, 158px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero .script-under {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(30px, 5.2vw, 66px);
  color: var(--coral);
  margin-top: clamp(4px, 1vh, 14px);
  transform: rotate(-3deg);
}
.hero-sub {
  max-width: 560px;
  margin-top: clamp(18px, 3vh, 30px);
  color: var(--charcoal-soft);
  font-size: clamp(15.5px, 1.5vw, 18px);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(22px, 3.4vh, 36px);
}

/* video frame that expands on scroll */
.video-stage { position: relative; width: 100%; }
.video-frame {
  position: relative;
  width: min(760px, 86vw);
  margin: clamp(40px, 7vh, 80px) auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(63, 57, 56, 0.28);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame .frame-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: var(--cream);
  font-family: var(--font-script);
  font-size: clamp(20px, 2.4vw, 28px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(63, 57, 56, 0.35), transparent 45%);
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: 20px 0;
  transform: rotate(-1.6deg) scale(1.02);
  margin: clamp(60px, 9vw, 110px) 0;
}
.marquee .track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-right: 18px;
}
.marquee span em {
  font-style: normal;
  color: var(--coral);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- section scaffolding ---------- */
.section { padding: var(--sec-y) var(--pad-x); position: relative; }
.section-inner { max-width: 1220px; margin: 0 auto; }
.eyebrow {
  display: block;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--coral);
  transform: rotate(-2deg);
  transform-origin: left bottom;
  margin-bottom: 6px;
  width: fit-content;
}
.section h2 {
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 8px 0 20px;
}
.section h2 .coral { color: var(--coral); }
.section .lede {
  max-width: 620px;
  color: var(--charcoal-soft);
  font-size: clamp(15.5px, 1.5vw, 18px);
}

/* split-line reveal targets */
.sr { overflow: hidden; }
.sr > .sr-in { display: block; }

/* ---------- the house spec ---------- */
.spec { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-card {
  margin-top: clamp(40px, 5vw, 70px);
  border: 1.5px solid var(--charcoal);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--coral);
}
.spec-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 3.4vw, 44px);
  border-bottom: 1.5px solid var(--charcoal);
}
.spec-card-head .t {
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
}
.spec-card-head img { height: 44px; width: auto; }
.spec-row {
  display: grid;
  grid-template-columns: minmax(110px, 190px) 1fr;
  gap: clamp(18px, 4vw, 60px);
  padding: clamp(24px, 3.2vw, 40px) clamp(20px, 3.4vw, 44px);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-row:last-of-type { border-bottom: none; }
.spec-measure {
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.spec-row h3 {
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 27px);
  margin-bottom: 8px;
}
.spec-row p { color: var(--charcoal-soft); max-width: 640px; }
.spec-row.garnish { background: rgba(212, 121, 87, 0.08); }
.spec-method {
  padding: 16px clamp(20px, 3.4vw, 44px);
  border-top: 1.5px dashed var(--coral-line);
  font-family: var(--font-script);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--coral);
}
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .spec-card { box-shadow: 6px 6px 0 var(--coral); }
}

/* ---------- learn trio ---------- */
.learn-grid {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.learn-grid article {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 42px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.learn-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(63, 57, 56, 0.12);
}
.learn-grid .k {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--coral);
}
.learn-grid h3 { font-weight: 700; font-size: clamp(19px, 2vw, 24px); margin: 10px 0 10px; }
.learn-grid p { color: var(--charcoal-soft); font-size: 15.5px; }
@media (max-width: 860px) { .learn-grid { grid-template-columns: 1fr; } }

/* ---------- horizontal gallery ---------- */
.gallery { background: var(--charcoal); color: var(--cream); overflow: hidden; }
.gallery .eyebrow { color: var(--coral); }
.gallery-head { padding: var(--sec-y) var(--pad-x) 0; max-width: 1220px; margin: 0 auto; }
.gallery-head .lede { color: rgba(255, 248, 240, 0.66); }
.gallery-track-wrap { position: relative; }
.gallery-track {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(40px, 6vw, 70px) var(--pad-x) var(--sec-y);
  width: max-content;
}
.g-card {
  width: clamp(260px, 30vw, 400px);
  flex-shrink: 0;
}
.g-card .imgwrap {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
}
.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.g-card:hover img { transform: scale(1.06); }
.g-card .spirit {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--coral);
}
.g-card h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.g-card p { color: rgba(255, 248, 240, 0.62); font-size: 14.5px; margin-top: 6px; line-height: 1.55; }
.gallery-note {
  padding: 0 var(--pad-x) var(--sec-y);
  max-width: 1220px;
  margin: 0 auto;
  color: rgba(255, 248, 240, 0.66);
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.gallery-note strong { color: var(--coral); }
/* mobile: natural swipe */
@media (max-width: 900px) {
  .gallery-track { overflow-x: auto; width: auto; scroll-snap-type: x proximity; }
  .g-card { scroll-snap-align: start; }
}

/* ---------- hosts ---------- */
.hosts-grid {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4.5vw, 70px);
  align-items: center;
}
.hosts-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 18px 18px 0 var(--cream-3), 18px 18px 0 1px var(--line);
}
.hosts-photo img { width: 100%; }
.hosts-photo .photo-tag {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: var(--font-script);
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  transform: rotate(-3deg);
}
.host-blocks { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.host-card { border-left: 3px solid var(--coral); padding-left: clamp(18px, 2.4vw, 30px); }
.host-card .role {
  font-family: var(--font-script);
  font-size: 23px;
  color: var(--coral);
}
.host-card h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 4px 0 8px;
}
.host-card p { color: var(--charcoal-soft); }
@media (max-width: 860px) { .hosts-grid { grid-template-columns: 1fr; } }

/* ---------- podcast ---------- */
.podcast { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.podcast-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.podcast-wrap iframe { width: 100%; border: 0; border-radius: 14px; }
@media (max-width: 860px) { .podcast-flex { grid-template-columns: 1fr; } }

/* ---------- events ---------- */
.events-grid {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.events-grid article {
  border: 1.5px solid var(--charcoal);
  border-radius: 16px;
  padding: clamp(22px, 2.8vw, 38px);
  background: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.events-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--coral);
}
.events-grid h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.events-grid h3 .n {
  color: var(--coral);
  margin-right: 10px;
}
.events-grid p { color: var(--charcoal-soft); font-size: 15px; }
.events-cta { margin-top: clamp(30px, 4vw, 50px); display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) { .events-grid { grid-template-columns: 1fr; } }

/* ---------- reviews ---------- */
.reviews { background: var(--cream-2); border-top: 1px solid var(--line); }
.big-quote {
  max-width: 1000px;
  margin: clamp(36px, 5vw, 60px) auto 0;
  text-align: center;
}
.big-quote blockquote {
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.big-quote blockquote .hl { color: var(--coral); }
.big-quote .who {
  margin-top: 22px;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--coral);
}
.reviews-grid {
  margin-top: clamp(48px, 6vw, 80px);
  columns: 3;
  column-gap: clamp(16px, 2vw, 26px);
}
.review {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 26px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 2.4vw, 34px);
}
.review .stars { color: var(--coral); letter-spacing: 0.24em; font-size: 14px; }
.review h3 { font-weight: 700; font-size: 18px; margin: 10px 0 8px; }
.review blockquote { color: var(--charcoal-soft); font-size: 15px; }
.review .who {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}
@media (max-width: 1000px) { .reviews-grid { columns: 2; } }
@media (max-width: 640px) { .reviews-grid { columns: 1; } }

/* ---------- claim ---------- */
.claim {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.claim .eyebrow { margin: 0 auto 6px; transform: rotate(-2deg); }
.claim h2 { color: var(--cream); }
.claim h2 .script-big {
  display: block;
  font-family: var(--font-script);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(44px, 7.5vw, 110px);
  color: var(--coral);
  margin-top: 6px;
  transform: rotate(-2deg);
}
.claim .lede { margin: 0 auto; color: rgba(255, 248, 240, 0.66); }
.claim .hero-ctas { justify-content: center; }
.claim .contact-lines {
  margin-top: 34px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.claim .contact-lines a { color: var(--coral); text-decoration: none; }
.claim .contact-lines a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer {
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.site-footer .f-brand { display: flex; align-items: center; gap: 16px; }
.site-footer .f-brand img { height: 74px; width: auto; }
.site-footer .f-brand .t {
  font-size: 13px;
  color: var(--charcoal-faint);
  max-width: 320px;
}
.site-footer nav { display: flex; gap: 24px; }
.site-footer a {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer a:hover { color: var(--coral); }

/* ---------- subpages ---------- */
.subhero {
  padding: calc(110px + 6vw) var(--pad-x) clamp(46px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.subhero .section-inner { max-width: 1220px; }
.subhero h1 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 6px 0 18px;
}
.subhero h1 .coral { color: var(--coral); }
.subhero p { max-width: 640px; color: var(--charcoal-soft); font-size: 17px; }

.lib-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: var(--sec-y);
}
.lib-cats article {
  border: 1.5px solid var(--charcoal);
  border-radius: 16px;
  background: var(--cream);
  padding: clamp(22px, 2.6vw, 36px);
}
.lib-cats .k { font-family: var(--font-script); font-size: 23px; color: var(--coral); }
.lib-cats h3 { font-weight: 800; text-transform: uppercase; font-size: 19px; margin: 8px 0 8px; }
.lib-cats p { color: var(--charcoal-soft); font-size: 15px; }
@media (max-width: 860px) { .lib-cats { grid-template-columns: 1fr; } }

.lib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.lib-grid .g-card { width: auto; }
.lib-grid .g-card .spirit { color: var(--coral); }
.lib-grid .g-card h3 { color: var(--charcoal); }
.lib-grid .g-card p { color: var(--charcoal-soft); }
.shelf-note {
  margin-top: clamp(28px, 4vw, 44px);
  color: var(--charcoal-soft);
  max-width: 620px;
}
.shelf-note strong { color: var(--coral); }
.events-cta.center { justify-content: flex-start; }

.faq-list { max-width: 860px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 23px);
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-weight: 400;
  font-size: 26px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary { color: var(--coral); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--coral-deep); }
.faq-list .a { padding: 0 4px 28px; color: var(--charcoal-soft); max-width: 720px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee .track { animation: none; }
  .cursor { display: none !important; }
  .loader { display: none !important; }
  body.loading { overflow: auto; }
}
