/* ============================================================
   Rare Candy Collectibles — "The Little Blue Sweet"
   Concept: the site IS the Rare Candy item — glossy periwinkle
   drench, twist-wrapper crimp seams, level-up spine.
   No framework. No build step.
   ============================================================ */

:root{
  /* the candy — one OKLCH hue world (≈284, periwinkle blue) */
  --frost:        oklch(0.972 0.012 284);  /* sugar-frost page base   */
  --frost-deep:   oklch(0.936 0.028 284);  /* tinted panels           */
  --candy-200:    oklch(0.84  0.075 284);  /* pale candy              */
  --candy-300:    oklch(0.745 0.125 284);  /* candy body (art)        */
  --candy-500:    oklch(0.565 0.185 283);  /* primary candy           */
  --candy-600:    oklch(0.485 0.192 283);  /* drench / buttons        */
  --candy-700:    oklch(0.415 0.170 284);  /* wrapper twist           */
  --ink:          oklch(0.278 0.082 284);  /* blueberry ink           */
  --ink-soft:     oklch(0.415 0.055 284);  /* secondary text          */
  --night:        oklch(0.232 0.062 284);  /* footer / trade band     */
  --spark:        oklch(0.855 0.128 92);   /* EXP-star gold (sparing) */
  --white:        #fff;
  --line:         oklch(0.278 0.082 284 / 0.14);

  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body:    "Be Vietnam Pro", system-ui, sans-serif;
  --font-mono:    "Fragment Mono", ui-monospace, monospace;

  --r-lg: 26px;
  --r-md: 18px;
  --r-pill: 999px;

  --shadow-soft: 0 2px 6px oklch(0.278 0.082 284 / 0.06), 0 18px 44px -18px oklch(0.278 0.082 284 / 0.22);
  --shadow-lift: 0 4px 10px oklch(0.278 0.082 284 / 0.08), 0 26px 60px -20px oklch(0.278 0.082 284 / 0.30);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* z scale */
  --z-sticky: 40; --z-drawer: 60; --z-callbar: 50;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:96px; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--frost);
  line-height:1.6;
  font-size:16.5px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; }
::selection{ background:var(--candy-500); color:#fff; }

.wrap{ width:min(1180px, 100% - 48px); margin-inline:auto; }
@media (max-width:600px){ .wrap{ width:calc(100% - 40px); } }

h1,h2,h3{ font-family:var(--font-display); font-weight:700; line-height:1.08; letter-spacing:-0.01em; text-wrap:balance; }
p{ text-wrap:pretty; max-width:68ch; }

/* ---------- buttons: glossy candy pills ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display); font-weight:600; font-size:16px;
  padding:15px 30px; border-radius:var(--r-pill); border:0; cursor:pointer;
  text-decoration:none; white-space:nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .25s var(--ease-out);
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-candy{
  background:var(--candy-600); color:#fff;
  box-shadow: inset 0 1.5px 0 oklch(1 0 0 / 0.35), 0 10px 26px -10px oklch(0.485 0.192 283 / 0.65);
}
.btn-candy:hover{ background:var(--candy-500); transform:translateY(-2px); }
.btn-ink{
  background:transparent; color:var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ink:hover{ transform:translateY(-2px); }
.btn-frost{
  background:#fff; color:var(--candy-700);
  box-shadow: inset 0 1.5px 0 #fff, 0 10px 26px -12px oklch(0.2 0.06 284 / 0.7);
}
.btn-frost:hover{ transform:translateY(-2px); }
.btn-ghost-light{
  background:transparent; color:#fff;
  box-shadow: inset 0 0 0 2px oklch(1 0 0 / 0.55);
}
.btn-ghost-light:hover{ box-shadow: inset 0 0 0 2px #fff; transform:translateY(-2px); }
.btn-lg{ padding:18px 36px; font-size:17px; }
.btn-block{ width:100%; }

/* ---------- crimp seam (the wrapper's pinched pleats) ---------- */
.crimp{
  height:22px;
  background:repeating-linear-gradient(-58deg,
    var(--candy-600) 0 9px,
    var(--candy-700) 9px 18px);
}
.crimp.crimp-night{
  background:repeating-linear-gradient(-58deg,
    var(--night) 0 9px,
    oklch(0.29 0.075 284) 9px 18px);
}

/* ---------- topbar ---------- */
.topbar{ background:var(--night); color:oklch(0.9 0.03 284); font-size:13.5px; }
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding:9px 0; }
.topbar span{ display:inline-flex; align-items:center; gap:7px; }
.topbar svg{ width:14px; height:14px; opacity:.75; }
.topbar b{ color:#fff; font-weight:600; }
.topbar a{ color:#fff; text-decoration:none; font-weight:600; }
.topbar a:hover{ text-decoration:underline; }
.tb-l{ display:flex; gap:22px; }
@media (max-width:760px){ .hide-s{ display:none; } }

/* ---------- header ---------- */
.head{
  position:sticky; top:0; z-index:var(--z-sticky);
  background:oklch(0.972 0.012 284 / 0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.head .wrap{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand .mark{ width:44px; height:34px; flex:none; }
.brand .bn{
  font-family:var(--font-display); font-weight:600; font-size:19px; line-height:1.1;
  display:flex; flex-direction:column;
}
.brand .bn small{
  font-family:var(--font-body); font-weight:500; font-size:11.5px;
  color:var(--ink-soft); letter-spacing:.02em;
}
.nav{ display:flex; gap:30px; }
.nav a{
  text-decoration:none; font-weight:600; font-size:15px; color:var(--ink);
  position:relative; padding:4px 0;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:3px; width:0;
  border-radius:3px; background:var(--candy-500);
  transition:width .3s var(--ease-out);
}
.nav a:hover::after{ width:100%; }
.head-cta{ display:flex; align-items:center; gap:14px; }
.head-phone{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px; text-decoration:none;
}
.head-phone svg{ width:16px; height:16px; color:var(--candy-600); }
.head .btn{ padding:12px 24px; font-size:15px; }
@media (max-width:980px){ .nav, .head-phone{ display:none; } }
.burger{
  width:44px; height:44px; border:0; border-radius:12px; cursor:pointer;
  background:var(--frost-deep);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.burger span{ width:20px; height:2.5px; background:var(--ink); border-radius:2px; }
@media (min-width:981px){ .burger{ display:none; } }
@media (max-width:480px){
  .tb-l{ display:none; }
  .topbar .wrap{ justify-content:center; }
  .head .btn{ display:none; } /* hero CTAs + sticky call bar cover it */
}

/* ---------- drawer ---------- */
.drawer{
  position:fixed; inset:0; z-index:var(--z-drawer);
  background:oklch(0.232 0.062 284 / 0.5); backdrop-filter:blur(4px);
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease-out);
}
.drawer.open{ opacity:1; pointer-events:auto; }
.drawer-panel{
  position:absolute; top:0; right:0; height:100%; width:min(340px, 88%);
  background:var(--frost); padding:76px 30px 30px;
  display:flex; flex-direction:column; gap:6px;
  transform:translateX(100%); transition:transform .35s var(--ease-out);
}
.drawer.open .drawer-panel{ transform:none; }
.drawer-panel > a:not(.btn){
  text-decoration:none; font-family:var(--font-display); font-weight:600;
  font-size:21px; padding:12px 4px; border-bottom:1px solid var(--line);
}
.drawer-panel .btn{ margin-top:14px; }
.drawer .x{
  position:absolute; top:18px; right:22px; width:42px; height:42px;
  border:0; border-radius:50%; background:var(--frost-deep);
  font-size:24px; color:var(--ink); cursor:pointer;
}

/* ---------- hero: the wrapper, drenched ---------- */
.hero{
  position:relative; background:var(--candy-600); color:#fff; overflow:hidden;
}
.hero::before{ /* soft glow behind the sweet */
  content:""; position:absolute; right:-8%; top:6%;
  width:min(760px, 72vw); aspect-ratio:1;
  background:radial-gradient(circle at 50% 45%, oklch(0.72 0.14 284 / 0.55), transparent 62%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5.5fr);
  gap:clamp(28px, 5vw, 72px); align-items:center;
  padding:clamp(64px, 9vh, 110px) 0 clamp(56px, 8vh, 96px);
}
.hero .pre{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-bottom:22px;
}
.rating-chip{
  display:inline-flex; align-items:center; gap:9px;
  background:oklch(1 0 0 / 0.14);
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.28);
  border-radius:var(--r-pill); padding:8px 16px;
  font-weight:600; font-size:14px;
}
.rating-chip .stars{ color:var(--spark); letter-spacing:1.5px; font-size:13px; }
.hero h1{
  font-size:clamp(2.5rem, 5.4vw, 4.35rem);
  font-weight:600; letter-spacing:-0.015em; color:#fff;
  max-width:13ch;
}
.hero h1 em{ font-style:normal; color:oklch(0.87 0.075 284); }
.hero .sub{
  margin-top:22px; font-size:clamp(1.02rem, 1.4vw, 1.14rem);
  color:oklch(1 0 0 / 0.9); max-width:52ch; line-height:1.7;
}
.hero .sub b{ color:#fff; }
.cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero .assure{
  display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:34px;
  font-size:14.5px; color:oklch(1 0 0 / 0.85);
}
.hero .assure span{ display:inline-flex; align-items:center; gap:8px; }
.hero .assure svg{ width:15px; height:15px; color:oklch(0.87 0.075 284); }

/* the sweet itself */
.sweet-stage{ position:relative; min-height:300px; }
.sweet{ width:100%; height:auto; filter:drop-shadow(0 30px 34px oklch(0.16 0.05 284 / 0.45)); }
@media (prefers-reduced-motion: no-preference){
  html.js .sweet-float{ animation:sweetFloat 7s ease-in-out infinite; transform-origin:50% 50%; }
  html.js .twinkle{ animation:twinkle 3.4s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
  html.js .twinkle.t2{ animation-delay:1.1s; }
  html.js .twinkle.t3{ animation-delay:2.2s; }
  html.js .twinkle.t4{ animation-delay:0.6s; }
}
@keyframes sweetFloat{
  0%,100%{ transform:translateY(0) rotate(0.0001deg); }
  50%{ transform:translateY(-14px) rotate(-1.2deg); }
}
@keyframes twinkle{
  0%,100%{ opacity:.25; transform:scale(.72); }
  50%{ opacity:1; transform:scale(1); }
}
@media (max-width:880px){
  .hero-grid{ grid-template-columns:1fr; }
  .sweet-stage{ order:-1; max-width:420px; margin-inline:auto; min-height:0; }
  .hero h1{ max-width:none; }
}

/* ---------- ribbon marquee ---------- */
.ribbon{ background:var(--night); color:oklch(0.9 0.03 284); overflow:hidden; }
.ribbon .track{
  display:flex; width:max-content; gap:0;
  padding:13px 0;
}
@media (prefers-reduced-motion: no-preference){
  html.js .ribbon .track{ animation:marquee 34s linear infinite; }
}
@keyframes marquee{ to{ transform:translateX(-50%); } }
.ribbon span{
  font-family:var(--font-mono); font-size:13px; letter-spacing:.04em;
  display:inline-flex; align-items:center; white-space:nowrap; padding-right:18px;
}
.ribbon span::after{
  content:""; width:7px; height:7px; border-radius:50%;
  background:var(--candy-300); margin-left:18px; flex:none;
}

/* ---------- sections shared ---------- */
.section{ padding:clamp(72px, 10vh, 116px) 0; }
.shead{
  display:grid; grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap:18px 60px; align-items:end; margin-bottom:clamp(36px, 5vh, 54px);
}
.shead h2{ font-size:clamp(1.85rem, 3.4vw, 2.75rem); letter-spacing:-0.012em; }
.shead .aside{ color:var(--ink-soft); font-size:16px; padding-bottom:6px; }
@media (max-width:820px){ .shead{ grid-template-columns:1fr; align-items:start; } }

/* ---------- the counter: wrapped picks ---------- */
.counter{ background:var(--frost); }
.shelf{
  display:grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  grid-template-areas:
    "feat sealed singles"
    "feat graded supplies";
  gap:18px;
}
.pick{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:30px 28px 28px; position:relative;
  box-shadow:var(--shadow-soft);
  transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
html.js .pick:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lift); }
.pick .slot{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.05em;
  color:var(--ink-soft); display:block; margin-bottom:16px;
}
.pick .ic{
  width:46px; height:46px; border-radius:14px;
  background:var(--frost-deep); color:var(--candy-600);
  display:grid; place-items:center; margin-bottom:16px;
}
.pick .ic svg{ width:23px; height:23px; }
.pick h3{ font-size:19.5px; margin-bottom:8px; }
.pick p{ font-size:14.8px; color:var(--ink-soft); line-height:1.62; }
.pick-feat{
  grid-area:feat;
  background:var(--candy-600); border:0; color:#fff;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:34px 32px; overflow:hidden;
}
.pick-feat .slot{ color:oklch(1 0 0 / 0.7); }
.pick-feat .ic{ background:oklch(1 0 0 / 0.14); color:#fff; }
.pick-feat h3{ font-size:clamp(1.5rem, 2.2vw, 1.85rem); max-width:14ch; }
.pick-feat p{ color:oklch(1 0 0 / 0.88); font-size:15.5px; max-width:44ch; }
.pick-feat .btn{ margin-top:22px; align-self:flex-start; }
.pick-feat::after{ /* faint oversized sweet silhouette */
  content:""; position:absolute; right:-70px; top:-70px; width:230px; height:230px;
  border-radius:50%;
  background:radial-gradient(circle at 32% 30%, oklch(1 0 0 / 0.2), oklch(1 0 0 / 0.03) 65%);
  pointer-events:none;
}
.pick[data-area="sealed"]{ grid-area:sealed; }
.pick[data-area="singles"]{ grid-area:singles; }
.pick[data-area="graded"]{ grid-area:graded; }
.pick[data-area="supplies"]{ grid-area:supplies; }
@media (max-width:940px){
  .shelf{
    grid-template-columns:1fr 1fr;
    grid-template-areas: "feat feat" "sealed singles" "graded supplies";
  }
}
@media (max-width:560px){
  .shelf{ grid-template-columns:1fr; grid-template-areas:"feat" "sealed" "singles" "graded" "supplies"; }
}
.counter .caveat{ margin-top:24px; font-size:13.5px; color:var(--ink-soft); }

/* ---------- level up (signature) ---------- */
.levelup{ background:var(--frost-deep); position:relative; }
.lv-rail{ position:relative; margin:10px 0 8px; }
.lv-stops{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;
  position:relative; z-index:1;
}
.lv-stop{
  border:0; cursor:pointer; background:transparent; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  padding:8px 4px 14px; border-radius:var(--r-md);
  font-family:var(--font-body);
  transition:background-color .25s var(--ease-out);
}
.lv-stop .disc{
  width:64px; height:64px; border-radius:50%;
  background:#fff; border:2.5px solid var(--candy-200);
  display:grid; place-items:center;
  font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--ink);
  transition:all .3s var(--ease-out);
  box-shadow:0 6px 16px -8px oklch(0.278 0.082 284 / 0.35);
}
.lv-stop .disc small{ display:block; font-size:9.5px; font-weight:600; color:var(--ink-soft); letter-spacing:.06em; margin-bottom:-3px; }
.lv-stop .lbl{ font-weight:700; font-size:14.5px; color:var(--ink); }
.lv-stop .sub{ font-size:12px; color:var(--ink-soft); }
html.js .lv-stop:hover .disc{ transform:translateY(-3px); border-color:var(--candy-500); }
.lv-stop[aria-selected="true"] .disc{
  background:var(--candy-600); border-color:var(--candy-600); color:#fff;
  box-shadow: inset 0 1.5px 0 oklch(1 0 0 / 0.35), 0 12px 26px -10px oklch(0.485 0.192 283 / 0.6);
}
.lv-stop[aria-selected="true"] .disc small{ color:oklch(1 0 0 / 0.75); }
.exp{
  height:12px; border-radius:var(--r-pill);
  background:#fff; border:1px solid var(--line);
  overflow:hidden; margin:6px 6px 40px;
}
.exp-fill{
  height:100%; width:var(--exp, 12%);
  border-radius:var(--r-pill);
  background:linear-gradient(90deg, var(--candy-300), var(--candy-600));
  transition:width .8s var(--ease-out);
}
.lv-panel{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-soft);
  display:grid; grid-template-columns: 210px 1fr; overflow:hidden;
}
html.js .lv-panel[hidden]{ display:none; }
html:not(.js) .lv-panel{ margin-bottom:18px; }
.lv-badge{
  background:var(--candy-600); color:#fff; padding:30px 26px;
  display:flex; flex-direction:column; justify-content:center; gap:4px;
}
.lv-badge .big{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(2.6rem, 4vw, 3.6rem); line-height:1;
}
.lv-badge .big small{ display:block; font-size:13px; font-weight:600; letter-spacing:.08em; opacity:.8; margin-bottom:4px; }
.lv-badge .stage{ font-weight:700; font-size:16px; margin-top:6px; }
.lv-body{ padding:30px 34px; display:grid; gap:20px; }
.lv-cols{ display:grid; grid-template-columns:1fr 1fr; gap:22px 34px; }
.lv-col h4{
  font-family:var(--font-display); font-weight:600; font-size:15.5px;
  display:flex; align-items:center; gap:8px; margin-bottom:7px;
}
.lv-col h4 svg{ width:16px; height:16px; color:var(--candy-600); flex:none; }
.lv-col p{ font-size:14.8px; color:var(--ink-soft); line-height:1.62; }
.lv-tip{
  background:var(--frost); border-radius:var(--r-md);
  padding:16px 20px; font-size:14.8px;
  display:flex; gap:12px; align-items:flex-start;
}
.lv-tip svg{ width:18px; height:18px; color:var(--spark); flex:none; margin-top:2px; }
.lv-tip b{ font-weight:700; }
@media (max-width:760px){
  .lv-panel{ grid-template-columns:1fr; }
  .lv-badge{ flex-direction:row; align-items:center; gap:16px; padding:20px 24px; }
  .lv-badge .stage{ margin:0; }
  .lv-cols{ grid-template-columns:1fr; }
  .lv-stop .sub{ display:none; }
  .lv-stop .lbl{ font-size:12.5px; }
  .lv-stop .disc{ width:52px; height:52px; font-size:13px; }
}
.levelup .honest{ margin-top:26px; font-size:14px; color:var(--ink-soft); }
.levelup .honest b{ color:var(--ink); }

/* ---------- trade band ---------- */
.trade{ background:var(--night); color:#fff; }
.trade .shead .aside{ color:oklch(0.82 0.04 284); }
.trade h2{ color:#fff; }
.trade-rows{ border-top:1px solid oklch(1 0 0 / 0.14); }
.trade-row{
  display:grid; grid-template-columns: 170px 1fr auto; gap:16px 36px;
  align-items:center; padding:26px 4px;
  border-bottom:1px solid oklch(1 0 0 / 0.14);
}
.trade-row .tag{
  font-family:var(--font-display); font-weight:600; font-size:22px; color:#fff;
}
.trade-row p{ color:oklch(0.87 0.035 284); font-size:15.5px; max-width:62ch; }
.trade-row p b{ color:#fff; }
.trade-row .go{
  font-weight:700; font-size:14.5px; color:oklch(0.87 0.075 284);
  text-decoration:none; white-space:nowrap;
  display:inline-flex; align-items:center; gap:7px;
}
.trade-row .go svg{ width:15px; height:15px; transition:transform .25s var(--ease-out); }
.trade-row .go:hover svg{ transform:translateX(4px); }
@media (max-width:720px){
  .trade-row{ grid-template-columns:1fr; gap:8px; }
}
.trade .fair{
  margin-top:30px; display:flex; gap:12px; align-items:flex-start;
  font-size:14.5px; color:oklch(0.87 0.035 284); max-width:72ch;
}
.trade .fair svg{ width:18px; height:18px; color:oklch(0.87 0.075 284); flex:none; margin-top:3px; }

/* ---------- reviews ---------- */
.reviews{ background:var(--frost); }
.rev-grid{
  display:grid; grid-template-columns: 340px 1fr; gap:20px; align-items:stretch;
}
.rev-score{
  background:var(--candy-600); color:#fff; border-radius:var(--r-lg);
  padding:38px 34px; display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.rev-score::after{
  content:""; position:absolute; right:-60px; bottom:-60px; width:200px; height:200px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, oklch(1 0 0 / 0.18), transparent 65%);
}
.rev-score .num{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(4rem, 6vw, 5.4rem); line-height:1;
}
.rev-score .stars{ color:var(--spark); font-size:19px; letter-spacing:3px; margin:10px 0 6px; }
.rev-score .from{ font-size:15px; color:oklch(1 0 0 / 0.88); }
.rev-score .real{
  margin-top:18px; font-size:12.5px; font-weight:600;
  display:inline-flex; align-items:center; gap:7px;
  color:oklch(1 0 0 / 0.85);
}
.rev-score .real svg{ width:14px; height:14px; }
.rev-quotes{ display:grid; gap:18px; }
.rev-lead{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:32px 36px; box-shadow:var(--shadow-soft);
}
.rev-lead p{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(1.15rem, 1.8vw, 1.4rem); line-height:1.42; max-width:none;
}
.rev-lead .who, .rev-mini .who{
  margin-top:14px; font-size:13px; color:var(--ink-soft); font-style:normal;
}
.rev-lead .who b, .rev-mini .who b{ color:var(--ink); font-weight:700; }
.rev-minis{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.rev-mini{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:24px 26px;
}
.rev-mini .s{ color:var(--spark); letter-spacing:2px; font-size:13px; margin-bottom:10px; }
.rev-mini p{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; }
.rev-note{ margin-top:20px; font-size:13px; color:var(--ink-soft); }
@media (max-width:880px){
  .rev-grid{ grid-template-columns:1fr; }
  .rev-minis{ grid-template-columns:1fr; }
}

/* ---------- visit / contact ---------- */
.visit{ background:var(--frost-deep); }
.visit-grid{
  display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap:clamp(28px, 4vw, 60px); align-items:start;
}
.visit h2{ font-size:clamp(1.85rem, 3.2vw, 2.6rem); margin-bottom:14px; }
.visit .lead{ color:var(--ink-soft); margin-bottom:28px; }
.ways{ display:grid; gap:14px; margin-bottom:28px; }
.way{
  display:flex; gap:16px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md);
  padding:16px 20px;
}
.way .wi{
  width:42px; height:42px; flex:none; border-radius:50%;
  background:var(--frost-deep); color:var(--candy-600);
  display:grid; place-items:center;
}
.way .wi svg{ width:19px; height:19px; }
.way small{ display:block; font-size:12px; color:var(--ink-soft); font-weight:600; letter-spacing:.02em; }
.way a, .way b{ font-weight:700; font-size:15.5px; text-decoration:none; color:var(--ink); }
.way a:hover{ color:var(--candy-600); }
.map{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.map iframe{ width:100%; height:250px; border:0; display:block; }

.form-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:36px 36px 32px; box-shadow:var(--shadow-lift); position:relative;
}
.form-card > form h3, .form-ok h3{ font-size:23px; margin-bottom:6px; }
.form-card .fsub{ font-size:14.5px; color:var(--ink-soft); margin-bottom:24px; }
.frow{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .frow{ grid-template-columns:1fr; } .form-card{ padding:28px 24px; } }
.field{ margin-bottom:16px; }
.field label{ display:block; font-weight:700; font-size:13.5px; margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--font-body); font-size:15px; color:var(--ink);
  background:var(--frost); border:1.5px solid var(--line); border-radius:14px;
  padding:13px 16px; outline:none;
  transition:border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field textarea{ min-height:104px; resize:vertical; }
.field input::placeholder, .field textarea::placeholder{ color:var(--ink-soft); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--candy-500);
  box-shadow:0 0 0 4px oklch(0.565 0.185 283 / 0.18);
  background:#fff;
}
.form-note{ margin-top:14px; font-size:13.5px; color:var(--ink-soft); text-align:center; }
.form-ok{ display:none; text-align:center; padding:30px 10px; }
.form-ok .ok{
  width:64px; height:64px; margin:0 auto 18px; border-radius:50%;
  background:var(--candy-600); color:#fff; display:grid; place-items:center;
  box-shadow: inset 0 1.5px 0 oklch(1 0 0 / 0.35);
}
.form-ok .ok svg{ width:28px; height:28px; }
.form-card.sent form{ display:none; }
.form-card.sent .form-ok{ display:block; }
@media (max-width:880px){ .visit-grid{ grid-template-columns:1fr; } }

/* ---------- footer ---------- */
.foot{ background:var(--night); color:oklch(0.85 0.035 284); }
.foot .top{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px;
  padding:60px 0 44px;
}
.foot .brand .bn{ color:#fff; }
.foot .brand .bn small{ color:oklch(0.78 0.04 284); }
.foot p{ font-size:14.5px; margin-top:16px; max-width:40ch; line-height:1.7; }
.foot h4{
  font-family:var(--font-display); font-weight:600; font-size:15px; color:#fff;
  margin-bottom:14px;
}
.foot ul{ list-style:none; display:grid; gap:9px; font-size:14.5px; }
.foot ul a{ text-decoration:none; }
.foot ul a:hover{ color:#fff; text-decoration:underline; }
.foot .bot{
  border-top:1px solid oklch(1 0 0 / 0.12);
  padding:20px 0; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  font-size:13px; color:oklch(0.72 0.04 284);
}
.foot .bot a{ color:oklch(0.87 0.075 284); text-decoration:none; }
.foot .bot a:hover{ text-decoration:underline; }
@media (max-width:760px){ .foot .top{ grid-template-columns:1fr; gap:30px; } }

/* ---------- sticky call bar (mobile) ---------- */
.callbar{
  position:fixed; bottom:0; left:0; right:0; z-index:var(--z-callbar);
  display:none; gap:10px; padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:oklch(0.972 0.012 284 / 0.94); backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
}
.callbar .btn{ flex:1; padding:14px 10px; font-size:15px; }
@media (max-width:760px){
  .callbar{ display:flex; }
  body{ padding-bottom:76px; }
}

/* ---------- reveals: enhance, never gate ---------- */
html.js .reveal{
  opacity:0; transform:translateY(22px);
  transition:opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
html.js .reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  html.js .reveal{ opacity:1; transform:none; transition:none; }
  .btn, .pick, .lv-stop .disc, .trade-row .go svg, .exp-fill{ transition:none !important; }
  html.js .sweet-float, html.js .twinkle, html.js .ribbon .track{ animation:none !important; }
}
