/* =========================================================
   Mississippi Stud — home page
   ========================================================= */

:root{
  --paper:#FBF7EE;
  --paper-2:#FAF5EC;
  --paper-3:#F4EEE1;
  --rule:#E2D6BE;
  --hair:#D9CDB4;

  --navy:#16305A;
  --navy-2:#1D3A63;
  --navy-soft:#5A6B85;

  --felt-top:#1E4373;
  --felt-mid:#14335C;
  --felt-low:#0C2444;

  --gold:#C2A573;
  --crimson:#9B1B26;
  --crimson-2:#7A141F;
  --crimson-pale:#EFDCD5;
  --green:#1B5E33;

  --card-face:#F7F2E7;
  --card-ink:#1A1A1A;
  --card-red:#B0202E;

  /* condensed display face + neutral body face */
  --display:Oswald, "Arial Narrow", Impact, system-ui, sans-serif;
  --sans:Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap:1200px;
  --ease:cubic-bezier(.22,.9,.3,1);
  --shadow-sm:0 1px 3px rgba(22,48,90,.08);
  --shadow-md:0 8px 24px rgba(22,48,90,.13);
  --shadow-lg:0 24px 60px rgba(12,36,68,.25);
}

*,*::before,*::after{ box-sizing:border-box; }
[hidden]{ display:none !important; }

html{ scroll-behavior:smooth; scroll-padding-top:80px; }
body{
  margin:0;
  font-family:var(--sans);
  font-size:16px;
  line-height:1.62;
  color:#33456180;
  color:#334561;
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img,svg{ max-width:100%; }
button{ font:inherit; color:inherit; cursor:pointer; }
a{ color:var(--crimson); }
h1,h2,h3,h4,p,figure,blockquote{ margin:0; }
ul,ol{ margin:0; padding:0; list-style:none; }

:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; border-radius:4px; }

.wrap{ width:min(100% - 32px, var(--wrap)); margin-inline:auto; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.sprite{ position:absolute; width:0; height:0; overflow:hidden; }

/* ---------- shared type ---------- */
.section-title{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(23px,3.2vw,38px);
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--navy);
  line-height:1.1;
  text-align:center;
}
.rule-line{
  display:flex; align-items:center; gap:clamp(14px,3vw,30px);
  margin:0 auto clamp(20px,3vw,34px);
}
.rule-line::before,.rule-line::after{
  content:""; flex:1; height:1px; background:var(--hair);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(14px,1.2vw,17px);
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:14px 30px;
  min-height:48px;
  border-radius:7px;
  border:2px solid transparent;
  text-decoration:none;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease),
             background .18s var(--ease), color .18s var(--ease);
}
.btn svg{ width:17px; height:17px; flex:none; }
.btn-primary{
  background:var(--crimson);
  color:#FBF6EC;
  box-shadow:0 5px 16px rgba(155,27,38,.28);
}
.btn-primary:hover{ background:var(--crimson-2); transform:translateY(-2px); box-shadow:0 9px 24px rgba(155,27,38,.38); }
.btn-outline-red{ border-color:var(--crimson); color:var(--crimson); background:transparent; }
.btn-outline-red:hover{ background:var(--crimson); color:#FBF6EC; }
.btn-outline-cream{ border-color:rgba(251,246,236,.75); color:#FBF6EC; background:transparent; }
.btn-outline-cream:hover{ background:#FBF6EC; color:var(--crimson); }
.btn-outline-navy{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn-outline-navy:hover{ background:var(--navy); color:var(--paper); }

.text-link{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--display);
  font-weight:600; font-size:13px;
  letter-spacing:.09em; text-transform:uppercase;
  color:var(--crimson);
  text-decoration:none;
}
.text-link svg{ width:15px; height:15px; transition:transform .18s var(--ease); }
.text-link:hover svg{ transform:translateX(4px); }

/* ================= HEADER ================= */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,247,238,.97);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--hair);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  height:66px;
  flex-wrap:nowrap;
}
.brand{
  display:flex; align-items:center; gap:9px;
  text-decoration:none; color:var(--navy);
  /* must be allowed to shrink, or the nowrap wordmark pushes the header
     past the viewport and the whole page scrolls sideways on a phone */
  flex:0 1 auto; min-width:0; overflow:hidden;
}
.brand .swoosh{ width:34px; height:22px; color:var(--crimson); flex:none; }
.brand .spade{ width:17px; height:19px; fill:var(--navy); flex:none; }
.brand span{
  font-family:var(--display); font-weight:700;
  font-size:clamp(17px,2.1vw,25px);
  letter-spacing:.005em; text-transform:uppercase;
  white-space:nowrap; line-height:1;
  min-width:0; overflow:hidden; text-overflow:ellipsis;
}

.site-nav{ display:none; align-items:center; gap:clamp(14px,2.1vw,30px); }
.site-nav a{
  font-size:15px; font-weight:500;
  color:var(--navy); text-decoration:none;
  white-space:nowrap;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
  transition:color .18s var(--ease), border-color .18s var(--ease);
}
.site-nav a:hover{ color:var(--crimson); border-bottom-color:var(--crimson); }

.header-right{ display:flex; align-items:center; gap:14px; flex:0 0 auto; }
.login-link{
  font-size:15px; color:var(--navy); text-decoration:none;
  display:none;
}
.login-link:hover{ color:var(--crimson); }
.header-cta{
  font-family:var(--display); font-weight:600;
  font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  color:#FBF6EC; background:var(--crimson);
  border:none; border-radius:6px;
  padding:0 20px; min-height:40px;
  display:inline-flex; align-items:center;
  text-decoration:none;
  box-shadow:0 3px 10px rgba(155,27,38,.26);
  transition:background .18s var(--ease);
}
.header-cta:hover{ background:var(--crimson-2); }

.hamburger{
  width:42px; height:42px;
  display:grid; place-items:center;
  background:none; border:none; border-radius:8px;
  color:var(--navy);
}
.hamburger svg{ width:24px; height:24px; }
.hamburger:hover{ background:rgba(22,48,90,.08); }

.drawer{
  position:fixed; inset:66px 0 auto 0; z-index:55;
  background:var(--paper-2);
  border-bottom:1px solid var(--hair);
  box-shadow:var(--shadow-md);
  padding:8px 16px 16px;
  display:none;
}
.drawer.open{ display:block; }
.drawer a{
  display:block;
  font-family:var(--display); font-weight:600; font-size:17px;
  letter-spacing:.03em; text-transform:uppercase;
  color:var(--navy); text-decoration:none;
  padding:13px 4px;
  border-bottom:1px solid var(--hair);
}
.drawer a:last-child{ border-bottom:none; }

/* ================= HERO ================= */
.hero{ position:relative; padding:clamp(26px,4vw,50px) 0 clamp(22px,3vw,38px); overflow:hidden; }
.hero-river{
  position:absolute; right:0; top:-8%;
  width:min(52%,620px);
  color:#9DB8D8; opacity:.55;
  pointer-events:none;
}
.hero .wrap{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr; gap:clamp(24px,3.5vw,40px);
  align-items:center;
}
.hero h1{
  font-family:var(--display); font-weight:700;
  font-size:clamp(42px,7.6vw,76px);
  line-height:.96;
  letter-spacing:-.005em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:14px;
}
.hero-sub{
  font-size:clamp(16px,1.55vw,19px);
  color:var(--navy-2);
  margin-bottom:24px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px; }

.trust{ display:flex; gap:clamp(20px,3.4vw,48px); flex-wrap:wrap; }
.trust li{ display:flex; flex-direction:column; align-items:center; gap:6px; text-align:center; }
.trust svg{ width:26px; height:26px; color:var(--navy); }
.trust span{
  font-size:12.5px; font-weight:500;
  color:var(--navy-2); white-space:nowrap;
}

/* hero artwork */
.hero-art{ position:relative; min-height:clamp(230px,26vw,320px); }
.hero-cards .pc{ position:absolute; box-shadow:var(--shadow-lg); }
.hero-cards .a1{ left:4%;  top:0;   transform:rotate(-8deg); z-index:3; }
.hero-cards .a2{ left:22%; top:-3%; transform:rotate(4deg);  z-index:2; }
.hero-cards .b1{ left:0;   top:42%; transform:rotate(-4deg); }
.hero-cards .b2{ left:22%; top:41%; transform:rotate(1deg); }
.hero-cards .b3{ left:44%; top:42%; transform:rotate(6deg); }

.hero-chips{ position:absolute; right:16%; top:2%; display:flex; align-items:flex-end; gap:10px; }
.chip-stack-art{ display:grid; }
.chip-stack-art .chip{ grid-area:1/1; }
.chip-stack-art .chip:nth-child(2){ transform:translateY(-8px); }
.chip-stack-art .chip:nth-child(3){ transform:translateY(-16px); }

.edge-badge{
  position:absolute; right:0; bottom:4%;
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:8px;
  padding:10px 18px 8px;
  box-shadow:var(--shadow-md);
  text-align:center;
}
.edge-badge span{
  display:block;
  font-family:var(--display); font-weight:600;
  font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--navy);
}
.edge-badge b{
  display:block;
  font-family:var(--display); font-weight:700;
  font-size:clamp(24px,3.1vw,34px);
  color:var(--crimson); line-height:1.15;
}
.edge-badge svg{ width:56px; height:28px; color:var(--navy-soft); opacity:.55; }

/* ---------- playing-card artwork ---------- */
.pc{
  width:clamp(66px,8.4vw,100px);
  aspect-ratio:5/7;
  border-radius:8px;
  position:relative; flex:none;
}
.pc.face{
  background:linear-gradient(157deg,#FDFAF3,var(--card-face) 45%,#EFE7D7);
  border:1px solid #DCD2BC;
  color:var(--card-ink);
}
.pc.face[data-c="r"]{ color:var(--card-red); }
.pc .idx{
  position:absolute; left:9%; top:5%;
  display:flex; flex-direction:column; align-items:flex-start; line-height:.92;
}
.pc .idx b{ font-weight:800; font-size:clamp(18px,2.2vw,27px); }
.pc .idx svg{ width:clamp(9px,1.1vw,13px); height:clamp(9px,1.1vw,13px); fill:currentColor; margin-top:3px; }
.pc .pip{
  position:absolute; right:7%; bottom:5%;
  width:clamp(24px,3.2vw,40px); height:clamp(24px,3.2vw,40px);
  fill:currentColor;
}
.pc.back{
  background:
    repeating-linear-gradient(45deg,  rgba(255,248,236,.30) 0 1.5px, transparent 1.5px 8px),
    repeating-linear-gradient(-45deg, rgba(255,248,236,.30) 0 1.5px, transparent 1.5px 8px),
    linear-gradient(160deg,#AD2530,var(--crimson) 55%,#7C1520);
  border:3px solid var(--card-face);
  display:grid; place-items:center;
}
.pc.back::after{
  content:""; position:absolute; inset:4px;
  border:1px solid rgba(255,248,236,.5); border-radius:4px;
}
.pc.back svg{
  width:56%; height:56%;
  color:#FBF3E4; background:var(--crimson);
  border-radius:50%; padding:5%;
  box-shadow:0 0 0 2px rgba(251,243,228,.85);
  position:relative; z-index:1;
}

/* ---------- chips ---------- */
.chip{
  --body:#9D2925; --spot:#FFFFFF; --face:#9D2925; --ink:#FFFFFF;
  width:clamp(46px,5vw,62px);
  aspect-ratio:1/1; border-radius:50%;
  display:grid; place-items:center;
  border:none; padding:0;
  background:
    radial-gradient(circle closest-side at 50% 34%, rgba(255,255,255,.30), transparent 62%),
    radial-gradient(circle closest-side, var(--face) 0 69%, transparent 69.5%),
    radial-gradient(circle closest-side, transparent 0 70%, rgba(255,255,255,.55) 70% 74%, transparent 74.5%),
    repeating-conic-gradient(var(--spot) 0 22.5deg, var(--body) 0 45deg);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.22),
    inset 0 -3px 7px rgba(0,0,0,.28),
    0 4px 9px rgba(4,12,26,.4);
}
.chip i{ font-style:normal; font-weight:800; font-size:clamp(11px,1.1vw,15px); color:var(--ink); }
.v1  { --body:#EFEDE7; --spot:#1F3E6B; --face:#FBFAF7; --ink:#16305A; }
.v5  { --body:#9D2925; --spot:#FFFFFF; --face:#9D2925; }
.v25 { --body:#1C3C68; --spot:#FFFFFF; --face:#1C3C68; }
.v100{ --body:#17191C; --spot:#E7DDC4; --face:#17191C; }

/* ================= FEATURE STRIP ================= */
.features{ padding:0 0 clamp(24px,3.5vw,44px); }
.features ul{
  display:grid; grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
}
.features li{
  display:flex; align-items:center; gap:12px;
  padding:16px clamp(10px,2vw,26px);
  border-right:1px solid var(--hair);
}
.features li:nth-child(2n){ border-right:none; }
.features li:nth-child(-n+2){ border-bottom:1px solid var(--hair); }
.features svg{ width:30px; height:30px; color:var(--navy); flex:none; }
.features b{
  display:block;
  font-family:var(--display); font-weight:600;
  font-size:clamp(12.5px,1.15vw,15px);
  letter-spacing:.03em; text-transform:uppercase;
  color:var(--navy); line-height:1.22;
}
.features .accent{ color:var(--crimson); }

/* ================= PLAY (embedded table) ================= */
.play{ padding:0 0 clamp(26px,4vw,48px); }
.play-frame{
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:10px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.play-embed{
  width:100%;
  height:600px;
  border:0; display:block;
  background:var(--paper-2);
}
.play-note{
  padding:0 16px 14px;
  font-size:12px; color:var(--navy-soft); text-align:center;
}

/* ================= HOW TO PLAY ================= */
.howto{ padding:clamp(24px,3.5vw,44px) 0; }
.howto ol{ display:grid; grid-template-columns:1fr; gap:0; }
.howto li{ padding:18px clamp(12px,2vw,26px); border-bottom:1px solid var(--hair); }
.howto li:last-child{ border-bottom:none; }
.howto .step-head{ display:flex; align-items:baseline; gap:11px; margin-bottom:6px; }
.howto .num{
  font-family:var(--display); font-weight:700;
  font-size:26px; color:var(--crimson); line-height:1;
}
.howto h3{
  font-family:var(--display); font-weight:600;
  font-size:14px; letter-spacing:.04em; text-transform:uppercase;
  color:var(--navy); line-height:1.25;
}
.howto p{ font-size:13.5px; color:var(--navy-soft); margin-bottom:14px; }
.howto .art{ display:flex; align-items:center; justify-content:flex-start; gap:6px; min-height:88px; }
.howto .art .pc{ width:clamp(44px,5vw,58px); }
.howto .art .pc .pip{ display:none; }
.howto .mini-chip{
  width:76px; aspect-ratio:1/1; border-radius:50%;
  display:grid; place-items:center;
  --body:#EFEDE7; --spot:#1F3E6B; --face:#FBFAF7;
  background:
    radial-gradient(circle closest-side, var(--face) 0 69%, transparent 69.5%),
    repeating-conic-gradient(var(--spot) 0 22.5deg, var(--body) 0 45deg);
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.18), 0 3px 8px rgba(4,12,26,.3);
  font-family:var(--display); font-weight:600; font-size:13px;
  letter-spacing:.06em; text-transform:uppercase; color:var(--navy);
}
.howto .bet-chip{
  width:52px; aspect-ratio:1/1; border-radius:50%;
  display:grid; place-items:center;
  font-family:var(--display); font-weight:600; font-size:14px; color:#F6F1E8;
  background:
    radial-gradient(circle closest-side, #17191C 0 69%, transparent 69.5%),
    repeating-conic-gradient(#E7DDC4 0 22.5deg, #17191C 0 45deg);
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.25), 0 3px 8px rgba(4,12,26,.35);
}

/* ================= RULES + PAYOUTS ================= */
.rules{ background:var(--paper-3); padding:clamp(28px,4vw,54px) 0; }
.rules .grid{ display:grid; grid-template-columns:1fr; gap:22px; }
.rules-copy h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(22px,2.9vw,33px);
  text-transform:uppercase; letter-spacing:.01em;
  color:var(--navy); line-height:1.08; margin-bottom:14px;
}
.rules-copy p{ margin-bottom:12px; color:var(--navy-soft); font-size:14.5px; }
.rules-boat{ width:100%; max-width:280px; color:#9DB8D8; opacity:.5; margin-top:14px; }

.paytable-card{
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:8px;
  padding:16px 18px 18px;
}
.paytable-card h3{
  font-family:var(--display); font-weight:700;
  font-size:clamp(15px,1.5vw,19px);
  letter-spacing:.03em; text-transform:uppercase;
  color:var(--navy); text-align:center;
  padding-bottom:12px; margin-bottom:4px;
  border-bottom:1px solid var(--hair);
}
.paytable-card li{
  display:flex; justify-content:space-between; gap:12px;
  padding:8px 2px;
  border-bottom:1px solid rgba(217,205,180,.55);
  font-size:14px;
}
.paytable-card li:last-child{ border-bottom:none; }
.paytable-card li span{ color:var(--navy-2); }
.paytable-card li b{ color:var(--navy); font-weight:700; white-space:nowrap; }
.paytable-card li.top b{ color:var(--crimson); }

/* ================= GOLDEN RULE ================= */
.golden{ background:var(--crimson); color:#F7EFE2; padding:clamp(28px,4vw,52px) 0; }
.golden .grid{ display:grid; grid-template-columns:1fr; gap:26px; align-items:center; }
.golden .kicker{
  font-family:var(--display); font-weight:600;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(247,239,226,.72); display:block; margin-bottom:10px;
}
.golden blockquote{
  font-family:var(--display); font-weight:500;
  font-size:clamp(24px,3.4vw,38px);
  line-height:1.18; margin-bottom:20px;
}
.golden-cols{ display:grid; grid-template-columns:repeat(auto-fit,minmax(168px,1fr)); gap:12px; }
.golden-card{
  background:var(--paper-2);
  border-radius:8px;
  padding:14px 12px 16px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.golden-card h3{
  font-family:var(--display); font-weight:700;
  font-size:15px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--crimson); margin-bottom:3px;
}
.golden-card p{ font-size:12px; color:var(--navy-soft); margin-bottom:12px; line-height:1.4; }
.golden-hand{ display:flex; justify-content:center; gap:4px; }
.golden-hand .pc{ width:clamp(30px,3.4vw,40px); box-shadow:0 3px 8px rgba(0,0,0,.22); }
.golden-hand .pc .idx b{ font-size:clamp(12px,1.4vw,16px); }
.golden-hand .pc .idx svg{ width:8px; height:8px; }
.golden-hand .pc .pip{ display:none; }

/* ================= NUMBERS ================= */
.numbers{ padding:clamp(28px,4vw,52px) 0; }
.numbers .grid{ display:grid; grid-template-columns:1fr; gap:16px; }
.stat-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:12px; }
.stat-card{
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:8px;
  padding:16px 14px;
  text-align:center;
}
.stat-card > svg{ width:30px; height:30px; color:var(--navy); margin-bottom:8px; }
.stat-card b{
  display:block;
  font-family:var(--display); font-weight:700;
  font-size:clamp(20px,2.4vw,28px);
  color:var(--crimson); line-height:1.12;
}
.stat-card em{
  display:block; font-style:normal;
  font-family:var(--display); font-weight:500;
  font-size:11px; letter-spacing:.11em; text-transform:uppercase;
  color:var(--navy); margin:5px 0 6px;
}
.stat-card p{ font-size:12px; color:var(--navy-soft); line-height:1.4; }

.calc{
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:8px;
  padding:18px;
}
.calc h3{
  font-family:var(--display); font-weight:700;
  font-size:clamp(15px,1.5vw,19px);
  letter-spacing:.03em; text-transform:uppercase;
  color:var(--navy); text-align:center; margin-bottom:4px;
}
.calc .hint{ font-size:12.5px; color:var(--navy-soft); text-align:center; margin-bottom:14px; }
.calc-row{ display:flex; gap:10px; justify-content:center; margin-bottom:14px; flex-wrap:wrap; }
.calc-field{ display:flex; gap:6px; }
.calc select{
  font-family:var(--sans); font-size:15px; font-weight:600;
  color:var(--navy); background:#fff;
  border:1px solid var(--hair); border-radius:6px;
  padding:10px; min-height:44px; min-width:66px;
}
.calc select:focus{ border-color:var(--gold); }
.calc .btn{ width:100%; }
.calc .foot{ font-size:12px; color:var(--navy-soft); text-align:center; margin-top:10px; }
.calc-out{ margin-top:16px; }
.calc-out.empty{ display:none; }
.calc-verdict{
  text-align:center;
  font-family:var(--display); font-weight:700;
  font-size:18px; color:var(--navy);
}
.calc-verdict small{
  display:block;
  font-family:var(--display); font-weight:600;
  font-size:13px; letter-spacing:.06em; text-transform:uppercase;
  margin-top:3px;
}
.calc-verdict small.r3{ color:var(--green); }
.calc-verdict small.r1{ color:#8A6A2E; }
.calc-verdict small.fold{ color:var(--crimson); }
.calc-note{ font-size:12px; color:var(--navy-soft); text-align:center; margin:6px 0 12px; }
.calc-list li{
  display:grid; grid-template-columns:1fr 56px 62px;
  gap:8px; align-items:center; font-size:12.5px; padding:3px 0;
}
.calc-list .bar{ height:7px; background:#E4DCC9; border-radius:4px; overflow:hidden; }
.calc-list .bar i{ display:block; height:100%; background:linear-gradient(90deg,var(--gold),#A8894F); }
.calc-list .pct{ text-align:right; font-variant-numeric:tabular-nums; color:var(--navy); font-weight:600; }

/* ================= GUIDES ================= */
.guides{ background:var(--paper-3); padding:clamp(28px,4vw,52px) 0; }
.guides .grid{ display:grid; grid-template-columns:1fr; gap:14px; }
.guide{
  background:var(--paper-2);
  border:1px solid var(--hair);
  border-radius:8px;
  overflow:hidden;
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}
.guide:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.guide-img{
  position:relative; aspect-ratio:16/10;
  display:grid; place-items:center;
  background:linear-gradient(150deg,var(--felt-top),var(--felt-low));
  overflow:hidden;
}
.guide-img svg{ width:60%; height:60%; color:#9FBBDD; fill:currentColor; opacity:.4; }
.guide-tag{
  position:absolute; left:9px; top:9px;
  background:var(--crimson); color:#FBF6EC;
  font-family:var(--display); font-weight:600;
  font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  padding:4px 9px; border-radius:3px;
}
.guide-body{ padding:12px 14px 16px; display:flex; flex-direction:column; flex:1; }
.guide-meta{
  display:flex; align-items:center; gap:6px;
  font-size:11px; color:var(--navy-soft); margin-bottom:6px;
}
.guide-meta svg{ width:13px; height:13px; }
.guide h3{
  font-family:var(--display); font-weight:600;
  font-size:17px; letter-spacing:.01em;
  color:var(--navy); line-height:1.24; margin-bottom:6px;
}
.guide p{ font-size:13px; color:var(--navy-soft); margin-bottom:12px; }
.guide .more{
  margin-top:auto;
  font-family:var(--display); font-weight:600;
  font-size:12px; letter-spacing:.09em; text-transform:uppercase;
  color:var(--crimson);
  display:inline-flex; align-items:center; gap:6px;
}
.guide .more svg{ width:14px; height:14px; }

/* ================= FAQ ================= */
.faq{ padding:clamp(28px,4vw,52px) 0 clamp(32px,5vw,58px); }
.faq-list{ border-top:1px solid var(--hair); }
.faq details{ border-bottom:1px solid var(--hair); }
.faq summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:15px 14px; min-height:54px;
  font-size:15px; font-weight:500; color:var(--navy);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:hover{ background:var(--paper-3); }
.faq summary .plus{ position:relative; width:14px; height:14px; flex:none; }
.faq summary .plus::before,.faq summary .plus::after{
  content:""; position:absolute; background:var(--navy-soft); transition:transform .2s var(--ease);
}
.faq summary .plus::before{ left:0; top:6px; width:14px; height:2px; }
.faq summary .plus::after { top:0; left:6px; height:14px; width:2px; }
.faq details[open] summary .plus::after{ transform:scaleY(0); }
.faq .answer{ padding:0 14px 16px; font-size:14.5px; color:var(--navy-soft); }
.faq .answer p{ margin-bottom:9px; }
.faq .answer p:last-child{ margin-bottom:0; }

/* ================= FOOTER ================= */
.site-footer{ background:var(--felt-mid); color:#C3D2E6; }
.foot-main{
  display:grid; grid-template-columns:1fr; gap:26px;
  padding:clamp(26px,3.5vw,44px) 0 clamp(20px,2.5vw,30px);
}
.foot-news h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(17px,1.9vw,22px);
  letter-spacing:.02em; text-transform:uppercase;
  color:#F3EEE2; line-height:1.15; margin-bottom:6px;
}
.foot-news p{ font-size:13.5px; color:#A0B4CE; margin-bottom:14px; max-width:34ch; }
.foot-news form{ display:flex; flex-wrap:wrap; max-width:420px; }
.foot-news input{
  flex:1 1 180px; min-height:46px; padding:11px 13px;
  font:inherit; font-size:15px;
  border:1px solid rgba(255,255,255,.2); border-right:none;
  border-radius:5px 0 0 5px;
  background:#fff; color:var(--navy);
}
.foot-news input::placeholder{ color:#8592A8; }
.foot-news button{
  min-height:46px; padding:11px 20px;
  border:none; border-radius:0 5px 5px 0;
  background:var(--crimson); color:#FBF6EC;
  font-family:var(--display); font-weight:600;
  font-size:13px; letter-spacing:.07em; text-transform:uppercase;
}
.foot-news button:hover{ background:var(--crimson-2); }
.foot-news .form-note{ flex:1 0 100%; font-size:12.5px; margin-top:9px; color:#F0C9A0; }

.foot-links{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.foot-links h3{
  font-family:var(--display); font-weight:600;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:#F3EEE2; margin-bottom:10px;
}
.foot-links li{ margin-bottom:7px; }
.foot-links a{ color:#A0B4CE; text-decoration:none; font-size:13.5px; }
.foot-links a:hover{ color:#F3EEE2; }

.foot-brand{ text-align:left; }
.foot-brand .mark{ display:flex; align-items:center; gap:8px; color:#F3EEE2; margin-bottom:8px; }
.foot-brand .mark .swoosh{ width:30px; height:20px; color:#C4485A; }
.foot-brand .mark .spade{ width:15px; height:17px; fill:#F3EEE2; }
.foot-brand .mark span{
  font-family:var(--display); font-weight:700;
  font-size:17px; letter-spacing:.02em; text-transform:uppercase;
}
.foot-brand .boat{ width:170px; color:#7FA0C8; opacity:.5; }

.foot-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:13px 0 20px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:10px;
  font-size:12px; color:#8398B5;
}
.socials{ display:flex; gap:8px; }
.socials a{
  width:30px; height:30px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.1); color:#C3D2E6;
}
.socials svg{ width:14px; height:14px; }
.socials a:hover{ background:var(--crimson); color:#fff; }

/* ================= RESPONSIVE ================= */
@media (min-width:700px){
  .features ul{ grid-template-columns:repeat(4,1fr); }
  .features li:nth-child(2n){ border-right:1px solid var(--hair); }
  .features li:last-child{ border-right:none; }
  .features li:nth-child(-n+2){ border-bottom:none; }
  .hero .wrap{ grid-template-columns:1.05fr 1fr; }
  .rules .grid{ grid-template-columns:1fr 1.05fr; align-items:start; }
  .numbers .grid{ grid-template-columns:1.15fr 1fr; align-items:start; }
  .golden .grid{ grid-template-columns:.8fr 1.2fr; }
  .howto ol{ grid-template-columns:repeat(2,1fr); }
  .howto li{ border-bottom:none; border-right:1px solid var(--hair); }
  .howto li:nth-child(2n){ border-right:none; }
  .howto li:nth-child(-n+2){ border-bottom:1px solid var(--hair); }
  .guides .grid{ grid-template-columns:repeat(2,1fr); }
  .foot-main{ grid-template-columns:1.15fr 1.6fr .9fr; }
}
@media (min-width:1000px){
  .site-nav{ display:flex; }
  .login-link{ display:inline; }
  .hamburger{ display:none; }
  .howto ol{ grid-template-columns:repeat(4,1fr); }
  .howto li{ border-right:1px solid var(--hair); border-bottom:none; }
  .howto li:last-child{ border-right:none; }
  .howto li:nth-child(-n+2){ border-bottom:none; }
  /* one feature guide, three supporting */
  .guides .grid{ grid-template-columns:repeat(3,1fr); }
  .guide.feature{ grid-column:span 1; grid-row:span 2; }
  .guides .grid{ grid-template-columns:1.25fr 1fr 1fr; grid-auto-rows:min-content; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
