/* RestWarm — white, big type, no boxes. Space does the separating. */
:root{
  --bg:#FFFFFF;
  --bg2:#FAF7F6;          /* alternating band, barely there */
  --ink:#171113;          /* warm near-black */
  --ink-2:#6B5F63;        /* secondary text */
  --line:#EDE7E5;         /* hairline, used sparingly */
  --jade:#0B6B55;         /* the only green. means: buy */
  --jade-d:#075343;
  --ir:#C0392F;
  --ir-deep:#8E2A2A;
  --display:'Fraunces',Georgia,serif;
  --body:'Inter',system-ui,-apple-system,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}
  *{transition:none!important;animation:none!important}}
body{background:var(--bg);color:var(--ink);font-family:var(--body);
  font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
/* must sit after the svg rule above: an author display:block on svg beats the
   browser's own [hidden] rule, so hidden SVGs would stay on screen. */
[hidden]{display:none!important}
:focus-visible{outline:3px solid var(--ir);outline-offset:3px}
[tabindex="-1"]:focus{outline:none}
.wrap{max-width:1240px;margin:0 auto;padding:0 28px}
@media(max-width:640px){.wrap{padding:0 20px}}

/* ---------- type: big, tight, confident ---------- */
h1,h2,h3{font-family:var(--display);font-weight:700;line-height:.98;
  letter-spacing:-.035em;text-wrap:balance}
/* balance stops a single word dropping to its own line on a headline, which is
   the most common thing that makes a good page look unfinished */
p,.lede,.qhelp{text-wrap:pretty}

::selection{background:var(--ir);color:#fff}
.h-xl{font-size:clamp(46px,8.4vw,92px)}
.h-lg{font-size:clamp(36px,5.6vw,64px)}
.h-md{font-size:clamp(27px,3.4vw,38px);letter-spacing:-.025em;line-height:1.05}
h3{font-size:21px;letter-spacing:-.02em;line-height:1.15}
.lede{font-size:clamp(17px,1.55vw,20px);color:var(--ink-2);line-height:1.55;
  max-width:34em}
.eyebrow{font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  font-weight:600;color:var(--ir)}
.mono{font-variant-numeric:tabular-nums}

/* ---------- chrome ---------- */
.bar{background:var(--ink);color:#fff;font-size:12.5px;text-align:center;
  padding:11px 16px;letter-spacing:.02em}
/* when an ad names a product, the bar carries the match. Same element, no
   floating card, nothing to dismiss, nothing occluded. */
.bar-link{color:inherit;display:inline-block;border-bottom:1px solid rgba(255,255,255,.35);
  padding-bottom:1px;transition:border-color .16s}
.bar-link:hover{border-bottom-color:#fff}
header{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease,box-shadow .2s ease}
/* the rule and the lift belong to the scrolled state, not the resting one */
header.is-stuck{border-bottom-color:var(--line);box-shadow:0 1px 24px rgba(23,17,19,.05)}
.hrow{display:flex;align-items:center;justify-content:space-between;height:74px;gap:24px}
.logo{display:flex;align-items:center;gap:10px}
.logo span{font-family:var(--display);font-weight:700;font-size:22px;letter-spacing:-.03em}
nav{display:flex;gap:32px}
nav a{font-size:15px;color:var(--ink-2);font-weight:450;position:relative;
  transition:color .18s ease}
nav a:hover{color:var(--ink)}
/* a rule that draws itself from the left rather than switching on */
nav a::after{content:'';position:absolute;left:0;right:0;bottom:-5px;height:1.5px;
  background:var(--ink);transform:scaleX(0);transform-origin:left center;
  transition:transform .28s cubic-bezier(.2,.7,.3,1)}
nav a:hover::after{transform:scaleX(1)}
@media(max-width:820px){nav{display:none}}

/* ---------- buttons ---------- */
.btn{display:inline-block;background:var(--jade);color:#fff;font-weight:600;
  font-size:16.5px;padding:19px 38px;border-radius:999px;border:0;cursor:pointer;
  text-align:center;letter-spacing:-.01em;font-family:var(--body);
  transition:background .2s ease,transform .14s cubic-bezier(.2,.7,.3,1),
             box-shadow .2s ease;
  box-shadow:0 1px 2px rgba(23,17,19,.06)}
.btn:hover{background:var(--jade-d);box-shadow:0 4px 16px rgba(11,107,85,.18)}
/* the press has to be felt, not just seen: down fast, back slow */
.btn:active{transform:translateY(1px) scale(.985);box-shadow:0 1px 2px rgba(23,17,19,.08);
  transition-duration:.06s}
.btn.full{display:block;width:100%}
.btn.sm{padding:12px 24px;font-size:15px}
.btn.line{background:transparent;color:var(--ink);border:1.5px solid var(--ink);}
.btn.line:hover{background:var(--ink);color:#fff}
.btn[disabled]{opacity:.55;cursor:default}
.txtlink{font-weight:600;border-bottom:1.5px solid var(--ir);padding-bottom:2px;
  transition:border-color .14s}
.txtlink:hover{border-bottom-color:var(--ink)}

/* ---------- hero ---------- */
.hero{padding:76px 0 92px}
@media(max-width:900px){.hero{padding:44px 0 56px}}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr;gap:40px}}
.hero-grid>*{min-width:0}
.hero h1{margin:20px 0 24px}
.hero .lede{margin-bottom:36px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.hero-meta{margin-top:28px;font-size:14px;color:var(--ink-2);display:flex;
  gap:22px;flex-wrap:wrap}
.hero-meta b{color:var(--ink);font-weight:600}

/* product stage — big soft field, no border. reads as a photo slot. */
.stage{aspect-ratio:1/1;border-radius:28px;display:grid;place-items:center;
  background:radial-gradient(120% 110% at 50% 18%,#FBEDEA 0%,#F6EDEB 42%,#F2EDEC 100%)}
.stage.tall{aspect-ratio:4/5}
.stage.sm{aspect-ratio:1/1;border-radius:20px}
.stage svg{width:min(72%,300px);height:auto}
.stage.tall svg{width:min(78%,340px)}

/* A stage holding a photograph instead of the line art. To swap any product
   over once supplier photography arrives, add `photo` to the stage's class and
   replace the <svg> with <img src="/assets/img/NAME.jpg" alt="...">. */
.stage.photo{padding:0;overflow:hidden}
.stage.photo img{width:100%;height:100%;object-fit:cover;display:block}

/* A bundle is two or three products, so it shows two or three products. Hairline
   gaps in the line tint read as one composed tile rather than a collage,
   because every product shot shares the same off-white ground. */
.stage.bundle{padding:0;overflow:hidden;display:grid;gap:2px;background:var(--line)}
/* contain, not cover: a bundle cell is not square, and cover was slicing the
   edge off the blanket and the boots. #F8F3F2 is the sampled background of the
   product photographs themselves, so the letterboxing is invisible. */
.stage.bundle img{width:100%;height:100%;object-fit:contain;background:#F8F3F2;
  display:block;min-width:0}
.stage.bundle.two{grid-template-columns:1fr 1fr}
.stage.bundle.three{grid-template-columns:1.25fr 1fr;grid-template-rows:1fr 1fr}
.stage.bundle.three img:first-child{grid-row:1 / span 2}

/* ---------- marquee facts ---------- */
.facts{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.facts-grid{display:grid;grid-template-columns:repeat(4,1fr)}
@media(max-width:760px){.facts-grid{grid-template-columns:repeat(2,1fr)}}
.fact{padding:30px 10px;text-align:center}
.fact b{display:block;font-family:var(--display);font-size:26px;letter-spacing:-.03em;
  margin-bottom:3px;font-variant-numeric:tabular-nums}
.fact span{font-size:13px;color:var(--ink-2)}

/* ---------- sections ---------- */
section{padding:104px 0}
@media(max-width:760px){section{padding:64px 0}}
.band{background:var(--bg2)}
.sec-head{margin-bottom:52px;max-width:22em}
.sec-head h2{margin:16px 0 18px}
.sec-wide{max-width:none}

/* ---------- product grid: no borders, image-led ---------- */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:44px 32px}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr);gap:36px 22px}}
@media(max-width:520px){.grid{grid-template-columns:1fr}}
.grid>*{min-width:0}
/* a deep-linked card must not land under the 74px sticky header */
.prod{display:block;scroll-margin-top:104px}
.prod .stage{margin-bottom:20px;transition:transform .35s cubic-bezier(.2,.7,.3,1)}
a.prod:hover .stage{transform:translateY(-6px)}
.prod-top{display:flex;justify-content:space-between;align-items:baseline;gap:14px}
.prod h3{margin-bottom:6px}
.prod p{font-size:15px;color:var(--ink-2);line-height:1.5;margin-bottom:10px}
.pr{font-family:var(--display);font-weight:700;font-size:21px;letter-spacing:-.02em;
  white-space:nowrap}
.pr s{color:var(--ink-2);font-weight:400;font-size:15px;margin-left:8px}
.tagline{font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ir);font-weight:600;margin-bottom:10px;display:block}
/* Every card is now a link, so every card says where it goes. Without this the
   grid was eight identical rectangles, seven of which did nothing on click. */
.prod-cta{display:block;width:fit-content;margin-top:12px;font-size:14px}
/* products without a page yet: same card, no dead link */
.prod.soon .pr{color:var(--ink-2)}

/* ---------- big statement block ---------- */
.statement{background:var(--ink);color:#fff}
.statement .eyebrow{color:#E8827A}
.statement .lede{color:#B9AAAE}
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:56px;margin-top:64px}
@media(max-width:820px){.stat-grid{grid-template-columns:1fr;gap:38px}}
.stat b{display:block;font-family:var(--display);font-size:clamp(38px,4.4vw,54px);
  letter-spacing:-.04em;color:#fff;margin-bottom:12px;line-height:1}
.stat span{font-size:15.5px;color:#B9AAAE;line-height:1.55}

/* ---------- spec: clean rows, no table borders ---------- */
.spec{width:100%;border-collapse:collapse}
.spec tr{border-bottom:1px solid var(--line)}
.spec tr:first-child{border-top:1px solid var(--line)}
.spec td,.spec th{padding:18px 0;font-size:16px;vertical-align:top;text-align:left}
.spec td:first-child,.spec th{color:var(--ink-2);width:46%;font-weight:400}
/* tabular figures so 1500 W, 15.5 kg and 920 x 300 x 66 mm line up down the
   column instead of jittering */
.spec td:last-child{font-weight:600;text-align:right;font-variant-numeric:tabular-nums}
.spec tr{transition:background .14s}
.spec tr:hover{background:var(--bg2)}

/* ---------- FAQ ---------- */
details{border-bottom:1px solid var(--line)}
summary{padding:26px 40px 26px 0;font-weight:600;cursor:pointer;font-size:19px;
  list-style:none;letter-spacing:-.015em;position:relative;
  transition:color .16s ease}
summary:hover{color:var(--ir)}
summary::-webkit-details-marker{display:none}

/* The marker is two drawn bars rather than a "+" that swaps to a "\2212", so the
   plus can rotate into a minus instead of teleporting. This is the whole
   difference between an accordion that feels built and one that feels default. */
summary::before,summary::after{
  content:'';position:absolute;right:4px;top:50%;width:15px;height:2px;
  background:var(--ir);border-radius:1px;
  transition:transform .3s cubic-bezier(.2,.7,.3,1),opacity .3s ease;
}
summary::before{transform:translateY(-50%)}
summary::after{transform:translateY(-50%) rotate(90deg)}
details[open] summary::after{transform:translateY(-50%) rotate(0deg)}
summary:hover::before,summary:hover::after{background:var(--ir)}

/* Answers ease in rather than appearing. Native <details> gives no close
   animation, and forcing one costs more than it returns. */
details[open]>p{animation:faqIn .34s cubic-bezier(.2,.7,.3,1) both}
@keyframes faqIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
details p{padding:0 0 26px;color:var(--ink-2);font-size:16.5px;max-width:44em}

/* ---------- PDP ---------- */
.pdp{display:grid;grid-template-columns:1.08fr .92fr;gap:72px;
  padding:44px 0 96px;align-items:start}
@media(max-width:900px){.pdp{grid-template-columns:1fr;gap:36px;padding:24px 0 60px}}
.pdp>*{min-width:0}
.pdp-media{position:sticky;top:98px}
@media(max-width:900px){.pdp-media{position:static}}
.buy h1{margin:18px 0 20px}
.price-row{display:flex;align-items:baseline;gap:14px;margin:28px 0 6px}
.price-row b{font-family:var(--display);font-size:42px;letter-spacing:-.035em}
.price-row s{color:var(--ink-2);font-size:21px}
.opt{display:block;border:1.5px solid var(--line);border-radius:14px;
  padding:18px 20px;margin-bottom:10px;cursor:pointer;
  transition:border-color .2s ease,background .2s ease,transform .14s cubic-bezier(.2,.7,.3,1)}
.opt:hover{border-color:#D8CFCC;background:var(--bg2)}
.opt:active{transform:scale(.995);transition-duration:.06s}
.opt.on,.opt:has(input:checked){border-color:var(--jade);border-width:2px;padding:17px 19px}
.opt:has(input:focus-visible){outline:3px solid var(--ir);outline-offset:3px}
.opt input{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none}
.opt-row{display:flex;justify-content:space-between;align-items:center;gap:16px}
.opt b{font-size:16.5px;letter-spacing:-.01em}
.opt small{display:block;color:var(--ink-2);font-size:14px;margin-top:3px}
.assure{margin-top:26px;display:grid;gap:14px}
.arow{display:flex;gap:13px;font-size:14.5px;color:var(--ink-2);line-height:1.5}
.arow i{color:var(--jade);font-style:normal;flex:none;font-weight:700}
.crumb{font-size:13.5px;color:var(--ink-2);padding-top:26px}

/* ---------- lander (/start) ---------- */
/* Reuses the storefront's type, stage, statement band, spec table and details.
   Only the arrangements below are new, so the two pages read as one brand. */
.lander-hero{text-align:center;padding:clamp(56px,8vw,104px) 0 clamp(44px,6vw,78px)}
.lander-hero .eyebrow{display:block;margin-bottom:18px}
.lander-hero h1{margin:0 auto 24px;max-width:15ch}
.lander-hero .lede{margin:0 auto 34px;max-width:48ch}
.lander-hero .hero-cta{justify-content:center}
.fineprint{font-size:13.5px;color:var(--ink-2);line-height:1.6;margin-top:16px}
/* utility the rival stylesheet never had; start.html uses it twice */
.center{text-align:center}
.center .lede{margin-left:auto;margin-right:auto}

.reasons{display:grid;gap:20px;max-width:58ch}
.reasons p{font-size:clamp(17px,1.5vw,19px);line-height:1.6;color:var(--ink-2)}
.reasons p b{color:var(--ink);font-weight:600}

.stat span b{color:#fff;font-weight:600}

.five{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
@media(max-width:900px){.five{grid-template-columns:repeat(3,1fr);gap:16px}}
@media(max-width:520px){.five{grid-template-columns:repeat(2,1fr)}}
.five figure{margin:0;min-width:0}
.five figcaption{margin-top:12px;font-size:13.5px;color:var(--ink-2);text-align:center}

.qual{display:grid;gap:clamp(28px,4vw,56px)}
@media(min-width:760px){.qual{grid-template-columns:1fr 1fr}}
.qual h3{margin-bottom:18px}
.qual ul{list-style:none;display:grid;gap:14px}
.qual li{font-size:16px;line-height:1.5;color:var(--ink-2);padding-left:26px;position:relative}
.qual li::before{content:'';position:absolute;left:0;top:.6em;width:11px;height:2px;
  border-radius:1px;background:var(--ir)}
/* the disqualifying column reads as a dash, not a tick */
.qual div:last-child li::before{background:var(--ink-2);opacity:.55}

/* ---------- footer ---------- */
footer{background:var(--ink);color:#B9AAAE;padding:88px 0 40px;font-size:15px}
.f-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:56px;margin-bottom:64px}
@media(max-width:760px){.f-grid{grid-template-columns:1fr;gap:38px}}
footer h4{color:#fff;font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  margin-bottom:18px;font-weight:600}
footer a{display:block;color:#B9AAAE;margin-bottom:11px}
footer a:hover{color:#fff}
.f-base{border-top:1px solid rgba(255,255,255,.12);padding-top:26px;
  font-size:13px;line-height:1.7;color:#8D8083}
