  :root{
    --ink: #0B0B0D;
    --ink-soft: #131315;
    --surface: #17171A;
    --surface-2: #1E1E22;
    --red: #A50B21;
    --red-bright: #A50B21;
    --white: #F7F5F2;
    --paper: #FFFFFF;
    --line: #2A2A2E;
    --line-soft: #E7E4DF;
    --muted: #9C9A9C;
    --muted-dark: #6B6B6E;
    --ink-text: #17171A;

    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --container: 1240px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --ease: cubic-bezier(.16,1,.3,1);

    --bg-page: #FFFFFF;
    --bg-tint: #FBFAF8;
    --bg-elevated: #FFFFFF;
    --text-primary: #17171A;
    --text-secondary: #6B6B6E;
    --border-color: #E7E4DF;
    color-scheme: light;
  }

  *,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  }

  html{
    overflow-x:hidden;
    max-width:100%;
  }
  body{
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    max-width:100%;
    position:relative;
    transition: background .45s ease, color .45s ease;
  }

  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }
  section{ position:relative; }

  .wrap{ max-width:var(--container); margin:0 auto; padding:0 32px; }
  @media (max-width:640px){ .wrap{ padding:0 20px; } }

  :focus-visible{ outline:2px solid var(--red-bright); outline-offset:3px; border-radius:4px; }

  .eyebrow{
    font-family:var(--font-mono);
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--red-bright);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:'';
    width:22px; height:1px;
    background:var(--red-bright);
  }
  .eyebrow.on-light{ color:var(--red); }

  h1,h2,h3{ font-family:var(--font-display); font-weight:600; letter-spacing:-.01em; }

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 28px;
    border-radius:100px;
    font-family:var(--font-body);
    font-weight:600;
    font-size:15px;
    transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--red);
    color:var(--white);
    box-shadow:0 1px 0 rgba(255,255,255,.08) inset, 0 8px 24px -8px rgba(165,11,33,.55);
  }
  .btn-primary:hover{ background:var(--red-bright); transform:translateY(-2px); box-shadow:0 1px 0 rgba(255,255,255,.12) inset, 0 14px 30px -10px rgba(165,11,33,.6); }
  .btn-primary:active{ transform:translateY(0); }

  .btn-ghost-dark{
    border:1px solid rgba(247,245,242,.28);
    color:var(--white);
    background:rgba(247,245,242,.02);
  }
  .btn-ghost-dark:hover{ border-color:rgba(247,245,242,.6); background:rgba(247,245,242,.06); transform:translateY(-2px); }

  .btn-ghost-light{
    border:1px solid var(--border-color);
    color:var(--text-primary);
  }
  .btn-ghost-light:hover{ border-color:var(--red); color:var(--red); transform:translateY(-2px); }

  .btn-sm{ padding:12px 22px; font-size:14px; }

  /* ================= MAIN NAV ================= */
  .main-nav{
    background:rgba(11,11,13,.94);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    position:sticky; top:0; z-index:200;
    transform:translateZ(0);
    backface-visibility:hidden;
    contain:layout style;
    will-change:box-shadow;
    transition:padding .3s var(--ease), box-shadow .3s var(--ease);
  }
  .main-nav.scrolled{ box-shadow:0 12px 30px -18px rgba(0,0,0,.6); }
  .main-nav .wrap{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    column-gap:24px;
    height:84px;
    transition:height .3s var(--ease);
  }
  .main-nav.scrolled .wrap{ height:66px; }

  .logo{
    display:flex; align-items:center;
    justify-self:start;
    flex-shrink:0;
  }
  .logo img{
    height:30px; width:auto; max-width:none; display:block;
    flex-shrink:0;
    transition:opacity .2s ease;
  }
  .logo:hover img{ opacity:.85; }

  .nav-links{ display:flex; align-items:center; gap:4px; justify-self:center; }
  .nav-links a{
    display:flex; align-items:center;
    font-size:14.5px; font-weight:500; color:rgba(247,245,242,.78);
    line-height:1; border-radius:8px;
    padding:12px 11px;
    white-space:nowrap;
    position:relative;
    transition:color .2s ease;
  }
  .nav-links a::after{
    content:''; position:absolute; left:11px; right:11px; bottom:8px; height:1.5px;
    background:var(--red-bright); transform:scaleX(0); transform-origin:left;
    transition:transform .3s var(--ease);
  }
  .nav-links a:hover{ color:var(--white); }
  .nav-links a.active{ color:var(--white); }
  .nav-links a.active::after{ transform:scaleX(1); }
  .nav-links a:hover::after{ transform:scaleX(1); }

  .nav-cta{ display:flex; align-items:center; gap:10px; justify-self:end; min-width:0; }
  .nav-cta .btn{ padding:12px 18px; font-size:14px; }

  .nav-burger{
    display:none;
    width:42px; height:42px; border-radius:10px;
    align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,.16);
    flex-direction:column; gap:5px;
  }
  .nav-burger span{ width:18px; height:1.5px; background:var(--white); display:block; transition:transform .3s ease, opacity .3s ease; }
  .nav-burger.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity:0; }
  .nav-burger.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

  @media (max-width:1180px){
    .main-nav .wrap{ display:flex; justify-content:space-between; }
    .nav-links{ display:none; }
    .nav-burger{ display:flex; }
    .nav-cta .btn-sm-desktop{ display:none; }
  }

  .mobile-panel{
    position:fixed; inset:0; top:0; z-index:190;
    background:var(--ink);
    display:flex; flex-direction:column;
    padding:118px 28px 40px;
    transform:translateX(100%);
    transition:transform .45s var(--ease);
  }
  .mobile-panel.open{ transform:translateX(0); }
  .mobile-panel a{
    font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--white);
    padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08);
  }
  .mobile-panel .btn{ margin-top:28px; width:100%; }

  /* ================= HERO ================= */
  .hero{
    background:radial-gradient(ellipse 900px 500px at 78% -10%, rgba(165,11,33,.22), transparent 60%), var(--ink);
    color:var(--white);
    padding:20px 0 40px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.85fr); gap:60px; align-items:center;
    position:relative; z-index:2;
  }
  .hero h1{
    font-size:clamp(36px, 4.6vw, 58px);
    line-height:1.04;
    margin:14px 0 16px;
  }
  .hero h1 em{ font-style:italic; color:var(--red-bright); }
  .hero h1 .headline-line.line-b{ font-size:0.82em; }
  .headline-rotator{ display:grid; }
  .headline-line{
    grid-row:1; grid-column:1;
    opacity:0;
    animation:headlineFade 20s ease-in-out infinite;
  }
  .headline-line.line-a{ animation-delay:0s; }
  .headline-line.line-b{ animation-delay:-10s; }
  @keyframes headlineFade{
    0%{ opacity:1; transform:translateY(0); }
    42%{ opacity:1; transform:translateY(0); }
    50%{ opacity:0; transform:translateY(-10px); }
    92%{ opacity:0; transform:translateY(10px); }
    100%{ opacity:1; transform:translateY(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .headline-line{ animation:none; opacity:1; position:relative; }
    .headline-line.line-b{ display:none; }
  }

  /* ============================================================================
     HERO PROMOTIONS — only ever activated by JS when promotional artwork
     actually exists in the database. The rules above (governing line-a and
     line-b) are completely untouched — with zero active promotions, none of
     this CSS does anything and the hero behaves exactly as it always has.
     ============================================================================ */
  .headline-rotator.js-controlled .headline-line{
    animation:none; opacity:0; position:relative; transform:translateY(8px);
    transition:opacity .8s ease, transform .8s ease;
  }
  .headline-rotator.js-controlled .headline-line.slide-active{ opacity:1; transform:translateY(0); }
  .headline-line.line-promo{ display:flex; align-items:center; min-height:1px; }
  .headline-line.line-promo img{ max-width:100%; max-height:260px; width:auto; height:auto; object-fit:contain; display:block; }
  .headline-line.line-promo a{ display:block; max-width:100%; }
  @media (max-width:760px){
    .headline-line.line-promo img{ max-height:180px; }
  }
  @media (prefers-reduced-motion: reduce){
    .headline-rotator.js-controlled .headline-line{ transition:opacity .3s ease; transform:none; }
  }
  .hero p.lede{
    font-size:17.5px; color:rgba(247,245,242,.72); max-width:490px; margin-bottom:22px;
  }
  .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
  @media (max-width:480px){ .hero-actions .btn{ flex:1 1 100%; } }

  .hero-meta{ display:flex; gap:32px; flex-wrap:nowrap; overflow-x:auto; padding-bottom:2px; -ms-overflow-style:none; scrollbar-width:none; contain:layout; min-width:0; }
  .hero-meta::-webkit-scrollbar{ display:none; }
  .hero-meta div{ flex:none; }
  .hero-meta div{ display:flex; flex-direction:column; align-items:center; gap:4px; text-align:center; }
  .hero-meta .num{ font-family:var(--font-display); font-size:26px; font-weight:600; font-variant-numeric:tabular-nums; display:inline-block; }
  .hero-meta .lab{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }

  @media (max-width:640px){
    .hero-meta{
      flex-wrap:wrap; justify-content:center; overflow-x:visible; overflow-y:visible;
      row-gap:24px; column-gap:16px; padding-bottom:0;
    }
    .hero-meta div{ flex:0 0 auto; width:82px; }
    .hero-meta .lab{ font-size:10px; }
  }

  .hero-visual{ position:relative; height:460px; }

  .wheel-spin{
    position:absolute; width:480px; height:480px;
    top:50%; left:50%; transform:translate(-50%,-50%);
    animation:spinRim 100s linear infinite;
    z-index:2;
  }
  .wheel-svg{ width:100%; height:100%; display:block; }

  /* ---- Outer ring: dark varnished wood bowl rim ---- */
  .wheel-outer-ring{
    position:absolute; width:560px; height:560px; border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
    z-index:1;
    background:
      radial-gradient(circle at 30% 22%, rgba(255,205,140,.22), transparent 42%),
      radial-gradient(circle at 74% 82%, rgba(0,0,0,.5), transparent 55%),
      conic-gradient(from 220deg,
        #2e1c0e 0deg, #1c1108 26deg, #38230f 52deg, #170e06 78deg,
        #2a1a0c 104deg, #120b05 130deg, #38230f 156deg, #1c1108 182deg,
        #2e1c0e 208deg, #150d05 234deg, #38230f 260deg, #1c1108 286deg,
        #2a1a0c 312deg, #120b05 338deg, #2e1c0e 360deg);
    box-shadow:
      0 40px 90px -30px rgba(0,0,0,.7),
      inset 0 0 0 2px rgba(0,0,0,.6),
      inset 0 8px 18px rgba(255,210,150,.1),
      inset 0 -18px 30px rgba(0,0,0,.65);
  }
  /* fine wood-grain texture, multiplied over the base tone */
  .wheel-outer-ring::before{
    content:'';
    position:absolute; inset:0; border-radius:50%;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.006 0.5' numOctaves='4' seed='11' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.62  0 0 0 0 0.38  0 0 0 0 0.16  0 0 0 1.3 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size:150px 150px;
    mix-blend-mode:overlay;
    opacity:.85;
    pointer-events:none;
  }
  /* punch the black hole where the numbers ring sits */
  .wheel-outer-ring::after{
    content:''; position:absolute; inset:41px; border-radius:50%;
    background:var(--ink);
    box-shadow:inset 0 0 22px 6px rgba(0,0,0,.55);
    z-index:1;
  }

  /* thin brushed-steel trim between the wood rim and the numbers ring */
  .wheel-trim{
    position:absolute; width:492px; height:492px; border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
    z-index:2;
    background:conic-gradient(from 0deg,
      #E7E8EA 0deg, #8A8D93 45deg, #F5F6F7 90deg, #6E7176 135deg,
      #E7E8EA 180deg, #8A8D93 225deg, #F5F6F7 270deg, #6E7176 315deg, #E7E8EA 360deg);
    -webkit-mask:radial-gradient(circle, transparent calc(50% - 6px), black calc(50% - 5px), black 50%, transparent calc(50% + 1px));
    mask:radial-gradient(circle, transparent calc(50% - 6px), black calc(50% - 5px), black 50%, transparent calc(50% + 1px));
    box-shadow:0 1px 2px rgba(0,0,0,.5);
    pointer-events:none;
  }

  .wheel-rim-inner{
    position:absolute; width:368px; height:368px; border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
    border:2px solid rgba(247,245,242,.18);
    box-shadow:0 0 0 1px rgba(0,0,0,.4) inset;
    pointer-events:none;
    z-index:4;
  }
  .wheel-core{
    position:absolute; width:291px; height:291px; border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
    background:var(--surface);
    border:1px solid rgba(247,245,242,.1);
    overflow:hidden;
    box-shadow:0 30px 70px -20px rgba(0,0,0,.6), inset 0 0 0 6px rgba(0,0,0,.35);
    z-index:5;
  }
  .collage{ position:absolute; inset:0; border-radius:50%; }
  .collage-img{
    position:absolute; inset:0;
    background-size:cover; background-position:center;
    opacity:0; filter:saturate(1.05) contrast(1.03);
    animation:collageFade 48s infinite;
  }
  .collage-img:nth-child(1){ animation-delay:0s; }
  .collage-img:nth-child(2){ animation-delay:4s; }
  .collage-img:nth-child(3){ animation-delay:8s; }
  .collage-img:nth-child(4){ animation-delay:12s; }
  .collage-img:nth-child(5){ animation-delay:16s; }
  .collage-img:nth-child(6){ animation-delay:20s; }
  .collage-img:nth-child(7){ animation-delay:24s; }
  .collage-img:nth-child(8){ animation-delay:28s; }
  .collage-img:nth-child(9){ animation-delay:32s; }
  .collage-img:nth-child(10){ animation-delay:36s; }
  .collage-img:nth-child(11){ animation-delay:40s; }
  .collage-img:nth-child(12){ animation-delay:44s; }
  @keyframes collageFade{
    0%{ opacity:0; transform:scale(1.08); }
    2%{ opacity:1; transform:scale(1); }
    8%{ opacity:1; transform:scale(1); }
    10%{ opacity:0; transform:scale(1.08); }
    100%{ opacity:0; }
  }
  /* Used when images are loaded dynamically from the admin's Wheel Images
     library (any count) — a simple JS-driven crossfade instead of the fixed
     12-image keyframe animation above, which only the static fallback uses. */
  .collage-img-dynamic{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
    opacity:0; filter:saturate(1.05) contrast(1.03); transform:scale(1.08);
    transition:opacity 1.2s ease, transform 1.2s ease;
  }
  .collage-img-dynamic.collage-img-active{ opacity:1; transform:scale(1); }
  @media (prefers-reduced-motion: reduce){
    .collage-img-dynamic{ transition:opacity .4s ease; transform:none !important; }
  }
  .wheel-core::after{
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 50% 100%, rgba(11,11,13,.35), transparent 65%);
    pointer-events:none;
  }
  .orbit{
    position:absolute; width:451px; height:451px; top:50%; left:50%; transform:translate(-50%,-50%);
    animation:spin 14s linear infinite reverse;
    z-index:6;
  }
  .orbit .ball{
    position:absolute; top:6px; left:50%; transform:translateX(-50%);
    width:10px; height:10px; border-radius:50%; background:var(--white);
    box-shadow:0 0 12px 2px rgba(247,245,242,.6);
  }
  @keyframes spin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }
  @keyframes spinRim{ to{ transform:translate(-50%,-50%) rotate(360deg); } }

  @media (max-width:960px){
    .hero-grid{ grid-template-columns:minmax(0,1fr); }
    .hero-visual{ height:340px; order:-1; }
    .wheel-spin{ width:368px; height:368px; }
    .wheel-outer-ring{ width:432px; height:432px; }
    .wheel-outer-ring::after{ inset:32px; }
    .wheel-trim{ width:380px; height:380px; }
    .wheel-rim-inner{ width:280px; height:280px; }
    .wheel-core{ width:220px; height:220px; }
    .orbit{ width:350px; height:350px; }
  }

  /* ================= MARQUEE ================= */
  .marquee-band{
    background:var(--surface); color:var(--white);
    border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08);
    overflow:hidden; padding:18px 0;
    -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .marquee-track{ display:flex; width:max-content; animation:scroll 28s linear infinite; }
  .marquee-band:hover .marquee-track{ animation-play-state:paused; }
  .marquee-track span{
    font-family:var(--font-display); font-size:16px; font-weight:600; letter-spacing:.03em;
    padding:0 38px; white-space:nowrap; color:rgba(247,245,242,.72);
    display:flex; align-items:center; gap:16px;
    transition:color .25s ease;
  }
  .marquee-track span:hover{ color:var(--white); }
  .marquee-track span::after{
    content:'♠'; font-size:15px; color:rgba(247,245,242,.3);
  }
  .marquee-track span:nth-child(5n+2)::after{ content:'♥'; color:var(--red-bright); }
  .marquee-track span:nth-child(5n+3)::after{ content:'♦'; color:var(--red-bright); }
  .marquee-track span:nth-child(5n+4)::after{ content:'♣'; color:rgba(247,245,242,.3); }
  .marquee-track span:nth-child(5n+5)::after{ content:'★'; color:#D4AF37; }
  @keyframes scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  /* ================= SECTION SHARED ================= */
  .section{ padding:120px 0; }
  .section-light{ background:var(--bg-page); color:var(--text-primary); transition:background .45s ease, color .45s ease; }
  .section-tint{ background:var(--bg-tint); color:var(--text-primary); transition:background .45s ease, color .45s ease; }
  .section-dark{ background:var(--ink); color:var(--white); }
  .section-head{ max-width:640px; margin-bottom:64px; }
  .section-head h2{ font-size:clamp(30px,3.6vw,44px); margin-top:16px; line-height:1.1; }
  .section-head p{ margin-top:18px; font-size:16.5px; color:var(--text-secondary); max-width:520px; }
  .section-dark .section-head p{ color:rgba(247,245,242,.65); }
  @media (max-width:640px){ .section{ padding:80px 0; } }

  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ================= HOW IT WORKS — Premium Journey ================= */
  .how-section{ padding:52px 0; }
  .how-section .section-head{ margin-bottom:44px; }

  .journey{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:12px; margin:8px 0 4px; }

  .journey-line{
    position:absolute; top:32px; left:10%; right:10%; height:2px;
    background:var(--border-color); z-index:0; overflow:visible;
  }
  .journey-line-fill{
    position:absolute; inset:0; width:0; background:linear-gradient(90deg, var(--red), var(--red-bright));
    transition:width 1.6s cubic-bezier(.22,1,.36,1);
  }
  .journey.in .journey-line-fill{ width:100%; }
  .journey-glow{
    position:absolute; top:50%; left:0; transform:translateY(-50%);
    width:9px; height:9px; border-radius:50%; background:var(--red-bright);
    box-shadow:0 0 14px 4px rgba(227,28,61,.55);
    animation:journeyTravel 3.6s ease-in-out infinite;
    opacity:0;
  }
  .journey.in .journey-glow{ animation-play-state:running; }
  @keyframes journeyTravel{
    0%{ left:0%; opacity:0; }
    8%{ opacity:1; }
    50%{ opacity:1; }
    92%{ opacity:1; }
    100%{ left:100%; opacity:0; }
  }

  .journey-step{
    position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px;
    opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease);
  }
  .journey.in .journey-step{ opacity:1; transform:translateY(0); }
  .journey-step:nth-child(2){ transition-delay:.08s; }
  .journey-step:nth-child(3){ transition-delay:.16s; }
  .journey-step:nth-child(4){ transition-delay:.24s; }
  .journey-step:nth-child(5){ transition-delay:.32s; }

  .journey-icon{
    width:64px; height:64px; border-radius:50%; flex:none;
    background:linear-gradient(155deg, var(--bg-elevated), var(--surface));
    border:1px solid var(--border-color);
    box-shadow:0 20px 36px -24px rgba(0,0,0,.25);
    display:flex; align-items:center; justify-content:center; color:var(--red);
    transition:transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
  }
  .journey-icon svg{ width:26px; height:26px; }
  .journey-step:hover .journey-icon{
    transform:translateY(-6px) scale(1.06);
    box-shadow:0 28px 46px -20px rgba(165,11,33,.32); border-color:var(--red-bright);
  }
  .journey-step h4{ font-size:14.5px; font-weight:700; color:var(--text-primary); }

  .how-cta{ display:flex; justify-content:center; margin-top:36px; }
  .how-cta .btn svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
  .how-cta .btn:hover svg{ transform:translateX(4px); }

  @media (max-width:760px){
    .journey{ grid-template-columns:1fr; gap:0; margin:4px 0; }
    .journey-line{ display:none; }
    .journey-step{
      flex-direction:row; text-align:left; align-items:center; gap:18px;
      padding:16px 0; position:relative;
    }
    .journey-step:not(:last-child)::after{
      content:''; position:absolute; left:31px; top:64px; bottom:-16px; width:2px; background:var(--border-color);
    }
  }
  @media (max-width:640px){ .how-section{ padding:48px 0; } }

  @media (prefers-reduced-motion: reduce){
    .journey-glow{ display:none; }
    .journey-step{ transform:none; transition:opacity .4s ease; }
    .journey-step:hover .journey-icon{ transform:none; }
  }

  /* ================= GAMES ================= */
  .games-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
  .game-card{
    display:flex; flex-direction:column; height:100%;
    background:var(--bg-elevated); border:1px solid var(--border-color); border-radius:var(--radius-lg);
    overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  }
  .game-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px -24px rgba(0,0,0,.3); border-color:var(--red-bright); }
  .game-card-img{ aspect-ratio:3/4; overflow:hidden; background:var(--ink); flex:none; }
  .game-card-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease; }
  .game-card:hover .game-card-img img{ transform:scale(1.08); }
  .game-card-body{ padding:20px 18px 24px; display:flex; flex-direction:column; flex:1; }
  .game-card-body h3{
    font-size:17.5px; margin-bottom:8px; display:flex; align-items:center; justify-content:space-between; gap:8px;
  }
  .game-card-body h3 .arrow{ font-size:16px; color:var(--red-bright); transition:transform .3s var(--ease); }
  .game-card:hover .game-card-body h3 .arrow{ transform:translateX(5px); }
  .game-card-body p{ font-size:13.3px; line-height:1.5; color:var(--text-secondary); }
  .on-request-tag{
    display:inline-block; align-self:flex-start; margin-top:auto; padding:5px 11px; border-radius:100px;
    font-family:var(--font-mono); font-size:10.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
    background:rgba(165,11,33,.08); color:var(--red);
  }
  @media (max-width:1100px){ .games-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:700px){ .games-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .games-grid{ grid-template-columns:1fr; gap:16px; } .game-card-img{ aspect-ratio:16/10; } }

  /* ================= WHY US ================= */
  .why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
  .why-card{ background:var(--ink); padding:34px 26px; }
  .why-card svg{ width:26px; height:26px; stroke:var(--red-bright); margin-bottom:20px; }
  .why-card h3{ font-size:17px; margin-bottom:8px; font-weight:600; }
  .why-card p{ font-size:14px; color:rgba(247,245,242,.6); }
  @media (max-width:960px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }

  .why-section{ padding:52px 0; }
  .why-section .section-head{ margin-bottom:36px; }
  .why-section .why-card{ padding:24px 22px; }
  .why-section .why-card svg{ width:22px; height:22px; margin-bottom:12px; }
  .why-section .why-card h3{ font-size:15.5px; margin-bottom:5px; }
  .why-section .why-card p{ font-size:13px; line-height:1.45; }
  @media (max-width:640px){ .why-section{ padding:48px 0; } }

  /* ================= WEDDINGS ================= */
  .wed-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
  .wed-visual{
    aspect-ratio:4/5; border-radius:var(--radius-lg); position:relative; overflow:hidden;
    background:
      radial-gradient(circle at 30% 20%, rgba(165,11,33,.35), transparent 55%),
      linear-gradient(160deg, #17171A 0%, #0B0B0D 70%);
    border:1px solid var(--line);
  }
  .wed-visual::before{
    content:''; position:absolute; inset:0;
    background-image: repeating-linear-gradient(135deg, rgba(247,245,242,.05) 0 2px, transparent 2px 26px);
  }
  .wed-visual .card-suit{
    position:absolute; font-family:var(--font-display); color:rgba(247,245,242,.14); font-size:180px;
    bottom:-40px; right:-20px; line-height:1;
  }
  .wed-visual .tag{
    position:absolute; bottom:28px; left:28px; right:28px;
    background:rgba(11,11,13,.55); backdrop-filter:blur(8px);
    border:1px solid rgba(247,245,242,.14); border-radius:var(--radius-md);
    padding:18px 20px;
  }
  .wed-visual .tag span{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:6px; }
  .wed-visual .tag strong{ color:var(--white); font-family:var(--font-display); font-size:19px; font-weight:600; }

  .wed-copy .checklist{ margin-top:28px; display:flex; flex-direction:column; gap:14px; }
  .wed-copy .checklist li{ display:flex; align-items:flex-start; gap:12px; font-size:15px; }
  .wed-copy .checklist svg{ width:18px; height:18px; stroke:var(--red); flex:none; margin-top:2px; }
  @media (max-width:900px){ .wed-grid{ grid-template-columns:1fr; gap:44px; } }

  /* ================= TESTIMONIAL ================= */
  .testimonial-card{
    max-width:800px; margin:0 auto; text-align:center;
    background:var(--bg-elevated); border:1px solid var(--border-color); border-radius:var(--radius-lg);
    padding:64px 56px; position:relative;
    transition:background .45s ease, border-color .45s ease;
  }
  .testimonial-card::before{
    content:'"'; font-family:var(--font-display); font-size:120px; color:var(--red);
    opacity:.14; position:absolute; top:6px; left:32px; line-height:1;
  }
  .stars{ display:flex; justify-content:center; gap:4px; margin-bottom:26px; }
  .stars svg{ width:16px; height:16px; fill:var(--red-bright); }
  .testimonial-card blockquote{ font-family:var(--font-display); font-size:clamp(20px,2.6vw,26px); font-weight:500; line-height:1.45; }
  .testimonial-card .attrib{ margin-top:28px; font-family:var(--font-mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-secondary); }
  @media (max-width:640px){ .testimonial-card{ padding:48px 26px; } }

  /* ================= PRICING TEASER ================= */
  .pricing-wrap{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
  .pricing-card{
    background:var(--ink); color:var(--white); border-radius:var(--radius-lg);
    padding:44px; position:relative; overflow:hidden;
  }
  .pricing-card::after{
    content:''; position:absolute; width:260px; height:260px; border-radius:50%;
    background:repeating-conic-gradient(var(--red) 0deg 13deg, var(--surface-2) 13deg 26deg);
    -webkit-mask:radial-gradient(circle, transparent 58%, black 59%);
    mask:radial-gradient(circle, transparent 58%, black 59%);
    top:-90px; right:-90px; opacity:.5;
  }
  .pricing-card .from{ font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
  .pricing-card .price{ font-family:var(--font-display); font-size:56px; font-weight:600; margin:8px 0 24px; }
  .pricing-card .price span{ font-size:18px; font-weight:500; color:var(--muted); }
  .pricing-card ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
  .pricing-card li{ display:flex; gap:10px; font-size:14.5px; color:rgba(247,245,242,.8); }
  .pricing-card li svg{ width:16px; height:16px; stroke:var(--red-bright); flex:none; margin-top:3px; }
  @media (max-width:900px){ .pricing-wrap{ grid-template-columns:1fr; gap:44px; } }

  /* ================= GALLERY (slim thumbnail strip, no scroll) ================= */
  .gallery-strip{
    display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
  }
  .gallery-strip-item{
    flex:1 1 160px; max-width:200px; height:130px; border-radius:var(--radius-md); overflow:hidden;
    border:1px solid var(--border-color);
    transition:border-color .3s ease;
  }
  .gallery-strip-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s var(--ease); }
  .gallery-strip-item:hover img{ transform:scale(1.08); }
  .gallery-strip-item:hover{ border-color:var(--red); }
  @media (max-width:640px){ .gallery-strip-item{ flex:1 1 120px; height:100px; } }

  /* ================= FINAL CTA ================= */
  .final-cta{ background:var(--red); color:var(--white); text-align:center; padding:64px 0; position:relative; overflow:hidden; }
  .final-cta h2{ font-size:clamp(30px,4.4vw,50px); margin-bottom:18px; }
  .final-cta p{ font-size:17px; opacity:.9; max-width:480px; margin:0 auto 36px; }
  .final-cta .btn-primary{ background:var(--ink); box-shadow:none; }
  .final-cta .btn-primary:hover{ background:#000; }
  .final-cta .cta-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
  @media (max-width:480px){ .final-cta .cta-row .btn{ flex:1 1 100%; } }
  .final-cta .btn-ghost-dark:hover{ background:rgba(0,0,0,.08); }

  /* ================= FOOTER ================= */
  footer{ background:var(--ink); color:rgba(247,245,242,.6); padding:80px 0 0; }
  .footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer-brand p{ font-size:14px; margin:18px 0 22px; max-width:280px; color:rgba(247,245,242,.5); }
  .footer-social{ display:flex; gap:10px; }
  .footer-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; transition:border-color .2s ease, background .2s ease; }
  .footer-social a:hover{ border-color:var(--red-bright); background:rgba(165,11,33,.12); }
  .footer-social svg{ width:14px; height:14px; }
  footer h4{ font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--white); margin-bottom:20px; }
  footer .footer-links{ display:flex; flex-direction:column; gap:12px; }
  footer .footer-links a{ font-size:14.5px; transition:color .2s ease; }
  footer .footer-links a:hover{ color:var(--white); }
  .footer-contact li{ font-size:14.5px; margin-bottom:12px; }
  .footer-bottom{ padding:26px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12.5px; }
  .footer-bottom .legal-note{ max-width:600px; color:rgba(247,245,242,.4); font-size:12px; }
  @media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; row-gap:40px; } }
  @media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } .footer-bottom{ flex-direction:column; align-items:flex-start; } }

/* ================= INNER PAGE HERO ================= */
.page-hero{
  background:radial-gradient(ellipse 900px 500px at 78% -10%, rgba(165,11,33,.22), transparent 60%), var(--ink);
  color:var(--white);
  padding:64px 0 72px;
  overflow:hidden;
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero-eyebrow{
  font-family:var(--font-mono); font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red-bright); display:inline-flex; align-items:center; gap:10px; margin-bottom:18px;
}
.page-hero-eyebrow::before{ content:''; width:26px; height:1px; background:var(--red-bright); }
.page-hero h1{
  font-size:clamp(34px, 4.6vw, 56px); line-height:1.06; max-width:820px; margin-bottom:20px;
}
.page-hero p.lede{ font-size:17px; line-height:1.6; color:rgba(247,245,242,.85); max-width:620px; margin-bottom:30px; }
.page-hero-crumbs{ font-family:var(--font-mono); font-size:11.5px; color:rgba(247,245,242,.6); letter-spacing:.04em; margin-bottom:22px; }
.page-hero-crumbs a{ color:rgba(247,245,242,.75); transition:color .2s ease; }
.page-hero-crumbs a:hover{ color:var(--white); }

/* Compact variant — used on pages where the hero should sit tight above the content (e.g. Contact) */
.page-hero-compact{ padding:30px 0 24px; }
.page-hero-compact .page-hero-crumbs{ margin-bottom:12px; }
.page-hero-compact .page-hero-eyebrow{ margin-bottom:10px; }
.page-hero-compact h1{ font-size:clamp(26px, 3.2vw, 38px); margin-bottom:10px; }
.page-hero-compact p.lede{ font-size:15.5px; margin-bottom:0; max-width:560px; }

/* ================= INTRO STRIP ================= */
.intro-strip{ padding:64px 0; background:var(--bg-page); }
.intro-strip .wrap{ max-width:820px; }
.intro-strip p{ font-size:18px; line-height:1.7; color:var(--text-secondary); }
.intro-strip p strong{ color:var(--text-primary); font-weight:600; }

/* ================= ALTERNATING CONTENT ROWS ================= */
.content-row{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  padding:56px 0;
}
.content-row.reverse{ direction:rtl; }
.content-row.reverse > *{ direction:ltr; }
.content-row-media{
  aspect-ratio:4/3; border-radius:var(--radius-lg); overflow:hidden; position:relative;
  border:1px solid var(--border-color);
}
.content-row-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.content-row-copy .tag{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--red);
  display:inline-block; margin-bottom:14px;
}
.content-row-copy h3{ font-size:clamp(24px,2.6vw,32px); margin-bottom:16px; font-weight:600; }
.content-row-copy p{ font-size:15.5px; line-height:1.7; color:var(--text-secondary); margin-bottom:20px; }
.content-row-copy ul{ display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.content-row-copy ul li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--text-secondary); }
.content-row-copy ul li svg{ width:16px; height:16px; flex:none; margin-top:3px; stroke:var(--red); }
.content-row-meta{ display:flex; gap:24px; flex-wrap:wrap; margin-top:6px; }
.content-row-meta div{ font-size:12.5px; }
.content-row-meta .k{ font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; color:var(--text-secondary); display:block; margin-bottom:3px; }
.content-row-meta .v{ font-weight:600; color:var(--text-primary); font-size:14.5px; }
@media (max-width:860px){
  .content-row, .content-row.reverse{ grid-template-columns:1fr; direction:ltr; gap:28px; padding:36px 0; }
}

/* ================= ICON CARD GRID ================= */
.icon-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.icon-card{
  padding:32px 28px; border-radius:var(--radius-lg); border:1px solid var(--border-color);
  background:var(--bg-elevated); transition:border-color .3s ease, transform .3s ease;
}
.icon-card:hover{ border-color:var(--red); transform:translateY(-3px); }
.icon-card .icon-wrap{
  width:46px; height:46px; border-radius:12px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.icon-card .icon-wrap svg{ width:22px; height:22px; }
.icon-card h4{ font-size:16.5px; font-weight:600; margin-bottom:8px; }
.icon-card p{ font-size:14px; line-height:1.6; color:var(--text-secondary); }
@media (max-width:900px){ .icon-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .icon-grid{ grid-template-columns:1fr; } }

/* ================= EVENT TYPE CARDS ================= */
.event-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.event-card{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-color);
  background:var(--bg-elevated); transition:transform .35s var(--ease), border-color .35s ease;
  display:flex; flex-direction:column;
}
.event-card:hover{ transform:translateY(-4px); border-color:var(--red); }
.event-card-top{ padding:26px 26px 0; }
.event-card .icon-wrap{
  width:42px; height:42px; border-radius:11px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.event-card .icon-wrap svg{ width:20px; height:20px; }
.event-card h4{ font-size:17px; font-weight:600; margin-bottom:8px; }
.event-card p{ font-size:13.5px; line-height:1.6; color:var(--text-secondary); padding:0 26px 26px; }

/* ============================================================================
   INSTANT QUOTE MODAL — premium 3-step wizard
   ============================================================================ */
.iq-overlay{
  position:fixed; inset:0; z-index:400; display:flex; align-items:center; justify-content:center;
  padding:24px; background:rgba(11,11,13,.75); backdrop-filter:blur(8px);
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.iq-overlay.open{ opacity:1; pointer-events:auto; }
.iq-modal{
  position:relative; width:100%; max-width:540px; max-height:90vh; overflow-y:auto; overflow-x:hidden;
  background:var(--bg-page); border-radius:26px; padding:40px 40px 34px;
  box-shadow:0 60px 140px -30px rgba(0,0,0,.55);
  transform:translateY(24px) scale(.94); opacity:0;
  transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.iq-overlay.open .iq-modal{ transform:translateY(0) scale(1); opacity:1; }

.iq-glow{
  position:absolute; top:-80px; left:50%; transform:translateX(-50%);
  width:340px; height:200px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(165,11,33,.22), transparent 70%);
  pointer-events:none; filter:blur(10px);
}

.iq-close{
  position:absolute; top:20px; right:20px; z-index:2; width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border-color); color:var(--text-secondary); background:var(--bg-page);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease, transform .2s ease;
}
.iq-close svg{ width:16px; height:16px; }
.iq-close:hover{ border-color:var(--red); color:var(--red); transform:rotate(90deg); }

/* ---- Progress indicator ---- */
.iq-progress{ position:relative; margin-bottom:26px; }
.iq-progress-track{
  position:absolute; top:15px; left:15px; right:15px; height:2px; background:var(--border-color); z-index:0;
}
.iq-progress-fill{
  position:absolute; inset:0; width:0%; background:linear-gradient(to right, var(--red), var(--red-bright));
  transition:width .5s cubic-bezier(.22,1,.36,1);
}
.iq-progress-dots{ position:relative; z-index:1; display:flex; justify-content:space-between; }
.iq-dot{
  width:30px; height:30px; border-radius:50%; background:var(--bg-page); border:2px solid var(--border-color);
  color:var(--text-secondary); font-family:var(--font-mono); font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .35s ease, background .35s ease, color .35s ease, transform .35s ease;
}
.iq-dot-active{ border-color:var(--red); color:var(--red); transform:scale(1.12); }
.iq-dot-done{ border-color:var(--red); background:var(--red); color:var(--white); }
.iq-dot-done::before{ content:'\2713'; }

/* ---- Header ---- */
.iq-header{ margin-bottom:22px; padding-right:20px; text-align:center; }
.iq-eyebrow{
  font-family:var(--font-mono); font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--red); display:block; margin-bottom:10px;
}
.iq-header h2{ font-size:clamp(22px,3vw,27px); margin-bottom:8px; transition:opacity .2s ease; }
.iq-header p{ font-size:14px; line-height:1.5; color:var(--text-secondary); transition:opacity .2s ease; }

/* ---- Steps (sliding panels) ---- */
.iq-steps{ position:relative; }
.iq-step{
  display:flex; flex-direction:column; gap:16px;
  opacity:0; transform:translateX(24px); position:absolute; inset:0; pointer-events:none;
  transition:opacity .35s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.iq-step-active{ opacity:1; transform:translateX(0); position:relative; }
.iq-overlay.open .iq-step-active{ pointer-events:auto; }
.iq-step-prev-out{ opacity:0; transform:translateX(-24px); }
.iq-step-next-out{ opacity:0; transform:translateX(24px); }

.iq-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ---- Floating label fields ---- */
.iq-field{ position:relative; }
.iq-field input, .iq-field select{
  width:100%; padding:20px 15px 8px; border-radius:12px; border:1.5px solid var(--border-color);
  background:var(--bg-elevated); color:var(--text-primary); font-family:var(--font-body); font-size:14.5px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.iq-field select{ padding:20px 15px 8px; appearance:none; cursor:pointer; }
.iq-field-select::after{
  content:''; position:absolute; right:16px; top:26px; width:8px; height:8px;
  border-right:2px solid var(--text-secondary); border-bottom:2px solid var(--text-secondary);
  transform:rotate(45deg); pointer-events:none;
}
.iq-field label{
  position:absolute; left:15px; top:15px; font-size:14.5px; color:var(--text-secondary);
  pointer-events:none; transition:all .18s ease; transform-origin:left top;
}
.iq-field input:focus + label,
.iq-field input:not(:placeholder-shown) + label,
.iq-field select + label,
.iq-field select:focus + label,
.iq-field select:not(:invalid) + label{
  top:7px; font-size:10.5px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; color:var(--red);
}
.iq-optional{ text-transform:none; font-weight:400; letter-spacing:0; color:var(--text-secondary); font-size:11px; }
.iq-field input:focus, .iq-field select:focus{
  outline:none; border-color:var(--red); box-shadow:0 0 0 4px rgba(165,11,33,.1);
}
.iq-field input.iq-input-error, .iq-field select.iq-input-error{ border-color:var(--red-bright); }
.iq-msg{ display:block; font-size:12px; color:var(--red-bright); min-height:14px; margin-top:5px; }

/* ---- Guest slider ---- */
.iq-slider-field{ padding-top:4px; }
.iq-slider-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px; }
.iq-slider-label{ font-size:12.5px; font-weight:600; color:var(--text-primary); }
.iq-slider-value{ font-family:var(--font-mono); font-size:13px; color:var(--text-secondary); }
.iq-slider-value strong{ font-size:17px; color:var(--red); font-weight:700; }
.iq-slider-field input[type="range"]{
  -webkit-appearance:none; appearance:none; width:100%; height:6px; border-radius:100px;
  background:var(--border-color); outline:none; cursor:pointer;
}
.iq-slider-field input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; width:24px; height:24px; border-radius:50%;
  background:var(--white); border:3px solid var(--red); box-shadow:0 4px 12px rgba(0,0,0,.25); cursor:pointer;
  transition:transform .15s ease;
}
.iq-slider-field input[type="range"]:active::-webkit-slider-thumb{ transform:scale(1.15); }
.iq-slider-field input[type="range"]::-moz-range-thumb{
  width:24px; height:24px; border-radius:50%; background:var(--white); border:3px solid var(--red);
  box-shadow:0 4px 12px rgba(0,0,0,.25); cursor:pointer;
}
.iq-slider-ticks{
  display:flex; justify-content:space-between; margin-top:8px;
  font-family:var(--font-mono); font-size:10.5px; color:var(--text-secondary);
}

/* ---- Step 3 live summary ---- */
.iq-summary{
  margin-top:4px; padding:14px 16px; border-radius:12px; background:rgba(165,11,33,.06);
  font-size:13px; color:var(--text-secondary); text-align:center;
}
.iq-summary strong{ color:var(--text-primary); }

/* ---- Nav buttons ---- */
.iq-nav{ display:flex; align-items:center; gap:12px; margin-top:8px; }
.iq-back{
  display:flex; align-items:center; gap:6px; padding:14px 18px; border-radius:100px;
  border:1.5px solid var(--border-color); color:var(--text-secondary); font-size:13.5px; font-weight:600;
  transition:border-color .2s ease, color .2s ease;
}
.iq-back svg{ width:14px; height:14px; }
.iq-back:hover{ border-color:var(--text-primary); color:var(--text-primary); }
.iq-next, .iq-submit{
  flex:1; justify-content:center; display:flex; align-items:center; gap:8px; position:relative;
}
.iq-back[hidden], .iq-next[hidden], .iq-submit[hidden]{ display:none; }
.iq-next svg, .iq-submit svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
.iq-next:hover svg, .iq-submit:hover svg{ transform:translateX(4px); }
.iq-submit.iq-loading .iq-submit-label{ opacity:0; }
.iq-submit.iq-loading svg{ opacity:0; }
.iq-submit.iq-loading::after{
  content:''; position:absolute; width:18px; height:18px; border-radius:50%;
  border:2px solid rgba(255,255,255,.4); border-top-color:#fff; animation:iqSpin .7s linear infinite;
}
@keyframes iqSpin{ to{ transform:rotate(360deg); } }

.iq-privacy{ text-align:center; font-size:12px; color:var(--text-secondary); margin-top:14px; }

/* ---- Success screen ---- */
.iq-success{ text-align:center; padding:20px 10px 6px; }
.iq-success-icon{
  width:64px; height:64px; border-radius:50%; color:var(--red);
  display:flex; align-items:center; justify-content:center; margin:0 auto 22px;
}
.iq-success-icon svg{ width:64px; height:64px; }
.iq-success-circle{
  stroke-dasharray:63; stroke-dashoffset:63; transition:stroke-dashoffset .5s ease;
}
.iq-success-check{
  stroke-dasharray:20; stroke-dashoffset:20; transition:stroke-dashoffset .35s ease .4s;
}
.iq-success-show .iq-success-circle{ stroke-dashoffset:0; }
.iq-success-show .iq-success-check{ stroke-dashoffset:0; }
.iq-success h3{
  font-size:22px; margin-bottom:10px; opacity:0; transform:translateY(6px);
  transition:opacity .4s ease .5s, transform .4s ease .5s;
}
.iq-success p{
  font-size:14.5px; color:var(--text-secondary); opacity:0; transform:translateY(6px);
  transition:opacity .4s ease .6s, transform .4s ease .6s;
}
.iq-success-show h3, .iq-success-show p{ opacity:1; transform:translateY(0); }

.iq-quote-breakdown{
  margin-top:24px; padding-top:20px; border-top:1px solid var(--border-color);
  opacity:0; transform:translateY(8px); transition:opacity .4s ease .7s, transform .4s ease .7s;
}
.iq-success-show .iq-quote-breakdown{ opacity:1; transform:translateY(0); }
.iq-quote-total{
  font-family:var(--font-display); font-size:40px; font-weight:600; color:var(--red);
  margin-bottom:18px;
}
.iq-quote-lines{ display:flex; flex-direction:column; gap:10px; }
.iq-quote-line{
  display:flex; justify-content:space-between; gap:12px; font-size:13.5px;
  padding-bottom:10px; border-bottom:1px solid var(--border-color);
}
.iq-quote-line:last-child{ border-bottom:none; padding-bottom:0; }

.iq-accept-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; margin-top:24px;
}
.iq-accept-btn svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
.iq-accept-btn:hover svg{ transform:translateX(4px); }
.iq-quote-line span:first-child{ color:var(--text-secondary); }
.iq-quote-line span:last-child{ font-weight:600; color:var(--text-primary); text-align:right; }

@media (max-width:640px){
  .iq-modal{ padding:30px 22px 26px; border-radius:20px; max-height:92vh; }
  .iq-row{ grid-template-columns:1fr; }
  .iq-dot{ width:26px; height:26px; font-size:11px; }
}
@media (prefers-reduced-motion: reduce){
  .iq-overlay, .iq-modal, .iq-step, .iq-progress-fill, .iq-dot,
  .iq-success-circle, .iq-success-check, .iq-success h3, .iq-success p{ transition:none; }
  .iq-step{ position:static; transform:none; }
  .iq-step:not(.iq-step-active){ display:none; }
}
@media (max-width:900px){ .event-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .event-grid{ grid-template-columns:1fr; } }

/* ================= EVENT TYPES (Homepage teaser — icon + label) ================= */
.event-type-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.event-type-chip{
  display:flex; align-items:center; gap:14px; padding:20px 20px;
  border-radius:var(--radius-md); border:1px solid var(--border-color); background:var(--bg-elevated);
  transition:transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.event-type-chip:hover{ transform:translateY(-4px); border-color:var(--red); box-shadow:0 20px 40px -24px rgba(0,0,0,.25); }
.event-type-chip .icon-wrap{
  width:42px; height:42px; flex:none; border-radius:11px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center;
}
.event-type-chip .icon-wrap svg{ width:20px; height:20px; }
.event-type-chip span{ font-size:14.5px; font-weight:800; color:var(--text-primary); }
@media (max-width:900px){ .event-type-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .event-type-grid{ grid-template-columns:1fr; } }

/* ================= FAQ ACCORDION ================= */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border-color); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 4px; text-align:left; font-size:16px; font-weight:600; color:var(--text-primary);
  cursor:pointer;
}
.faq-question svg{ width:18px; height:18px; flex:none; stroke:var(--red); transition:transform .3s ease; }
.faq-item.open .faq-question svg{ transform:rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer-inner{ padding:0 4px 24px; font-size:14.5px; line-height:1.7; color:var(--text-secondary); max-width:680px; }
.faq-item.open .faq-answer{ max-height:400px; }

/* ================= FILTER TABS ================= */
.filter-tabs{ display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:40px; }
.filter-tab{
  padding:9px 18px; border-radius:100px; border:1px solid var(--border-color);
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-secondary); transition:all .25s ease; background:var(--bg-elevated);
}
.filter-tab:hover{ border-color:var(--red); color:var(--text-primary); }
.filter-tab.active{ background:var(--red); border-color:var(--red); color:var(--white); }

/* ================= MASONRY GALLERY GRID ================= */
.masonry-grid{ columns:4 280px; column-gap:16px; }
.masonry-item{
  break-inside:avoid; margin-bottom:16px; border-radius:var(--radius-md); overflow:hidden;
  position:relative; cursor:pointer; border:1px solid var(--border-color);
}
.masonry-item img{ width:100%; display:block; transition:transform .5s var(--ease); }
.masonry-item:hover img{ transform:scale(1.06); }
.masonry-item-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(11,11,13,.75), transparent 50%);
  opacity:0; transition:opacity .3s ease; display:flex; align-items:flex-end; padding:16px;
}
.masonry-item:hover .masonry-item-overlay{ opacity:1; }
.masonry-item-overlay span{ color:var(--white); font-size:13px; font-weight:600; }
.masonry-item[hidden]{ display:none; }
@media (max-width:900px){ .masonry-grid{ columns:2 200px; } }

/* ================= GALLERY: PHOTO GRID ================= */
.photo-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:16px; }
.photo-item{
  position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer;
  aspect-ratio:1/1; border:1px solid var(--border-color);
}
.photo-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s var(--ease); }
.photo-item:hover img{ transform:scale(1.08); }
.photo-item::after{
  content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(11,11,13,.4), transparent 45%);
  opacity:0; transition:opacity .3s ease;
}
.photo-item:hover::after{ opacity:1; }
.photo-item .expand-icon{
  position:absolute; top:10px; right:10px; width:30px; height:30px; border-radius:50%;
  background:rgba(11,11,13,.55); backdrop-filter:blur(4px); color:var(--white);
  display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s ease;
}
.photo-item:hover .expand-icon{ opacity:1; }
.photo-item .expand-icon svg{ width:14px; height:14px; }

@media (max-width:900px){
  .photo-grid{ grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; }
}

.gallery-pagination{ display:flex; justify-content:center; align-items:center; gap:8px; margin-top:36px; }
.gallery-pagination button{
  min-width:38px; height:38px; padding:0 12px; border-radius:10px; border:1px solid var(--border-color);
  background:var(--bg-elevated); color:var(--text-secondary); font-size:13px; font-weight:600;
  display:flex; align-items:center; justify-content:center; transition:border-color .2s ease, color .2s ease, background .2s ease;
}
.gallery-pagination button svg{ width:14px; height:14px; }
.gallery-pagination button:hover:not(:disabled):not(.active){ border-color:var(--red); color:var(--text-primary); }
.gallery-pagination button.active{ background:var(--red); border-color:var(--red); color:var(--white); }
.gallery-pagination button:disabled{ opacity:.35; cursor:not-allowed; }

/* ================= LIGHTBOX ================= */
.lightbox{
  position:fixed; inset:0; background:rgba(11,11,13,.94); z-index:200;
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:90vw; max-height:85vh; border-radius:8px; box-shadow:0 40px 80px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:24px; right:28px; width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(247,245,242,.2); color:var(--white); display:flex; align-items:center; justify-content:center;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(247,245,242,.2); color:var(--white); display:flex; align-items:center; justify-content:center;
}
.lightbox-prev{ left:24px; } .lightbox-next{ right:24px; }

/* ================= CROUPIER CTA CARD ================= */
.croupier-cta{
  margin-top:24px; padding:28px 30px; border-radius:var(--radius-lg);
  background:var(--ink); color:var(--white);
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  border:1px solid rgba(247,245,242,.08);
  align-self:stretch;
}
.croupier-cta-text h3{ font-size:18px; margin-bottom:6px; }
.croupier-cta-text p{ font-size:13.5px; color:rgba(247,245,242,.65); max-width:420px; }
.croupier-cta .btn{ flex:none; white-space:nowrap; }
@media (max-width:560px){ .croupier-cta{ flex-direction:column; align-items:flex-start; } }

/* ================= MODAL (generic) ================= */
.modal-overlay{
  position:fixed; inset:0; background:rgba(11,11,13,.7); backdrop-filter:blur(4px); z-index:300;
  display:flex; align-items:center; justify-content:center; padding:24px;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  position:relative; background:var(--bg-elevated); color:var(--text-primary); border-radius:var(--radius-lg);
  padding:44px 40px; max-width:440px; width:100%; box-shadow:0 50px 100px -30px rgba(0,0,0,.5);
  transform:translateY(16px) scale(.98); transition:transform .3s var(--ease);
}
.modal-overlay.open .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border-color); color:var(--text-primary); display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease;
}
.modal-close:hover{ border-color:var(--red); color:var(--red); }

/* ================= CONTACT ================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; column-gap:56px; row-gap:28px; align-items:start; }
.contact-form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field{ display:flex; flex-direction:column; gap:7px; }
.form-field label{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-secondary); }
.form-field input, .form-field select, .form-field textarea{
  padding:13px 16px; border-radius:10px; border:1px solid var(--border-color); background:var(--bg-elevated);
  font-family:var(--font-body); font-size:14.5px; color:var(--text-primary); transition:border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--red); }
.form-field textarea{ resize:vertical; min-height:120px; }
.form-field select{
  appearance:none; -webkit-appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:16px;
  padding-right:40px;
}
.form-note{ font-size:12.5px; color:var(--text-secondary); }
.contact-info-card{
  background:var(--ink); color:var(--white); border-radius:var(--radius-lg); padding:36px;
}
.contact-info-card h3{ font-size:19px; margin-bottom:24px; }
.contact-info-row{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid rgba(255,255,255,.1); }
.contact-info-row:first-of-type{ border-top:none; padding-top:0; }
.contact-info-row .icon-wrap{
  width:38px; height:38px; border-radius:10px; background:rgba(165,11,33,.15); color:var(--red-bright);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.contact-info-row .icon-wrap svg{ width:17px; height:17px; }
.contact-info-row h5{ font-size:13.5px; font-weight:600; margin-bottom:3px; }
.contact-info-row p, .contact-info-row a{ font-size:13.5px; color:rgba(247,245,242,.65); }
.contact-info-row a:hover{ color:var(--white); }
.map-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; align-self:stretch; }
.map-embed-item{ display:flex; flex-direction:column; gap:10px; }
.map-label{
  font-family:var(--font-mono); font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--text-secondary);
}
.map-embed{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-color);
  aspect-ratio:4/3; position:relative;
}
.map-embed iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.3); }
@media (max-width:640px){ .map-grid{ grid-template-columns:1fr; } }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; gap:36px; } .form-row{ grid-template-columns:1fr; } }

/* ---- Contact method cards (WhatsApp / Call / SMS / Email) ---- */
.method-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:44px; }
.method-card{
  position:relative; background:var(--bg-elevated); border:1px solid var(--border-color); border-radius:var(--radius-lg);
  padding:34px 26px 30px; text-align:center; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; height:100%;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.method-card > *:last-child{ margin-top:auto; }
.method-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  transform:scaleX(.3); transform-origin:center; transition:transform .4s var(--ease);
}
.method-card:hover::before{ transform:scaleX(1); }
.method-card:hover{ transform:translateY(-6px); box-shadow:0 24px 48px -24px rgba(0,0,0,.22); }
.method-icon{ width:56px; height:56px; border-radius:16px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; }
.method-icon svg{ width:26px; height:26px; }
.method-card h4{ font-size:17px; margin-bottom:6px; }
.method-card .method-detail{ font-family:var(--font-mono); font-size:13.5px; color:var(--text-secondary); margin-bottom:20px; word-break:break-word; }
.method-detail-link{ display:block; transition:color .2s ease; }
.method-detail-link:hover{ color:var(--red-bright); }
.method-whatsapp .method-detail,
.method-call .method-detail,
.method-sms .method-detail{
  font-size:25px; font-weight:800; color:var(--text-primary); letter-spacing:.01em; margin-bottom:22px;
}
.method-card .btn{ width:100%; }

/* Spin-in reveal for the icon — settles like a wheel slowing to a stop */
@keyframes methodIconSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(1080deg); }
}
.reveal.in .method-icon{ animation:methodIconSpin 1.4s cubic-bezier(.16,1,.3,1) both; }

/* All four cards use the brand palette only — black, red, white */
.method-whatsapp::before{ background:var(--ink); }
.method-whatsapp:hover{ border-color:var(--ink); }
.method-whatsapp .method-icon{ background:rgba(17,17,20,.06); color:var(--ink); }
.btn-whatsapp{ background:var(--ink); color:var(--white); box-shadow:0 8px 20px -8px rgba(11,11,13,.5); }
.btn-whatsapp:hover{ background:var(--red-bright); transform:translateY(-2px); box-shadow:0 14px 26px -10px rgba(227,28,61,.5); }

.method-call::before{ background:var(--red-bright); }
.method-call:hover{ border-color:var(--red-bright); }
.method-call .method-icon{ background:rgba(196,18,48,.12); color:var(--red); }

.method-sms::before{ background:var(--ink); }
.method-sms:hover{ border-color:var(--ink); }
.method-sms .method-icon{ background:rgba(17,17,20,.06); color:var(--ink); }
.btn-sms{ background:transparent; color:var(--ink); border:1.5px solid var(--ink); box-shadow:none; }
.btn-sms:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }

.method-email::before{ background:var(--red-bright); }
.method-email:hover{ border-color:var(--red-bright); }
.method-email .method-icon{ background:rgba(196,18,48,.12); color:var(--red); }
.btn-email-accent{ background:var(--ink); color:var(--white); box-shadow:0 8px 20px -8px rgba(11,11,13,.5); }
.btn-email-accent:hover{ background:var(--red-bright); transform:translateY(-2px); box-shadow:0 14px 26px -10px rgba(227,28,61,.5); }

@media (max-width:960px){ .method-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .method-grid{ grid-template-columns:1fr; } .method-card{ padding:28px 20px 24px; } }
@media (prefers-reduced-motion: reduce){ .reveal.in .method-icon{ animation:none; } }

/* ================= JOURNEY TABS (How It Works page) ================= */
.journey-tabs{ display:flex; justify-content:center; gap:4px; background:var(--bg-elevated); border:1px solid var(--border-color); border-radius:100px; padding:5px; max-width:400px; margin:0 auto 56px; }
.journey-tab{ flex:1; padding:12px 20px; border-radius:100px; font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-secondary); transition:all .25s ease; text-align:center; }
.journey-tab.active{ background:var(--red); color:var(--white); }
.journey-panel[hidden]{ display:none; }
.journey-timeline{ max-width:760px; margin:0 auto; }
.journey-step{ display:flex; gap:26px; padding-bottom:40px; position:relative; }
.journey-step-line{ position:absolute; left:23px; top:52px; bottom:0; width:1px; background:var(--border-color); }
.journey-step:last-child .journey-step-line{ display:none; }
.journey-step-num{
  flex:none; width:48px; height:48px; border-radius:50%; background:var(--bg-elevated); border:1px solid var(--border-color);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; font-size:17px; color:var(--red);
  position:relative; z-index:1;
}
.journey-step h4{ font-size:17px; font-weight:600; margin-bottom:6px; }
.journey-step p{ font-size:14.5px; line-height:1.65; color:var(--text-secondary); }

/* ================= SIMPLE STAT BAND ================= */
.stat-band{ display:flex; justify-content:center; gap:56px; flex-wrap:wrap; padding:48px 0; border-top:1px solid var(--border-color); border-bottom:1px solid var(--border-color); }
.stat-band div{ text-align:center; }
.stat-band .num{ font-family:var(--font-display); font-size:30px; font-weight:600; color:var(--text-primary); display:block; }
.stat-band .lab{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-secondary); }

/* ================= RELATED LINKS ================= */
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.related-card{
  display:block; padding:26px; border-radius:var(--radius-md); border:1px solid var(--border-color);
  background:var(--bg-elevated); transition:border-color .25s ease, transform .25s ease;
}
.related-card:hover{ border-color:var(--red); transform:translateY(-2px); }
.related-card .k{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--red); display:block; margin-bottom:8px; }
.related-card h5{ font-size:15.5px; font-weight:600; margin-bottom:6px; }
.related-card p{ font-size:13px; color:var(--text-secondary); }
@media (max-width:760px){ .related-grid{ grid-template-columns:1fr; } }

/* ================= FINAL CTA (shared) ================= */
.page-final-cta{
  background:var(--ink); color:var(--white); text-align:center; padding:80px 0;
  background-image:radial-gradient(ellipse 700px 400px at 50% 0%, rgba(165,11,33,.25), transparent 65%);
}
.page-final-cta h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:16px; }
.page-final-cta p{ font-size:16px; color:rgba(247,245,242,.65); max-width:520px; margin:0 auto 34px; }

/* ================= CASINO CARD GALLERY (Games page) ================= */
.casino-card-gallery{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; margin-bottom:24px; }
.casino-card-unit{ display:flex; flex-direction:column; gap:12px; }
.how-to-play-btn{
  display:flex; align-items:center; justify-content:center; gap:7px; width:100%;
  padding:11px 14px; border-radius:100px; border:1.5px solid var(--border-color);
  background:var(--bg-elevated); color:var(--text-primary); font-size:12.5px; font-weight:600;
  transition:border-color .2s ease, color .2s ease, background .2s ease;
}
.how-to-play-btn svg{ width:15px; height:15px; color:var(--red); flex:none; }
.how-to-play-btn:hover{ border-color:var(--red); color:var(--red); background:rgba(165,11,33,.04); }
@media (max-width:480px){
  .how-to-play-btn{ padding:13px 14px; font-size:13px; }
}
.casino-card{
  perspective:1600px; cursor:pointer; -webkit-tap-highlight-color:transparent;
  border-radius:20px;
}
.casino-card:focus-visible{ outline:2px solid var(--red-bright); outline-offset:6px; border-radius:20px; }
.casino-card-inner{
  position:relative; width:100%; height:460px; border-radius:20px;
  transform-style:preserve-3d; transition:transform .9s cubic-bezier(.22,1,.36,1);
}
.casino-card.flipped .casino-card-inner{ transform:rotateY(180deg); }
.casino-card-face{
  position:absolute; inset:0; backface-visibility:hidden; -webkit-backface-visibility:hidden;
  border-radius:20px; overflow:hidden; border:1px solid var(--border-color);
  box-shadow:0 20px 40px -22px rgba(0,0,0,.4);
  transition:box-shadow .35s ease, border-color .35s ease;
}
.casino-card:not(.flipped):hover .casino-card-inner{ transform:translateY(-8px) rotateZ(-1deg); }
.casino-card:not(.flipped):hover .casino-card-front{
  border-color:var(--red-bright);
  box-shadow:0 30px 54px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(227,28,61,.25), 0 0 40px -8px rgba(227,28,61,.35);
}
.casino-card-front{ background:var(--ink); }
.casino-card-front img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease; }
.casino-card:not(.flipped):hover .casino-card-front img{ transform:scale(1.07); }
.casino-card-front-overlay{
  position:absolute; left:0; right:0; bottom:0; padding:22px 18px 20px;
  background:linear-gradient(to top, rgba(11,11,13,.92) 20%, rgba(11,11,13,.35) 65%, transparent 100%);
  color:var(--white);
}
.casino-card-front-overlay .tag{
  font-family:var(--font-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  color:#ff8a97; display:block; margin-bottom:8px;
}
.casino-card-front-overlay h3{ font-size:18px; margin-bottom:6px; color:var(--white); }
.casino-card-front-overlay .teaser{ font-size:12.5px; line-height:1.5; color:rgba(247,245,242,.75); }
.casino-card-flip-hint{
  position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%;
  background:rgba(11,11,13,.55); backdrop-filter:blur(4px); color:var(--white);
  display:flex; align-items:center; justify-content:center; border:1px solid rgba(247,245,242,.2);
}
.casino-card-flip-hint svg{ width:15px; height:15px; }
.casino-card-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  padding:5px 11px; border-radius:100px;
  font-family:var(--font-mono); font-size:9.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  background:rgba(227,28,61,.9); color:var(--white); backdrop-filter:blur(3px);
}

.casino-card-back{ transform:rotateY(180deg); background:var(--bg-elevated); }
.casino-card-back-inner{
  height:100%; overflow-y:auto; padding:22px 18px 18px; display:flex; flex-direction:column;
}
.casino-card-back-inner .tag{
  font-family:var(--font-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--red); display:block; margin-bottom:8px;
}
.casino-card-back-inner h3{ font-size:17px; margin-bottom:10px; }
.casino-card-back-inner p{ font-size:12.3px; line-height:1.55; color:var(--text-secondary); margin-bottom:14px; }
.casino-card-highlights{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.casino-card-highlights li{ display:flex; align-items:flex-start; gap:7px; font-size:11.3px; line-height:1.4; color:var(--text-secondary); }
.casino-card-highlights li svg{ width:13px; height:13px; flex:none; margin-top:2px; stroke:var(--red); }
.casino-card-meta{ display:flex; flex-direction:column; gap:8px; padding-top:12px; border-top:1px solid var(--border-color); margin-bottom:14px; }
.casino-card-meta div{ display:flex; justify-content:space-between; gap:8px; }
.casino-card-meta .k{ font-family:var(--font-mono); font-size:9.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-secondary); }
.casino-card-meta .v{ font-size:11.3px; font-weight:600; color:var(--text-primary); text-align:right; }
.casino-card-close{
  margin-top:auto; width:100%; padding:10px; border-radius:10px; border:1px solid var(--border-color);
  background:transparent; color:var(--text-secondary); font-size:11.5px; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:6px; transition:border-color .2s ease, color .2s ease;
}
.casino-card-close:hover{ border-color:var(--red); color:var(--red); }
.casino-card-close svg{ width:13px; height:13px; }

@media (prefers-reduced-motion: reduce){
  .casino-card-inner{ transition:none; }
  .casino-card.flipped .casino-card-inner{ transform:none; }
  .casino-card-front, .casino-card-back{ transition:opacity .25s ease; }
  .casino-card-back{ transform:none; opacity:0; pointer-events:none; }
  .casino-card.flipped .casino-card-front{ opacity:0; pointer-events:none; }
  .casino-card.flipped .casino-card-back{ opacity:1; pointer-events:auto; }
  .casino-card:not(.flipped):hover .casino-card-inner{ transform:none; }
}

@media (max-width:1180px){
  .casino-card-gallery{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:760px){
  .casino-card-gallery{ grid-template-columns:repeat(2,1fr); gap:16px; }
  .casino-card-inner{ height:420px; }
}
@media (max-width:520px){
  .casino-card-gallery{ grid-template-columns:1fr; }
  .casino-card-inner{ height:440px; }
}

/* ================= COMBO CARDS (Games page) ================= */
.combo-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.combo-card{
  position:relative; overflow:hidden; padding:26px 24px; border-radius:var(--radius-lg);
  border:1px solid var(--border-color); background:var(--bg-elevated);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.combo-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--red-bright);
  transform:scaleX(.3); transform-origin:center; transition:transform .4s var(--ease);
}
.combo-card:hover::before{ transform:scaleX(1); }
.combo-card:hover{ transform:translateY(-5px); box-shadow:0 24px 44px -22px rgba(0,0,0,.28); border-color:var(--red-bright); }
.combo-card h4{ font-size:16.5px; margin-bottom:12px; }
.combo-games{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.combo-games span{
  display:inline-flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:10.5px;
  padding:5px 10px 5px 7px; border-radius:20px; background:rgba(165,11,33,.08); color:var(--red);
}
.combo-games span svg{ width:12px; height:12px; }
.combo-card p{ font-size:13.3px; line-height:1.6; color:var(--text-secondary); }
@media (max-width:960px){ .combo-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .combo-grid{ grid-template-columns:1fr; } }

/* ================= EXTRAS — light premium enhancement (Games page only) ================= */
.games-extras .icon-card{ position:relative; overflow:hidden; }
.games-extras .icon-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--red-bright);
  transform:scaleX(.3); transform-origin:center; transition:transform .4s var(--ease);
}
.games-extras .icon-card:hover::before{ transform:scaleX(1); }

/* ============================================================================
   HOW IT WORKS (page) — quick booking journey, event-day story timeline, why-it-works cards
   ============================================================================ */

/* ---- Journey One: Booking (quick 3-step glance) ---- */
.hiw-quick-journey{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:36px; margin-top:8px; }
.hiw-quick-line{
  position:absolute; top:32px; left:16%; right:16%; height:2px;
  background:var(--border-color); z-index:0; overflow:visible;
}
.hiw-quick-line-fill{
  position:absolute; inset:0; width:0; background:linear-gradient(90deg, var(--red), var(--red-bright));
  transition:width 1.6s cubic-bezier(.22,1,.36,1);
}
.hiw-quick-journey.in .hiw-quick-line-fill{ width:100%; }
.hiw-quick-step{ position:relative; z-index:1; text-align:center; }
.hiw-quick-icon{
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
  background:linear-gradient(155deg, var(--bg-elevated), var(--surface));
  border:1px solid var(--border-color); box-shadow:0 20px 36px -24px rgba(0,0,0,.25);
  display:flex; align-items:center; justify-content:center; color:var(--red);
  transition:transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
.hiw-quick-icon svg{ width:26px; height:26px; }
.hiw-quick-step:hover .hiw-quick-icon{
  transform:translateY(-6px) scale(1.06);
  box-shadow:0 28px 46px -20px rgba(165,11,33,.32); border-color:var(--red-bright);
}
.hiw-quick-step h4{ font-size:18px; margin-bottom:10px; }
.hiw-quick-step p{ font-size:13.8px; line-height:1.6; color:var(--text-secondary); }

@media (max-width:760px){
  .hiw-quick-journey{ grid-template-columns:1fr; gap:0; }
  .hiw-quick-line{ display:none; }
  .hiw-quick-step{
    display:flex; gap:18px; text-align:left; align-items:flex-start;
    padding:22px 0; border-bottom:1px solid var(--border-color);
  }
  .hiw-quick-step:last-child{ border-bottom:none; }
  .hiw-quick-icon{ margin:0; flex:none; }
}

/* ---- Journey Two: Event Day (rich vertical story timeline) ---- */
.hiw-story-timeline{ position:relative; max-width:760px; margin:0 auto; }
.hiw-story-timeline::before{
  content:''; position:absolute; left:27px; top:8px; bottom:8px; width:2px;
  background:var(--border-color); z-index:0;
}
.hiw-story-step{ position:relative; z-index:1; display:flex; gap:24px; padding-bottom:36px; }
.hiw-story-step:last-child{ padding-bottom:0; }
.hiw-story-icon{
  width:56px; height:56px; border-radius:50%; flex:none;
  background:var(--bg-page); border:1px solid var(--border-color);
  display:flex; align-items:center; justify-content:center; color:var(--red);
  box-shadow:0 12px 24px -16px rgba(0,0,0,.2);
}
.hiw-story-icon svg{ width:22px; height:22px; }
.hiw-story-content{ padding-top:6px; }
.hiw-story-content h4{ font-size:18px; margin-bottom:8px; }
.hiw-story-content p{ font-size:14px; line-height:1.65; color:var(--text-secondary); max-width:560px; }

@media (max-width:560px){
  .hiw-story-icon{ width:44px; height:44px; }
  .hiw-story-icon svg{ width:18px; height:18px; }
  .hiw-story-timeline::before{ left:21px; }
  .hiw-story-step{ gap:18px; }
}

/* ---- Why It Works cards ---- */
.hiw-why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.hiw-why-card{
  padding:28px 24px; border-radius:var(--radius-lg); border:1px solid var(--border-color);
  background:var(--bg-elevated); text-align:center;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hiw-why-card:hover{ transform:translateY(-4px); border-color:var(--red); box-shadow:0 20px 40px -24px rgba(0,0,0,.2); }
.hiw-why-card .icon-wrap{
  width:48px; height:48px; border-radius:14px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.hiw-why-card .icon-wrap svg{ width:22px; height:22px; }
.hiw-why-card h4{ font-size:15.5px; margin-bottom:8px; }
.hiw-why-card p{ font-size:13px; line-height:1.55; color:var(--text-secondary); }

@media (max-width:900px){ .hiw-why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .hiw-why-grid{ grid-template-columns:1fr; } }

@media (prefers-reduced-motion: reduce){
  .hiw-quick-line-fill{ transition:none; }
}

/* ============================================================================
   RECOMMENDED DIRECTORY — hub cards
   ============================================================================ */
.rec-hub-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.rec-hub-card{
  display:block; padding:44px 38px; border-radius:var(--radius-lg); border:1px solid var(--border-color);
  background:var(--bg-elevated); position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.rec-hub-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--red-bright);
  transform:scaleX(.3); transform-origin:center; transition:transform .4s var(--ease);
}
.rec-hub-card:hover::before{ transform:scaleX(1); }
.rec-hub-card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -28px rgba(0,0,0,.28); border-color:var(--red-bright); }
.rec-hub-icon{
  width:56px; height:56px; border-radius:16px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:24px;
}
.rec-hub-icon svg{ width:26px; height:26px; }
.rec-hub-count{ display:block; font-family:var(--font-display); font-size:44px; font-weight:600; color:var(--red); line-height:1; }
.rec-hub-count-label{
  display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--text-secondary); margin-top:8px; margin-bottom:20px;
}
.rec-hub-card h3{ font-size:22px; margin-bottom:10px; }
.rec-hub-card p{ font-size:14.5px; line-height:1.6; color:var(--text-secondary); margin-bottom:26px; }
.rec-hub-cta{ display:inline-flex; }

@media (max-width:760px){
  .rec-hub-grid{ grid-template-columns:1fr; }
  .rec-hub-card{ padding:34px 26px; }
}

/* ============================================================================
   RECOMMENDED DIRECTORY — filters, results grid, listing cards
   ============================================================================ */
.rec-filters{
  display:flex; flex-wrap:wrap; gap:12px; margin-bottom:20px; padding:20px;
  background:var(--bg-elevated); border:1px solid var(--border-color); border-radius:var(--radius-lg);
}
.rec-search{ position:relative; flex:2; min-width:220px; }
.rec-search svg{ position:absolute; left:14px; top:50%; transform:translateY(-50%); width:16px; height:16px; color:var(--text-secondary); }
.rec-search input{
  width:100%; padding:12px 14px 12px 40px; border-radius:10px; border:1.5px solid var(--border-color);
  background:var(--bg-page); color:var(--text-primary); font-family:var(--font-body); font-size:14px;
}
.rec-search input:focus{ outline:none; border-color:var(--red); box-shadow:0 0 0 4px rgba(165,11,33,.1); }
.rec-filters select{
  flex:1; min-width:150px; padding:12px 14px; border-radius:10px; border:1.5px solid var(--border-color);
  background:var(--bg-page); color:var(--text-primary); font-family:var(--font-body); font-size:14px; cursor:pointer;
}
.rec-filters select:focus{ outline:none; border-color:var(--red); }

.rec-results-count{ font-family:var(--font-mono); font-size:12px; letter-spacing:.04em; color:var(--text-secondary); margin-bottom:20px; }

.rec-loading{ text-align:center; padding:40px; color:var(--text-secondary); font-size:14px; }
.rec-empty{ text-align:center; padding:50px 20px; }
.rec-empty h3{ font-size:19px; margin-bottom:10px; }
.rec-empty p{ color:var(--text-secondary); font-size:14px; }
.rec-empty a{ color:var(--red); text-decoration:underline; }

.rec-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.rec-card{
  border-radius:var(--radius-lg); border:1px solid var(--border-color); background:var(--bg-elevated);
  overflow:hidden; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.rec-card:hover{ transform:translateY(-5px); box-shadow:0 24px 48px -26px rgba(0,0,0,.28); border-color:var(--red-bright); }
.rec-card-img{ aspect-ratio:4/3; background:var(--ink); overflow:hidden; }
.rec-card-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.rec-card-img-placeholder{ width:100%; height:100%; background:linear-gradient(155deg, var(--surface), var(--ink)); }
.rec-card-body{ padding:20px 20px 22px; }
.rec-card-body h4{ font-size:16.5px; margin-bottom:4px; }
.rec-card-location{ font-family:var(--font-mono); font-size:11px; letter-spacing:.04em; text-transform:uppercase; color:var(--red); display:block; margin-bottom:10px; }
.rec-card-body p{ font-size:13px; line-height:1.55; color:var(--text-secondary); margin-bottom:16px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.rec-card-actions{ display:flex; flex-wrap:wrap; gap:8px; }
.rec-card-btn{
  padding:8px 14px; border-radius:100px; border:1.5px solid var(--border-color); background:transparent;
  color:var(--text-secondary); font-size:12px; font-weight:600; transition:border-color .2s ease, color .2s ease;
}
.rec-card-btn:hover{ border-color:var(--red); color:var(--red); }
.rec-card-btn-primary{ background:var(--red); border-color:var(--red); color:var(--white); }
.rec-card-btn-primary:hover{ background:var(--red-bright); border-color:var(--red-bright); color:var(--white); }

@media (max-width:960px){ .rec-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){
  .rec-grid{ grid-template-columns:1fr; }
  .rec-filters{ flex-direction:column; }
  .rec-search{ min-width:0; }
  .rec-card-btn{ padding:11px 16px; font-size:12.5px; }
  .rec-card-actions{ gap:10px; }
}

/* ============================================================================
   LICENCE BADGE — "No Licence Required" bar + popup (site-wide)
   ============================================================================ */
.licence-bar{ background:var(--ink); border-bottom:1px solid rgba(255,255,255,.06); }
.licence-bar-inner{
  display:flex; align-items:center; max-width:var(--container); margin:0 auto; padding:0 32px;
}
.licence-bar-btn{
  display:flex; align-items:center; justify-content:center; gap:8px; flex:1;
  padding:9px 16px; color:rgba(247,245,242,.85); font-size:12.5px; font-weight:600;
  letter-spacing:.01em; transition:color .2s ease;
}
.licence-bar-btn:hover{ color:var(--red-bright); }
.licence-bar-btn svg{ width:14px; height:14px; flex:none; color:var(--red-bright); }

.licence-bar-phone{
  display:flex; align-items:center; gap:6px; flex:none; margin-left:16px; white-space:nowrap;
  padding:9px 4px; color:rgba(247,245,242,.85); font-size:12.5px; font-weight:600; transition:color .2s ease;
}
.licence-bar-phone svg{ width:13px; height:13px; flex:none; color:var(--red-bright); }
.licence-bar-phone:hover{ color:var(--red-bright); }

@media (max-width:640px){
  .licence-bar-inner{ padding:0 20px; }
  .licence-bar-phone span{ display:none; }
}

.licence-modal-overlay{
  position:fixed; inset:0; z-index:500; display:flex; align-items:center; justify-content:center;
  padding:24px; background:rgba(11,11,13,.75); backdrop-filter:blur(6px);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.licence-modal-overlay.open{ opacity:1; pointer-events:auto; }
.licence-modal-box{
  position:relative; max-width:460px; width:100%; background:var(--bg-page); border-radius:20px; padding:36px;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.4); transform:translateY(16px); transition:transform .3s ease;
  text-align:center;
}
.licence-modal-overlay.open .licence-modal-box{ transform:translateY(0); }
.licence-modal-box .licence-modal-icon{
  width:56px; height:56px; border-radius:50%; background:rgba(22,200,88,.12); color:#16C858;
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px; position:relative;
}
.licence-modal-box .licence-modal-icon::before{
  content:''; position:absolute; inset:-6px; border-radius:50%; border:2px solid #16C858; opacity:0;
}
.licence-modal-overlay.open .licence-modal-icon{
  animation:licenceIconPop .5s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.licence-modal-overlay.open .licence-modal-icon::before{
  animation:licenceIconRing 1s cubic-bezier(.22,1,.36,1) .15s both;
}
@keyframes licenceIconPop{
  0%{ transform:scale(.3); opacity:0; }
  60%{ transform:scale(1.15); opacity:1; }
  100%{ transform:scale(1); opacity:1; }
}
@keyframes licenceIconRing{
  0%{ transform:scale(.7); opacity:.8; }
  100%{ transform:scale(1.4); opacity:0; }
}
.licence-modal-box .licence-modal-icon svg{ width:26px; height:26px; position:relative; z-index:1; }
.licence-modal-box .licence-modal-icon svg path{ stroke-dasharray:24; stroke-dashoffset:24; }
.licence-modal-overlay.open .licence-modal-icon svg path{
  animation:licenceCheckDraw .45s ease-out .38s forwards;
}
@keyframes licenceCheckDraw{ to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion: reduce){
  .licence-modal-box .licence-modal-icon,
  .licence-modal-box .licence-modal-icon::before,
  .licence-modal-box .licence-modal-icon svg path{ animation:none; stroke-dashoffset:0; opacity:1; transform:none; }
}
.licence-modal-close{
  position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:50%;
  border:1px solid var(--border-color); color:var(--text-secondary); display:flex; align-items:center; justify-content:center;
}
.licence-modal-close:hover{ border-color:var(--red); color:var(--red); }
.licence-modal-box h3{ font-size:19px; margin-bottom:12px; }
.licence-modal-box p{ font-size:14px; line-height:1.6; color:var(--text-secondary); }

.licence-modal-divider{ height:1px; background:var(--border-color); margin:22px 0; }
.licence-modal-charity{ background:var(--bg-tint); border-radius:12px; padding:16px 18px; text-align:left; }
.licence-modal-charity .label{
  font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  color:var(--red); display:block; margin-bottom:8px;
}
.licence-modal-charity p{ font-size:12.5px; line-height:1.6; margin:0; }

@media (max-width:560px){
  .licence-bar-btn{ font-size:11.5px; padding:8px 12px; }
  .licence-bar-btn span{ line-height:1.3; }
}

/* ============================================================================
   HOW TO PLAY MODAL (Games page)
   ============================================================================ */
.htp-overlay{
  position:fixed; inset:0; z-index:450; display:flex; align-items:center; justify-content:center;
  padding:24px; background:rgba(11,11,13,.75); backdrop-filter:blur(6px);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.htp-overlay.open{ opacity:1; pointer-events:auto; }
.htp-modal{
  position:relative; width:100%; max-width:560px; max-height:86vh; overflow-y:auto;
  background:var(--bg-page); border-radius:24px; padding:44px 40px 40px;
  box-shadow:0 60px 120px -30px rgba(0,0,0,.5);
  transform:translateY(20px) scale(.97); opacity:0;
  transition:transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.htp-overlay.open .htp-modal{ transform:translateY(0) scale(1); opacity:1; }

.htp-close{
  position:absolute; top:20px; right:20px; z-index:2; width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border-color); color:var(--text-secondary); background:var(--bg-page);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s ease, color .2s ease, transform .2s ease;
}
.htp-close svg{ width:16px; height:16px; }
.htp-close:hover{ border-color:var(--red); color:var(--red); transform:rotate(90deg); }

.htp-icon{
  width:56px; height:56px; border-radius:16px; background:rgba(165,11,33,.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.htp-icon svg{ width:26px; height:26px; }
.htp-subtitle{
  font-family:var(--font-mono); font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--red); display:block; margin-bottom:8px;
}
.htp-body h2{ font-size:clamp(24px,3vw,30px); margin-bottom:20px; }

.htp-content .htp-intro{ font-size:15px; line-height:1.65; color:var(--text-secondary); margin-bottom:22px; }
.htp-content h4{
  font-family:var(--font-mono); font-size:11.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-primary); margin:24px 0 10px;
}
.htp-content h4:first-of-type{ margin-top:0; }
.htp-content p{ font-size:14px; line-height:1.65; color:var(--text-secondary); margin-bottom:6px; }
.htp-content .htp-steps{ counter-reset:htpstep; display:flex; flex-direction:column; gap:10px; }
.htp-content .htp-steps li{
  position:relative; padding-left:32px; font-size:14px; line-height:1.6; color:var(--text-secondary);
}
.htp-content .htp-steps li::before{
  counter-increment:htpstep; content:counter(htpstep);
  position:absolute; left:0; top:0; width:22px; height:22px; border-radius:50%;
  background:rgba(165,11,33,.08); color:var(--red); font-family:var(--font-mono); font-size:11px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.htp-content .htp-list{ display:flex; flex-direction:column; gap:8px; }
.htp-content .htp-list li{
  position:relative; padding-left:20px; font-size:14px; line-height:1.55; color:var(--text-secondary);
}
.htp-content .htp-list li::before{
  content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:var(--red);
}
.htp-content .htp-tip{
  margin-top:24px; padding:16px 18px; border-radius:12px; background:rgba(165,11,33,.06);
  font-size:13.5px; line-height:1.6; color:var(--text-primary);
}
.htp-content .htp-tip strong{ color:var(--red); }

@media (max-width:640px){
  .htp-modal{ padding:32px 24px 28px; border-radius:18px; max-height:88vh; }
}
@media (prefers-reduced-motion: reduce){
  .htp-overlay, .htp-modal{ transition:none; }
}
