/* Self-hosted, subset to the glyphs this store actually uses. No third-party font request. */
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
}

/* ==========================================================================
   KAVELL theme
   Every value in :root is exposed in the Shopify theme editor as a setting,
   so colours, type and corner radius change from the admin, never from code.
   ========================================================================== */

:root {
  /* colour ------------------------------------------------------------ */
  --bg: #FBFAF8;
  --bg-alt: #F3F0EA;
  --bg-deep: #16181C;
  --card-a: #FFFDFB;
  --card-b: #EDE7DD;
  --fg: #16181C;
  --fg-soft: #4A4741;
  --fg-muted: #6E6A64;
  --line: #E3DED5;
  --line-soft: #EFEBE4;
  --accent: #9C5A38;
  --accent-soft: #F3E7DE;
  --sale: #A4402A;
  --ok: #2E6B4F;

  /* type -------------------------------------------------------------- */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --step--1: 0.8125rem;
  --step-0: 0.9375rem;
  --step-1: 1.0625rem;
  --step-2: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --step-3: clamp(1.5rem, 1.25rem + 1.1vw, 2rem);
  --step-4: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --step-5: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);

  /* space & shape ------------------------------------------------------ */
  --gap: 24px;
  --pad: clamp(20px, 4vw, 56px);
  --section: clamp(56px, 7vw, 104px);
  --max: 1360px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 760px; }
.section { padding-block: var(--section); }
.stack > * + * { margin-top: var(--flow, 16px); }

/* utility -------------------------------------------------------------- */
.eyebrow {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-muted); font-weight: 500; margin: 0 0 14px;
}
.muted { color: var(--fg-muted); }
.lede { font-size: var(--step-1); color: var(--fg-soft); line-height: 1.65; }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip {
  position: absolute; left: -999px; top: 8px; background: var(--fg); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200;
}
.skip:focus { left: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  background: var(--fg); color: var(--bg); font-size: var(--step--1); font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: #2C3039; }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--light { background: var(--bg); color: var(--fg); }
.btn--light:hover { background: #fff; color: var(--fg); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 18px; font-size: 11px; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-u {
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: opacity .2s var(--ease);
}
.link-u:hover { opacity: .6; }

/* announcement + header ------------------------------------------------ */
.announce {
  background: var(--bg-deep); color: #EFEBE4; font-size: 12px; letter-spacing: .05em;
  text-align: center; padding: 9px 16px;
}
.announce b { font-weight: 500; }

.hdr {
  position: sticky; top: 0; z-index: 60; background: rgba(251, 250, 248, .97);
  border-bottom: 1px solid var(--line-soft);
}
.hdr__in {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  min-height: 68px;
}
.hdr__nav { display: flex; gap: 26px; align-items: center; }
.hdr__nav a { font-size: var(--step--1); letter-spacing: .01em; padding: 6px 0; position: relative; }
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor; transition: right .28s var(--ease);
}
.hdr__nav a:hover::after, .hdr__nav a[aria-current]::after { right: 0; }
.logo {
  font-family: var(--font-display); font-size: 21px; letter-spacing: .22em;
  text-transform: uppercase; white-space: nowrap; font-variation-settings: 'wght' 500;
}
.hdr__act { display: flex; gap: 6px; justify-content: flex-end; align-items: center; }
.iconbtn {
  background: none; border: 0; cursor: pointer; padding: 9px; border-radius: 50%;
  display: inline-flex; position: relative; transition: background .2s var(--ease);
}
.iconbtn:hover { background: var(--bg-alt); }
.iconbtn .count {
  position: absolute; top: 2px; right: 0; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600; min-width: 17px; height: 17px; border-radius: 999px;
  display: grid; place-items: center; padding: 0 4px; font-family: var(--font-body);
}
.burger { display: none; }

/* mega menu ------------------------------------------------------------ */
.has-mega { position: relative; }
.mega {
  position: absolute; left: 50%; transform: translate(-50%, 8px); top: calc(100% + 14px);
  width: min(920px, 92vw); background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px; display: grid;
  grid-template-columns: 1fr 1fr 1.1fr; gap: 26px; box-shadow: 0 26px 60px rgba(22, 24, 28, .1);
  opacity: 0; visibility: hidden; transition: all .24s var(--ease); z-index: 70;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.mega ul { list-style: none; margin: 0; padding: 0; }
.mega li + li { margin-top: 9px; }
.mega__promo { background: var(--bg-alt); border-radius: var(--radius); padding: 18px; }
.mega__promo img { height: 120px; object-fit: contain; margin: 4px auto 10px; }

/* hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); }
.hero__in {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px;
  min-height: min(76vh, 640px); padding-block: clamp(40px, 6vw, 76px);
}
.hero h1 { font-size: var(--step-5); font-variation-settings: 'SOFT' 6; }
.hero h1 em { font-style: italic; font-variation-settings: 'WONK' 1; }
.hero p { max-width: 46ch; color: var(--fg-soft); font-size: var(--step-1); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero__art { position: relative; display: grid; place-items: center; isolation: isolate; }
.hero__art .plate-lg {
  width: auto; max-width: 100%; max-height: min(56vh, 470px);
  filter: drop-shadow(0 30px 40px rgba(30, 24, 18, .13));
}
.hero__disc {
  position: absolute; top: 50%; left: 50%; translate: -50% -52%;
  width: min(74%, 400px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff, #E6DDD0);
  z-index: 0;
}
.hero__art .plate-lg { position: relative; z-index: 1; }
.hero__mini {
  position: absolute; bottom: 6%; left: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 10px 14px; display: flex; gap: 10px; align-items: center;
  box-shadow: 0 16px 34px rgba(30, 24, 18, .08); font-size: var(--step--1);
}
.hero__mini img { width: 38px; height: 38px; object-fit: contain; }

/* marquee / trust bar --------------------------------------------------- */
.trust {
  border-block: 1px solid var(--line); display: grid;
  grid-template-columns: repeat(4, 1fr); text-align: center;
}
.trust div { padding: 22px 14px; }
.trust svg { margin: 0 auto 9px; color: var(--fg-muted); }
.trust div + div { border-left: 1px solid var(--line); }
.trust strong { display: block; font-size: var(--step--1); font-weight: 500; }
.trust span { font-size: 12px; color: var(--fg-muted); }

/* section head ---------------------------------------------------------- */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  margin-bottom: 34px;
}
.sec-head p { margin: 8px 0 0; color: var(--fg-muted); max-width: 52ch; }

/* product grid + card ---------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { position: relative; display: flex; flex-direction: column; }
.card__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(163deg, var(--card-a), var(--card-b));
  aspect-ratio: 4 / 5; display: grid; place-items: center; padding: 12%;
}
.card__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.045) translateY(-4px); }
.card__badge {
  position: absolute; top: 12px; left: 12px; background: var(--bg); color: var(--fg);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: 6px 10px; border-radius: 999px; z-index: 2;
}
.card__badge--sale { background: var(--sale); color: #fff; }
.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; opacity: 0;
  transform: translateY(8px); transition: all .26s var(--ease); z-index: 2;
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__body { padding-top: 14px; display: flex; flex-direction: column; gap: 3px; }
.card__title { font-family: var(--font-body); font-size: var(--step-0); font-weight: 500; letter-spacing: 0; }
.card__meta { font-size: var(--step--1); color: var(--fg-muted); }
.card__price { font-size: var(--step-0); margin-top: 2px; }
.card__price s { color: var(--fg-muted); margin-right: 8px; }
.card__price .now { color: var(--sale); }
.swatches { display: flex; gap: 6px; margin-top: 8px; }
.sw {
  width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .16);
  cursor: pointer; background: var(--c); padding: 0;
}
.sw[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--fg); }

/* editorial split -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 5vw, 72px); }
.split--alt { direction: rtl; }
.split--alt > * { direction: ltr; }
.split__art {
  border-radius: var(--radius-lg); background: linear-gradient(160deg, #F7F2EA, #E3D9CB);
  aspect-ratio: 5 / 4; display: grid; place-items: center; padding: 8%;
}
.split__art img { max-height: 100%; object-fit: contain; }

/* quote / reviews --------------------------------------------------------- */
.quote { background: var(--bg-alt); }
.quote blockquote {
  font-family: var(--font-display); font-size: var(--step-3); line-height: 1.3; margin: 0 auto;
  max-width: 22ch; text-align: center; font-variation-settings: 'SOFT' 8;
}
.stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.rev {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.rev p { font-size: var(--step-0); }
.rev footer { font-size: 12px; color: var(--fg-muted); }

/* footer ------------------------------------------------------------------ */
.ftr { background: var(--bg-deep); color: #D8D3CA; margin-top: var(--section); }
.ftr a:hover { color: #fff; }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: 60px 44px; }
.ftr h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8D877D; margin-bottom: 14px; }
.ftr ul { list-style: none; margin: 0; padding: 0; font-size: var(--step--1); }
.ftr li + li { margin-top: 9px; }
.ftr .logo { color: #fff; }
.ftr__bot {
  border-top: 1px solid #2A2D33; padding-block: 20px; display: flex; justify-content: space-between;
  gap: 16px; font-size: 12px; color: #8D877D; flex-wrap: wrap;
}
.newsletter { display: flex; gap: 8px; margin-top: 14px; max-width: 360px; }
.newsletter input {
  flex: 1; background: transparent; border: 1px solid #3A3E45; border-radius: 999px;
  padding: 12px 18px; color: #fff; font: inherit; font-size: var(--step--1);
}
.newsletter input::placeholder { color: #7C7770; }
.pay { display: flex; gap: 8px; align-items: center; }
.pay span {
  border: 1px solid #34383E; border-radius: 5px; padding: 3px 7px; font-size: 9px;
  letter-spacing: .08em; color: #A9A49B;
}

/* forms -------------------------------------------------------------------- */
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 12px; letter-spacing: .04em; color: var(--fg-muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font: inherit; font-size: var(--step-0); color: var(--fg);
}
.field textarea { min-height: 130px; resize: vertical; }

/* breadcrumb ---------------------------------------------------------------- */
.crumb { font-size: 12px; color: var(--fg-muted); padding-top: 22px; }
.crumb a:hover { color: var(--fg); }

/* collection toolbar --------------------------------------------------------- */
.toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-block: 1px solid var(--line); padding-block: 14px; margin-bottom: 30px; flex-wrap: wrap;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: var(--bg); border-radius: 999px;
  padding: 8px 15px; font-size: var(--step--1); cursor: pointer; transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--fg); }
.chip[aria-pressed="true"] { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.select {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 34px 8px 15px;
  font-size: var(--step--1); background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236E6A64' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none; cursor: pointer; color: var(--fg);
}

/* product page ---------------------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.gallery { position: sticky; top: 92px; }
.gallery__main {
  border-radius: var(--radius-lg); background: linear-gradient(163deg, var(--card-a), var(--card-b));
  aspect-ratio: 1; display: grid; place-items: center; padding: 9%;
}
.gallery__main img { max-height: 100%; object-fit: contain; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery__thumbs button {
  width: 74px; aspect-ratio: 1; border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  background: linear-gradient(163deg, var(--card-a), var(--card-b)); padding: 8px;
}
.gallery__thumbs button[aria-pressed="true"] { border-color: var(--fg); }
.pdp__price { font-size: var(--step-2); font-family: var(--font-display); }
.pdp__price s { font-size: var(--step-1); color: var(--fg-muted); margin-right: 10px; }
.opt { margin-top: 24px; }
.opt__head { display: flex; justify-content: space-between; font-size: var(--step--1); margin-bottom: 10px; }
.opt__head b { font-weight: 500; }
.opt__row { display: flex; gap: 10px; flex-wrap: wrap; }
.sw-lg {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .14);
  background: var(--c); cursor: pointer; padding: 0;
}
.sw-lg[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--fg); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { background: none; border: 0; padding: 12px 16px; cursor: pointer; font-size: 15px; }
.qty input { width: 42px; text-align: center; border: 0; background: none; font: inherit; }
.buybox { display: flex; gap: 10px; margin-top: 26px; }
.acc { border-top: 1px solid var(--line); }
.acc__h {
  width: 100%; background: none; border: 0; text-align: left; padding: 18px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; font-size: var(--step-0);
}
.acc__h span { transition: transform .25s var(--ease); color: var(--fg-muted); }
.acc__h[aria-expanded="true"] span { transform: rotate(45deg); }
.acc__c { display: none; padding-bottom: 20px; color: var(--fg-soft); font-size: var(--step--1); }
.acc__c.open { display: block; }
.acc__c ul { margin: 0; padding-left: 18px; }
.acc__c li + li { margin-top: 6px; }
.spec { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.spec td { padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.spec td:first-child { color: var(--fg-muted); width: 42%; }
.stockline { display: flex; align-items: center; gap: 8px; font-size: var(--step--1); color: var(--ok); margin-top: 16px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }

/* drawer + modal ------------------------------------------------------------------- */
.scrim {
  position: fixed; inset: 0; background: rgba(22, 24, 28, .38); opacity: 0; visibility: hidden;
  transition: all .3s var(--ease); z-index: 90;
}
.scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 100%); background: var(--bg);
  z-index: 100; transform: translateX(100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer--left { right: auto; left: 0; transform: translateX(-100%); }
.drawer__h {
  display: flex; justify-content: space-between; align-items: center; padding: 20px var(--pad);
  border-bottom: 1px solid var(--line);
}
.drawer__b { flex: 1; overflow-y: auto; padding: 20px var(--pad); }
.drawer__f { border-top: 1px solid var(--line); padding: 20px var(--pad); }
.line-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.line-item__art { background: linear-gradient(163deg, var(--card-a), var(--card-b)); border-radius: 10px; padding: 8px; }
.line-item__art img { width: 100%; height: 100%; object-fit: contain; }
.line-item h4 { font-family: var(--font-body); font-size: var(--step-0); font-weight: 500; }
.line-item small { color: var(--fg-muted); }
.remove { background: none; border: 0; color: var(--fg-muted); font-size: 12px; cursor: pointer; text-decoration: underline; padding: 0; }
.cart-total { display: flex; justify-content: space-between; font-size: var(--step-1); margin-bottom: 6px; }
.freebar { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; margin: 10px 0 18px; }
.freebar i { display: block; height: 100%; background: var(--accent); transition: width .4s var(--ease); }

/* mobile nav ----------------------------------------------------------------------- */
.mnav { list-style: none; margin: 0; padding: 0; }
.mnav li { border-bottom: 1px solid var(--line-soft); }
.mnav a { display: block; padding: 16px 0; font-size: var(--step-1); }

/* search ---------------------------------------------------------------------------- */
.searchwrap { position: fixed; inset: 0; z-index: 100; display: none; }
.searchwrap.open { display: block; }
.searchpanel {
  background: var(--bg); border-bottom: 1px solid var(--line); padding: 22px var(--pad) 30px;
  max-height: 82vh; overflow-y: auto;
}
.searchpanel input {
  width: 100%; border: 0; border-bottom: 1px solid var(--line); font-family: var(--font-display);
  font-size: var(--step-3); padding: 10px 0; background: none; color: var(--fg);
}
.searchpanel input:focus { outline: 0; border-color: var(--fg); }
.sresults { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.sresult { display: flex; gap: 12px; align-items: center; }
.sresult img { width: 56px; height: 56px; object-fit: contain; background: linear-gradient(163deg, var(--card-a), var(--card-b)); border-radius: 8px; padding: 5px; }

/* toast ------------------------------------------------------------------------------ */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); z-index: 120;
  background: var(--fg); color: var(--bg); padding: 13px 22px; border-radius: 999px;
  font-size: var(--step--1); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* misc page furniture ----------------------------------------------------------------- */
.page-head { padding-block: clamp(34px, 5vw, 64px) 8px; }
.page-head h1 { max-width: 18ch; }
.prose { font-size: var(--step-0); color: var(--fg-soft); }
.prose h2 { margin: 40px 0 12px; }
.prose h3 { margin: 28px 0 10px; font-size: var(--step-1); font-family: var(--font-body); font-weight: 600; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 7px; }
.card-note {
  background: var(--bg-alt); border-radius: var(--radius); padding: 20px 22px; font-size: var(--step--1);
}
.tag {
  display: inline-block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 46px; margin-bottom: 20px; }
.steps li::before {
  content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-size: 15px; color: var(--accent);
  border: 1px solid var(--line); border-radius: 50%; width: 32px; height: 32px;
  display: grid; place-items: center;
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* responsive --------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .ftr__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sresults { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hdr__in { grid-template-columns: auto 1fr auto; min-height: 60px; }
  .hdr__nav { display: none; }
  .burger { display: inline-flex; }
  .logo { font-size: 18px; }
  .hero__in { grid-template-columns: 1fr; text-align: center; min-height: 0; gap: 26px; }
  .hero p { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__mini { display: none; }
  .split, .pdp { grid-template-columns: 1fr; }
  .split--alt { direction: ltr; }
  .gallery { position: static; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust div:nth-child(3) { border-left: 0; }
  .trust div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .rev-grid { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  :root { --gap: 14px; }
  .card__media { padding: 9%; }
  .buybox { flex-direction: column; }
  .buybox .qty { align-self: flex-start; }
  .sresults { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
