/* ===========================================================
   DesertLuckPlay — Design System
   =========================================================== */

:root {
  /* Palette — warm desert luxury */
  --sand-50:  #FBF6ED;
  --sand-100: #F4EAD5;
  --sand-200: #E8D4A8;
  --sand-300: #D4B57A;
  --sand-400: #B5894C;

  --clay-300: #D88A5A;
  --clay-500: #B25A2D;
  --clay-700: #7A3A1B;

  --sunset-300: #F7A65A;
  --sunset-500: #E76F2E;
  --sunset-700: #BF4A1A;

  --gold-300: #F4D27A;
  --gold-500: #D4A23E;
  --gold-700: #97701F;

  --night-500: #2B1A36;
  --night-700: #1A0F22;
  --night-900: #0E0716;

  --ink-700: #3A271A;
  --ink-500: #5A4030;

  /* Semantic */
  --bg: var(--sand-50);
  --bg-alt: var(--sand-100);
  --surface: #FFFFFF;
  --text: var(--ink-700);
  --text-soft: var(--ink-500);
  --accent: var(--sunset-500);
  --accent-hot: var(--clay-500);
  --gold: var(--gold-500);
  --line: rgba(58, 39, 26, 0.12);

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(58, 39, 26, 0.06);
  --shadow-md: 0 12px 30px rgba(58, 39, 26, 0.10), 0 2px 6px rgba(58, 39, 26, 0.05);
  --shadow-lg: 0 30px 60px rgba(122, 58, 27, 0.15), 0 8px 20px rgba(58, 39, 26, 0.08);
  --shadow-glow: 0 0 60px rgba(231, 111, 46, 0.35);
}

/* ===========================================================
   Reset & base
   =========================================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  font-feature-settings: "ss01", "cv11";
}

/* Subtle grain texture overlay across entire site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

a { color: var(--accent-hot); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sunset-500); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-700);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.0rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { color: var(--text-soft); }

::selection { background: var(--sunset-500); color: var(--sand-50); }

/* ===========================================================
   Utilities
   =========================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-500);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--clay-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .25s cubic-bezier(.2,.7,.3,1.3), box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn--primary {
  background: linear-gradient(135deg, var(--sunset-500), var(--clay-500));
  color: var(--sand-50);
  box-shadow: 0 12px 24px -8px rgba(231, 111, 46, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -8px rgba(231, 111, 46, 0.65), inset 0 1px 0 rgba(255,255,255,0.25);
  color: var(--sand-50);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--sand-100);
  color: var(--ink-700);
  transform: translateY(-2px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-700);
  box-shadow: 0 12px 24px -8px rgba(212, 162, 62, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); color: var(--ink-700); }

/* ===========================================================
   18+ Top bar
   =========================================================== */
.topbar {
  background: var(--night-700);
  color: var(--sand-100);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold-300);
}
.topbar__age::before {
  content: "18+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-300);
  color: var(--night-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}
.topbar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand-300);
  opacity: 0.5;
}
@media (max-width: 720px) {
  .topbar { font-size: 0.7rem; }
  .topbar__sep { display: none; }
}

/* ===========================================================
   Header
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 237, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-700);
}
.brand:hover { color: var(--ink-700); }
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--sunset-500), var(--clay-700));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -4px rgba(231,111,46,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.brand__mark svg {
  width: 32px;
  height: 32px;
  display: block;
}
.brand__mark::after {
  /* subtle inner glow ring */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 35%, rgba(255, 233, 168, 0.35), transparent 65%);
  pointer-events: none;
}
.brand-rays {
  transform-origin: 20px 20px;
  animation: brand-rays-rot 18s linear infinite;
}
@keyframes brand-rays-rot {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.brand-sun {
  transform-origin: 20px 20px;
  animation: brand-sun-pulse 3.6s ease-in-out infinite alternate;
}
@keyframes brand-sun-pulse {
  from { transform: scale(1);    filter: brightness(1);    }
  to   { transform: scale(1.07); filter: brightness(1.12); }
}
.brand:hover .brand-rays { animation-duration: 6s; }
.brand:hover .brand-sun  { animation-duration: 1.4s; }

@media (prefers-reduced-motion: reduce) {
  .brand-rays, .brand-sun { animation: none !important; }
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.brand__name span { color: var(--clay-500); font-style: italic; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--sand-100); color: var(--ink-700); }
.nav__link.is-active { background: var(--ink-700); color: var(--sand-50); }
.nav__link.is-active:hover { color: var(--sand-50); }
.nav__age {
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gold-300);
  color: var(--night-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand-100);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 18px; height: 2px; background: var(--ink-700);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink-700);
  transition: transform .25s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: auto 0 auto 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--sand-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.is-open {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav__link { padding: 14px 16px; border-radius: 12px; }
  .nav__age { margin-left: 0; align-self: flex-start; margin-top: 6px; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
          radial-gradient(ellipse at 70% 20%, rgba(247, 166, 90, 0.6), transparent 55%),
          radial-gradient(ellipse at 30% 10%, rgba(244, 210, 122, 0.5), transparent 60%),
          linear-gradient(180deg, #FBE4C2 0%, #F7CFA0 30%, #F0B788 55%, #E89776 80%, #D2674E 100%);
}

/* Background haze behind the scene — gives the sky depth */
.hero__sun {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  /* Soft falloff via gradient stops alone — no live filter:blur (expensive on animation) */
  background: radial-gradient(circle at 50% 50%,
  rgba(255, 233, 196, 0.55) 0%,
  rgba(247, 181, 96, 0.32) 25%,
  rgba(247, 181, 96, 0.18) 45%,
  rgba(231, 111, 46, 0.06) 65%,
  rgba(231, 111, 46, 0) 80%);
  z-index: -1;
  will-change: transform, opacity;
  animation: hero-sun-haze 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-sun-haze {
  from { transform: scale(1);    opacity: 0.85; }
  to   { transform: scale(1.08); opacity: 1;    }
}

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

/* Floating dust particles */
.hero__dust {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero__dust span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 240, 210, 0.8);
  bottom: -20px;
  filter: blur(0.5px);
  opacity: 0;
  animation: dust-rise linear infinite;
}
.hero__dust span:nth-child(1)  { left: 10%; animation-duration: 11s; animation-delay: 0s;   width: 5px; height: 5px; }
.hero__dust span:nth-child(2)  { left: 20%; animation-duration: 14s; animation-delay: 2s;   width: 4px; height: 4px; }
.hero__dust span:nth-child(3)  { left: 32%; animation-duration: 9s;  animation-delay: 1s;   width: 6px; height: 6px; }
.hero__dust span:nth-child(4)  { left: 45%; animation-duration: 13s; animation-delay: 4s;   width: 3px; height: 3px; }
.hero__dust span:nth-child(5)  { left: 58%; animation-duration: 16s; animation-delay: 0s;   width: 5px; height: 5px; }
.hero__dust span:nth-child(6)  { left: 68%; animation-duration: 10s; animation-delay: 3s;   width: 7px; height: 7px; }
.hero__dust span:nth-child(7)  { left: 78%; animation-duration: 12s; animation-delay: 5s;   width: 4px; height: 4px; }
.hero__dust span:nth-child(8)  { left: 88%; animation-duration: 15s; animation-delay: 2s;   width: 5px; height: 5px; }
.hero__dust span:nth-child(9)  { left: 5%;  animation-duration: 17s; animation-delay: 6s;   width: 4px; height: 4px; }
.hero__dust span:nth-child(10) { left: 92%; animation-duration: 11s; animation-delay: 1s;   width: 6px; height: 6px; }

@keyframes dust-rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translateY(-90vh) translateX(40px) scale(0.5); opacity: 0; }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 640px;
  padding: 60px 0 200px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--clay-700);
}
.hero__title em {
  font-style: italic;
  color: var(--sunset-500);
  font-weight: 500;
}
.hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay-500);
  margin-bottom: 22px;
}

.hero__lead {
  margin-top: 28px;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__strip {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}
.hero__strip > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__strip svg { color: var(--clay-500); flex-shrink: 0; }

/* ===========================================================
   Hero illustrated scene — sun, dunes, caravan, palms, birds
   =========================================================== */
.hero__scene {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__scene svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Outer halo behind the sun, soft pulsation */
.scene-halo {
  transform-origin: 50% 42%;
  animation: scene-halo-pulse 6s ease-in-out infinite alternate;
}
@keyframes scene-halo-pulse {
  from { transform: scale(1);    opacity: 0.55; }
  to   { transform: scale(1.08); opacity: 0.85; }
}

/* Slow rotating sun rays */
.scene-rays {
  transform-origin: 50% 42%;
  animation: scene-rays-rot 60s linear infinite;
}
@keyframes scene-rays-rot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Counter-rotating secondary rays */
.scene-rays-2 {
  transform-origin: 50% 42%;
  animation: scene-rays-rot-rev 90s linear infinite;
  opacity: 0.5;
}
@keyframes scene-rays-rot-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Sun core breathing */
.scene-sun-core {
  transform-origin: 50% 42%;
  animation: scene-sun-breathe 5s ease-in-out infinite alternate;
}
@keyframes scene-sun-breathe {
  from { transform: scale(1);    filter: brightness(1); }
  to   { transform: scale(1.03); filter: brightness(1.06); }
}

/* Twinkling stars — delay/duration controlled per-element via inline --d / --t */
.scene-star {
  transform-origin: center;
  animation: scene-twinkle var(--t, 3.6s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes scene-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50%      { opacity: 1;    transform: scale(1.2); }
}

/* Bird drifting across the sky */
.scene-bird {
  animation: scene-bird-drift 22s linear infinite;
}
.scene-bird-2 {
  animation: scene-bird-drift 28s linear infinite;
  animation-delay: -8s;
}
@keyframes scene-bird-drift {
  0%   { transform: translate(-30px, 18px); opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translate(180px, -10px); opacity: 0.85; }
  90%  { opacity: 0; }
  100% { transform: translate(360px, 6px);  opacity: 0; }
}
.scene-bird-wings {
  transform-origin: center;
  animation: scene-bird-flap 0.4s ease-in-out infinite alternate;
}
@keyframes scene-bird-flap {
  from { transform: scaleY(1);   }
  to   { transform: scaleY(0.55);}
}

/* Caravan slow walk — subtle bob */
.scene-caravan {
  animation: scene-caravan-bob 2.6s ease-in-out infinite alternate;
}
@keyframes scene-caravan-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-2px); }
}

/* Palm leaves sway */
.scene-palm-leaves {
  transform-origin: 50% 90%;
  animation: scene-palm-sway 5.5s ease-in-out infinite alternate;
}
.scene-palm-leaves-2 {
  transform-origin: 50% 90%;
  animation: scene-palm-sway 6.5s ease-in-out infinite alternate;
  animation-delay: -1.5s;
}
@keyframes scene-palm-sway {
  from { transform: rotate(-2deg); }
  to   { transform: rotate(3deg);  }
}

/* Heat shimmer above horizon */
.scene-shimmer {
  animation: scene-shimmer-move 4s ease-in-out infinite alternate;
  opacity: 0.5;
}
@keyframes scene-shimmer-move {
  from { transform: translateX(-3px); opacity: 0.35; }
  to   { transform: translateX(3px);  opacity: 0.65; }
}

/* Floating "live" badge */
.hero__scene-card {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 10, 18, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--sand-100);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(244, 210, 122, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.hero__scene-card::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold-300);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-300);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; padding: 30px 0 180px; }
  .hero__scene { max-width: 380px; margin: 0 auto; }
  .hero__sun   { width: 240px; height: 240px; right: 10%; top: 12%; }
}

/* GPU-layer hints for the animated bits.
   Kept narrow on purpose — too many will-change layers cost memory. */
.scene-halo,
.scene-rays,
.scene-rays-2,
.scene-sun-core,
.scene-bird,
.scene-bird-2,
.scene-bird-wings,
.scene-caravan,
.scene-palm-leaves,
.scene-palm-leaves-2,
.scene-shimmer,
.brand-rays,
.brand-sun {
  will-change: transform;
}
.scene-star {
  will-change: transform, opacity;
}

/* Pause every animation inside hero when it's off-screen,
   or when the tab itself is hidden. JS toggles these classes. */
.hero.is-out *,
body.is-tab-hidden .hero *,
body.is-tab-hidden .brand-rays,
body.is-tab-hidden .brand-sun,
body.is-tab-hidden .hero__sun {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .scene-halo, .scene-rays, .scene-rays-2, .scene-sun-core, .scene-star,
  .scene-bird, .scene-bird-2, .scene-bird-wings, .scene-caravan,
  .scene-palm-leaves, .scene-palm-leaves-2, .scene-shimmer,
  .hero__sun {
    animation: none !important;
  }
}

/* ===========================================================
   Section base
   =========================================================== */
.section {
  position: relative;
  padding: 110px 0;
}
.section--alt { background: var(--sand-100); }
.section--dark {
  background: linear-gradient(180deg, var(--night-500), var(--night-900));
  color: var(--sand-100);
}
.section--dark h2, .section--dark h3 { color: var(--sand-50); }
.section--dark p { color: var(--sand-200); }

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 {
  margin-top: 14px;
  font-weight: 400;
}
.section-head h2 em {
  font-style: italic;
  color: var(--clay-500);
}
.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
}

/* ===========================================================
   Trust strip
   =========================================================== */
.trust {
  background: var(--ink-700);
  color: var(--sand-100);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.trust::before, .trust::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.trust::before { background: var(--clay-500); top: -100px; left: -50px; }
.trust::after  { background: var(--gold-500); bottom: -120px; right: -40px; }

.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust__item-ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244, 210, 122, 0.12);
  border: 1px solid rgba(244, 210, 122, 0.25);
  display: grid;
  place-items: center;
  color: var(--gold-300);
}
.trust__item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand-50);
  margin-bottom: 2px;
}
.trust__item p {
  font-size: 0.85rem;
  color: var(--sand-200);
  margin: 0;
}
@media (max-width: 820px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; }
}

/* ===========================================================
   Concept / About teaser
   =========================================================== */
.concept {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.concept__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #EFB87A, #C76F3F 60%, #6B361A);
  box-shadow: var(--shadow-lg);
}
.concept__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 25% 30%, rgba(255, 233, 196, 0.6), transparent 45%),
          radial-gradient(circle at 70% 75%, rgba(75, 42, 79, 0.4), transparent 60%);
}
.concept__visual svg { position: absolute; inset: auto 0 0 0; width: 100%; height: auto; }
.concept__sun {
  position: absolute;
  top: 20%; left: 22%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFF4D6, #F4D27A 65%, #E89742);
  box-shadow: 0 0 50px 10px rgba(244, 210, 122, 0.45);
}

.concept__quote {
  position: absolute;
  bottom: 26px; left: 26px; right: 26px;
  color: var(--sand-50);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 2;
}

.concept__content h2 { margin-bottom: 22px; font-weight: 400; }
.concept__content h2 em { color: var(--clay-500); font-style: italic; }
.concept__list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.concept__list li {
  list-style: none;
  display: flex;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text);
}
.concept__list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--clay-500);
  box-shadow: 0 0 0 5px rgba(178, 90, 45, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M2.5 7.5L5.5 10.5L11.5 4' stroke='%23FBF6ED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
@media (max-width: 920px) {
  .concept { grid-template-columns: 1fr; gap: 50px; }
  .concept__visual { max-width: 460px; margin: 0 auto; }
}

/* ===========================================================
   Games grid
   =========================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.game-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--sand-50);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.game-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: var(--shadow-lg);
  color: var(--sand-50);
}
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,10,18,0.7) 100%);
  z-index: 0;
}
.game-card > * { position: relative; z-index: 1; }

.game-card--slots  { background: linear-gradient(150deg, #4B2A4F 0%, #7A3A1B 60%, #C46A37 100%); }
.game-card--wheel  { background: linear-gradient(150deg, #2D1B43 0%, #6E2D5C 60%, #D88A5A 100%); }
.game-card--match  { background: linear-gradient(150deg, #1B3A4B 0%, #2D6E5C 60%, #94B266 100%); }
.game-card--hilo   { background: linear-gradient(150deg, #2D1B43 0%, #B25A2D 60%, #F4D27A 100%); }

.game-card__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.95;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.game-card:hover .game-card__art { transform: scale(1.06); }

.game-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(244, 210, 122, 0.35);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
}
.game-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--sand-50);
  line-height: 1;
}
.game-card__title em { font-style: italic; color: var(--gold-300); }
.game-card__desc {
  font-size: 0.95rem;
  color: var(--sand-100);
  margin-bottom: 18px;
  max-width: 32ch;
}
.game-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.game-card__cta svg { transition: transform .25s ease; }
.game-card:hover .game-card__cta svg { transform: translateX(4px); }

@media (max-width: 760px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 300px; padding: 24px; }
  .game-card__title { font-size: 1.65rem; }
}

/* ===========================================================
   Steps / How it works
   =========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 60px; left: 10%; right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(244,210,122,0.35) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,210,122,0.18);
  border-radius: 18px;
  padding: 36px 28px 28px;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.step__num {
  position: absolute;
  top: -22px; left: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset-500), var(--clay-500));
  color: var(--sand-50);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  box-shadow: 0 8px 20px -4px rgba(231,111,46,0.5);
  border: 4px solid var(--night-700);
}
.step h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
.step p { font-size: 0.95rem; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ===========================================================
   Features grid
   =========================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sand-100);
  top: -60px; right: -60px;
  transition: transform .35s ease;
}
.feature:hover::before { transform: scale(1.4); }
.feature > * { position: relative; }

.feature__ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sunset-500), var(--clay-700));
  display: grid; place-items: center;
  color: var(--sand-50);
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.feature p { font-size: 0.95rem; line-height: 1.55; }

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

/* ===========================================================
   Testimonial / Quote
   =========================================================== */
.quote-block {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px;
}
.quote-block::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: var(--sand-200);
  position: absolute;
  top: -10px;
  left: 0;
  font-style: italic;
  z-index: -1;
  opacity: 0.6;
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink-700);
  margin-bottom: 22px;
}
.quote-block cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-500);
  font-weight: 600;
  font-style: normal;
}

/* ===========================================================
   FAQ accordion
   =========================================================== */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] {
  border-color: var(--clay-500);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6L8 10L12 6' stroke='%237A3A1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--sunset-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 6L8 10L12 6' stroke='%23FBF6ED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.faq-item__body {
  padding: 0 28px 24px;
  color: var(--text-soft);
}
.faq-item__body p + p { margin-top: 12px; }
.faq-item__body ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid; gap: 6px;
}
.faq-item__body li::marker { color: var(--clay-500); }

/* ===========================================================
   CTA Banner
   =========================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 70px 60px;
  background: linear-gradient(135deg, #4B2A4F 0%, #7A3A1B 50%, #C46A37 100%);
  color: var(--sand-50);
  text-align: center;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 20% 30%, rgba(244, 210, 122, 0.35), transparent 40%),
          radial-gradient(circle at 80% 70%, rgba(231, 111, 46, 0.4), transparent 50%);
  z-index: -1;
}
.cta-banner h2 { color: var(--sand-50); font-weight: 400; }
.cta-banner h2 em { font-style: italic; color: var(--gold-300); }
.cta-banner p { color: var(--sand-200); margin: 18px auto 30px; max-width: 640px; }

@media (max-width: 720px) {
  .cta-banner { padding: 50px 28px; border-radius: 24px; }
}

/* ===========================================================
   Page hero (smaller)
   =========================================================== */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #FBE4C2 0%, #F0B788 80%, #E89776 100%);
  isolation: isolate;
  text-align: center;
}
.page-hero__sun {
  position: absolute;
  top: 20%; right: 8%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFE9C4, #F7B560 50%, #E76F2E 90%);
  box-shadow: 0 0 60px 12px rgba(247, 181, 96, 0.5);
  z-index: -1;
}
.page-hero__dunes { position: absolute; inset: auto 0 0 0; z-index: -1; }
.page-hero__dunes svg { width: 100%; }
.page-hero h1 {
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--clay-700);
}
.page-hero h1 em { font-style: italic; color: var(--sunset-500); }
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-700);
  font-size: 1.1rem;
}

/* ===========================================================
   Long-form (legal pages, responsible play)
   =========================================================== */
.longform {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  padding: 60px clamp(28px, 6vw, 70px);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.longform > * + * { margin-top: 1.1em; }
.longform h2 {
  font-size: 1.6rem;
  margin-top: 2.6em;
  font-weight: 500;
  color: var(--clay-700);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5em;
}
.longform h2:first-child { margin-top: 0; }
.longform h3 {
  font-size: 1.2rem;
  margin-top: 1.8em;
  color: var(--ink-700);
  font-weight: 600;
  font-family: var(--font-body);
}
.longform p, .longform li { font-size: 1rem; line-height: 1.7; color: var(--text); }
.longform ul, .longform ol { padding-left: 22px; }
.longform li { margin-bottom: 6px; }
.longform li::marker { color: var(--clay-500); }
.longform strong { color: var(--ink-700); font-weight: 700; }

.callout {
  margin-top: 1.5em;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--sand-100);
  border-left: 4px solid var(--clay-500);
}
.callout p { margin: 0; }

.callout--warn {
  background: linear-gradient(180deg, #FBE6CC, #F4D8B0);
  border-left-color: var(--sunset-500);
}

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  background: linear-gradient(160deg, #4B2A4F 0%, #7A3A1B 100%);
  border-radius: 22px;
  padding: 40px 36px;
  color: var(--sand-100);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,210,122,0.4), transparent 70%);
}
.contact-info h2 { color: var(--sand-50); font-weight: 400; margin-bottom: 16px; }
.contact-info h2 em { font-style: italic; color: var(--gold-300); }
.contact-info p { color: var(--sand-200); }
.contact-info__list {
  margin-top: 30px;
  display: grid; gap: 18px;
}
.contact-info__item {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.contact-info__ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244,210,122,0.15);
  border: 1px solid rgba(244,210,122,0.3);
  display: grid; place-items: center;
  color: var(--gold-300);
}
.contact-info__item h4 {
  font-family: var(--font-body);
  color: var(--sand-50);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-info__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--sand-200);
}
.contact-info__item a { color: var(--gold-300); }
.contact-info__item a:hover { color: var(--sand-50); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 36px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-700);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.98rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--clay-500);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(178, 90, 45, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-success {
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #DCEFD6;
  border: 1px solid #8FB97A;
  color: #2E5021;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-error {
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #FBE0DA;
  border: 1px solid #D88B7A;
  color: #7A2A1A;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 22px;
  cursor: pointer;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--clay-500); }

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

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--night-900);
  color: var(--sand-200);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,210,122,0.4), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 210, 122, 0.12);
}
.footer__brand { max-width: 360px; }
.footer__brand .brand__name { color: var(--sand-50); font-size: 1.5rem; }
.footer__tagline {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sand-100);
  line-height: 1.45;
}
.footer__sub {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--sand-300);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a {
  color: var(--sand-200);
  font-size: 0.95rem;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--sand-50); }
.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--sand-300);
}
.footer__bottom-age {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244, 210, 122, 0.1);
  border: 1px solid rgba(244, 210, 122, 0.25);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__disclaimer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(244, 210, 122, 0.2);
  font-size: 0.82rem;
  color: var(--sand-300);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ===========================================================
   Cookie banner
   =========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 540px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(20, 10, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--sand-100);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(244, 210, 122, 0.2);
  z-index: 999;
  display: flex;
  gap: 16px;
  align-items: center;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.3,1.1), opacity .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--clay-500));
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.cookie-banner__text {
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.cookie-banner__text a { color: var(--gold-300); text-decoration: underline; }
.cookie-banner__btns {
  display: flex; gap: 8px;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.cookie-banner__accept {
  background: var(--gold-300);
  color: var(--night-700);
}
.cookie-banner__accept:hover { background: var(--sand-50); }
.cookie-banner__deny {
  background: rgba(255,255,255,0.08);
  color: var(--sand-100);
}
.cookie-banner__deny:hover { background: rgba(255,255,255,0.15); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px; }
  .cookie-banner__btns { justify-content: stretch; }
  .cookie-banner__btns button { flex: 1; }
}

/* ===========================================================
   Reveal on scroll
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}