/* =====================================================================
   SAPMOK — Own your adventure
   Premium 3D landing page · light edition (white · sage · Sapmok green)
   ===================================================================== */

:root {
  --bg: #ffffff;
  --bg-warm: #f7f5ef;
  --sage: #eef1e8;
  --sage-2: #e1e7d8;
  --surface: #ffffff;
  --line: rgba(20, 22, 18, 0.09);
  --line-strong: rgba(20, 22, 18, 0.16);
  --ink: #16180f;
  --ink-2: #2b2e25;
  --muted: #676a60;
  --muted-2: #8b8e83;
  --green: #315824;         /* Sapmok brand green */
  --green-deep: #1f3d17;
  --green-dark: #12210e;
  --green-bright: #3dbb08;
  --green-soft: #d9e8cf;
  --gold: #c9962e;
  --gold-soft: #f3e3bd;
  --tan: #b57b45;
  --pink: #e8bdb5;
  --radius: 28px;
  --radius-sm: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Archivo", "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --shadow-card: 0 1px 2px rgba(22,24,15,0.04), 0 18px 40px -22px rgba(22,24,15,0.28);
  --shadow-card-hover: 0 2px 4px rgba(22,24,15,0.05), 0 30px 60px -24px rgba(49,88,36,0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
main { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; }
p { margin: 0; }
address { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
::selection { background: var(--green); color: #fff; }

/* ---------- Grain + cursor ---------- */
.grain {
  position: fixed; inset: -100%; z-index: 9990; pointer-events: none; opacity: 0.028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(6) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); } 60% { transform: translate(-2%, 6%); } 80% { transform: translate(5%, -2%); } 100% { transform: translate(0, 0); } }

.cursor { position: fixed; inset: 0; z-index: 9999; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); will-change: transform; }
.cursor__dot { width: 6px; height: 6px; background: var(--green); }
.cursor__ring { width: 36px; height: 36px; border: 1.5px solid rgba(49, 88, 36, 0.6); transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(49, 88, 36, 0.12); border-color: transparent; }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--bg-warm); display: grid; place-items: center; transition: opacity 0.7s var(--ease), visibility 0.7s; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo { width: clamp(180px, 30vw, 280px); margin: 0 auto 28px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.1s forwards; }
.preloader__bar { width: 220px; height: 2px; margin: 0 auto; background: rgba(22,24,15,0.1); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-bright)); transition: width 0.3s var(--ease); }
.preloader__tag { margin-top: 18px; color: var(--muted); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Buttons / labels ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; font-weight: 600; font-size: 15px; letter-spacing: 0.01em; transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s; white-space: nowrap; }
.btn--pill { border-radius: 999px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 10px 30px -12px rgba(49,88,36,0.6); }
.btn--primary:hover { background: var(--green-deep); box-shadow: 0 16px 40px -12px rgba(49,88,36,0.7); transform: translateY(-2px); }
.btn--light { background: var(--ink); color: #fff; }
.btn--light:hover { background: #000; }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-strong); background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--green); }
.btn--paper { background: #fff; color: var(--ink); }
.btn--paper:hover { background: var(--gold-soft); }
.btn__arrow { display: inline-block; transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.eyebrow { display: inline-flex; align-items: flex-start; line-height: 1.5; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.eyebrow__dot { flex: 0 0 7px; margin-top: 6px; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(49,88,36,0.15); }
.eyebrow--light { color: #b7dca6; }
.eyebrow--light .eyebrow__dot { box-shadow: 0 0 0 4px rgba(183,220,166,0.2); }
.badge { display: inline-block; padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.badge--gold { background: var(--gold-soft); color: #8a6218; }
.badge--green { background: var(--green-soft); color: var(--green-deep); }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, transform 0.5s var(--ease); }
.header.is-scrolled { padding: 10px 0; background: rgba(255,255,255,0.78); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(22,24,15,0.25); }
.header.is-hidden { transform: translateY(-110%); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__icon { width: 38px; height: 38px; border-radius: 50%; box-shadow: 0 6px 18px -6px rgba(49,88,36,0.6); }
.nav__logo { width: 112px; height: auto; }
.nav__links { display: flex; gap: 6px; }
.nav__links a { position: relative; display: inline-block; padding: 10px 14px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); border-radius: 999px; transition: color 0.25s, background 0.25s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--green); background: var(--sage); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), top 0.35s var(--ease); }
.nav__burger span:first-child { top: 17px; } .nav__burger span:last-child { top: 25px; }
.nav__burger.is-open span:first-child { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
.hero__content > *, .contact__grid > *, .faq__grid > *, .jackets__grid > *, .barefoot__intro > *, .barefoot__feature > *, .story__grid > *, .vellies__head > *, .section__head--row > *, .reviews__head > *, .craft__head > *, .conservation > * { min-width: 0; }
.section { position: relative; padding: clamp(90px, 12vw, 160px) 0; }
.section--sage { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--sage) 100%); }
.section--dark { background: var(--green-dark); color: #fff; }
.section--dark .section__lead { color: rgba(255,255,255,0.72); }
.section__head { max-width: 900px; margin-bottom: clamp(44px, 6vw, 80px); }
.section__head--row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; max-width: none; }
.section__title { font-size: clamp(32px, 4.4vw, 64px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.98; text-wrap: balance; color: var(--ink); }
.section__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; font-size: 1.14em; line-height: 0.9; color: var(--green); }
.section--dark .section__title { color: #fff; }
.section--dark .section__title em { color: #f3e3bd; }
.section__lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; font-weight: 300; }
.section__lead strong { color: var(--ink); font-weight: 600; }
.section--dark .section__lead strong { color: #fff; }
.h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 56px; isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f0 55%, #edf0e6 100%); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.hero__glow--a { width: 60vw; height: 60vw; left: -22vw; bottom: -32vw; background: radial-gradient(circle, rgba(49,88,36,0.22), transparent 65%); }
.hero__glow--b { width: 50vw; height: 50vw; right: -14vw; top: -22vw; background: radial-gradient(circle, rgba(201,150,46,0.24), transparent 65%); }
.hero__wm { position: absolute; left: 50%; top: 46%; z-index: 1; transform: translate(-50%, -50%); font-family: var(--font-head); font-weight: 900; font-size: clamp(72px, 17.5vw, 300px); line-height: 1; letter-spacing: -0.04em; color: rgba(49,88,36,0.03); -webkit-text-stroke: 1.5px rgba(49,88,36,0.2); pointer-events: none; white-space: nowrap; user-select: none; will-change: transform; }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); gap: clamp(24px, 3vw, 48px); align-items: center; }
.hero__text { position: relative; min-width: 0; }
.hero__title { position: relative; font-size: clamp(48px, 7vw, 108px); font-weight: 900; text-transform: uppercase; line-height: 0.88; letter-spacing: -0.045em; margin: 6px 0 0; color: var(--ink); }
.hero__line { display: block; overflow: hidden; padding: 0.04em 0.06em 0.06em 0; margin-left: -0.02em; }
.hero__line--1 { position: relative; }
.hero__line--2 { position: relative; margin-top: -0.14em; }
.hero__word { display: inline-block; white-space: nowrap; }
.hero__word .ch { display: inline-block; transform: translateY(110%); opacity: 0; }
.hero__word--glow { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.015em; font-size: 1.12em; color: var(--green); padding-right: 0.08em; clip-path: inset(0 100% 0 0); }
.hero__copy { position: relative; margin-top: 26px; }
.hero__text::before { content: ""; position: absolute; inset: -8% -10% -6% -14%; z-index: -1; background: radial-gradient(ellipse at 45% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 74%); pointer-events: none; }
.hero__sub { font-size: clamp(16px, 1.25vw, 19px); color: var(--muted); max-width: 46ch; font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__trust { margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.hero__trust .stars { font-size: 12px; margin-right: 4px; }
.hero__trust strong { color: var(--ink); font-weight: 700; }


/* stage: product floats over the headline, sandwiched between the two lines */
.hero__stage { position: relative; width: 100%; max-width: 660px; margin-left: auto; aspect-ratio: 1; z-index: 2; display: grid; place-items: center; perspective: 1200px; transform-style: preserve-3d; }
.hero__orb { position: absolute; width: 80%; height: 80%; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.6), rgba(217,232,207,0.5) 45%, rgba(237,240,230,0) 72%); box-shadow: inset 0 -30px 60px rgba(49,88,36,0.08); animation: breathe 7s ease-in-out infinite; }
.hero__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(22,24,15,0.12); }
.hero__ring--1 { width: 96%; height: 96%; animation: spin 40s linear infinite; border-style: dashed; }
.hero__ring--2 { width: 66%; height: 66%; border-color: rgba(49,88,36,0.35); animation: spin 26s linear infinite reverse; }
.hero__ring--2::after { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(49,88,36,0.18); }
.hero__product { position: absolute; inset: 9% 4% 14%; display: grid; place-items: center; opacity: 0; pointer-events: none; will-change: transform, opacity; }
.hero__product.is-active { opacity: 1; }
.hero__product img { width: 96%; max-height: 96%; object-fit: contain; filter: drop-shadow(0 44px 50px rgba(22,24,15,0.38)); animation: float 6s ease-in-out infinite; }
.hero__product[data-product="atlas"] img { width: 66%; }
.hero__shadow { position: absolute; bottom: 9%; width: 55%; height: 8%; border-radius: 50%; background: radial-gradient(ellipse, rgba(22,24,15,0.4), transparent 70%); filter: blur(10px); animation: shadow 6s ease-in-out infinite; }
.hero__puff { position: absolute; bottom: 6%; left: 50%; width: 60%; height: 22%; border-radius: 50%; transform: translateX(-50%) scale(0.2); opacity: 0; background: radial-gradient(ellipse, rgba(201,150,46,0.55), rgba(217,232,207,0.5) 40%, transparent 70%); filter: blur(6px); pointer-events: none; }
.hero__tag { position: absolute; z-index: 3; padding: 12px 18px; border-radius: 16px; background: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: flex; flex-direction: column; gap: 2px; box-shadow: 0 20px 40px -18px rgba(22,24,15,0.35); }
.hero__tag span { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.hero__tag small { color: var(--green); font-size: 12px; letter-spacing: 0.04em; font-weight: 600; }
.hero__tag--1 { left: 0; top: 6%; animation: float 7s ease-in-out infinite 0.6s; }
.hero__tag--2 { right: 0; bottom: 0; animation: float 8s ease-in-out infinite 1.4s; }

/* product switcher */
.hero__switch { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hswitch { position: relative; display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid var(--line); backdrop-filter: blur(10px); overflow: hidden; transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease); text-align: left; }
.hswitch:hover { transform: translateY(-2px); background: #fff; }
.hswitch.is-active { border-color: var(--green); background: #fff; box-shadow: 0 14px 30px -18px rgba(49,88,36,0.5); }
.hswitch img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; background: var(--sage); padding: 5px; }
.hswitch span { display: flex; flex-direction: column; line-height: 1.15; }
.hswitch b { font-family: var(--font-head); font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; }
.hswitch small { font-size: 12px; color: var(--muted); }
.hswitch__bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--green); transform-origin: left; transform: scaleX(0); }
.hswitch.is-active .hswitch__bar { animation: swbar var(--sw-dur, 5s) linear forwards; }
@keyframes swbar { to { transform: scaleX(1); } }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--green)); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(-100%); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-18px) rotate(0.5deg); } }
@keyframes shadow { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(0.82); opacity: 0.55; } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.reduced-motion .hero__word .ch, .no-js .hero__word .ch { transform: none; opacity: 1; }
.reduced-motion .hero__word--glow, .no-js .hero__word--glow { clip-path: none; }

/* ---------- Marquee ---------- */
.marquee { position: relative; z-index: 2; overflow: hidden; background: var(--green); color: #fff; padding: 16px 0; }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: marquee 38s linear infinite; font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap; }
.marquee__track i { font-style: normal; color: #b7dca6; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Collections ---------- */
.collections { background: #fff; }
.collections__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 340px 340px; gap: 18px; }
.ccard { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: var(--sage); box-shadow: var(--shadow-card); transform-style: preserve-3d; transition: box-shadow 0.4s; }
.ccard:hover { box-shadow: var(--shadow-card-hover); }
.ccard--tall { grid-row: span 2; }
.ccard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 0.6s; }
.ccard:hover img { transform: scale(1.06); }
.ccard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,33,14,0.92) 0%, rgba(18,33,14,0.35) 45%, transparent 75%); }
.ccard__body { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; transform: translateZ(40px); color: #fff; }
.ccard__num { font-size: 12px; letter-spacing: 0.2em; color: #b7dca6; font-weight: 700; }
.ccard h3 { font-size: clamp(26px, 2.4vw, 34px); font-weight: 800; text-transform: uppercase; margin: 6px 0 8px; }
.ccard p { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 34ch; }
.ccard__link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #b7dca6; opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.ccard:hover .ccard__link { opacity: 1; transform: none; }

/* ---------- Vellies horizontal ---------- */
.vellies { padding: 0; overflow: hidden; }
.vellies__pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(90px, 10vw, 120px) 0 60px; }
.vellies__head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.vellies__track { display: flex; gap: 24px; padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2)); padding-right: var(--gutter); will-change: transform; }
.pcard { flex: 0 0 auto; width: clamp(320px, 34vw, 480px); background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow 0.4s, transform 0.5s var(--ease); }
.pcard:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.pcard__media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; background: radial-gradient(circle at 50% 60%, #ffffff, var(--sage) 75%); overflow: hidden; }
.chip { position: absolute; left: 16px; top: 16px; z-index: 2; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,0.9); border: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.pcard__glow { position: absolute; width: 60%; height: 60%; border-radius: 50%; background: radial-gradient(circle, rgba(49,88,36,0.18), transparent 70%); filter: blur(20px); }
.pcard__img { position: relative; width: 82%; z-index: 1; filter: drop-shadow(0 26px 24px rgba(22,24,15,0.3)); transition: transform 0.8s var(--ease), opacity 0.35s; }
.pcard:hover .pcard__img { transform: translateY(-8px) rotate(-3deg) scale(1.04); }
.pcard__img.is-swapping { opacity: 0; transform: translateY(10px) scale(0.96); }
.pcard__media--duo .pcard__img { width: 62%; position: absolute; }
.pcard__img--a { left: 4%; top: 12%; } .pcard__img--b { right: 4%; bottom: 8%; width: 52% !important; }
.pcard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard__cat { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.pcard__name { font-size: 26px; font-weight: 800; text-transform: uppercase; }
.pcard__desc { color: var(--muted); font-size: 15px; }
.swatches { display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.swatch { width: 26px; height: 26px; border-radius: 50%; background: var(--c); border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(22,24,15,0.18); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.swatch:hover { transform: scale(1.15); }
.swatch.is-active { box-shadow: 0 0 0 2px var(--green); }
.swatch__label { font-size: 13px; color: var(--muted); margin-left: 6px; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.pcard__price { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.pcard__price--light { color: #fff; font-size: 28px; }
.vellies__progress { margin: 40px auto 0; width: min(320px, 60%); height: 2px; background: rgba(22,24,15,0.12); border-radius: 2px; overflow: hidden; }
.vellies__progress span { display: block; width: 0; height: 100%; background: var(--green); }

/* ---------- Barefoot ---------- */
.barefoot { background: #fff; }
.barefoot__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: clamp(60px, 8vw, 110px); }
.barefoot__num { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; font-family: var(--font-head); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; }
.barefoot__big { font-size: clamp(64px, 9vw, 140px); color: var(--green); font-variant-numeric: tabular-nums; letter-spacing: -0.05em; }
.barefoot__hz { font-size: clamp(28px, 4vw, 48px); color: var(--muted-2); }
.barefoot__feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-bottom: clamp(70px, 8vw, 110px); }
.barefoot__photo { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.parallax img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.barefoot__photo figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,0.82); backdrop-filter: blur(12px); font-size: 13.5px; color: var(--ink-2); }
.barefoot__spot p { color: var(--muted); font-weight: 300; }
.checklist { margin: 22px 0 28px; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--ink-2); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(49,88,36,0.15); }
.checklist li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.barefoot__products { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini { display: flex; flex-direction: column; gap: 8px; padding: 16px; border-radius: 20px; background: var(--bg-warm); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.mini img { width: 80%; margin: 0 auto; filter: drop-shadow(0 16px 20px rgba(22,24,15,0.25)); }
.mini div { display: flex; flex-direction: column; }
.mini strong { font-family: var(--font-head); font-size: 15px; }
.mini span { font-size: 12.5px; color: var(--muted); }
.mini em { font-style: normal; font-weight: 700; color: var(--green); margin-top: 4px; }
.barefoot__why { font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; margin-bottom: 26px; }
.benefits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.benefit { padding: 22px 20px 24px; border-radius: 22px; background: var(--bg-warm); border: 1px solid var(--line); transition: box-shadow 0.3s, background 0.3s; transform-style: preserve-3d; }
.benefit:hover { background: #fff; box-shadow: var(--shadow-card-hover); }
.benefit img { width: 60px; height: 60px; margin-bottom: 16px; transform: translateZ(30px); }
.benefit h4 { font-size: 16px; margin-bottom: 8px; }
.benefit p { font-size: 13.5px; color: var(--muted); }
.barefoot__note { margin-top: 30px; padding: 18px 22px; border-radius: 16px; background: var(--green-soft); color: var(--green-deep); font-size: 15px; }

/* ---------- Jackets (dark accent section) ---------- */
.jackets { overflow: hidden; background: var(--green-dark); color: #fff; }
.jackets__bg { position: absolute; inset: 0; background: radial-gradient(circle at 28% 50%, rgba(201,150,46,0.22), transparent 42%), radial-gradient(circle at 78% 30%, rgba(61,187,8,0.18), transparent 45%); }
.jackets__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.jackets__visual { position: relative; }
.jackets__stage { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: radial-gradient(ellipse at 50% 30%, #2a4a22 0%, #16281300 60%), linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); }
.jackets__glow { position: absolute; left: 50%; top: 40%; width: 80%; height: 60%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(243,227,189,0.28), transparent 68%); filter: blur(30px); }
.jackets__floor { position: absolute; left: 50%; bottom: 6%; width: 80%; height: 9%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%); filter: blur(8px); }
.jackets__fig { position: absolute; bottom: 12%; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.jackets__fig img { width: auto; height: 100%; max-width: none; filter: drop-shadow(0 30px 30px rgba(0,0,0,0.5)); animation: float 7s ease-in-out infinite; }
.jackets__fig--w { left: 5%; height: 70%; z-index: 1; }
.jackets__fig--m { right: 4%; height: 80%; z-index: 2; }
.jackets__fig--m img { animation-delay: 1.6s; animation-duration: 8s; }
.jackets__fig figcaption { position: absolute; bottom: -34px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #f3e3bd; white-space: nowrap; }
.rain { position: absolute; inset: 0; pointer-events: none; z-index: 3; opacity: 0.5; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='240'%3E%3Cg stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' opacity='0.55'%3E%3Cline x1='18' y1='10' x2='14' y2='46'/%3E%3Cline x1='72' y1='60' x2='68' y2='92'/%3E%3Cline x1='126' y1='20' x2='122' y2='62'/%3E%3Cline x1='44' y1='150' x2='40' y2='190'/%3E%3Cline x1='100' y1='170' x2='96' y2='206'/%3E%3Cline x1='146' y1='120' x2='142' y2='150'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='200'%3E%3Cg stroke='%23ffffff' stroke-width='0.8' stroke-linecap='round' opacity='0.35'%3E%3Cline x1='10' y1='30' x2='8' y2='60'/%3E%3Cline x1='60' y1='110' x2='58' y2='150'/%3E%3Cline x1='98' y1='10' x2='96' y2='44'/%3E%3Cline x1='40' y1='170' x2='38' y2='196'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 240px, 120px 200px; animation: rain 0.9s linear infinite, rain2 1.4s linear infinite; }
@keyframes rain { to { background-position: 0 240px, 0 0; } }
@keyframes rain2 { to { background-position: 0 240px, 0 200px; } }
.jackets .eyebrow { color: #b7dca6; }
.jackets .section__title { color: #fff; }
.jackets .section__title em { color: #f3e3bd; }
.jackets .section__lead { color: rgba(255,255,255,0.75); }
.jackets .section__lead strong { color: #fff; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.specs li { padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; }
.specs strong { font-family: var(--font-head); font-size: 22px; color: #f3e3bd; }
.specs span { font-size: 13px; color: rgba(255,255,255,0.65); }
.jackets__foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.jackets .btn--primary { background: #fff; color: var(--green-dark); box-shadow: 0 10px 30px -12px rgba(0,0,0,0.6); }
.jackets .btn--primary:hover { background: var(--gold-soft); }

/* ---------- Story ---------- */
.story { background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%); }
.story__head { max-width: 980px; margin-bottom: 50px; }
.story__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: clamp(60px, 7vw, 100px); }
.pillar { padding: 26px 26px 28px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pillar span { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 10px; }
.pillar p { font-family: var(--font-head); font-size: 20px; font-weight: 700; line-height: 1.25; }
.story__grid { display: grid; grid-template-columns: 0.8fr 1.2fr 0.8fr; gap: 24px; align-items: center; margin-bottom: clamp(70px, 8vw, 120px); }
.story__img { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-card); }
.story__img--b { margin-top: 80px; }
.story__text { padding: 0 clamp(8px, 2vw, 36px); }
.story__text p { color: var(--muted); margin-bottom: 16px; }
.craft__head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 36px; }
.craft__head p { color: var(--muted); }
.craft__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: clamp(60px, 7vw, 100px); }
.step { position: relative; padding: 28px 24px 30px; border-radius: 22px; background: var(--sage); overflow: hidden; transition: background 0.3s; }
.step:hover { background: var(--sage-2); }
.step::before { content: ""; position: absolute; inset: auto -30% -40% auto; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(49,88,36,0.16), transparent 70%); }
.step__n { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: rgba(49,88,36,0.25); line-height: 1; display: block; margin-bottom: 18px; }
.step h4 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); }
.conservation { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; background: var(--green-dark); color: #fff; box-shadow: var(--shadow-card); }
.conservation__img { aspect-ratio: 1; }
.conservation__img img { width: 100%; height: 100%; object-fit: cover; }
.conservation__copy { padding: clamp(30px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.conservation__copy p { color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.conservation .badge--green { background: rgba(255,255,255,0.12); color: #b7dca6; }
.conservation .btn--dark { background: #fff; color: var(--green-dark); align-self: flex-start; }
.conservation .btn--dark:hover { background: var(--gold-soft); }

/* ---------- Gear ---------- */
.gear { background: #fff; }
.gear__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gcard { border-radius: 22px; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow 0.4s, transform 0.5s var(--ease); transform-style: preserve-3d; box-shadow: var(--shadow-card); }
.gcard:hover { box-shadow: var(--shadow-card-hover); }
.gcard__media { aspect-ratio: 1; display: grid; place-items: center; padding: 26px; background: radial-gradient(circle at 50% 70%, #fff, var(--sage) 80%); }
.gcard__media img { width: 86%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(22,24,15,0.28)); transition: transform 0.7s var(--ease); transform: translateZ(30px); }
.gcard:hover .gcard__media img { transform: translateZ(40px) translateY(-6px) scale(1.05); }
.gcard__body { padding: 18px 22px 22px; }
.gcard h3 { font-size: 17px; margin-bottom: 6px; }
.gcard p { font-size: 13.5px; color: var(--muted); min-height: 3.2em; }
.gcard__price { display: inline-block; margin-top: 12px; font-family: var(--font-head); font-weight: 800; color: var(--green); }

/* ---------- Noso ---------- */
.noso { overflow: hidden; background: linear-gradient(180deg, var(--bg-warm) 0%, var(--sage) 100%); }
.noso__float { position: absolute; inset: 0; pointer-events: none; }
.noso__patch { position: absolute; width: clamp(70px, 9vw, 150px); height: auto; filter: drop-shadow(0 18px 22px rgba(22,24,15,0.3)); }
.noso__patch--1 { left: 4%; top: 12%; } .noso__patch--2 { right: 6%; top: 8%; } .noso__patch--3 { left: 10%; bottom: 14%; }
.noso__patch--4 { right: 12%; bottom: 22%; } .noso__patch--5 { left: 40%; top: 4%; width: clamp(50px, 6vw, 100px); } .noso__patch--6 { right: 30%; bottom: 6%; width: clamp(50px, 6vw, 100px); }
.noso__head { position: relative; max-width: 820px; margin: 0 auto 60px; text-align: center; }
.noso__head .section__lead { margin: 0 auto; }
.howto { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.howto__step { position: relative; padding: 28px 26px 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.howto__step span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 800; margin-bottom: 18px; box-shadow: 0 10px 24px -8px rgba(49,88,36,0.7); }
.howto__step h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.howto__step p { color: var(--muted); font-size: 15px; }
.noso__gallery { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.noso__gallery figure { margin: 0; position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-card); }
.noso__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.noso__gallery figure:hover img { transform: scale(1.07); }
.noso__gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); }
.noso__tags { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.noso__tags li { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

/* ---------- Reviews ---------- */
.reviews { padding-bottom: 0; overflow: hidden; background: #fff; }
.reviews__head { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; margin-bottom: 50px; }
.reviews__score { display: flex; flex-direction: column; align-items: flex-start; padding: 28px 32px; border-radius: 24px; background: var(--green-dark); color: #fff; box-shadow: 0 30px 50px -30px rgba(18,33,14,0.6); }
.reviews__big { font-family: var(--font-head); font-size: 82px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 18px; }
.reviews__count { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.reviews__marquee { overflow: hidden; padding: 10px 0 clamp(90px, 10vw, 140px); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.reviews__track { display: flex; gap: 18px; width: max-content; animation: marquee 60s linear infinite; }
.reviews__marquee:hover .reviews__track { animation-play-state: paused; }
.review { margin: 0; width: 380px; padding: 28px 28px 26px; border-radius: 22px; background: var(--bg-warm); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.review .stars { font-size: 14px; }
.review p { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.review cite { font-style: normal; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: auto; }

/* ---------- Lookbook ---------- */
.lookbook { padding: clamp(70px, 8vw, 110px) 0; background: var(--bg-warm); overflow: hidden; }
.lookbook__head { text-align: center; margin-bottom: 40px; }
.lookbook__head .section__lead { margin: 0 auto; }
.lookbook__row { display: flex; gap: 16px; width: max-content; animation: marquee 70s linear infinite; margin-bottom: 16px; }
.lookbook__row--rev { animation-direction: reverse; animation-duration: 84s; }
.lookbook:hover .lookbook__row { animation-play-state: paused; }
.lookbook__row figure { margin: 0; flex: 0 0 auto; width: clamp(200px, 22vw, 320px); aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.lookbook__row figure:nth-child(even) { aspect-ratio: 1; align-self: center; width: clamp(180px, 19vw, 280px); }
.lookbook__row img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.lookbook__row figure:hover img { transform: scale(1.06); }
.lookbook__row figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.faq__head { position: sticky; top: 120px; }
.faq .section__title { font-size: clamp(30px, 3.4vw, 48px); }
.faq__head a { color: var(--green); border-bottom: 1px solid rgba(49,88,36,0.4); font-weight: 600; }
.accordion { display: grid; gap: 10px; }
.acc { border-radius: 18px; background: #fff; border: 1px solid var(--line); transition: border-color 0.3s, box-shadow 0.3s; }
.acc[open] { border-color: rgba(49,88,36,0.35); box-shadow: var(--shadow-card); }
.acc summary { list-style: none; cursor: pointer; padding: 22px 60px 22px 24px; font-family: var(--font-head); font-weight: 700; font-size: 17px; position: relative; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: translateY(-70%) rotate(45deg); transition: transform 0.35s var(--ease); }
.acc[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.acc__body { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- Contact (dark closing section) ---------- */
.contact { overflow: hidden; background: var(--green-dark); color: #fff; }
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; filter: saturate(0.8); }
.contact__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--green-dark) 0%, rgba(18,33,14,0.55) 50%, var(--green-dark) 100%); }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.contact .eyebrow { color: #b7dca6; }
.contact .section__title { color: #fff; }
.contact .section__title em { color: #f3e3bd; }
.contact__details { display: grid; gap: 14px; margin: 30px 0; }
.contact__details p { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: baseline; font-size: 16.5px; }
.contact__details span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #b7dca6; font-weight: 700; }
.contact__details a:hover { color: #f3e3bd; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); transition: background 0.3s, transform 0.3s var(--ease), color 0.3s; }
.socials a:hover { background: #fff; color: var(--green-dark); transform: translateY(-3px); }
.signup { padding: clamp(26px, 3vw, 40px); border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6); }
.signup h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.signup > p { color: var(--muted); margin-bottom: 22px; }
.signup__row { display: flex; gap: 10px; }
.signup input { flex: 1; min-width: 0; padding: 16px 20px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--bg-warm); color: var(--ink); font: inherit; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.signup input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(49,88,36,0.12); }
.signup small { display: block; margin-top: 14px; font-size: 12px; color: var(--muted); }
.signup__done { display: none; margin-top: 16px; color: var(--green); font-weight: 600; }
.signup.is-sent .signup__row, .signup.is-sent small { display: none; }
.signup.is-sent .signup__done { display: block; }

/* ---------- Footer ---------- */
.footer { background: #0d1a0a; color: #fff; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer__brand img { width: 170px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 32ch; }
.footer h4 { font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #b7dca6; margin-bottom: 16px; }
.footer ul { display: grid; gap: 8px; }
.footer ul a { color: rgba(255,255,255,0.72); font-size: 15px; transition: color 0.25s; }
.footer ul a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer__tag { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }


/* ---------- Final sale components ---------- */
.announce { background: var(--ink); color: #fff; overflow: hidden; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 0; }
.announce__track { display: flex; gap: 34px; width: max-content; white-space: nowrap; animation: marquee 34s linear infinite; }
.announce__track b { color: #f3e3bd; font-weight: 700; }
.announce__track i { font-style: normal; color: #b7dca6; }
.announce:hover .announce__track { animation-play-state: paused; }
.header { padding-top: 0 !important; }
.header .nav { padding-top: 14px; padding-bottom: 6px; }
.header.is-scrolled .nav { padding-top: 8px; padding-bottom: 4px; }
.nav__sale { color: #b3402e !important; font-weight: 700 !important; }
.nav__sale::before { content: "●"; font-size: 8px; margin-right: 6px; vertical-align: 2px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.price { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--ink); display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price s, .pcard__price s, .gcard__price s, .hswitch small s, .mini em s, figcaption s { color: var(--muted-2); font-weight: 500; font-size: 0.72em; text-decoration: line-through; text-decoration-color: #b3402e; text-decoration-thickness: 2px; margin-right: 2px; }
.hero__sticker { position: absolute; top: 4%; right: 2%; z-index: 4; width: 96px; height: 96px; border-radius: 50%; background: #b3402e; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 16px 30px -12px rgba(179,64,46,0.7), 0 0 0 6px rgba(255,255,255,0.7); animation: wobble 6s ease-in-out infinite; }
.hero__sticker b { font-family: var(--font-head); font-size: 28px; font-weight: 900; letter-spacing: -0.04em; }
.hero__sticker small { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }
@keyframes wobble { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-8px); } }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__trust { max-width: 52ch; }

.clearance { background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%); }
.clearance__head { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: end; margin-bottom: 40px; }
.clearance__head .section__lead { margin-top: 18px; }
.countdown { padding: 20px 24px; border-radius: 22px; background: var(--ink); color: #fff; box-shadow: 0 30px 50px -30px rgba(22,24,15,0.5); }
.countdown__label { display: block; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #b7dca6; margin-bottom: 10px; }
.countdown__grid { display: flex; gap: 8px; }
.countdown__grid div { display: flex; flex-direction: column; align-items: center; min-width: 62px; padding: 10px 8px; border-radius: 14px; background: rgba(255,255,255,0.07); }
.countdown__grid b { font-family: var(--font-head); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.countdown__grid small { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.clearance__rows { display: grid; gap: 34px; }
.clearance__rowhead { display: flex; align-items: baseline; gap: 16px; margin-bottom: 14px; }
.clearance__rowhead h3 { font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; }
.clearance__rowhead span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.clearance__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scard { position: relative; display: flex; flex-direction: column; background: #fff; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow-card); overflow: hidden; transition: box-shadow 0.4s; transform-style: preserve-3d; }
.scard:hover { box-shadow: var(--shadow-card-hover); }
.scard__media { position: relative; padding: 44px 20px 12px; background: radial-gradient(circle at 50% 55%, #fff, var(--sage) 80%); }
.scard__img { width: 90%; height: 170px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(22,24,15,0.28)); transition: transform 0.6s var(--ease), opacity 0.3s; transform: translateZ(30px); }
.scard:hover .scard__img { transform: translateZ(40px) translateY(-6px) scale(1.04); }
.scard__img.is-swapping { opacity: 0; }
.scard__views { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.scard__views button { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--line); padding: 6px; transition: border-color 0.3s; }
.scard__views button img { width: 100%; height: 100%; object-fit: contain; }
.scard__views button.is-active { border-color: var(--green); box-shadow: 0 0 0 2px rgba(49,88,36,0.18); }
.scard__body { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.scard__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px rgba(22,24,15,0.2); vertical-align: -1px; margin-right: 2px; }
.scard__body h3 { font-size: 21px; text-transform: uppercase; letter-spacing: -0.02em; }
.scard__body h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--green); font-size: 1.15em; }
.scard .sizes > span:not(.sizes__label) { min-width: 30px; padding: 4px 6px; font-size: 12px; border-radius: 8px; }
.scard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.scard .price { font-size: 21px; }
.clearance__desc { margin: 34px auto 0; max-width: 78ch; text-align: center; color: var(--muted); font-size: 15.5px; }
.bfcard { position: relative; display: grid; grid-template-rows: auto 1fr; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-card); overflow: hidden; transition: box-shadow 0.4s, transform 0.5s var(--ease); }
.bfcard:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.sale__off { position: absolute; left: 18px; top: 18px; z-index: 3; padding: 8px 14px; border-radius: 999px; background: #b3402e; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 0.02em; box-shadow: 0 10px 20px -10px rgba(179,64,46,0.8); }
.bfcard__media { position: relative; padding: 46px 26px 18px; background: radial-gradient(circle at 50% 55%, #fff, var(--sage) 78%); display: grid; gap: 14px; }
.bfcard__glow { position: absolute; left: 50%; top: 50%; width: 60%; height: 50%; transform: translate(-50%, -55%); border-radius: 50%; background: radial-gradient(circle, rgba(49,88,36,0.16), transparent 70%); filter: blur(22px); }
.bfcard__img { position: relative; width: 88%; max-height: 300px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 26px 26px rgba(22,24,15,0.3)); transition: transform 0.6s var(--ease), opacity 0.3s; }
.bfcard__img.is-swapping { opacity: 0; transform: translateY(10px) scale(0.97); }
.bfcard__thumbs { position: relative; display: flex; gap: 8px; justify-content: center; }
.bfcard__thumbs button { width: 62px; height: 62px; border-radius: 14px; background: #fff; border: 1px solid var(--line); padding: 8px; display: grid; place-items: center; transition: border-color 0.3s, transform 0.3s var(--ease); }
.bfcard__thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.bfcard__thumbs button:hover { transform: translateY(-2px); }
.bfcard__thumbs button.is-active { border-color: var(--green); box-shadow: 0 0 0 2px rgba(49,88,36,0.18); }
.bfcard__body { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 12px; }
.bfcard__body h3 { font-size: 26px; text-transform: uppercase; letter-spacing: -0.02em; }
.bfcard__body h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--green); font-size: 1.15em; }
.bfcard__desc { color: var(--muted); font-size: 15px; }
.instock { color: #1f7a2e; font-weight: 700; }
.sizes { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 2px; }
.sizes__label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.sizes > span:not(.sizes__label) { min-width: 36px; padding: 6px 8px; border-radius: 10px; border: 1px solid var(--line-strong); font-size: 13px; font-weight: 600; text-align: center; }
.sizes small { flex-basis: 100%; font-size: 12.5px; color: #1f7a2e; font-weight: 600; }
.bfcard__feats { display: flex; flex-wrap: wrap; gap: 6px; }
.bfcard__feats li { padding: 6px 11px; border-radius: 999px; background: var(--sage); font-size: 12px; font-weight: 600; color: var(--ink-2); }
.bfcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.clearance__why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.clearance__why li { padding: 20px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); font-size: 14.5px; color: var(--muted); }
.clearance__why b { display: block; color: var(--ink); font-family: var(--font-head); font-size: 15.5px; margin-bottom: 4px; }
.soldout { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.soldout::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #b3402e; }
.soldout--light { color: rgba(255,255,255,0.7); }
.chip--out { background: var(--ink); color: #fff; border-color: var(--ink); }
.pcard:has(.chip--out) .pcard__img { filter: drop-shadow(0 26px 24px rgba(22,24,15,0.3)) saturate(0.75); }
.ccard__num--live { color: #7fd156; }
.ccard--live { outline: 2px solid var(--green); outline-offset: 2px; }
.gcard .soldout { margin-top: 12px; }
.mini { color: inherit; }
.farewell { margin: 0 0 44px; padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); background: var(--green-dark); color: #fff; }
.farewell p { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px, 2.1vw, 28px); line-height: 1.35; margin-bottom: 14px; }
.farewell cite { font-style: normal; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #b7dca6; }
@media (max-width: 960px) {
  .clearance__head { grid-template-columns: 1fr; }
  .clearance__grid { grid-template-columns: repeat(2, 1fr); }
  .clearance__why { grid-template-columns: 1fr; }
  .hero__sticker { width: 80px; height: 80px; top: 2%; right: 0; } .hero__sticker b { font-size: 24px; }
}
@media (max-width: 600px) {
  .countdown__grid div { min-width: 0; flex: 1; }
  .clearance__grid { grid-template-columns: 1fr; }
  .bfcard__media { padding: 44px 16px 14px; }
  .bfcard__body { padding: 18px 18px 22px; }
}

/* ---------- Reveal defaults ---------- */
[data-reveal] { opacity: 0; transform: translateY(40px); }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .gear__grid { grid-template-columns: repeat(3, 1fr); }
  .craft__steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav__links { position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-family: var(--font-head); font-size: 32px; font-weight: 800; text-transform: uppercase; padding: 8px 20px; color: var(--ink); }
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .hero { padding-top: 110px; padding-bottom: 40px; }
  .hero__content { grid-template-columns: 1fr; gap: 10px; }
  .hero__text { display: contents; }
  .hero__text > .eyebrow { order: 1; margin-bottom: 8px; }
  .hero__title { order: 2; font-size: clamp(48px, 13vw, 100px); }
  .hero__stage { order: 3; width: min(86vw, 440px); margin: 6px auto 4px; }
  .hero__copy { order: 4; margin-top: 4px; }
  .hero__switch { order: 5; }
  .hero__wm { top: 30%; font-size: 21vw; }
  .hero__switch { width: 100%; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .hero__switch::-webkit-scrollbar { display: none; }
  .hswitch { flex: 0 0 auto; }
  .hero__tag--1 { left: 0; top: 4%; } .hero__tag--2 { right: 0; bottom: 0; }
  .hero__scroll { display: none; }
  .jackets__stage { aspect-ratio: 4 / 3; }
  .jackets__fig--w { left: 4%; height: 70%; } .jackets__fig--m { right: 4%; height: 80%; }
  .collections__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ccard { min-height: 300px; } .ccard--tall { grid-row: span 1; grid-column: span 2; min-height: 380px; }
  .vellies__pin { min-height: 0; }
  .vellies__head, .section__head--row, .craft__head { grid-template-columns: 1fr; }
  .vellies__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .vellies__track::-webkit-scrollbar { display: none; }
  .pcard { scroll-snap-align: start; width: min(78vw, 400px); }
  .vellies__progress { display: none; }
  .barefoot__intro, .barefoot__feature, .jackets__grid, .faq__grid, .contact__grid, .conservation { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .story__grid { grid-template-columns: 1fr 1fr; }
  .story__text { grid-column: span 2; order: -1; padding: 0; }
  .story__img--b { margin-top: 0; }
  .story__pillars { grid-template-columns: 1fr; }
  .reviews__head { grid-template-columns: 1fr; }
  .howto, .noso__gallery { grid-template-columns: 1fr 1fr; }
  .noso__patch { opacity: 0.6; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__tag { padding: 9px 12px; } .hero__tag span { font-size: 13px; }
  .hero__stage { width: min(92vw, 380px); }
  .hero__title { font-size: clamp(46px, 14vw, 72px); }
  .hero__trust { font-size: 12.5px; }
  .collections__grid { grid-template-columns: 1fr; } .ccard--tall { grid-column: span 1; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .gear__grid { grid-template-columns: 1fr 1fr; }
  .gcard p { min-height: 0; }
  .craft__steps, .howto, .noso__gallery, .barefoot__products, .specs { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; } .story__text { grid-column: span 1; }
  .review { width: 300px; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__details p { grid-template-columns: 1fr; gap: 2px; }
  .signup__row { flex-direction: column; }
  .jackets__stage { aspect-ratio: 1; }
  .jackets__fig--w { left: 3%; height: 56%; } .jackets__fig--m { right: 3%; height: 64%; }
  .jackets__fig figcaption { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__word .ch { transform: none; opacity: 1; }
}
