/*
  HEYWOOD CHIPPY — MAXIMALIST EFFECTS LAYER
  Glassmorphism · animated aurora mesh · 3D tilt · scroll depth ·
  brand delivery hub · enhanced phone integration.
  Loaded AFTER page CSS so it can re-skin solid sections into glass.
  Requires design-system.css tokens.
*/

/* ════════════════════════════════════════════════════
   1 · ANIMATED AURORA MESH BACKGROUND
══════════════════════════════════════════════════════ */

.aurora-stage {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--color-black);
  pointer-events: none;
}

.aurora {
  position: absolute;
  inset: -25%;
  filter: blur(64px) saturate(1.15);
  opacity: 0.92;
  background:
    radial-gradient(38% 48% at 20% 30%, var(--aurora-gold),  transparent 62%),
    radial-gradient(42% 52% at 82% 22%, var(--aurora-amber), transparent 62%),
    radial-gradient(52% 60% at 72% 82%, var(--aurora-navy),  transparent 66%),
    radial-gradient(46% 56% at 24% 78%, var(--aurora-deep),  transparent 62%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  animation: auroraDrift 28s ease-in-out infinite;
  will-change: background-position;
}

.aurora--2 {
  opacity: 0.6;
  mix-blend-mode: screen;
  filter: blur(80px) saturate(1.2);
  background:
    radial-gradient(40% 50% at 70% 30%, var(--aurora-amber), transparent 60%),
    radial-gradient(44% 54% at 25% 65%, var(--aurora-gold),  transparent 60%),
    radial-gradient(38% 46% at 50% 90%, var(--aurora-pea),   transparent 60%);
  animation: auroraDrift 40s ease-in-out infinite reverse;
}

/* Fine grain + vignette so glass reads crisp over the mesh */
.aurora-veil {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(8,13,20,0.55) 100%),
    linear-gradient(180deg, rgba(8,13,20,0.35) 0%, rgba(8,13,20,0.12) 30%, rgba(8,13,20,0.55) 100%);
}

.aurora-veil::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Make page sections translucent so the living mesh shows through */
body {
  background: transparent;
}

.favourites,
.reviews,
.why-us,
.delivery-section,
.stats-bar,
.about-narrative,
.about-stats,
.about-values,
.contact-main,
.menu-layout,
.order-hub {
  background-color: transparent !important;
  position: relative;
  z-index: 1;
}

/* Soft translucent tints retained for depth rhythm */
.why-us,
.about-values {
  background: linear-gradient(180deg, rgba(13,31,60,0.40), rgba(8,13,20,0.20)) !important;
}

.stats-bar {
  background: linear-gradient(180deg, rgba(13,31,60,0.55), rgba(13,31,60,0.30)) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ════════════════════════════════════════════════════
   2 · GLASSMORPHISM
══════════════════════════════════════════════════════ */

.glass,
.card,
.review-card,
.value-card,
.why-item,
.service-btn {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border-soft) !important;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  box-shadow: var(--glass-shadow);
}

.review-card {
  border-left: 3px solid var(--color-gold) !important;
}

.glass-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur-lg)) saturate(1.25);
  -webkit-backdrop-filter: blur(var(--glass-blur-lg)) saturate(1.25);
  box-shadow: var(--glass-glow);
}

/* Glass nav once scrolled */
.site-nav.is-scrolled {
  background-color: rgba(8,13,20,0.55) !important;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18), 0 8px 40px rgba(0,0,0,0.45);
}

/* Frosted top edge highlight on glass cards */
.card,
.review-card,
.value-card,
.why-item {
  position: relative;
  overflow: hidden;
}

.card::before,
.review-card::before,
.value-card::before,
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════
   3 · 3D TILT
══════════════════════════════════════════════════════ */

.tilt-scene {
  perspective: var(--perspective);
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  will-change: transform;
}

.tilt.is-tilting {
  transition: box-shadow 320ms var(--ease-out);
}

/* moving glare on tilt cards (JS sets --mx/--my 0..100) */
.tilt__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  background: radial-gradient(
    120px 120px at var(--mx, 50%) var(--my, 0%),
    rgba(255, 240, 200, 0.35),
    transparent 60%
  );
  mix-blend-mode: screen;
}

.tilt.is-tilting .tilt__glare {
  opacity: 1;
}

/* lift children forward in 3D */
.tilt > * {
  transform: translateZ(0.01px);
}

.tilt .card__body,
.tilt .review-text,
.tilt .value-title {
  transform: translateZ(28px);
}

.tilt .card-name,
.tilt .item-name {
  transform: translateZ(40px);
}

/* ════════════════════════════════════════════════════
   4 · HERO — 3D CANVAS
══════════════════════════════════════════════════════ */

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-overlay {
  z-index: 2 !important;
  background: radial-gradient(120% 100% at 50% 32%, rgba(8,13,20,0.34) 0%, rgba(8,13,20,0.74) 70%, rgba(8,13,20,0.93) 100%) !important;
}

/* keep the food photo bright & beautiful — 3D stays as gentle atmosphere */
.hero-bg {
  filter: saturate(1.08);
}

.hero-content {
  z-index: 3 !important;
}

.hero-scroll-cue {
  z-index: 3 !important;
}

/* Shimmering gold gradient text for the hero H1.
   The H1 is split into per-word spans by JS, so the gradient + clip must
   live on each WORD (clip-to-text only paints an element's own text, not
   its children). We keep the wordReveal animation untouched here. */
.hero-word {
  background-image: linear-gradient(
    100deg,
    var(--color-white) 0%,
    var(--color-gold-light) 30%,
    var(--color-white) 55%,
    var(--color-gold) 80%,
    var(--color-cream) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ════════════════════════════════════════════════════
   5 · ORDER HUB — direct + brand platforms
══════════════════════════════════════════════════════ */

.order-hub {
  padding: var(--sp-24) 0;
}

.order-hub__head {
  text-align: center;
  margin-bottom: var(--sp-12);
}

/* ── Big direct-order card ── */
.direct-order {
  position: relative;
  max-width: 920px;
  margin: 0 auto var(--sp-12);
  padding: clamp(var(--sp-8), 5vw, var(--sp-16));
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(100% 130% at 50% 0%, rgba(232,201,122,0.30), transparent 60%),
    radial-gradient(90% 90% at 50% 110%, rgba(232,163,61,0.16), transparent 60%),
    var(--glass-bg-strong);
  border: 1.5px solid var(--color-gold-50);
  backdrop-filter: blur(var(--glass-blur-lg)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur-lg)) saturate(1.3);
  box-shadow: 0 0 0 1px var(--color-gold-25), 0 24px 70px rgba(201,168,76,0.28);
}

.direct-order::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,240,200,0.12), transparent);
  transform: translateX(-140%) skewX(-18deg);
  animation: sheen 6s var(--ease-in-out) infinite 2s;
  pointer-events: none;
}

.direct-order__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, var(--color-amber) 0%, var(--color-gold-light) 45%, var(--color-gold) 100%);
  background-size: 220% auto;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  box-shadow: 0 6px 26px rgba(232,163,61,0.55);
  animation: shimmerText 4s linear infinite, floatY-sm 3.2s var(--ease-in-out) infinite;
}

.direct-order__badge svg {
  width: 15px;
  height: 15px;
}

/* green "we deliver too" awareness pill */
.direct-order__deliver {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--color-success);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.direct-order__deliver svg {
  width: 16px;
  height: 16px;
}

.direct-order__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}

.direct-order__title em {
  font-style: italic;
  color: var(--color-gold);
}

.direct-order__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(245,239,224,0.78);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin: 0 auto var(--sp-8);
}

.direct-order__phone {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  margin-bottom: var(--sp-6);
  background: linear-gradient(100deg, var(--color-gold-light) 0%, var(--color-amber) 30%, var(--color-gold-light) 55%, var(--color-gold) 80%, var(--color-gold-light) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 22px rgba(232,163,61,0.4));
  animation: shimmerText 6s linear infinite;
  transition: transform var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out);
}

.direct-order__phone:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 28px rgba(232,163,61,0.6));
}

.direct-order__cta {
  position: relative;
  font-size: var(--text-base) !important;
  padding: var(--sp-5) var(--sp-10) !important;
}

.direct-order__note {
  margin-top: var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.direct-order__note strong {
  color: var(--color-gold-light);
  font-weight: var(--weight-semibold);
}

/* ── "Also available on" ── */
.platforms-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--sp-6);
  position: relative;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  max-width: 960px;
  margin: 0 auto;
}

.platform-btn {
  --brand: var(--color-gold);
  --brand-glow: var(--color-gold-35);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-8) var(--sp-4);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(90% 120% at 50% 0%, color-mix(in srgb, var(--brand) 32%, transparent), transparent 68%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand) 12%, transparent), transparent 55%),
    var(--glass-bg);
  border: 1.5px solid color-mix(in srgb, var(--brand) 50%, transparent);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 4px 24px color-mix(in srgb, var(--brand) 14%, transparent);
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out);
}

.platform-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--brand);
  box-shadow: 0 18px 50px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Transparent-PNG logos sit directly on the brand-tinted glass box — no
   solid white tile. object-fit: contain prevents distortion. */
.platform-btn__logo-tile {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--dur-slow) var(--ease-spring);
}

.platform-btn:hover .platform-btn__logo-tile {
  transform: scale(1.06);
}

.platform-btn__logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45));
}

/* Uber Eats wordmark is black on transparent → render it white,
   the official treatment for dark backgrounds. */
.platform-btn--ubereats .platform-btn__logo-tile img {
  filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}

/* per-logo optical balance (different aspect ratios + internal padding) */
.platform-btn--orderyoyo .platform-btn__logo-tile img { max-height: 78%; }
.platform-btn--justeat   .platform-btn__logo-tile img { max-height: 100%; }
.platform-btn--ubereats  .platform-btn__logo-tile img { max-height: 96%; }
.platform-btn--deliveroo .platform-btn__logo-tile img { max-height: 92%; }

.platform-btn__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-cream);
  letter-spacing: var(--tracking-wide);
}

.platform-btn--justeat   { --brand: var(--brand-justeat);   --brand-glow: var(--brand-justeat-glow); }
.platform-btn--deliveroo { --brand: var(--brand-deliveroo); --brand-glow: var(--brand-deliveroo-glow); }
.platform-btn--ubereats  { --brand: var(--brand-ubereats);  --brand-glow: var(--brand-ubereats-glow); }
.platform-btn--orderyoyo { --brand: var(--brand-orderyoyo); --brand-glow: var(--brand-orderyoyo-glow); }

.order-hub__match {
  text-align: center;
  margin-top: var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* menu-page order hub sits between hero and the menu — tighten spacing */
.order-hub--menu {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-12);
}

/* keep the big phone number on a single line on small screens */
@media (max-width: 560px) {
  .direct-order { padding: var(--sp-8) var(--sp-5); }
  .direct-order__title { font-size: var(--text-3xl); }
  .direct-order__phone { font-size: var(--text-4xl); }
  .direct-order__sub { font-size: var(--text-base); }
}

/* 2-up on tablet/phone keeps the logo tiles well-proportioned
   (full-width single column left the square logos looking tiny) */
@media (max-width: 860px) {
  .platforms { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}

@media (max-width: 560px) {
  .platforms { gap: var(--sp-3); }
  .platform-btn { padding: var(--sp-5) var(--sp-3); gap: var(--sp-3); }
  .platform-btn__logo-tile { height: 66px; padding: var(--sp-2) var(--sp-3); }
  .platform-btn__sub { font-size: var(--text-xs); }
}

@media (max-width: 360px) {
  .platforms { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   6 · ENHANCED PHONE INTEGRATION (mobile-first)
══════════════════════════════════════════════════════ */

.mobile-cta-bar {
  background: linear-gradient(0deg, var(--color-black) 55%, transparent) !important;
}

.mobile-cta-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%) !important;
  background-size: 200% auto !important;
  animation: shimmerText 5s linear infinite;
  box-shadow: 0 6px 28px rgba(201,168,76,0.5), inset 0 1px 0 rgba(255,255,255,0.4) !important;
}

.mobile-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-160%) skewX(-18deg);
  animation: sheen 4.5s var(--ease-in-out) infinite 1s;
}

/* pulsing live "open" dot inside the call bar */
.mobile-cta-pulse {
  position: relative;
  display: inline-flex;
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}

.mobile-cta-pulse i {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--color-success);
}

.mobile-cta-pulse i::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--color-success);
  animation: badgePing 1.8s var(--ease-out) infinite;
}

.mobile-cta-pulse--closed i,
.mobile-cta-pulse--closed i::after {
  background: var(--color-error);
}

.mobile-cta-pulse--closed i::after {
  animation: none;
}

/* Desktop floating call button (extra phone touchpoint) */
.call-fab {
  position: fixed;
  right: var(--sp-6);
  bottom: var(--sp-6);
  z-index: var(--z-overlay);
  display: none;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  box-shadow: 0 10px 40px rgba(201,168,76,0.45);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
  transform: translateY(120%);
  opacity: 0;
}

.call-fab.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.call-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 52px rgba(201,168,76,0.6);
}

.call-fab svg {
  width: 18px;
  height: 18px;
}

.call-fab__ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  animation: ctaRing 2.2s var(--ease-out) infinite;
  pointer-events: none;
}

@media (min-width: 768px) {
  .call-fab { display: inline-flex; }
}

/* ════════════════════════════════════════════════════
   7 · SCROLL-DEPTH / PARALLAX UTILITIES
══════════════════════════════════════════════════════ */

[data-parallax] {
  will-change: transform;
}

/* depth-reveal: rise + slight 3D rotate */
[data-reveal][data-depth] {
  transform: translateY(40px) rotateX(8deg);
  transform-origin: center bottom;
}

[data-reveal][data-depth].is-revealed {
  transform: translateY(0) rotateX(0);
}

.depth-scene {
  perspective: 1400px;
}

/* Section title gold accent shimmer */
.section-title,
.direct-order__title {
  position: relative;
}

/* ════════════════════════════════════════════════════
   7b · CONTACT — glass panels
══════════════════════════════════════════════════════ */

.contact-form-col,
.contact-info-col {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-6), 4vw, var(--sp-10));
  box-shadow: var(--glass-shadow);
}

/* ════════════════════════════════════════════════════
   9 · CUSTOM GOLD CURSOR + TRAIL (desktop, fine pointer)
══════════════════════════════════════════════════════ */

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor .tilt,
  body.has-custom-cursor .platform-btn {
    cursor: none;
  }
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: var(--radius-full);
  z-index: 9999;
  will-change: transform;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--color-gold);
  mix-blend-mode: screen;
  transition: width var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.cursor-ring.is-hot {
  width: 54px;
  height: 54px;
  background: var(--color-gold-15);
  border-color: var(--color-gold-light);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold-light);
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, var(--color-gold-light), transparent 70%);
  transform: translate(-50%, -50%) scale(1);
  animation: trailFade 600ms var(--ease-out) forwards;
}

@keyframes trailFade {
  from { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0;    transform: translate(-50%, -50%) scale(0.2); }
}

/* ════════════════════════════════════════════════════
   10 · ONE-TIME INTRO LOADER
══════════════════════════════════════════════════════ */

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, var(--color-navy) 0%, var(--color-black) 70%);
  animation: introPlay 2.4s var(--ease-out) forwards;
}

.intro-seen .intro-loader {
  display: none !important;
}

.intro-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.intro-loader__logo {
  width: 120px;
  height: auto;
  opacity: 0;
  animation: introLogo 1s var(--ease-out) 0.1s forwards;
}

.intro-loader__line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: introLine 1.1s var(--ease-out) 0.5s forwards;
}

.intro-loader__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  animation: introText 0.8s var(--ease-out) 0.9s forwards;
}

@keyframes introLogo {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introLine {
  from { width: 0;    opacity: 0; }
  30%  {               opacity: 1; }
  to   { width: 220px; opacity: 1; }
}

@keyframes introText {
  from { opacity: 0; letter-spacing: 0.5em; }
  to   { opacity: 1; letter-spacing: var(--tracking-widest); }
}

@keyframes introPlay {
  0%, 68%  { opacity: 1; visibility: visible; }
  100%     { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ════════════════════════════════════════════════════
   8 · ACCESSIBILITY / REDUCED MOTION
══════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .intro-loader { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora,
  .aurora--2,
  .mobile-cta-btn,
  .mobile-cta-btn::before,
  .direct-order::after,
  .direct-order__badge,
  .direct-order__phone,
  .call-fab__ring,
  .mobile-cta-pulse i::after {
    animation: none !important;
  }
  /* Hero load-in elements start at opacity:0 and rely on their keyframe to
     fade in. With reduced motion the keyframe is removed, so force them
     VISIBLE — otherwise the H1 (split into .hero-word spans) disappears. */
  .hero-eyebrow,
  .hero-title,
  .hero-word,
  .hero-sub,
  .hero-actions,
  .hero-social-proof {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .tilt { transition: none !important; }
  .hero-canvas { display: none; }
}

/* Touch devices: disable per-card pointer tilt glare (device tilt used instead) */
@media (hover: none) {
  .tilt__glare { display: none; }
}
