/* ==========================================================================
   Collectible Figer — main stylesheet
   Palette: Lime Flash (primary) + Light Green (secondary) on off-white/charcoal
   ========================================================================== */

:root {
  --lime: #c9f31d;          /* Lime Flash */
  --lime-hover: #b8e40a;
  --lime-ink: #3f5200;      /* lime-family text that passes contrast on white */
  --green: #cfeebd;         /* Light Green */
  --green-soft: #ecf8e3;
  --green-mid: #a9dc8e;
  --ink: #1b1e19;           /* dark charcoal */
  --ink-2: #262a23;
  --ink-3: #343a30;
  --gray: #5f655a;          /* neutral gray text (AA on paper) */
  --gray-2: #8b9186;
  --line: #e2e6da;
  --paper: #fafbf6;         /* soft off-white */
  --white: #ffffff;

  --font-display: "Avenir Next", "Segoe UI Variable Display", "SF Pro Display", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(27, 30, 25, .06), 0 2px 8px rgba(27, 30, 25, .05);
  --shadow-md: 0 2px 4px rgba(27, 30, 25, .05), 0 12px 32px rgba(27, 30, 25, .09);
  --shadow-lg: 0 24px 60px rgba(27, 30, 25, .16);
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 .5em; font-weight: 750; }
h1 { font-size: clamp(2.35rem, 6vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); letter-spacing: -.015em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
.on-dark :focus-visible, .site-footer :focus-visible, .mobile-panel :focus-visible { outline-color: var(--lime); }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: var(--lime); padding: 10px 16px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 8px; border-radius: 99px; background: var(--lime); box-shadow: inset 0 0 0 1px rgba(27,30,25,.15); }
.on-dark .eyebrow { color: #c3c9bc; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--gray); max-width: 60ch; }
.on-dark .lead { color: #c3c9bc; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg); font-weight: 700; font-size: .96rem; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .2s, box-shadow .25s var(--ease), border-color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-lime { --bg: var(--lime); --fg: var(--ink); box-shadow: 0 6px 20px rgba(185, 228, 10, .35); }
.btn-lime:hover { --bg: var(--lime-hover); box-shadow: 0 10px 26px rgba(185, 228, 10, .45); }
.btn-dark:hover { --bg: var(--ink-3); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: rgba(27,30,25,.22); }
.btn-ghost:hover { border-color: var(--ink); background: var(--white); }
.on-dark .btn-ghost { --fg: var(--white); border-color: rgba(255,255,255,.3); }
.on-dark .btn-ghost:hover { border-color: var(--lime); background: transparent; color: var(--lime); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .88rem; }

.text-link { font-weight: 700; text-decoration: none; background-image: linear-gradient(var(--lime), var(--lime)); background-size: 100% 6px; background-position: 0 88%; background-repeat: no-repeat; transition: background-size .25s var(--ease); }
.text-link:hover { background-size: 100% 42%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 246, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(27,30,25,.05); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--ink); display: grid; place-items: center; transition: transform .35s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-6deg); }
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.03em; line-height: 1; }
.brand-name span { display: block; font-family: var(--font-mono); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); margin-top: 5px; }

.primary-nav { margin-left: auto; }
.nav-list { list-style: none; margin: 0; padding: 5px; display: flex; gap: 2px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); }
.nav-list a {
  position: relative; display: block; padding: 8px 14px; border-radius: 999px;
  font-size: .87rem; font-weight: 600; color: var(--ink-3); text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.nav-list a:hover { background: var(--green-soft); color: var(--ink); }
.nav-list a[aria-current="page"] { background: var(--ink); color: var(--white); }
.nav-list a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--lime); }
.header-cta { flex: none; }

.menu-toggle {
  display: none; margin-left: auto; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--white); cursor: pointer; place-items: center; box-shadow: var(--shadow-sm);
}
.menu-toggle-bars { display: block; position: relative; width: 20px; height: 14px; }
.menu-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 6px; width: 70%; }
.menu-toggle-bars span:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] { background: var(--lime); border-color: var(--lime); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: var(--header-h) 0 auto 0; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  background: var(--ink); color: var(--white); padding: 12px var(--gutter) 28px;
  border-radius: 0 0 var(--r-lg) var(--r-lg); box-shadow: var(--shadow-lg);
}
.mobile-panel[hidden] { display: none; }
.mobile-panel.is-open { animation: panelIn .32s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-list { list-style: none; margin: 0; padding: 0; }
.mobile-list li + li { border-top: 1px solid rgba(255,255,255,.09); }
.mobile-list a { display: flex; align-items: baseline; gap: 16px; padding: 16px 4px; text-decoration: none; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.mobile-list a small { font-family: var(--font-mono); font-size: .72rem; color: var(--green-mid); letter-spacing: .08em; }
.mobile-list a[aria-current="page"] { color: var(--lime); }
.mobile-list a[aria-current="page"]::after { content: "Current"; margin-left: auto; align-self: center; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; background: var(--lime); color: var(--ink); padding: 4px 8px; border-radius: 99px; }
.mobile-panel .btn { width: 100%; margin-top: 18px; }
.mobile-contact { margin-top: 20px; font-size: .88rem; color: #c3c9bc; }
.mobile-contact a { color: var(--green); }

@media (max-width: 1319px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
}
@media (min-width: 1320px) { .mobile-panel { display: none !important; } }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 40px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin: 0; max-width: 18ch; }
.section-head p { margin: 0; max-width: 46ch; color: var(--gray); }
.on-dark { background: var(--ink); color: var(--white); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(36px, 6vw, 80px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; right: -220px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,243,29,.28), rgba(201,243,29,0) 65%); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.02fr 1fr; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .3em; background: var(--lime); z-index: -1; border-radius: 4px; transform: skewX(-8deg); }
.hero h1 em { z-index: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.shelf-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.shelf-tags a { display: inline-block; padding: 7px 13px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--ink-3); text-decoration: none; transition: border-color .2s, background-color .2s; }
.shelf-tags a:hover { background: var(--green-soft); border-color: var(--green-mid); }

.vitrine { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: auto auto; gap: 14px; }
.vitrine-item { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-md); }
.vitrine-item img { width: 100%; height: 100%; object-fit: cover; }
.vitrine-item:nth-of-type(1) { grid-row: span 2; aspect-ratio: 3 / 4.2; }
.vitrine-item:nth-of-type(2), .vitrine-item:nth-of-type(3) { aspect-ratio: auto; min-height: 0; }
.vitrine-item picture, .cat-media picture, .product-media picture, .gallery-item picture, .feature picture { height: 100%; width: 100%; }
.placard {
  position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px; border-radius: 10px; background: rgba(250,251,246,.94); color: var(--ink);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.placard b { background: var(--lime); padding: 2px 6px; border-radius: 5px; font-weight: 700; }
.vitrine-spot { position: absolute; z-index: -1; inset: 8% -6% -6% 10%; border-radius: var(--r-xl); background: var(--green); }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .2s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.cat-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-soft); }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.045); }
.cat-body { display: flex; flex-direction: column; flex: 1; padding: 20px 20px 22px; }
.cat-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--green-soft); color: var(--lime-ink); font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.chip-dark { background: var(--ink); color: var(--lime); }
.count { font-family: var(--font-mono); font-size: .74rem; color: var(--gray); }
.cat-body h3 { margin-bottom: 8px; }
.cat-body p { color: var(--gray); font-size: .95rem; flex: 1; }
.cat-body .btn { align-self: flex-start; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.product-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card[hidden] { display: none; }
.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-no { position: absolute; top: 12px; left: 12px; padding: 5px 9px; border-radius: 8px; background: rgba(27,30,25,.82); color: var(--lime); font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.badge { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .02em; }
.badge svg { width: 12px; height: 12px; }
.product-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.product-body .cat-line { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.product-body h3 { margin-bottom: 8px; }
.product-body p { color: var(--gray); font-size: .94rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 14px; border-top: 1px dashed var(--line); }
.tag { font-size: .78rem; font-weight: 600; color: var(--ink-3); background: var(--paper); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* ---------- Featured ---------- */
.featured-grid { display: grid; gap: 18px; }
@media (min-width: 900px) {
  .featured-grid { grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .featured-grid .feature:first-child { grid-row: span 2; }
  .featured-grid .feature:not(:first-child) { min-height: 300px; }
  .featured-grid .feature:last-child { grid-column: span 2; }
}
.feature { position: relative; min-height: 340px; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; display: flex; }
.feature picture { position: absolute; inset: 0; z-index: -2; }
.feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature:hover img { transform: scale(1.04); }
.feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(27,30,25,0) 35%, rgba(27,30,25,.88) 100%); }
.feature-body { align-self: flex-end; padding: clamp(18px, 2.4vw, 28px); width: 100%; }
.feature-body h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); margin: 10px 0 6px; }
.feature-body p { color: #d6dbd0; font-size: .94rem; max-width: 48ch; margin-bottom: 16px; }
.feature:first-child { min-height: 520px; }

/* ---------- Experience band ---------- */
.exp-grid { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 960px) { .exp-grid { grid-template-columns: .9fr 1.1fr; align-items: start; } .exp-intro { position: sticky; top: calc(var(--header-h) + 32px); } }
.exp-intro h2 em { font-style: normal; color: var(--lime); }
.exp-list { list-style: none; margin: 0; padding: 0; counter-reset: exp; }
.exp-list li { counter-increment: exp; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); }
.exp-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.exp-list li::before { content: "0" counter(exp); font-family: var(--font-mono); font-size: .85rem; font-weight: 700; color: var(--ink); background: var(--lime); width: 44px; height: 30px; border-radius: 8px; display: grid; place-items: center; }
.exp-list h3 { margin-bottom: 6px; }
.exp-list p { margin: 0; color: #c3c9bc; }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.benefit { padding: 24px 22px 26px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); transition: background-color .25s, border-color .25s, transform .3s var(--ease); }
.benefit:hover { background: var(--green-soft); border-color: var(--green-mid); transform: translateY(-3px); }
.benefit-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--lime); display: grid; place-items: center; margin-bottom: 18px; }
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit p { margin: 0; color: var(--gray); font-size: .93rem; }

/* ---------- Media gallery ---------- */
.media-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.gallery-block + .gallery-block { margin-top: clamp(40px, 5vw, 64px); }
.gallery-block > header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.gallery-block > header h3 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.gallery-block > header p { margin: 0; color: var(--gray); font-size: .92rem; }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; margin: 0; padding: 0; border: 0; border-radius: var(--r-md); overflow: hidden; background: var(--ink); cursor: zoom-in; aspect-ratio: 4 / 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.gallery-item:hover img { transform: scale(1.05); opacity: .92; }
.gallery-item .zoom { position: absolute; right: 10px; bottom: 10px; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s var(--ease); }
.gallery-item:hover .zoom, .gallery-item:focus-visible .zoom { opacity: 1; transform: none; }
.gallery-item .zoom svg { width: 16px; height: 16px; }
.gallery-item figcaption { position: absolute; left: 10px; bottom: 10px; right: 54px; font-size: .78rem; font-weight: 600; color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,.6); text-align: left; }

.video-card { display: grid; gap: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); color: var(--white); }
@media (min-width: 900px) { .video-card { grid-template-columns: 1.6fr 1fr; } }
.video-card video { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.video-meta { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.video-meta h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin: 12px 0 10px; }
.video-meta p { color: #c3c9bc; }
.video-note { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--green-mid); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--lime); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 64px); display: grid; gap: 24px; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { margin-bottom: 10px; max-width: 20ch; }
.cta-band p { margin: 0; color: var(--ink-3); max-width: 52ch; }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; right: -110px; bottom: -190px; border-radius: 50%; border: 44px solid rgba(27,30,25,.07); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.cta-band .btn-ghost { border-color: rgba(27,30,25,.35); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.45); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(40px, 6vw, 84px) 0 clamp(32px, 4vw, 56px); position: relative; }
.page-hero .crumbs { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: 18px; }
.page-hero .crumbs ol { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; flex-wrap: wrap; }
.page-hero .crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--gray-2); }
.page-hero .crumbs a { text-decoration: none; }
.page-hero .crumbs a:hover { text-decoration: underline; }
.page-hero h1 { max-width: 16ch; }
.page-hero-panel { background: var(--green); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 60px); position: relative; overflow: hidden; }
.page-hero-panel::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: var(--lime); opacity: .7; }
.page-hero-panel > * { position: relative; z-index: 1; }

/* ---------- Collection page ---------- */
.filter-bar { position: sticky; top: calc(var(--header-h) + 8px); z-index: 20; display: flex; gap: 8px; overflow-x: auto; padding: 8px; margin: 0 0 28px; background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn { flex: none; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 16px; border-radius: 999px; border: 0; background: transparent; font-size: .88rem; font-weight: 650; color: var(--ink-3); cursor: pointer; transition: background-color .2s, color .2s; }
.filter-btn:hover { background: var(--green-soft); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.filter-btn .n { font-family: var(--font-mono); font-size: .7rem; padding: 2px 7px; border-radius: 99px; background: var(--green-soft); color: var(--lime-ink); }
.filter-btn[aria-pressed="true"] .n { background: var(--lime); color: var(--ink); }
.result-line { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: var(--gray); margin: -10px 0 22px; }
.collection-intro { display: grid; gap: 28px; }
@media (min-width: 900px) { .collection-intro { grid-template-columns: 1.3fr 1fr; align-items: end; } }
.note-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; font-size: .94rem; color: var(--gray); }
.note-card strong { color: var(--ink); }

/* ---------- Viewer dialog ---------- */
.viewer { width: min(100% - 24px, 1040px); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--r-lg); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); overflow: hidden; }
.viewer::backdrop { background: rgba(17, 19, 16, .72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.viewer[open] { animation: viewerIn .3s var(--ease); }
@keyframes viewerIn { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.viewer-grid { display: grid; max-height: calc(100dvh - 24px); overflow-y: auto; }
@media (min-width: 820px) { .viewer-grid { grid-template-columns: 1.15fr 1fr; } }
.viewer-media { background: var(--ink); display: grid; place-items: center; min-height: 260px; }
.viewer-media img, .viewer-media video { width: 100%; max-height: min(78dvh, 760px); object-fit: contain; }
.viewer-info { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; }
.viewer-info h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 12px 0 12px; }
.viewer-info p { color: var(--gray); }
.viewer-info dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 6px 0 24px; font-size: .9rem; }
.viewer-info dt { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); padding-top: 2px; }
.viewer-info dd { margin: 0; font-weight: 600; }
.viewer-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }
.viewer-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--lime); color: var(--ink); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.viewer-close svg { width: 20px; height: 20px; }
.viewer-close:hover { background: var(--lime-hover); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; } }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); }
.contact-card .benefit-icon { margin: 0; flex: none; }
.contact-card h2 { font-size: 1.05rem; margin: 2px 0 6px; letter-spacing: -.01em; }
.contact-card address, .contact-card p { font-style: normal; margin: 0; color: var(--ink-3); }
.contact-card a { font-weight: 700; word-break: break-all; }
.contact-card.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.contact-card.dark p { color: #c3c9bc; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 7px; }
.field label .opt { font-weight: 500; color: var(--gray); }
.field label .req { color: #9a2b12; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid #cfd4c7; background: var(--paper);
  font-size: 1rem; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 4px rgba(201,243,29,.55); }
.field [aria-invalid="true"] { border-color: #b3321a; background: #fff7f5; }
.field .error { display: block; min-height: 1.2em; margin-top: 6px; font-size: .82rem; font-weight: 600; color: #9a2b12; }
.form-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-top: 8px; }
.form-foot p { margin: 0; font-size: .84rem; color: var(--gray); max-width: 44ch; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: var(--green-soft); border: 1px solid var(--green-mid); font-size: .92rem; }
.form-status[hidden] { display: none; }

/* ---------- Legal pages ---------- */
.legal-layout { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 1000px) { .legal-layout { grid-template-columns: 260px 1fr; align-items: start; } }
.legal-layout > *, .contact-grid > *, .hero-grid > *, .exp-grid > * { min-width: 0; }
.toc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; }
@media (min-width: 1000px) { .toc { position: sticky; top: calc(var(--header-h) + 24px); } }
.toc h2 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; font-weight: 700; }
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; padding: 7px 8px; border-radius: 8px; text-decoration: none; font-size: .9rem; font-weight: 600; color: var(--ink-3); }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); font-size: .72rem; color: var(--gray-2); padding-top: 2px; }
.toc a:hover { background: var(--green-soft); }
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin: 2.2em 0 .6em; padding-top: .2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.6em 0 .5em; }
.prose p, .prose li { color: var(--ink-3); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--lime-ink); }
.prose a { font-weight: 700; text-decoration-color: var(--lime-hover); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose address { font-style: normal; }
.summary-box { background: var(--ink); color: var(--white); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); margin-bottom: 36px; }
.summary-box h2 { color: var(--lime); font-size: 1.2rem !important; margin: 0 0 12px !important; }
.summary-box ul { margin: 0; padding-left: 1.2em; }
.summary-box li { color: #d6dbd0; }
.summary-box li::marker { color: var(--lime); }
.clause { border-top: 1px solid var(--line); padding: 26px 0 8px; }
.clause:first-of-type { border-top: 0; padding-top: 0; }
.clause h2 { display: flex; gap: 14px; align-items: baseline; margin: 0 0 12px !important; }
.clause h2 span { flex: none; font-family: var(--font-mono); font-size: .8rem; background: var(--lime); padding: 3px 8px; border-radius: 6px; letter-spacing: .04em; }
.definition-list { display: grid; gap: 10px; margin: 0 0 1.2em; }
.definition-list div { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.definition-list dt { font-weight: 800; }
.definition-list dd { margin: 2px 0 0; color: var(--gray); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); margin: 0 0 1.4em; background: var(--white); }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
.cookie-table th, .cookie-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cookie-table th { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); background: var(--paper); }
.cookie-table tr:last-child td { border-bottom: 0; }
.status { display: inline-block; padding: 3px 9px; border-radius: 99px; font-size: .75rem; font-weight: 800; white-space: nowrap; }
.status-off { background: #eef0ea; color: var(--ink-3); }
.status-on { background: var(--lime); color: var(--ink); }
.cookie-check { display: grid; gap: 16px; background: var(--green); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 30px); margin-bottom: 36px; }
@media (min-width: 700px) { .cookie-check { grid-template-columns: auto 1fr; align-items: center; } }
.cookie-check .big { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; background: var(--white); border-radius: 18px; width: 92px; height: 92px; display: grid; place-items: center; }
.cookie-check h2 { margin: 0 0 6px !important; font-size: 1.25rem !important; }
.cookie-check p { margin: 0; color: var(--ink-3); }
.updated { display: inline-flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; background: var(--white); border: 1px solid var(--line); padding: 6px 12px; border-radius: 99px; margin-top: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #d6dbd0; margin-top: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.footer-top { padding: clamp(48px, 7vw, 88px) 0 40px; display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name span { color: var(--green-mid); }
.footer-brand .brand-mark { background: var(--lime); }
.footer-brand p { margin: 20px 0 0; max-width: 38ch; font-size: .94rem; color: #b9c0b1; }
.footer-col h2 { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #e3e8dc; text-decoration: none; font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-col address { font-style: normal; font-size: .94rem; line-height: 1.7; color: #e3e8dc; }
.footer-col .mail { display: inline-block; margin-top: 12px; color: var(--ink); background: var(--green); padding: 8px 12px; border-radius: 10px; font-weight: 700; font-size: .88rem; word-break: break-all; }
.footer-col .mail:hover { background: var(--lime); color: var(--ink); }
.footer-shelf { height: 14px; background: var(--lime); border-radius: 6px 6px 0 0; margin-top: 8px; position: relative; }
.footer-shelf::before { content: ""; position: absolute; inset: 14px 2% auto; height: 10px; background: rgba(201,243,29,.25); border-radius: 0 0 8px 8px; }
.footer-word { font-family: var(--font-display); font-weight: 850; letter-spacing: -.05em; line-height: .8; font-size: clamp(3.2rem, 13.5vw, 11.5rem); color: var(--ink-3); white-space: nowrap; user-select: none; margin: 0; overflow: hidden; }
.footer-word span { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; color: #a3aa9b; }
.footer-bottom nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0; padding: 0; }
.footer-bottom a { color: #c9cfc2; text-decoration: none; }
.footer-bottom a:hover { color: var(--lime); }
.to-top { display: inline-flex; align-items: center; gap: 8px; }
.to-top svg { width: 16px; height: 16px; }

/* ---------- 404 ---------- */
.nf { text-align: center; padding: clamp(60px, 10vw, 140px) 0; }
.nf .code { font-family: var(--font-display); font-size: clamp(6rem, 22vw, 14rem); font-weight: 850; line-height: .85; letter-spacing: -.06em; margin-bottom: 18px; }
.nf .code span { display: inline-block; background: var(--lime); border-radius: 24px; padding: 0 .08em; transform: rotate(-4deg); }
.nf h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: none; }
.nf p { color: var(--gray); max-width: 48ch; margin-inline: auto; }
.nf .hero-actions { justify-content: center; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .toc, .filter-bar { display: none !important; }
  body { background: #fff; }
}

/* ---------- Refinements ---------- */
.product-body h2, .product-body h3 { font-size: clamp(1.15rem, 1.5vw, 1.3rem); letter-spacing: -.015em; margin-bottom: 8px; }
@media (min-width: 1000px) { .filter-bar { position: static; flex-wrap: wrap; border-radius: 22px; overflow: visible; } }
@media (max-width: 599px) {
  .vitrine-item:nth-of-type(2) .placard, .vitrine-item:nth-of-type(3) .placard { display: none; }
  .placard { left: 8px; bottom: 8px; font-size: .6rem; padding: 5px 8px; }
  .vitrine-spot { inset: 8% 0 -4% 10%; }
}
.feature::after { background: linear-gradient(180deg, rgba(27,30,25,.05) 20%, rgba(27,30,25,.93) 78%); }
@media (min-width: 900px) {
  .featured-grid .feature:not(:first-child) .feature-body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .featured-grid .feature:not(:first-child) { min-height: 340px; }
}
.footer-word { font-size: clamp(2rem, 9.2vw, 8rem); }
.footer-col .mail { word-break: normal; overflow-wrap: anywhere; font-size: .84rem; }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.3fr .9fr 1fr 1.3fr; } }
#media { padding-bottom: clamp(24px, 3vw, 40px); }
.placard b { white-space: nowrap; }
.viewer-info .chip { align-self: flex-start; }
