/* =========================================================================
   GREAT CANADIAN PIZZA — "Port Credit's Best, since 1984"
   Dark, urban, photography-led. Built around the real storefront:
   charcoal + electric red + cream, maple-leaf marks, mural energy.
   Multi-page static site. Display: Big Shoulders · Body: Inter.
   Motion: GSAP + ScrollTrigger + Lenis (vendored, vanilla).
   ========================================================================= */

/* ------------------------------- Tokens -------------------------------- */
:root {
  /* Surfaces — warm near-black, like the storefront */
  --bg: oklch(16% 0.013 40);
  --bg-2: oklch(20% 0.015 40);
  --bg-3: oklch(25% 0.017 40);
  --bg-card: oklch(22% 0.016 40);

  /* Brand — electric red (the PIZZA sign) + cream */
  --red: oklch(56% 0.225 27);
  --red-deep: oklch(48% 0.2 27);
  --red-soft: oklch(56% 0.225 27 / 0.14);
  --cream: oklch(94% 0.018 84);
  --cream-2: oklch(86% 0.02 82);
  --muted: oklch(78% 0.015 80 / 0.62);
  --line: oklch(100% 0 0 / 0.1);
  --line-2: oklch(100% 0 0 / 0.16);

  --font-display: "Big Shoulders Display", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.13rem);
  --text-lg: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --text-display: clamp(3rem, 1rem + 7vw, 8rem);
  --text-section: clamp(2.4rem, 1.4rem + 4.5vw, 5.2rem);

  --space-section: clamp(4.5rem, 3rem + 6vw, 9.5rem);
  --radius: 12px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --shadow: 0 36px 80px -34px rgba(0, 0, 0, 0.75);
  --shadow-red: 0 18px 44px -16px oklch(48% 0.2 27 / 0.65);

  --dur-fast: 170ms;
  --dur: 360ms;
  --dur-slow: 900ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1320px;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

.grain { position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.6rem); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.eyebrow.leaf::before { width: 16px; height: 16px; background: var(--red); -webkit-mask: var(--leaf) center/contain no-repeat; mask: var(--leaf) center/contain no-repeat; }
.display { font-family: var(--font-display); font-weight: 800; line-height: 0.9; letter-spacing: -0.01em; text-transform: uppercase; color: var(--cream); }
.display em, .display .accent { color: var(--red); font-style: normal; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 200; background: var(--red); color: #fff; padding: 0.7rem 1.1rem; border-radius: 10px; font-weight: 600; transition: top var(--dur-fast) var(--ease); }
.skip-link:focus { top: 1rem; }

:root { --leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l1.7 4.6 4.8-1.1-2.4 4.3 3.9 3-4.8 1 .3 4.9L12 20l-3.5-1.3.3-4.9-4.8-1 3.9-3L5.5 5.5l4.8 1.1z'/%3E%3C/svg%3E"); }

/* ------------------------------- Buttons ------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 1rem 1.8rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.01em; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-deep); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost { border: 1.5px solid var(--line-2); color: var(--cream); background: oklch(100% 0 0 / 0.04); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--cream); background: oklch(100% 0 0 / 0.1); }
.btn-ghost:active { transform: scale(0.97); }

/* ------------------------------- Header -------------------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: oklch(16% 0.013 40 / 0.86); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand .glyph { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; }
.brand-word { line-height: 1; }
.brand-word b { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; color: var(--cream); display: block; }
.brand-word small { font-family: var(--font-body); font-weight: 700; font-size: 0.54rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a { font-size: var(--text-sm); font-weight: 600; color: var(--cream-2); position: relative; padding: 4px 0; transition: color var(--dur-fast) var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red); transition: width var(--dur) var(--ease); border-radius: 2px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line-2); background: oklch(100% 0 0 / 0.05); align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--cream); border-radius: 2px; position: relative; transition: background var(--dur-fast) var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------- Hero ---------------------------------- */
.hero-full { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: brightness(0.78) saturate(1.06) contrast(1.04); will-change: transform; }
/* Two-layer scrim: dark on the left/bottom (text zone) fading to reveal the mural on the right */
.hero-full::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(97deg, oklch(11% 0.01 40 / 0.94) 0%, oklch(11% 0.01 40 / 0.82) 30%, oklch(11% 0.01 40 / 0.34) 60%, oklch(11% 0.01 40 / 0.12) 100%); }
.hero-full::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, oklch(11% 0.01 40 / 0.5) 0%, transparent 26%, transparent 52%, oklch(12% 0.011 40 / 0.72) 82%, var(--bg) 100%); }
.hero-inner { padding-top: 8rem; padding-bottom: clamp(2.6rem, 5vh, 4.5rem); width: 100%; }
.hero-full h1 { font-size: var(--text-display); margin: 0.8rem 0 1.2rem; max-width: 16ch; text-shadow: 0 2px 30px oklch(10% 0.01 40 / 0.5); }
.hero-full .hero-sub { text-shadow: 0 1px 16px oklch(10% 0.01 40 / 0.6); }
.hero-full .eyebrow { text-shadow: 0 1px 12px oklch(10% 0.01 40 / 0.7); }
.hero-full h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-full h1 .line > span { display: block; }
.hero-sub { font-size: var(--text-lg); color: var(--cream-2); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust .ht { display: flex; align-items: center; gap: 0.6rem; }
.hero-trust .stars { color: var(--red); letter-spacing: 0.08em; font-size: 1rem; }
.hero-trust b { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--cream); line-height: 1; text-transform: uppercase; }
.hero-trust span { font-size: var(--text-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.2; }

/* ------------------------------ Marquee -------------------------------- */
.marquee { background: var(--red); color: #fff; padding: 0.85rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 2.4rem; width: max-content; animation: marqueeX 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.1rem, 0.9rem + 1vw, 1.6rem); text-transform: uppercase; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap; }
.marquee span::after { content: ""; width: 18px; height: 18px; background: #fff; -webkit-mask: var(--leaf) center/contain no-repeat; mask: var(--leaf) center/contain no-repeat; }
@keyframes marqueeX { to { transform: translateX(-50%); } }

/* ------------------------------- Section ------------------------------- */
section { position: relative; }
.section { padding-block: var(--space-section); }
.section-head { display: grid; gap: 1rem; max-width: 48rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head h2 { font-size: var(--text-section); }
.section-head p { color: var(--muted); font-size: var(--text-lg); max-width: 56ch; }
.section-head .more { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--text-sm); display: inline-flex; align-items: center; gap: 0.4rem; }
.section-head .more:hover { gap: 0.7rem; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head-row h2 { font-size: var(--text-section); }

/* -------------------------------- Story -------------------------------- */
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); }
.story-media img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.story-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; padding: 0.6rem 1rem; border-radius: var(--radius); line-height: 1; }
.story-badge b { display: block; font-size: 1.7rem; }
.story-copy h2 { font-size: var(--text-section); margin: 0.5rem 0 1.2rem; }
.story-copy p { color: var(--muted); font-size: var(--text-lg); line-height: 1.8; margin-bottom: 1rem; }
.story-copy .accent { color: var(--red); font-weight: 600; }
.pull { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.7rem, 1rem + 2.6vw, 2.6rem); color: var(--cream); line-height: 1.05; margin: 1.4rem 0; }
.pull em { font-style: normal; color: var(--red); }
.story-stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 1.8rem; }
.story-stats .stat b { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--red); display: block; line-height: 1; }
.story-stats .stat span { font-size: var(--text-sm); color: var(--muted); }
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }

/* ---------------------------- Fan favourites --------------------------- */
.favs { background: var(--bg-2); }
.fav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fav { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: flex-end; color: var(--cream); box-shadow: var(--shadow); }
.fav img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.fav::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(12% 0.01 40 / 0.05) 0%, transparent 28%, oklch(12% 0.01 40 / 0.55) 62%, oklch(10% 0.01 40 / 0.95) 100%); }
.fav:hover img { transform: scale(1.06); }
.fav-body { position: relative; padding: 1.5rem; width: 100%; display: grid; gap: 0.3rem; }
.fav-body .tag { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); font-weight: 700; }
.fav-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.9rem; line-height: 1; }
.fav-body p { font-size: var(--text-sm); color: var(--cream-2); }
.fav-body .price { font-family: var(--font-display); font-weight: 800; color: var(--cream); font-size: 1.3rem; margin-top: 0.3rem; }
@media (max-width: 880px) { .fav-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fav-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Specials ------------------------------- */
.hockey { background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); display: grid; gap: 0.7rem; box-shadow: var(--shadow); margin-bottom: 2.5rem; position: relative; overflow: hidden; }
.hockey h3 { font-family: var(--font-display); font-size: clamp(2.2rem, 1rem + 4vw, 3.6rem); font-weight: 800; text-transform: uppercase; }
.hockey .price { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.8rem; }
.hockey p { color: oklch(100% 0 0 / 0.9); max-width: 48ch; }
.hockey .terms { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: oklch(100% 0 0 / 0.85); font-weight: 700; }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.special-day { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: grid; gap: 0.35rem; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.special-day:hover { transform: translateY(-4px); border-color: var(--red); }
.special-day .day { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--cream); font-size: 1.5rem; }
.special-day .price { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 1.2rem; }
.special-day p { font-size: var(--text-sm); color: var(--muted); }
@media (max-width: 860px) { .specials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .specials-grid { grid-template-columns: 1fr; } }

/* ------------------------------- Reviews ------------------------------- */
.reviews { background: var(--bg-2); }
.reviews-rating { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; margin-bottom: 2.6rem; }
.stars { color: var(--red); letter-spacing: 0.12em; }
.reviews-rating .stars { font-size: 1.6rem; }
.reviews-rating .r { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.3rem; color: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; display: grid; gap: 0.9rem; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.review:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review .stars { font-size: 1rem; }
.review blockquote { margin: 0; }
.review p { color: var(--cream-2); font-size: var(--text-sm); line-height: 1.7; }
.review .who { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--red); font-size: 1.1rem; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ------------------------------- Teasers ------------------------------- */
.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.teaser { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; color: var(--cream); box-shadow: var(--shadow); }
.teaser img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.teaser::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(12% 0.01 40 / 0.25) 0%, oklch(12% 0.01 40 / 0.9) 100%); }
.teaser:hover img { transform: scale(1.05); }
.teaser-body { position: relative; padding: 2rem; display: grid; gap: 0.6rem; }
.teaser-body h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 2.2rem; line-height: 1; }
.teaser-body p { font-size: var(--text-sm); color: var(--cream-2); max-width: 36ch; }
.teaser-body .more { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--text-sm); display: inline-flex; gap: 0.4rem; margin-top: 0.4rem; }
@media (max-width: 760px) { .teasers { grid-template-columns: 1fr; } }

/* -------------------------------- Visit -------------------------------- */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.visit-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow); }
.visit-media img { width: 100%; height: 100%; object-fit: cover; }
.visit-info h2 { font-size: var(--text-section); margin-bottom: 1.4rem; }
.visit-list { list-style: none; display: grid; gap: 1rem; }
.visit-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--cream-2); }
.visit-list svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 0.2rem; }
.visit-list a { color: var(--cream-2); }
.visit-list a:hover { color: var(--cream); }
.visit-hours { font-variant-numeric: tabular-nums; }
.visit-info .btn { margin-top: 1.8rem; }
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

/* ------------------------------- Footer -------------------------------- */
.site-footer { background: oklch(13% 0.011 40); color: var(--cream-2); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-block: 3.6rem; border-bottom: 1px solid var(--line); }
.footer-inner h5 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; font-weight: 800; }
.footer-inner ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-inner a { color: var(--muted); font-size: var(--text-sm); transition: color var(--dur-fast) var(--ease); }
.footer-inner a:hover { color: var(--cream); }
.footer-about .brand-word b { color: var(--cream); }
.footer-about p { color: var(--muted); font-size: var(--text-sm); max-width: 32rem; margin-top: 1rem; }
.footer-contact li { display: flex; gap: 0.6rem; font-size: var(--text-sm); color: var(--muted); align-items: flex-start; margin-bottom: 0.6rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 0.2rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-block: 1.5rem; font-size: var(--text-xs); color: var(--muted); }
.foot-bottom a { color: var(--red); }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; } }

/* --------------------------- Reveal (GSAP/CSS) ------------------------- */
html.gsap-ready .reveal { opacity: 0; }
.reveal { will-change: opacity, transform; }

/* ------------------------------ Responsive ----------------------------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { position: absolute; top: 100%; left: 0; right: 0; z-index: 95; background: oklch(16% 0.013 40 / 0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); display: grid; gap: 0.2rem; padding: 1.2rem clamp(1.1rem, 4vw, 2.5rem) 1.8rem; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease); }
  .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; font-weight: 600; color: var(--cream); }
  .mobile-menu .btn { display: inline-flex; justify-content: center; margin-top: 0.9rem; }
}
.mobile-menu { display: none; }
@media (max-width: 980px) { .mobile-menu { display: grid; } }

/* --------------------------- Reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  html.gsap-ready .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero-bg img, .story-media img { height: 100%; }
}
