/* ==========================================================
   lisalab — brand strategy & design studio
   ========================================================== */

/* ---- self-hosted variable fonts (no third-party requests) ---- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito.woff2') format('woff2-variations');
  font-weight: 200 1000;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --ink: #0f0f0f;
  --ink-soft: rgba(15, 15, 15, .7);
  --ink-faint: rgba(15, 15, 15, .55);
  --teal: #2f6f7a;
  --teal-light: #3d8894;
  --teal-deep: #142e33;
  --paper: #fff;
  --mist: #f1f0ed;
  --warm: #f7f6f3;
  --line: rgba(15, 15, 15, .13);
  --line-deep: rgba(255, 255, 255, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 16px;
  --wrap: 1180px;
  --error: #a3341f;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 12px 20px;
  font-family: 'Quicksand', sans-serif; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (min-width: 700px) { .wrap { padding: 0 48px; } }
@media (min-width: 1100px) { .wrap { padding: 0 64px; } }

.section { padding: 96px 0; }
.section--line { border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .section { padding: 60px 0; } }

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before {
  content: ""; width: .45em; height: .45em;
  border-radius: 50%; background: currentColor;
}
.eyebrow--light { color: #fff; }

.accent { color: var(--teal); }
.serif-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 500; color: var(--teal);
}

/* ---------------- buttons ---------------- */
.btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .55em;
  padding: 1.05em 1.8em;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
  min-height: 44px;
}
.btn--solid { background: var(--ink); color: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--inverse { background: #fff; color: var(--teal-deep); }
@media (hover: hover) and (pointer: fine) {
  .btn--solid:hover { background: var(--teal); transform: translateY(-1px); }
  .btn--teal:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn--inverse:hover { background: var(--mist); transform: translateY(-1px); }
}

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  height: 2px; width: var(--progress, 0%);
  background: var(--teal); transition: width .1s linear;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 28px; width: auto; }

.nav-primary { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="true"] {
  color: var(--ink); border-bottom-color: var(--teal);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.menu-btn {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; cursor: pointer; flex-shrink: 0; padding: 0;
}
.menu-btn svg { width: 20px; height: 20px; stroke: var(--ink); }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }

.mobile-panel {
  overflow: hidden; max-height: 0; opacity: 0;
  background: #fff;
  transition: max-height .35s var(--ease), opacity .3s var(--ease);
  border-top: 1px solid transparent;
}
.mobile-panel.is-open {
  max-height: 460px; opacity: 1; border-top-color: var(--line);
}
.mobile-panel__inner { padding: 8px 24px 22px; display: flex; flex-direction: column; }
.mobile-panel a:not(.btn) {
  padding: 15px 4px; min-height: 44px; display: flex; align-items: center;
  font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--ink-soft); border-bottom: 1px solid var(--line);
}
.mobile-panel .btn { margin-top: 18px; justify-content: center; }

@media (max-width: 820px) {
  .nav-primary, .nav-actions .btn { display: none; }
  .menu-btn { display: inline-flex; }
}

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- hero ---------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__inner { position: relative; z-index: 1; max-width: 760px; padding: 120px 0 100px; }
@media (max-width: 760px) { .hero__inner { padding: 84px 0 60px; } }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); margin-top: 20px; }
.hero__sub { display: block; font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin-top: 16px; }
.hero__lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; margin-top: 26px; }
.hero .btn { margin-top: 34px; }
.hero__mark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: min(26vw, 340px); color: var(--teal);
  opacity: .045; letter-spacing: -.03em; white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}
@media (max-width: 760px) { .hero__mark { display: none; } }

/* ---------------- generic blocks ---------------- */
.split { display: grid; grid-template-columns: 4fr 8fr; gap: 48px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 22px; } }

.h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-top: 18px; }
.lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 620px; margin-top: 18px; }

.dot::after {
  content: ""; display: inline-block;
  width: .18em; height: .18em; border-radius: 50%;
  background: var(--teal); margin-left: .18em; vertical-align: baseline;
}

/* ---------------- approach ---------------- */
.approach { background: var(--mist); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 32px; } }
.step { border-top: 1px solid var(--line); padding-top: 22px; }
.step__n { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--teal); font-size: .95rem; }
.step h3 { font-size: 1.4rem; margin-top: 14px; }
.step p { color: var(--ink-soft); margin-top: 12px; font-size: .98rem; }

/* ---------------- cta band ---------------- */
.cta { background: var(--teal-deep); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; left: 50%; top: -120px;
  width: 520px; height: 520px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 70%);
  border-radius: 50%;
}
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: 18px; }
.cta p { color: rgba(255, 255, 255, .78); margin-top: 18px; font-size: 1.05rem; }
.cta .btn { margin-top: 34px; }

/* ---------------- portfolio marquee ---------------- */
.marquee {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  /* fade the edges so logos slide in and out rather than getting clipped */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 90px, #000 calc(100% - 90px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 90px, #000 calc(100% - 90px), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__set li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 46px;
}

.marquee__set img {
  /* Optical balance: a stacked or circular mark needs more height than a wide
     one to carry the same visual weight. Each keeps its own proportions. */
  height: 62px;
  width: auto;
  max-width: none;
  opacity: .78;
  transition: opacity .3s var(--ease);
}
.marquee__set .lg--wellnest  { height: 88px; }
.marquee__set .lg--bluemacaw { height: 84px; }
.marquee__set .lg--wnest     { height: 64px; }
.marquee__set .lg--roie      { height: 62px; }
.marquee__set .lg--monni     { height: 56px; }
.marquee__set .lg--mrsuper   { height: 46px; }

@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
  .marquee__set img:hover { opacity: 1; }
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  .marquee { margin-top: 36px; }
  .marquee__set li { padding: 0 30px; }
  .marquee__set img { height: 48px; }
  .marquee__set .lg--wellnest  { height: 68px; }
  .marquee__set .lg--bluemacaw { height: 64px; }
  .marquee__set .lg--wnest     { height: 50px; }
  .marquee__set .lg--roie      { height: 48px; }
  .marquee__set .lg--monni     { height: 44px; }
  .marquee__set .lg--mrsuper   { height: 36px; }
  .marquee__track { animation-duration: 26s; }
}

/* no motion: fall back to a static, scrollable row */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
  .marquee__set:last-child { display: none; }
}

/* ---------------- contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 56px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 20px; }
.contact-details { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; }
.contact-details dt, .field label {
  font-family: 'Quicksand', sans-serif; font-weight: 600;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-details dd { margin: 6px 0 0; }
.contact-details a { color: var(--teal); border-bottom: 1px solid transparent; }
.contact-details a:hover { border-bottom-color: var(--teal); }

.field { margin-bottom: 24px; }
.field label { display: block; margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); background: var(--mist);
  border-radius: 10px; padding: 14px 16px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--teal); background: #fff; outline: none; }
.field textarea { min-height: 132px; resize: vertical; }
.field-error { color: var(--error); font-size: .84rem; margin-top: 8px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 620px) { .row-2 { grid-template-columns: 1fr; } }
.form-foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px;
}
.form-hint { color: var(--ink-faint); font-size: .88rem; }

/* honeypot — hidden from people, visible to naive bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-alert {
  color: var(--error);
  background: #fbf1ef;
  border: 1px solid rgba(163, 52, 31, .25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .92rem;
  margin-bottom: 20px;
}
.btn[disabled] { opacity: .6; cursor: default; transform: none !important; }

.form-success {
  border: 1px solid var(--teal); background: var(--mist);
  padding: 36px; border-radius: var(--radius);
}
.form-success h3 { font-size: 1.4rem; margin-top: 14px; }
.form-success p { color: var(--ink-soft); margin-top: 12px; max-width: 460px; }
.form-success a { color: var(--teal); border-bottom: 1px solid var(--teal); }
[hidden] { display: none !important; }

/* ---------------- footer ---------------- */
.site-footer { background: var(--teal-deep); color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: end; padding: 56px 0 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; align-items: start; } }
.footer-grid img { height: 22px; width: auto; }
.footer-tag { color: rgba(255, 255, 255, .72); font-size: .95rem; margin-top: 16px; max-width: 360px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Quicksand', sans-serif; font-weight: 600;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82); min-height: 44px;
}
.footer-links a:hover { color: #fff; }
.footer-links svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
.footer-bottom {
  border-top: 1px solid var(--line-deep); padding: 16px 0;
  font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: .74rem;
  color: rgba(255, 255, 255, .55);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------- shop cta ---------------- */
.shop-cta { margin-top: 26px; }

/* ---------------- 404 ---------------- */
.err-body { display: flex; flex-direction: column; min-height: 100vh; }
.err-header { position: static; background: #fff; }
.err-footer { margin-top: auto; }

.err {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(47,111,122,.06), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(47,111,122,.05), transparent 45%),
    var(--warm);
}
.err__inner { max-width: 720px; }

/* the 4 · 4 mark — echoes the lisalab dot */
.err__art {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 34px;
}
.err__digit {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 13vw, 8rem);
  line-height: .8;
  color: var(--ink);
}
.err__dot {
  width: clamp(20px, 4vw, 34px);
  height: clamp(20px, 4vw, 34px);
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: err-pulse 2.6s var(--ease) infinite;
}
@keyframes err-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(.82); opacity: .65; }
}

.err__eyebrow { margin-bottom: 14px; }
.err__title {
  font-size: clamp(2.1rem, 5.2vw, 3.4rem);
  line-height: 1.1;
}
.err__lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: 20px;
  max-width: 520px;
}

.err__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { background: #fff; border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
}

.err__links { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.err__links-label {
  font-family: 'Quicksand', sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
}
.err__links ul { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 16px; }
.err__links a {
  font-family: 'Quicksand', sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  min-height: 44px; display: inline-flex; align-items: center;
}
.err__links a:hover { border-bottom-color: var(--teal); }

@media (prefers-reduced-motion: reduce) { .err__dot { animation: none; } }




/* ==========================================================
   THE LAB — a digital shop
   Spacing scale: 8 · 16 · 32 · 64 · 140 · 230
   ========================================================== */
.lab {
  --s1: 8px; --s2: 16px; --s3: 32px; --s4: 64px; --s5: 140px; --s6: 230px;
  --gut: clamp(32px, 11vw, 220px);
  background: #f3f1ec;
}
@media (max-width: 760px) { .lab { --s5: 84px; --s6: 116px; } }
.lab .col { padding-left: var(--gut); padding-right: var(--gut); max-width: 1680px; margin-inline: auto; }

.lab .dot { display:inline-block; width:.16em; height:.16em; border-radius:50%;
  background: var(--teal); margin-left:.1em; }
.lab .dot--sm { width:6px; height:6px; margin-left:10px; vertical-align:middle; }
.lab .dot--lg { width:.13em; height:.13em; }
.lab .mark { font-family:'Quicksand',sans-serif; font-weight:600; font-size:.68rem;
  letter-spacing:.24em; text-transform:uppercase; color: var(--ink-faint); margin:0; }

/* text link with a sliding rule */
.lab .lnk { display:inline-block; position:relative; background:none; border:0; padding:0 0 4px;
  cursor:pointer; font-family:'Quicksand',sans-serif; font-weight:600; font-size:.78rem;
  letter-spacing:.09em; text-transform:uppercase; color: var(--ink); }
.lab .lnk span { position:absolute; left:0; bottom:0; height:1px; width:100%; background: var(--ink);
  transform-origin:left; transition: transform .4s var(--ease), background-color .4s var(--ease); }
.lab .lnk:hover span { background: var(--teal); transform: scaleX(1.15); }

/* ---------- hero ---------- */
.lab .lab-top { padding-top: clamp(110px, 17vh, 220px); padding-bottom: var(--s5); }
.lab .lab-top__t { font-size: clamp(3.6rem, 13vw, 10rem); line-height:.86; letter-spacing:-.045em;
  font-weight:600; margin: var(--s3) 0 0; }
.lab .lab-top__s { margin-top: var(--s3); max-width: 34ch; font-size: clamp(1.05rem,2.1vw,1.35rem);
  line-height:1.5; color: var(--ink-soft); }
.lab .lab-top__row { display:flex; align-items:center; gap: var(--s3); flex-wrap:wrap; margin-top: var(--s4); }

/* ---------- featured ---------- */
.lab .feature { padding-bottom: var(--s6); }
.lab .feature__grid { display:grid; grid-template-columns: 6fr 5fr; gap: clamp(32px,6vw,92px);
  align-items:center; }
@media (max-width:900px){ .lab .feature__grid{ grid-template-columns:1fr; gap: var(--s3);} }
.lab .feature__vis { display:block; overflow:hidden; background:#e7e3db; aspect-ratio: 4/3; }
.lab .feature__vis img { width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .9s var(--ease); }
@media (hover:hover){ .lab .feature__vis:hover img { transform: scale(1.03); } }
.lab .feature__txt h2 { font-size: clamp(1.9rem,4vw,3rem); letter-spacing:-.03em; margin: var(--s2) 0 0; }
.lab .feature__d { color: var(--ink-soft); margin-top: var(--s2); max-width:42ch; line-height:1.65; }
.lab .feature__inc { list-style:none; margin: var(--s3) 0 0; padding:0; display:grid; gap:9px; }
.lab .feature__inc li { position:relative; padding-left:20px; font-size:.92rem; color: var(--ink-soft); }
.lab .feature__inc li::before { content:''; position:absolute; left:0; top:.55em; width:5px; height:5px;
  border-radius:50%; background: var(--teal); }
.lab .feature__price { font-family:'Fraunces',Georgia,serif; font-size:1.7rem; margin: var(--s3) 0 var(--s3);
  letter-spacing:-.02em; }
.lab .feature__price.is-free { color: var(--teal); }
.lab .feature__price s { color: var(--ink-faint); font-size:.62em; margin-left:10px; font-family:'Nunito',sans-serif; }

/* ---------- strips ---------- */
.lab .strip { padding-bottom: var(--s6); }
.lab .strip--rel { padding-top: var(--s5); border-top:1px solid rgba(15,15,15,.12); }
.lab .strip__head { display:flex; align-items:baseline; justify-content:space-between; gap: var(--s3);
  flex-wrap:wrap; margin-bottom: var(--s4); }
.lab .strip__head h2 { font-size: clamp(1.4rem,3vw,2.1rem); letter-spacing:-.02em; margin:0; }
.lab .row3 { display:grid; grid-template-columns:repeat(3,1fr); column-gap:clamp(24px,4vw,56px);
  row-gap: var(--s4); }
@media (max-width:900px){ .lab .row3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .lab .row3{ grid-template-columns:1fr;} }

/* ---------- free band ---------- */
.lab .freeband { background: #eceae3; padding: var(--s5) 0; margin-bottom: var(--s6); }
.lab .freeband__head { display:grid; grid-template-columns: 1fr 1fr; gap: var(--s3);
  align-items:end; margin-bottom: var(--s4); }
@media (max-width:860px){ .lab .freeband__head{ grid-template-columns:1fr; align-items:start;} }
.lab .freeband__head h2 { font-size: clamp(1.6rem,3.6vw,2.5rem); letter-spacing:-.025em; margin: var(--s2) 0 0; }
.lab .freeband__s { color: var(--ink-soft); max-width:40ch; margin:0; line-height:1.65; }

/* ---------- shop ---------- */
.lab .shop { padding-bottom: var(--s6); }
.lab .shop__head { display:flex; align-items:baseline; justify-content:space-between; gap: var(--s3);
  flex-wrap:wrap; }
.lab .shop__head h2 { font-size: clamp(1.6rem,3.6vw,2.5rem); letter-spacing:-.025em; margin:0; }
.lab .shop__n { font-family:'Quicksand',sans-serif; font-weight:600; font-size:.7rem;
  letter-spacing:.18em; text-transform:uppercase; color: var(--ink-faint); margin:0; }
.lab .tools { display:flex; align-items:center; justify-content:space-between; gap: var(--s3);
  flex-wrap:wrap; margin-top: var(--s4); padding-bottom: var(--s3);
  border-bottom:1px solid rgba(15,15,15,.12); }
.lab .tools__right { display:flex; align-items:center; gap: var(--s3); flex-wrap:wrap; }
.lab .chips { display:flex; flex-wrap:wrap; gap: var(--s2) var(--s3); }
.lab .chips--price { gap: var(--s2); padding-left: var(--s3); border-left:1px solid rgba(15,15,15,.14); }
.lab .chip { background:none; border:0; padding:0 0 5px; cursor:pointer;
  font-family:'Quicksand',sans-serif; font-weight:600; font-size:.82rem; color: var(--ink-faint);
  border-bottom:1px solid transparent; transition: color .25s, border-color .25s; }
.lab .chip:hover { color: var(--ink); }
.lab .chip.is-on { color: var(--ink); border-bottom-color: var(--teal); }
.lab .find input { border:0; border-bottom:1px solid rgba(15,15,15,.2); background:none;
  padding:6px 2px; width:170px; font-size:.92rem; border-radius:0; }
.lab .find input:focus { outline:none; border-bottom-color: var(--teal); box-shadow:none; }
.lab .tally { font-family:'Quicksand',sans-serif; font-weight:600; font-size:.66rem;
  letter-spacing:.2em; text-transform:uppercase; color: var(--ink-faint); margin: var(--s3) 0 0; }
.lab .grid { display:grid; grid-template-columns:repeat(3,1fr); column-gap:clamp(24px,4vw,56px);
  row-gap:clamp(48px,7vw,90px); margin-top: var(--s4); }
@media (max-width:1000px){ .lab .grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .lab .grid{ grid-template-columns:1fr;} }

/* ---------- product card ---------- */
.lab .pc[hidden]{ display:none; }
.lab .pc__vis { display:block; position:relative; overflow:hidden; background:#e7e3db; aspect-ratio:4/5; }
.lab .pc__vis img { width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .8s var(--ease), filter .5s var(--ease); filter:saturate(.95); }
.lab .pc__ph { display:block; width:100%; height:100%;
  background:linear-gradient(150deg,#eeeae2,#e2ddd3); }
@media (hover:hover){ .lab .pc:hover .pc__vis img { transform:scale(1.045); filter:saturate(1); } }
.lab .pc__flag { position:absolute; top:12px; left:12px; background: var(--ink); color:#fff;
  font-family:'Quicksand',sans-serif; font-weight:700; font-size:.58rem; letter-spacing:.14em;
  text-transform:uppercase; padding:5px 10px; }
.lab .pc__txt { padding-top: var(--s3); }
.lab .pc__cat { font-family:'Quicksand',sans-serif; font-weight:600; font-size:.62rem;
  letter-spacing:.18em; text-transform:uppercase; color: var(--teal); margin:0; }
.lab .pc h3 { font-size:1.22rem; letter-spacing:-.015em; margin-top:10px; }
.lab .pc h3 a { transition: color .25s; }
.lab .pc h3 a:hover { color: var(--teal); }
.lab .pc__d { color: var(--ink-soft); font-size:.9rem; line-height:1.6; margin-top:8px; max-width:34ch; }
.lab .pc__foot { display:flex; align-items:baseline; justify-content:space-between; gap: var(--s2);
  margin-top: var(--s3); padding-top: var(--s2); border-top:1px solid rgba(15,15,15,.1); }
.lab .pc__price { font-family:'Fraunces',Georgia,serif; font-size:1.05rem; letter-spacing:-.01em; }
.lab .pc__price.is-free { color: var(--teal); }
.lab .pc__price s { color: var(--ink-faint); font-size:.78em; margin-left:7px; font-family:'Nunito',sans-serif; }

/* ---------- product page ---------- */
.lab .crumbs { padding-top: var(--s4); }
.lab .crumbs .col { display:flex; gap:10px; font-family:'Quicksand',sans-serif; font-weight:600;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-faint); }
.lab .crumbs a:hover { color: var(--teal); }
.lab .prod { padding-top: var(--s4); padding-bottom: var(--s6); }
.lab .prod__grid { display:grid; grid-template-columns: 7fr 6fr; gap: clamp(32px,6vw,96px);
  align-items:start; }
@media (max-width:900px){ .lab .prod__grid{ grid-template-columns:1fr; gap: var(--s4);} }
.lab .prod__main { background:#e7e3db; aspect-ratio:4/5; overflow:hidden; }
.lab .prod__main img { width:100%; height:100%; object-fit:cover; display:block; }
.lab .prod__thumbs { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.lab .thumb { width:70px; height:88px; padding:0; border:1px solid transparent; background:#e7e3db;
  cursor:pointer; overflow:hidden; }
.lab .thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.lab .thumb.is-on { border-color: var(--teal); }
.lab .prod__info h1 { font-size: clamp(1.9rem,4.4vw,3.1rem); letter-spacing:-.03em; margin: var(--s2) 0 0; }
.lab .prod__price { font-family:'Fraunces',Georgia,serif; font-size:1.9rem; letter-spacing:-.02em;
  margin: var(--s3) 0 0; }
.lab .prod__price.is-free { color: var(--teal); }
.lab .prod__price s { color: var(--ink-faint); font-size:.6em; margin-left:12px; font-family:'Nunito',sans-serif; }
.lab .prod__d { color: var(--ink-soft); margin-top: var(--s3); font-size:1.04rem; line-height:1.7; max-width:46ch; }
.lab .btn--wide { margin-top: var(--s3); min-width:230px; }
.lab .prod__note { font-size:.85rem; color: var(--ink-faint); margin-top:12px; max-width:40ch; }
.lab .prod__block { margin-top: var(--s4); padding-top: var(--s3); border-top:1px solid rgba(15,15,15,.12); }
.lab .prod__block h2 { font-family:'Quicksand',sans-serif; font-weight:700; font-size:.7rem;
  letter-spacing:.18em; text-transform:uppercase; color: var(--ink-faint); margin:0 0 var(--s2); }
.lab .prod__body { color: var(--ink-soft); line-height:1.75; }
.lab .ticks { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.lab .ticks li { position:relative; padding-left:24px; color: var(--ink-soft); line-height:1.55; }
.lab .ticks li::before { content:''; position:absolute; left:0; top:.5em; width:7px; height:7px;
  border-radius:50%; background: var(--teal); }
.lab .specs { display:grid; gap:0; margin:0; }
.lab .specs > div { display:flex; justify-content:space-between; gap: var(--s2);
  padding:11px 0; border-bottom:1px solid rgba(15,15,15,.08); }
.lab .specs dt { font-size:.86rem; color: var(--ink-faint); margin:0; }
.lab .specs dd { font-size:.9rem; margin:0; text-align:right; }
.lab .prod__fine { font-size:.8rem; color: var(--ink-faint); margin-top: var(--s3); }

/* ---------- empty + close ---------- */
.lab .lab-empty { padding: var(--s5) 0 var(--s6); }
.lab .lab-empty h2 { font-size: clamp(1.7rem,4vw,2.6rem); letter-spacing:-.025em; margin:0; }
.lab .lab-empty p { color: var(--ink-soft); max-width:48ch; margin: var(--s3) 0 var(--s4); line-height:1.7; }
.lab .close { padding-top: var(--s5); padding-bottom: var(--s6);
  border-top:1px solid rgba(15,15,15,.12); }
.lab .close__t { font-size: clamp(2.4rem,8vw,6rem); line-height:.94; letter-spacing:-.04em;
  margin:0; font-weight:600; }
.lab .close__s { color: var(--ink-soft); font-size:1.06rem; margin-top: var(--s3); max-width:42ch; }
.lab .close__b { margin-top: var(--s4); }

.lab .reveal { opacity:0; transform:translateY(20px);
  transition: opacity .85s var(--ease), transform .85s var(--ease); }
.lab .reveal.is-visible { opacity:1; transform:none; }
.lab .consent { display:flex; gap:10px; align-items:flex-start; margin-top:14px;
  font-size:.84rem; color: var(--ink-soft); font-weight:400; }
.lab .consent input { width:auto; margin-top:3px; flex:0 0 auto; }

@media (prefers-reduced-motion: reduce) {
  .lab .reveal { opacity:1; transform:none; transition:none; }
  .lab .pc__vis img, .lab .feature__vis img, .lab .lnk span { transition:none; }
}
