/* Bath Addicts — porcelain, water, fizz. Token plan in build notes. */
:root{
  --ink:#22243A; --ink-soft:#5A5D75;
  --paper:#FBFAF8; --pool:#E4F2F3; --pool-deep:#CBE6E8;
  --fizz:#E8477F; --fizz-deep:#C22A61;
  --zest:#F2A93B; --herb:#2F7E6D;
  --radius:22px;
  --display:'Fraunces',Georgia,serif;
  --body:'Karla',-apple-system,'Segoe UI',sans-serif;
}
*{box-sizing:border-box;margin:0}
html{scroll-behavior:smooth}
body{background:var(--paper);color:var(--ink);font-family:var(--body);font-size:1.06rem;line-height:1.65}
a{color:var(--fizz-deep)}
a:focus-visible,button:focus-visible{outline:3px solid var(--zest);outline-offset:2px;border-radius:4px}
.skip{position:absolute;left:-999px;top:0;background:var(--ink);color:#fff;padding:.6rem 1rem;z-index:99}
.skip:focus{left:0}

/* ---------- header ---------- */
.top{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  padding:1rem clamp(1rem,4vw,3rem);position:sticky;top:0;background:color-mix(in srgb,var(--paper) 88%,transparent);
  backdrop-filter:blur(8px);z-index:10;border-bottom:1px solid var(--pool-deep)}
.brand{font-family:var(--display);font-weight:900;font-size:1.5rem;color:var(--ink);text-decoration:none;display:flex;align-items:center;gap:.5rem}
.brand em{font-style:normal;color:var(--fizz)}
.bubble-mark{width:1.15em;height:1.15em;border-radius:50%;background:radial-gradient(circle at 32% 30%,#fff 0 18%,var(--fizz) 19% 100%);
  box-shadow:0 0 0 3px var(--pool);display:inline-block}
.top nav{display:flex;gap:clamp(.7rem,2vw,1.6rem);flex-wrap:wrap}
.top nav a{color:var(--ink);text-decoration:none;font-weight:700;font-size:.95rem;padding:.35rem 0;border-bottom:3px solid transparent}
.top nav a:hover{border-bottom-color:var(--zest)}
.nav-shop{background:var(--fizz);color:#fff!important;padding:.35rem 1rem!important;border-radius:999px;border-bottom:none!important}
.nav-shop:hover{background:var(--fizz-deep)}

.crumbs{padding:.8rem clamp(1rem,4vw,3rem);font-size:.85rem;color:var(--ink-soft)}
.crumbs a{color:var(--ink-soft)}

/* ---------- fizz signature ---------- */
.fizz{position:absolute;border-radius:50%;background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.9) 0 22%,rgba(255,255,255,.28) 23% 100%);
  animation:rise 7s linear infinite;opacity:0}
@keyframes rise{0%{transform:translateY(0) scale(.6);opacity:0}12%{opacity:.85}88%{opacity:.6}100%{transform:translateY(-130%) scale(1.05);opacity:0}}
@media (prefers-reduced-motion:reduce){.fizz{animation:none;opacity:.45}}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(120% 90% at 85% 10%,var(--pool) 0 45%,transparent 46%),
  linear-gradient(160deg,var(--paper) 55%,var(--pool) 100%)}
.hero-inner{max-width:62rem;margin:0 auto;padding:clamp(3.5rem,9vw,7rem) clamp(1rem,4vw,3rem)}
.kicker{font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-size:.78rem;color:var(--herb)}
.hero h1{font-family:var(--display);font-weight:900;font-size:clamp(2.6rem,7vw,4.6rem);line-height:1.02;margin:.6rem 0 1rem;
  font-variation-settings:'SOFT' 100}
.lede{font-size:1.18rem;max-width:38rem;color:var(--ink-soft)}
.hero-cta{margin-top:1.8rem;display:flex;gap:.8rem;flex-wrap:wrap}
.hero-fizz{position:absolute;inset:0;pointer-events:none}
.hf1{width:26px;height:26px;left:6%;bottom:-30px;animation-delay:0s}
.hf2{width:14px;height:14px;left:12%;bottom:-20px;animation-delay:1.3s}
.hf3{width:38px;height:38px;left:22%;bottom:-40px;animation-delay:2.4s}
.hf4{width:10px;height:10px;left:58%;bottom:-16px;animation-delay:.7s}
.hf5{width:22px;height:22px;left:66%;bottom:-26px;animation-delay:3.1s}
.hf6{width:16px;height:16px;left:74%;bottom:-20px;animation-delay:1.9s}
.hf7{width:44px;height:44px;left:84%;bottom:-48px;animation-delay:.2s}
.hf8{width:12px;height:12px;left:91%;bottom:-16px;animation-delay:2.8s}
.hf9{width:30px;height:30px;left:44%;bottom:-34px;animation-delay:4s}

/* ---------- buttons ---------- */
.btn{display:inline-block;background:var(--fizz);color:#fff;text-decoration:none;font-weight:700;
  padding:.85rem 1.6rem;border-radius:999px;box-shadow:0 4px 0 var(--fizz-deep);transition:transform .12s,box-shadow .12s}
.btn:hover{transform:translateY(2px);box-shadow:0 2px 0 var(--fizz-deep)}
.btn.ghost{background:transparent;color:var(--ink);box-shadow:inset 0 0 0 2.5px var(--ink)}
.btn.ghost:hover{box-shadow:inset 0 0 0 2.5px var(--fizz);color:var(--fizz-deep)}
.btn.small{padding:.6rem 1.15rem;font-size:.92rem}

/* ---------- bands + grid ---------- */
.band{max-width:74rem;margin:0 auto;padding:clamp(2.5rem,6vw,4.5rem) clamp(1rem,4vw,3rem)}
.band-title{font-family:var(--display);font-weight:900;font-size:clamp(1.9rem,4vw,2.8rem);margin-bottom:.5rem}
.band-lede{color:var(--ink-soft);max-width:44rem;margin-bottom:1.5rem}
.band.pool{max-width:none;background:var(--pool)}
.band.pool .two-up{max-width:74rem;margin:0 auto;display:grid;gap:2.5rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.band.pool h2{font-family:var(--display);font-weight:700;font-size:1.6rem;margin-bottom:.6rem}
.band.pool p{margin-bottom:1rem}
.grid{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));margin-top:1.8rem}

/* ---------- cards ---------- */
.card{display:flex;flex-direction:column;text-decoration:none;color:var(--ink);background:#fff;
  border-radius:var(--radius);overflow:hidden;box-shadow:0 1px 3px rgba(34,36,58,.08),0 8px 24px rgba(34,36,58,.06);
  transition:transform .15s,box-shadow .15s}
.card:hover{transform:translateY(-4px);box-shadow:0 2px 6px rgba(34,36,58,.1),0 16px 36px rgba(34,36,58,.12)}
.card-art{position:relative;height:130px;background:linear-gradient(135deg,var(--h1),var(--h2));overflow:hidden}
.card-initial{position:absolute;right:.4rem;bottom:-1.2rem;font-family:var(--display);font-weight:900;
  font-size:6.5rem;color:rgba(255,255,255,.28);line-height:1}
.card .f1{width:18px;height:18px;left:12%;bottom:-20px;animation-duration:5.5s}
.card .f2{width:10px;height:10px;left:32%;bottom:-12px;animation-duration:6.5s;animation-delay:1.2s}
.card .f3{width:26px;height:26px;left:55%;bottom:-28px;animation-duration:7.5s;animation-delay:.5s}
.card:not(:hover) .fizz{animation-play-state:paused}
@media (prefers-reduced-motion:reduce){.card .fizz{animation:none}}
.card-body{padding:1.1rem 1.25rem 1.35rem}
.card-tag{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--herb)}
.card h3{font-family:var(--display);font-weight:700;font-size:1.22rem;line-height:1.25;margin:.35rem 0 .45rem}
.card p{font-size:.92rem;color:var(--ink-soft)}

/* ---------- article ---------- */
.post-hero{position:relative;height:clamp(120px,20vw,190px);background:linear-gradient(135deg,var(--h1,#E8477F),var(--h2,#F2A93B));overflow:hidden}
.post-hero .f1{width:34px;height:34px;left:15%;bottom:-38px}
.post-hero .f2{width:16px;height:16px;left:38%;bottom:-20px;animation-delay:1.6s}
.post-hero .f3{width:48px;height:48px;left:62%;bottom:-52px;animation-delay:.6s}
.post-hero .f4{width:20px;height:20px;left:85%;bottom:-24px;animation-delay:2.5s}
.post-inner{max-width:46rem;margin:0 auto;padding:2.2rem clamp(1rem,4vw,2rem) 3.5rem}
.post h1{font-family:var(--display);font-weight:900;font-size:clamp(1.9rem,4.5vw,3rem);line-height:1.08;margin-bottom:.5rem}
.post-meta{font-size:.85rem;color:var(--ink-soft);margin-bottom:1.8rem;padding-bottom:1.2rem;border-bottom:2px solid var(--pool-deep)}
.post h2{font-family:var(--display);font-weight:700;font-size:1.55rem;margin:2.2rem 0 .8rem;
  padding-left:.75rem;border-left:5px solid var(--h1,var(--fizz));border-radius:2px}
.post p{margin-bottom:1.05rem}
.post ul.ing{list-style:none;padding:1.2rem 1.4rem;background:var(--pool);border-radius:14px;margin-bottom:1.2rem}
.post ul.ing li{padding:.3rem 0 .3rem 1.6rem;position:relative}
.post ul.ing li::before{content:'';position:absolute;left:.2rem;top:.78em;width:.55em;height:.55em;border-radius:50%;
  background:radial-gradient(circle at 35% 30%,#fff 0 25%,var(--h1,var(--fizz)) 26% 100%)}
.post ol.steps{counter-reset:step;list-style:none;padding:0;margin-bottom:1.2rem}
.post ol.steps li{counter-increment:step;position:relative;padding:.55rem 0 .55rem 3rem;min-height:2.4rem}
.post ol.steps li::before{content:counter(step);position:absolute;left:0;top:.45rem;width:2.1rem;height:2.1rem;
  border-radius:50%;background:var(--h1,var(--fizz));color:#fff;font-weight:700;font-family:var(--display);
  display:flex;align-items:center;justify-content:center}
.shop-cta{margin-top:2.8rem;padding:1.5rem 1.7rem;background:var(--pool);border-radius:var(--radius)}
.shop-cta h2{border:none;padding:0;margin:0 0 .4rem;font-size:1.3rem}

.shop-teaser{margin-top:1.5rem;padding:2rem;background:#fff;border-radius:var(--radius);
  box-shadow:0 1px 3px rgba(34,36,58,.08);max-width:44rem}
.shop-teaser p{margin-bottom:1rem}

/* ---------- footer ---------- */
.foot{background:var(--ink);color:#C9CBDD;margin-top:3rem}
.foot-inner{max-width:74rem;margin:0 auto;padding:2.5rem clamp(1rem,4vw,3rem)}
.foot-brand{font-family:var(--display);font-weight:900;font-size:1.3rem;color:#fff}
.foot-brand em{font-style:normal;color:var(--fizz)}
.foot p{margin-bottom:.5rem}
.foot a{color:var(--pool)}
.fine{font-size:.8rem;opacity:.7;margin-top:1rem}

@media (max-width:640px){
  .top{padding:.8rem 1rem}
  .top nav{gap:.9rem;font-size:.9rem}
  .grid{grid-template-columns:1fr 1fr;gap:1rem}
  .card-art{height:100px}
}
@media (max-width:430px){.grid{grid-template-columns:1fr}}
