/* TOVELIA — Pocket Map
   Colour, type and layout for the whole storefront. */

:root {
	--paper: #f3ede1;
	--paper-2: #e9e0ce;
	--paper-3: #ddd1b9;
	--ink: #1e1b17;
	--ink-2: #544d3f;
	--ink-3: #5f5747;
	--olive: #4b5528;
	--olive-2: #353d1b;
	--olive-3: #6f7a3f;
	--pink: #f2b5c7;
	--pink-2: #e98fab;
	--cherry: #a8261f;
	--line: rgba(30, 27, 23, 0.14);
	--line-2: rgba(30, 27, 23, 0.28);
	--stitch: rgba(30, 27, 23, 0.42);
	--grid: rgba(75, 85, 40, 0.07);

	--f-sans: 'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
	--f-serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
	--f-mono: 'DM Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	--r-s: 10px;
	--r: 18px;
	--r-l: 30px;
	--gutter: clamp(16px, 4vw, 48px);
	--max: 1440px;
	--header-h: 72px;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--f-sans);
	font-size: 17px;
	line-height: 1.55;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--pink); color: var(--ink); }

.sr-only, .screen-reader-text { 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: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 999px; text-decoration: none; }
.skip-link:focus { top: 12px; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }
.mono { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.02em; text-transform: uppercase; }
.stretched { position: absolute; inset: 0; z-index: 1; }

/* ---------- Kicker & section heads ---------- */
.kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.kicker__num { padding: 3px 8px; border: 1px dashed var(--stitch); border-radius: 999px; color: var(--ink); text-decoration: none; }
a.kicker__num:hover { background: var(--ink); color: var(--paper); border-style: solid; }
.section-head { margin-bottom: clamp(28px, 4vw, 56px); max-width: 760px; }
.section-head--split { display: grid; gap: 20px; max-width: none; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; max-width: none; flex-wrap: wrap; }
.section-title { font-size: clamp(2.1rem, 4.6vw, 4.2rem); }
.section-title em { color: var(--olive); }
.section-lede { font-size: 1.1rem; color: var(--ink-2); max-width: 560px; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.2fr 1fr; align-items: end; } }

/* ---------- Buttons ---------- */
.btn { --bg: var(--ink); --fg: var(--paper); display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border: 1.5px solid var(--bg); border-radius: 999px; background: var(--bg); color: var(--fg); font-weight: 600; font-size: 0.98rem; line-height: 1.1; text-decoration: none; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s; }
.btn .icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -1px rgba(30, 27, 23, 0.18); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--olive { --bg: var(--olive); --fg: var(--paper); }
.btn--olive:hover { --bg: var(--olive-2); }
.btn--ink { --bg: var(--ink); }
.btn--paper { --bg: var(--paper); --fg: var(--ink); }
.btn--line { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn--line:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--lg { min-height: 56px; padding: 14px 28px; font-size: 1.04rem; }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 0.9rem; }
.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 5px; }
.textlink .icon { width: 18px; height: 18px; }
.textlink:hover { color: var(--olive); }
.linkbtn { padding: 0; border: 0; background: none; font-weight: 600; text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 4px; }
.icon { width: 22px; height: 22px; flex: none; }
.icon-btn { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 999px; background: transparent; color: var(--ink); text-decoration: none; transition: background 0.2s; }
.icon-btn:hover { background: var(--paper-2); }
.icon-btn--ring { border: 1.5px solid var(--ink); }
.icon-btn--ring:hover { background: var(--ink); color: var(--paper); }

/* ---------- Top bar & switchers ---------- */
.topbar { position: relative; z-index: 60; background: var(--olive); color: var(--paper); font-size: 0.84rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 38px; }
.topbar__msg { display: flex; gap: 22px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__msg span { display: inline-flex; align-items: center; gap: 22px; }
.topbar__extra::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
.topbar__switches { display: flex; gap: 4px; flex: none; }
@media (max-width: 899px) { .topbar__extra { display: none !important; } .topbar__msg { font-size: 0.78rem; } }
@media (max-width: 520px) { .topbar__msg { display: none; } .topbar__in { justify-content: flex-end; } }

.switch { position: relative; }
.switch__btn { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 4px 10px; border: 0; border-radius: 999px; background: transparent; color: inherit; font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.04em; }
.switch__btn:hover, .switch__btn[aria-expanded='true'] { background: rgba(243, 237, 225, 0.14); }
.switch__btn .icon { width: 16px; height: 16px; }
.switch__chev { transition: transform 0.2s; }
.switch__btn[aria-expanded='true'] .switch__chev { transform: rotate(180deg); }
.switch__panel { position: absolute; right: 0; top: calc(100% + 8px); width: min(360px, calc(100vw - 24px)); max-height: min(70vh, 560px); overflow: auto; padding: 18px; border-radius: var(--r); background: var(--paper); color: var(--ink); box-shadow: 0 24px 60px -20px rgba(30, 27, 23, 0.45), 0 0 0 1px var(--line); overscroll-behavior: contain; }
.switch__panel[hidden] { display: none; }
.switch__title { margin: 0 0 4px; font-weight: 700; font-size: 1.05rem; }
.switch__note { margin: 0 0 12px; font-size: 0.84rem; color: var(--ink-2); line-height: 1.45; }
.switch__group { margin: 14px 0 6px; font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.switch__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }
.switch__opt { display: flex; width: 100%; justify-content: space-between; gap: 8px; min-height: 40px; padding: 8px 10px; border: 0; border-radius: var(--r-s); background: transparent; text-align: left; font-size: 0.9rem; }
.switch__opt:hover { background: var(--paper-2); }
.switch__opt.is-current { background: var(--ink); color: var(--paper); }
.switch__cur { font-family: var(--f-mono); font-size: 0.75rem; opacity: 0.7; }
.switch__panel--lang .gtranslate_wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }
.switch__panel--lang a.glink { display: flex; align-items: center; min-height: 40px; padding: 8px 10px; border-radius: var(--r-s); text-decoration: none; font-size: 0.92rem; }
.switch__panel--lang a.glink:hover { background: var(--paper-2); }
.switch__panel--lang a.glink.gt-current-lang { background: var(--ink); color: var(--paper); font-weight: 600; }
@media (max-width: 420px) { .switch__list, .switch__panel--lang .gtranslate_wrapper { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(243, 237, 225, 0.92); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.site-header.is-scrolled { border-color: var(--line); }
.site-header__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: var(--header-h); gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; justify-self: center; }
.brand svg:first-child { width: 38px; height: 38px; transition: transform 0.4s var(--ease); }
.brand svg:last-child { height: 24px; width: auto; }
.brand:hover svg:first-child { transform: rotate(-8deg) translateY(-2px); }
.nav { justify-self: start; }
.nav__list { display: flex; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav__link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; text-decoration: none; transition: background 0.2s; }
.nav__link:hover, .nav__item.is-open > .nav__link { background: var(--paper-2); }
.hdr-actions { display: flex; align-items: center; justify-content: flex-end; gap: 2px; justify-self: end; }
.nav-toggle { display: none; justify-self: start; }
.bag-count { position: absolute; top: 3px; right: 1px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--cherry); color: #fff; font-size: 0.75rem; font-weight: 700; line-height: 19px; text-align: center; }
.bag-count.is-empty { display: none; }
@media (max-width: 959px) {
	.nav, .hdr-actions__help, .hdr-actions__account { display: none; }
	.nav-toggle { display: inline-grid; }
	.site-header__in { grid-template-columns: auto 1fr auto; min-height: 62px; }
	.brand { justify-self: center; }
	.brand svg:first-child { width: 32px; height: 32px; }
	.brand svg:last-child { height: 19px; }
}

/* Mega panel */
.has-panel { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(30, 27, 23, 0.35); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s, transform 0.25s var(--ease), visibility 0s linear 0.25s; }
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mega__in { display: grid; grid-template-columns: 180px 1fr 300px; gap: 40px; padding-block: 32px 40px; }
.mega__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }
.mega__link { display: grid; grid-template-columns: 36px 1fr auto; align-items: baseline; gap: 8px; padding: 12px 8px; border-bottom: 1px dashed var(--line-2); text-decoration: none; }
.mega__link:hover .mega__name { color: var(--olive); }
.mega__num, .mega__count { font-family: var(--f-mono); font-size: 0.75rem; color: var(--ink-3); }
.mega__name { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.mega__link--all { grid-template-columns: 1fr auto; }
.mega__link--all .icon { width: 20px; height: 20px; }
.mega__feature { position: relative; display: block; overflow: hidden; border-radius: var(--r); text-decoration: none; }
.mega__feature img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.mega__feature span { position: absolute; left: 12px; bottom: 12px; display: inline-flex; gap: 6px; align-items: center; padding: 8px 12px; border-radius: 999px; background: var(--paper); font-weight: 600; font-size: 0.88rem; }
.mega__feature .icon { width: 16px; height: 16px; }

/* Search */
.search-panel { border-top: 1px solid var(--line); background: var(--paper); }
.search-panel[hidden] { display: none; }
.search-panel__form { display: flex; align-items: center; gap: 12px; padding-block: 14px; }
.search-panel__form input { flex: 1; min-width: 0; min-height: 48px; border: 0; border-bottom: 1.5px solid var(--ink); background: transparent; font-size: 1.2rem; outline: none; }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer[hidden] { display: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(30, 27, 23, 0.4); animation: fade 0.25s; }
.drawer__panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(420px, 88vw); display: flex; flex-direction: column; gap: 22px; padding: 18px 20px 28px; overflow-y: auto; background: var(--paper); background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 32px 32px; animation: slidein 0.35s var(--ease); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; }
.drawer__head .kicker { margin: 0; }
.drawer__list, .drawer__minor { list-style: none; margin: 0; padding: 0; }
.drawer__list a { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line-2); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; }
.drawer__num { font-family: var(--f-mono); font-size: 0.75rem; font-weight: 400; color: var(--ink-3); min-width: 22px; }
.drawer__minor { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.drawer__minor a { display: block; padding: 8px 0; text-decoration: none; font-weight: 500; }
.drawer__contact { margin-top: auto; font-family: var(--f-mono); font-size: 0.85rem; }
@keyframes slidein { from { transform: translateX(-100%); } }
@keyframes fade { from { opacity: 0; } }

/* ---------- Pocket shapes & flaps ---------- */
.pocket-shape { position: relative; overflow: hidden; border-radius: 10px 10px 0 0; clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); background: var(--paper-2); }
.pocket-shape::after { content: ''; position: absolute; inset: 12px 12px 0; pointer-events: none; border: 1.5px dashed rgba(243, 237, 225, 0.85); border-bottom: 0; border-radius: 6px 6px 0 0; }
.pocket-shape--round { clip-path: none; border-radius: 14px 14px 46% 46% / 14px 14px 12% 12%; }
.pocket-shape--round::after { inset: 12px; border: 1.5px dashed rgba(243, 237, 225, 0.85); border-radius: 8px 8px 44% 44% / 8px 8px 11% 11%; }
.pocket-shape img { width: 100%; height: 100%; object-fit: cover; }
.flap { position: absolute; z-index: 3; left: -1px; right: -1px; top: 0; height: 64px; display: flex; align-items: flex-start; justify-content: center; padding-top: 12px; background: var(--ink); color: var(--paper); clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%); }
.flap__txt { font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.flap__snap { position: absolute; left: 50%; bottom: 12px; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 3px var(--ink-2); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(28px, 5vw, 64px) clamp(56px, 7vw, 96px); background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 48px 48px; background-position: center top; }
.hero__route { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__route path { fill: none; stroke: var(--cherry); stroke-width: 2; stroke-dasharray: 2 10; stroke-linecap: round; opacity: 0.55; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); align-items: center; gap: clamp(24px, 5vw, 80px); }
.hero__title { font-size: clamp(3.4rem, 8.6vw, 8.8rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.045em; margin-bottom: 26px; }
.hero__line { display: block; }
.hero__title em { display: inline-block; color: var(--olive); font-size: 1.08em; letter-spacing: -0.02em; transform: rotate(-3deg) translateY(4px); }
.hero__lede { max-width: 470px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-2); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 36px; }
.legend { list-style: none; margin: 0; padding: 0; max-width: 520px; border-top: 1.5px solid var(--ink); }
.legend__item a { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px dashed var(--line-2); text-decoration: none; transition: background 0.2s, padding 0.25s var(--ease); }
.legend__item a:hover, .legend__item.is-hot a { background: rgba(242, 181, 199, 0.35); padding-left: 10px; }
.legend__num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--paper); font-family: var(--f-mono); font-size: 0.75rem; }
.legend__txt { display: grid; line-height: 1.25; }
.legend__pocket { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3); }
.legend__prod { font-weight: 600; }
.legend__price { font-weight: 600; font-size: 0.95rem; }

.hero__stage { position: relative; padding: 0 0 40px 40px; }
.hero__pocket { position: relative; width: 100%; max-width: min(640px, calc((100svh - 150px) * 0.75)); margin-left: auto; padding-top: 46px; }
.hero__frame { aspect-ratio: 3 / 4; filter: drop-shadow(0 30px 40px rgba(30, 27, 23, 0.28)); }
.flap--hero { top: 0; left: -12px; right: -12px; height: 66px; border-radius: 12px 12px 0 0; }
.hero__frame.pocket-shape { clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%); }
.hero__img { position: absolute; inset: 0; }
.pin { position: absolute; z-index: 4; left: var(--x); top: var(--y); transform: translate(-50%, -50%); display: flex; align-items: center; text-decoration: none; }
.pin__dot { position: relative; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--pink); color: var(--ink); font-family: var(--f-mono); font-size: 0.75rem; font-weight: 500; box-shadow: 0 0 0 3px var(--paper), 0 8px 18px -6px rgba(0, 0, 0, 0.5); transition: transform 0.25s var(--ease); }
.pin__dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--pink); animation: ping 2.6s var(--ease) infinite; }
.pin__tag { position: absolute; left: 46px; display: grid; min-width: 180px; padding: 8px 12px; border-radius: 12px; background: var(--paper); box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5); font-size: 0.82rem; line-height: 1.25; opacity: 0; transform: translateX(-6px); pointer-events: none; transition: opacity 0.2s, transform 0.25s var(--ease); }
.pin__tag span:first-child { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; color: var(--ink-3); }
.pin__tag span:last-child { font-weight: 600; }
.pin:hover .pin__dot, .pin:focus-visible .pin__dot, .pin.is-hot .pin__dot { transform: scale(1.15); background: var(--ink); color: var(--paper); }
.pin:hover .pin__tag, .pin:focus-visible .pin__tag, .pin.is-hot .pin__tag { opacity: 1; transform: none; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.9; } 80%, 100% { transform: scale(1.9); opacity: 0; } }

.hero__motion { position: absolute; z-index: 5; left: 0; bottom: 0; width: clamp(150px, 15vw, 220px); margin: 0; padding: 10px 10px 12px; border-radius: 14px; background: var(--paper); box-shadow: 0 30px 50px -24px rgba(30, 27, 23, 0.55), 0 0 0 1px var(--line); transform: rotate(-5deg); }
.hero__motion-hole { position: absolute; top: -9px; left: 50%; width: 22px; height: 22px; margin-left: -11px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 5px var(--olive); }
.hero__motion-media { position: relative; aspect-ratio: 2 / 3; overflow: hidden; border-radius: 8px; background: var(--paper-2); }
.hero__motion-media img, .hero__motion-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__motion figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; margin-top: 8px; font-weight: 600; font-size: 0.86rem; }
.hero__motion figcaption .mono { font-size: 0.75rem; color: var(--ink-3); }
.sticker { position: absolute; z-index: 5; right: -18px; top: 12%; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); box-shadow: 0 16px 30px -16px rgba(30, 27, 23, 0.6); }
.sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.sticker text { font-family: var(--f-mono); font-size: 9.6px; letter-spacing: 0.08em; fill: var(--ink); }
.sticker__core { display: grid; text-align: center; font-weight: 800; font-size: 2rem; line-height: 0.9; }
.sticker__core small { font-family: var(--f-mono); font-size: 0.75rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 999px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__stage { order: -1; padding: 0 0 28px 0; max-width: 560px; width: 100%; margin-inline: auto; }
	.hero__pocket { max-width: none; }
	.hero__motion { left: -6px; width: 34%; max-width: 190px; }
	.sticker { right: -6px; top: auto; bottom: 26%; width: 104px; height: 104px; }
	.sticker__core { font-size: 1.6rem; }
	.hero__title { font-size: clamp(3.1rem, 14vw, 6rem); }
}
@media (max-width: 520px) {
	.hero { padding-top: 16px; }
	.pin__tag { display: none; }
	.pin__dot { width: 32px; height: 32px; }
	.hero__motion figcaption .mono { display: none; }
	.legend__price { font-size: 0.86rem; }
}

/* ---------- Ribbon ---------- */
.ribbon { overflow: hidden; background: var(--ink); color: var(--paper); transform: rotate(-1.2deg); margin-block: -6px 0; position: relative; z-index: 2; }
.ribbon__track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 16px 0; animation: marquee 38s linear infinite; font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.ribbon__track i { width: 12px; height: 12px; border-radius: 50%; background: var(--pink); box-shadow: inset 0 0 0 3px var(--cherry); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pocket index ---------- */
.index { padding-block: clamp(72px, 9vw, 140px) clamp(40px, 6vw, 80px); }
.index__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 30px); align-items: start; }
.family { position: relative; display: block; text-decoration: none; }
.family__media { display: block; position: relative; overflow: hidden; aspect-ratio: 3 / 4; border-radius: 12px 12px 42% 42% / 12px 12px 10% 10%; background: var(--paper-2); }
.family__media::after { content: ''; position: absolute; inset: 10px; border: 1.5px dashed rgba(243, 237, 225, 0.8); border-radius: 8px 8px 40% 40% / 8px 8px 9% 9%; pointer-events: none; }
.family__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.family:hover .family__media img { transform: scale(1.05); }
.family__flap { position: relative; z-index: 2; display: flex; align-items: baseline; gap: 12px; margin: 0 -6px -26px; padding: 14px 18px 30px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 14px 14px 0 0; clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%); transition: transform 0.35s var(--ease); transform-origin: 50% 0; }
.family:hover .family__flap { transform: translateY(-10px) rotate(-1.5deg); }
.family__num { font-family: var(--f-mono); font-size: 0.75rem; color: var(--ink-3); }
.family__name { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.family__meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 12px; font-family: var(--f-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-2); }
.family--tall { grid-column: 1 / span 5; }
.family--drop { grid-column: 6 / span 4; margin-top: 110px; }
.family--small { grid-column: 10 / span 3; margin-top: 30px; }
.family--wide { grid-column: 2 / span 5; margin-top: 36px; }
.family--wide .family__media { aspect-ratio: 4 / 3.4; }
.family--pink { grid-column: 8 / span 4; margin-top: 60px; }
.family--pink .family__flap { background: var(--pink); }
@media (max-width: 899px) {
	.index__grid { grid-template-columns: 1fr 1fr; }
	.family--tall, .family--drop, .family--small, .family--wide, .family--pink { grid-column: auto; margin-top: 0; }
	.family--tall { grid-column: 1 / -1; }
	.family--tall .family__media { aspect-ratio: 4 / 3.6; }
	.family--drop, .family--pink { margin-top: 40px; }
	.family--wide { grid-column: 1 / -1; }
	.family__flap { padding: 10px 12px 24px; }
}
@media (max-width: 520px) {
	.index__grid { grid-template-columns: 1fr; }
	.family--drop, .family--pink { margin-top: 0; }
	.family .family__media { aspect-ratio: 4 / 3.8; }
}

/* ---------- Pocket map (Saturday route) ---------- */
.map { padding-block: clamp(64px, 8vw, 120px); background: var(--paper-2); background-image: linear-gradient(rgba(75, 85, 40, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(75, 85, 40, 0.09) 1px, transparent 1px); background-size: 40px 40px; border-block: 1.5px solid var(--ink); }
.map__route { position: relative; }
.map__line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.map__line path { fill: none; stroke: var(--olive); stroke-width: 3; stroke-dasharray: 10 10; stroke-linecap: round; }
.map__stops { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 36px); align-items: start; }
.stop { position: relative; background: var(--paper); border-radius: var(--r); padding: 12px 12px 20px; box-shadow: 0 0 0 1.5px var(--ink), 8px 8px 0 0 var(--ink); }
.stop--1 { transform: rotate(-2deg); }
.stop--2 { margin-top: 120px; transform: rotate(1.5deg); }
.stop--3 { margin-top: 30px; transform: rotate(-1deg); }
.stop--4 { margin-top: 170px; transform: rotate(2deg); }
.stop::before { content: ''; position: absolute; top: -14px; left: 50%; width: 26px; height: 26px; margin-left: -13px; border-radius: 50%; background: var(--cherry); box-shadow: 0 0 0 4px var(--paper), 0 0 0 5.5px var(--ink); z-index: 2; }
.stop__media { overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 5; background: var(--paper-2); }
.stop__media img { width: 100%; height: 100%; object-fit: cover; }
.stop__body { padding: 14px 6px 0; }
.stop__time { margin: 0; color: var(--cherry); font-size: 0.9rem; }
.stop__place { font-size: 1.45rem; margin: 2px 0 12px; }
.stop__dl { margin: 0 0 14px; display: grid; gap: 6px; }
.stop__dl div { display: grid; grid-template-columns: 64px 1fr; gap: 8px; font-size: 0.92rem; }
.stop__dl dt { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.stop__dl dd { margin: 0; font-weight: 500; }
.stop__link { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; background: var(--paper-2); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.stop__link .icon { width: 18px; height: 18px; }
.stop__link:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 999px) {
	.map__stops { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
	.stop--2, .stop--4 { margin-top: 60px; }
	.stop--3 { margin-top: 0; }
	.map__line { display: none; }
}
@media (max-width: 560px) {
	.map__stops { grid-template-columns: 1fr; gap: 44px; padding-left: 28px; }
	.map__stops::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; border-left: 3px dashed var(--olive); }
	.stop, .stop--1, .stop--2, .stop--3, .stop--4 { margin-top: 0; transform: none; }
	.stop::before { left: -35px; top: 24px; margin-left: 0; }
	.stop__media { aspect-ratio: 4 / 3; }
}

/* ---------- Product cards & rail ---------- */
.products { list-style: none; margin: 0; padding: 0; }
.card { position: relative; min-width: 0; }
.card__link { display: block; text-decoration: none; }
.card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 4; border-radius: 14px; background: #efe8da; }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.45s var(--ease), transform 0.8s var(--ease); }
.card__img--hover { opacity: 0; }
@media (hover: hover) {
	.card__link:hover .card__img--hover { opacity: 1; }
	.card__link:hover .card__img { transform: scale(1.03); }
}
.card__tab { position: absolute; top: 14px; right: 0; width: 12px; height: 34px; border-radius: 3px 0 0 3px; background: var(--pink); }
.card__sizes { position: absolute; left: 10px; bottom: 10px; padding: 4px 8px; border-radius: 999px; background: rgba(243, 237, 225, 0.9); font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.06em; opacity: 0; transform: translateY(4px); transition: opacity 0.25s, transform 0.25s var(--ease); }
.card__link:hover .card__sizes, .card__link:focus-visible .card__sizes { opacity: 1; transform: none; }
.card__body { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 12px 2px 4px; }
.card__name { font-weight: 600; font-size: 1.02rem; line-height: 1.25; }
.card__price { font-weight: 600; font-size: 0.98rem; white-space: nowrap; }
.card__colours { grid-column: 1 / -1; display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.swatch { width: 14px; height: 14px; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18); }
.card__colour-count { margin-left: 4px; font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; color: var(--ink-3); }
.card--feature .card__media { aspect-ratio: auto; height: 100%; min-height: 100%; }
.card--feature .card__link { display: flex; flex-direction: column; height: 100%; }
.card--feature .card__media { flex: 1; }

.rail-sec { padding-block: clamp(64px, 8vw, 120px); overflow: hidden; }
.rail-nav { display: flex; align-items: center; gap: 8px; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 24vw, 330px); gap: clamp(14px, 2vw, 26px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 12px; scroll-padding-inline: var(--gutter); scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > .card { scroll-snap-align: start; }
.rail > .card:nth-child(even) { margin-top: 40px; }
@media (min-width: 1441px) { .rail { padding-inline: calc((100vw - var(--max)) / 2 + var(--gutter)); } }
@media (max-width: 600px) { .rail { grid-auto-columns: 70vw; } .rail > .card:nth-child(even) { margin-top: 0; } .rail-nav .icon-btn { display: none; } }

/* ---------- Video band ---------- */
.band { position: relative; min-height: clamp(460px, 62vw, 760px); display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; background: var(--ink); }
.band__media { position: absolute; inset: 0; }
.band__media img, .band__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 18, 15, 0.05) 25%, rgba(20, 18, 15, 0.78) 100%), linear-gradient(90deg, rgba(20, 18, 15, 0.45) 0%, rgba(20, 18, 15, 0) 60%); }
@media (max-width: 700px) { .band__media::after { background: linear-gradient(180deg, rgba(20, 18, 15, 0.25) 0%, rgba(20, 18, 15, 0.82) 70%); } }
.band__copy { position: relative; z-index: 2; padding-block: 48px; }
.band__stamp { display: inline-block; margin-bottom: 18px; padding: 6px 12px; border: 1.5px dashed rgba(243, 237, 225, 0.8); border-radius: 999px; }
.band__title { font-size: clamp(2.6rem, 7vw, 6.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.92; margin-bottom: 28px; }
.band__title em { color: var(--pink); }
.band__toggle { position: absolute; z-index: 3; right: var(--gutter); bottom: 48px; border-color: var(--paper); color: var(--paper); }
.band__toggle:hover { background: var(--paper); color: var(--ink); }
.band__toggle .icon { width: 18px; height: 18px; }

/* ---------- Split (modular) ---------- */
.split { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; padding-block: clamp(72px, 9vw, 140px); }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-l) var(--r-l) var(--r-l) 4px; }
.split__label { position: absolute; left: -10px; bottom: 26px; padding: 8px 14px; background: var(--pink); border-radius: 4px; transform: rotate(-4deg); }
.split__copy > p { font-size: 1.08rem; color: var(--ink-2); }
.minilist { list-style: none; margin: 22px 0 28px; padding: 0; border-top: 1.5px solid var(--ink); }
.minilist a { display: flex; justify-content: space-between; gap: 12px; padding: 14px 2px; border-bottom: 1px dashed var(--line-2); text-decoration: none; font-weight: 600; }
.minilist a:hover { color: var(--olive); }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } }

/* ---------- Fit ---------- */
.fit { background: var(--olive); color: var(--paper); overflow: hidden; }
.fit__in { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 5vw, 80px); align-items: center; padding-block: clamp(64px, 8vw, 110px); }
.fit .kicker { color: rgba(243, 237, 225, 0.8); }
.fit .kicker__num { border-color: rgba(243, 237, 225, 0.6); color: var(--paper); }
.fit .section-title em { color: var(--pink); }
.fit__facts { list-style: none; margin: 28px 0 32px; padding: 0; display: grid; gap: 14px; max-width: 580px; }
.fit__facts li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed rgba(243, 237, 225, 0.35); font-size: 1.05rem; }
.fit__facts .mono { color: var(--pink); padding-top: 4px; }
.fit .btn--line { --fg: var(--paper); border-color: var(--paper); }
.fit .btn--line:hover { --bg: var(--paper); --fg: var(--ink); }
.fit__media { position: relative; }
.fit__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 200px 200px 16px 16px; }
.fit__tape { position: absolute; left: -24px; right: -24px; top: 58%; height: 30px; background: repeating-linear-gradient(90deg, #f0dc9a 0 18px, #e7cf82 18px 19px); transform: rotate(-8deg); box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.5); opacity: 0.95; }
@media (max-width: 899px) { .fit__in { grid-template-columns: 1fr; } .fit__media { max-width: 420px; } }

/* ---------- Studio ---------- */
.studio { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; padding-block: clamp(72px, 9vw, 140px); }
.studio__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 4px var(--r-l) var(--r-l) var(--r-l); }
.studio__copy p { font-size: 1.08rem; color: var(--ink-2); }
@media (max-width: 899px) { .studio { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.promise { list-style: none; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-bottom: 1px solid rgba(243, 237, 225, 0.16); }
.promise__item { position: relative; display: flex; gap: 14px; padding: 30px 22px 30px 0; font-size: 0.9rem; line-height: 1.4; }
.promise__item + .promise__item { padding-left: 22px; border-left: 1px dashed rgba(243, 237, 225, 0.22); }
.promise__item .icon { width: 28px; height: 28px; color: var(--pink); }
.promise__item strong { display: block; margin-bottom: 3px; font-size: 1rem; }
.promise__item span { color: rgba(243, 237, 225, 0.72); }
@media (max-width: 999px) { .promise { grid-template-columns: 1fr 1fr; } .promise__item:nth-child(3) { padding-left: 0; border-left: 0; } .promise__item:nth-child(n + 3) { border-top: 1px dashed rgba(243, 237, 225, 0.22); } }
@media (max-width: 560px) { .promise { grid-template-columns: 1fr; } .promise__item, .promise__item + .promise__item { padding: 20px 0; border-left: 0; } .promise__item + .promise__item { border-top: 1px dashed rgba(243, 237, 225, 0.22); } }
.site-footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: 56px 40px; }
.brand.brand--footer svg { width: 64px; height: 64px; }
.brand--footer svg path:nth-child(3) { fill: var(--paper); }
.brand--footer svg circle { fill: var(--ink); }
.site-footer__line { max-width: 330px; margin: 18px 0; color: rgba(243, 237, 225, 0.78); }
.site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.94rem; }
.site-footer__contact li { display: flex; align-items: center; gap: 10px; }
.site-footer__contact .icon { width: 18px; height: 18px; color: var(--pink); }
.site-footer__contact a { text-decoration: none; }
.site-footer__contact a:hover { text-decoration: underline; }
.site-footer__title { margin: 0 0 14px; font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.site-footer__col a { display: inline-block; padding: 5px 0; text-decoration: none; color: rgba(243, 237, 225, 0.88); }
.site-footer__col a:hover { color: var(--paper); text-decoration: underline; text-decoration-style: dashed; }
.site-footer__giant { padding-inline: var(--gutter); color: var(--olive-3); opacity: 0.55; }
.site-footer__giant svg { width: 100%; height: auto; margin-bottom: -2.2%; }
.site-footer__base { position: relative; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 30px; padding-block: 18px 22px; font-size: 0.8rem; color: rgba(243, 237, 225, 0.7); background: var(--ink); }
.site-footer__base p { margin: 0; }
@media (max-width: 899px) { .site-footer__main { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 420px) { .site-footer__main { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Cookie ---------- */
.cookie { position: fixed; z-index: 90; left: 16px; bottom: 16px; max-width: 420px; display: flex; align-items: center; gap: 14px; padding: 14px 14px 14px 18px; border-radius: var(--r); background: var(--paper); box-shadow: 0 20px 50px -20px rgba(30, 27, 23, 0.5), 0 0 0 1.5px var(--ink); font-size: 0.86rem; line-height: 1.4; animation: rise 0.4s var(--ease); }
.cookie[hidden] { display: none; }
.cookie p { margin: 0; }
.cookie .btn { flex: none; }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
@media (max-width: 520px) { .cookie { left: 10px; right: 10px; bottom: 10px; max-width: none; } }

/* ---------- Archive ---------- */
.archive-head { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(20px, 5vw, 80px); align-items: end; padding-block: 28px 36px; }
.archive-head__title { font-size: clamp(2.8rem, 7.4vw, 7rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; margin-bottom: 18px; }
.archive-head__intro { max-width: 620px; font-size: 1.08rem; color: var(--ink-2); }
.archive-head__count { margin: 0; color: var(--ink-3); }
.archive-head__media { aspect-ratio: 4 / 4.2; max-width: 380px; justify-self: end; width: 100%; transform: rotate(2.5deg); }
@media (max-width: 760px) { .archive-head { grid-template-columns: 1fr; } .archive-head__media { display: none; } }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3); }
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.filterbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 16px; margin-bottom: 28px; border-block: 1.5px solid var(--ink); position: sticky; top: var(--header-h); z-index: 20; background: var(--paper); }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 6px 14px; border: 1.5px solid var(--line-2); border-radius: 999px; font-weight: 600; font-size: 0.9rem; text-decoration: none; white-space: nowrap; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip__n { font-family: var(--f-mono); font-size: 0.75rem; opacity: 0.7; }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select, .form select, .variations select { appearance: none; min-height: 42px; padding: 8px 38px 8px 14px; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e1b17' stroke-width='1.8'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center / 16px; font-weight: 600; font-size: 0.9rem; }
@media (max-width: 959px) { .filterbar { top: 62px; } }
@media (max-width: 700px) { .filterbar { flex-direction: column; align-items: stretch; gap: 10px; } .filterbar__sort { align-self: flex-end; } }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px) clamp(12px, 1.8vw, 26px); grid-auto-flow: dense; }
.grid .card--feature { grid-column: span 2; grid-row: span 2; }
.grid .card--feature:nth-of-type(odd) { grid-column: 3 / span 2; }
.grid--4 .card { grid-column: auto; grid-row: auto; }
@media (max-width: 1099px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid .card--feature, .grid .card--feature:nth-of-type(odd) { grid-column: span 2; } }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr 1fr; } .grid .card--feature, .grid .card--feature:nth-of-type(odd) { grid-column: 1 / -1; grid-row: auto; } .grid .card--feature .card__media { aspect-ratio: 4 / 4.4; height: auto; } .card__body { grid-template-columns: 1fr; } .card__name { font-size: 0.95rem; } }
.woocommerce-pagination { margin: 56px 0 20px; }
.woocommerce-pagination ul { display: flex; justify-content: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.woocommerce-pagination a, .woocommerce-pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 10px; border: 1.5px solid var(--line-2); border-radius: 999px; font-weight: 600; text-decoration: none; }
.woocommerce-pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.woocommerce-pagination a:hover { border-color: var(--ink); }
.empty-state { display: grid; justify-items: center; gap: 10px; padding: 60px 0 80px; text-align: center; }
.empty-state img { width: 220px; border-radius: 50%; }

/* ---------- Product page ---------- */
.pdp { padding-top: 22px; }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.gallery__track { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: #efe8da; }
.gallery__item--lead { grid-column: 1 / -1; }
.gallery__img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.gallery__item--lead .gallery__img { aspect-ratio: 4 / 5; }
.gallery__item figcaption { position: absolute; left: 12px; bottom: 12px; padding: 4px 9px; border-radius: 999px; background: rgba(243, 237, 225, 0.92); font-size: 0.75rem; }
.gallery__dots { display: none; }
.pdp__sticky { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__title { font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 12px; }
.pdp__price { font-size: 1.5rem; font-weight: 700; }
.pdp__currency { margin: 4px 0 18px; font-size: 0.86rem; color: var(--ink-2); }
.pdp__story { font-size: 1.06rem; color: var(--ink-2); }
.pdp__buy { margin: 22px 0 18px; padding: 20px; border-radius: var(--r); background: var(--paper-2); box-shadow: inset 0 0 0 1.5px var(--line); }
.variations { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.variations tr { display: block; margin-bottom: 14px; }
.variations th, .variations td { display: block; padding: 0; text-align: left; }
.variations th label { display: block; margin-bottom: 8px; font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-2); }
.variations th label .chosen { color: var(--ink); }
.variations select { width: 100%; }
.variations select.is-enhanced { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.reset_variations { display: inline-block; margin-top: 6px; font-size: 0.82rem; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { display: inline-flex; align-items: center; gap: 8px; min-width: 52px; min-height: 44px; padding: 8px 14px; border: 1.5px solid var(--line-2); border-radius: 999px; background: var(--paper); font-weight: 600; font-size: 0.92rem; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.opt:hover { border-color: var(--ink); }
.opt[aria-pressed='true'] { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.opt[disabled] { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }
.opt .swatch { width: 18px; height: 18px; }
.opt[aria-pressed='true'] .swatch { box-shadow: 0 0 0 2px var(--paper); }
.single_variation_wrap .woocommerce-variation-price { margin: 4px 0 10px; font-weight: 700; }
.woocommerce-variation-availability p { margin: 0 0 10px; font-size: 0.88rem; }
.woocommerce-variation-add-to-cart, form.cart:not(.variations_form) { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--ink); border-radius: 999px; background: var(--paper); height: 52px; }
.quantity .qty { width: 46px; border: 0; background: transparent; text-align: center; font-weight: 700; -moz-appearance: textfield; }
.quantity .qty::-webkit-inner-spin-button, .quantity .qty::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-btn { width: 40px; height: 100%; border: 0; background: none; display: grid; place-items: center; }
.qty-btn .icon { width: 16px; height: 16px; }
.single_add_to_cart_button { flex: 1; min-width: 180px; min-height: 52px; padding: 12px 22px; border: 0; border-radius: 999px; background: var(--olive); color: var(--paper); font-weight: 700; font-size: 1.02rem; transition: background 0.2s, transform 0.2s var(--ease); }
.single_add_to_cart_button:hover { background: var(--olive-2); transform: translateY(-1px); }
.single_add_to_cart_button.disabled, .single_add_to_cart_button:disabled { background: #4f4a40; color: #f3ede1; cursor: not-allowed; transform: none; }
.size-link { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 12px; font-size: 0.86rem; font-weight: 600; }
.size-link .icon { width: 18px; height: 18px; }
.pdp__assure { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 8px; font-size: 0.9rem; }
.pdp__assure li { display: flex; gap: 10px; align-items: center; }
.pdp__assure .icon { width: 20px; height: 20px; color: var(--olive); }
.accordion { border-top: 1.5px solid var(--ink); }
.accordion details { border-bottom: 1px dashed var(--line-2); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; min-height: 56px; cursor: pointer; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.accordion details[open] summary .icon { transform: rotate(45deg); }
.accordion__body { padding-bottom: 18px; font-size: 0.95rem; color: var(--ink-2); }
.pocketlist { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.pocketlist li { display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: baseline; font-size: 0.95rem; }
.pocketlist__n { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: var(--ink); font-size: 0.75rem; }
.specs { margin: 0 0 12px; display: grid; gap: 6px; }
.specs div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
.specs dt { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; padding-top: 3px; color: var(--ink-3); }
.specs dd { margin: 0; color: var(--ink); }
.fineprint { font-size: 0.82rem; color: var(--ink-3); }
.pdp-note { display: grid; grid-template-columns: 220px 1fr; gap: 30px; padding-block: 70px 10px; }
.pdp-note__body { max-width: 760px; font-size: 1.25rem; line-height: 1.5; }
.related-sec { padding-block: 60px 90px; }
@media (max-width: 899px) {
	.pdp__grid { grid-template-columns: 1fr; }
	.pdp__sticky { position: static; }
	.pdp__gallery { margin-inline: calc(var(--gutter) * -1); }
	.gallery__track { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: var(--gutter); scrollbar-width: none; }
	.gallery__track::-webkit-scrollbar { display: none; }
	.gallery__item, .gallery__item--lead { flex: 0 0 86%; scroll-snap-align: center; }
	.gallery__item--lead .gallery__img, .gallery__img { aspect-ratio: 3 / 4; }
	.gallery__dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
	.gallery__dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); transition: width 0.25s, background 0.25s; }
	.gallery__dots span.is-active { width: 22px; border-radius: 999px; background: var(--ink); }
	.pdp-note { grid-template-columns: 1fr; gap: 0; padding-top: 50px; }
	.pdp-note__body { font-size: 1.1rem; }
}

/* ---------- Pages ---------- */
.page-head { padding-block: clamp(36px, 6vw, 80px) clamp(24px, 4vw, 48px); }
.page-head__title { font-size: clamp(2.6rem, 7vw, 6.4rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.94; max-width: 14ch; }
.page-head__title em { color: var(--olive); }
.page-head__lede { max-width: 640px; margin-top: 20px; font-size: 1.14rem; color: var(--ink-2); }
.page-head__meta { margin-top: 14px; color: var(--ink-3); }
.prose { padding-bottom: 90px; font-size: 1.02rem; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 2.2em 0 0.6em; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 1.6em 0 0.5em; letter-spacing: -0.01em; }
.prose p, .prose li { color: #3c362c; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.4em; }
.prose a { font-weight: 600; text-decoration-style: dashed; }
.prose a:hover { color: var(--olive); }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0 1.6em; font-size: 0.94rem; }
.prose th, .prose td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; background: var(--paper-2); color: var(--ink); }
.prose .table-wrap { overflow-x: auto; margin: 1em 0 1.6em; border: 1.5px solid var(--ink); border-radius: var(--r-s); }
.prose .table-wrap table { margin: 0; min-width: 520px; }
.prose .callout { margin: 1.4em 0; padding: 18px 20px; border-radius: var(--r-s); background: var(--paper-2); border-left: 4px solid var(--olive); }
.prose .callout p:last-child { margin: 0; }
.prose .form-box { margin: 1.4em 0; padding: 20px; border: 1.5px dashed var(--ink); border-radius: var(--r-s); background: #fbf8f2; font-family: var(--f-mono); font-size: 0.86rem; white-space: pre-wrap; }
.prose details { border-bottom: 1px dashed var(--line-2); }
.prose summary { padding: 16px 0; font-weight: 700; cursor: pointer; font-size: 1.08rem; }
.prose details > *:not(summary) { margin-bottom: 1em; }
.legal__grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.legal__toc { position: sticky; top: calc(var(--header-h) + 24px); padding: 18px; border-radius: var(--r); background: var(--paper-2); }
.legal__toc-title { margin: 0 0 10px; color: var(--ink-3); }
.legal__toc ol { margin: 0; padding-left: 1.2em; font-size: 0.9rem; }
.legal__toc li { margin-bottom: 6px; }
.legal__toc a { text-decoration: none; }
.legal__toc a:hover { text-decoration: underline; }
.legal__body { max-width: 780px; }
@media (max-width: 899px) { .legal__grid { grid-template-columns: minmax(0, 1fr); } .legal__toc { position: static; } }
.postlist { list-style: none; padding: 0; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 72px); padding-bottom: 100px; align-items: start; }
.contact-cards { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.contact-card { display: grid; grid-template-columns: 34px 1fr; gap: 2px 12px; padding: 18px; border-radius: var(--r); background: var(--paper-2); }
.contact-card .icon { grid-row: span 3; width: 26px; height: 26px; color: var(--olive); }
.contact-card__label { margin: 0; color: var(--ink-3); }
.contact-card__value { margin: 0; font-size: 1.2rem; font-weight: 700; text-decoration: none; word-break: break-word; }
a.contact-card__value:hover { color: var(--olive); }
.contact-card__note { margin: 4px 0 0; font-size: 0.86rem; color: var(--ink-2); }
.contact__quick { margin-bottom: 30px; }
.contact__quick ul { list-style: none; margin: 8px 0 0; padding: 0; border-top: 1.5px solid var(--ink); }
.contact__quick a { display: flex; justify-content: space-between; align-items: center; padding: 12px 2px; border-bottom: 1px dashed var(--line-2); font-weight: 600; text-decoration: none; }
.contact__quick .icon { width: 18px; height: 18px; }
.contact__media { max-width: 300px; aspect-ratio: 3 / 4; transform: rotate(-2deg); }
@media (min-width: 900px) { .contact__form-wrap { position: sticky; top: calc(var(--header-h) + 24px); } }
.form-pocket { position: relative; padding: 84px clamp(18px, 3vw, 36px) 32px; border-radius: 18px; background: var(--paper); box-shadow: 0 0 0 1.5px var(--ink), 10px 10px 0 0 var(--olive); }
.flap--form { height: 58px; border-radius: 18px 18px 0 0; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin: 0 0 16px; }
.field label { display: block; margin-bottom: 6px; font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fbf8f2; font-size: 1rem; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(75, 85, 40, 0.2); }
.form select { border-radius: 12px; border-color: var(--line-2); background-color: #fbf8f2; font-weight: 400; }
.field--hp { position: absolute; left: -9999px; }
.form__legal { font-size: 0.84rem; color: var(--ink-2); }
.notice { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; font-size: 0.95rem; }
.notice p { margin: 0; }
.notice--ok { background: #e3e8cf; }
.notice--ok .icon { color: var(--olive); }
.notice--err { background: #f6d6d1; }
@media (max-width: 899px) { .contact__grid { grid-template-columns: 1fr; } .contact__form-wrap { order: -1; } .contact__media { display: none; } }
@media (max-width: 520px) { .form__row--2 { grid-template-columns: 1fr; gap: 0; } }

/* About */
.about-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 5vw, 72px); align-items: center; padding-block: clamp(36px, 6vw, 80px); }
.about-hero__title { font-size: clamp(2.8rem, 7vw, 6.6rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; }
.about-hero__title em { color: var(--olive); }
.about-hero__media { aspect-ratio: 3 / 2.3; }
@media (max-width: 899px) { .about-hero { grid-template-columns: 1fr; } }
.method { padding-block: clamp(56px, 8vw, 110px); }
.method__steps { list-style: none; margin: 0 0 60px; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: s; }
.method__step { position: relative; padding: 26px 22px; border-radius: var(--r); background: var(--paper-2); }
.method__step:nth-child(2) { margin-top: 40px; background: var(--pink); }
.method__step:nth-child(3) { margin-top: 80px; }
.method__n { display: block; margin-bottom: 30px; font-size: 3.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--olive); }
.method__step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.method__step p { margin: 0; color: var(--ink-2); }
.method__step:nth-child(2) p { color: var(--ink); }
.method__media { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; align-items: end; }
.method__fig { margin: 0; }
.method__fig img { width: 100%; object-fit: cover; border-radius: var(--r); }
.method__fig--a img { aspect-ratio: 1; }
.method__fig--b { margin-bottom: 60px; }
.method__fig--b img { aspect-ratio: 16 / 10; }
.method__fig figcaption { margin-top: 10px; color: var(--ink-3); }
@media (max-width: 899px) { .method__steps { grid-template-columns: 1fr; } .method__step:nth-child(n) { margin-top: 0; } .method__media { grid-template-columns: 1fr; } .method__fig--b { margin: 0; } }
.beliefs { background: var(--ink); color: var(--paper); padding-block: clamp(56px, 8vw, 110px); }
.beliefs .kicker { color: rgba(243, 237, 225, 0.75); }
.beliefs .kicker__num { color: var(--paper); border-color: rgba(243, 237, 225, 0.5); }
.beliefs .section-title em { color: var(--pink); }
.beliefs__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.beliefs__list li { padding: 22px 0; border-top: 1px dashed rgba(243, 237, 225, 0.3); font-size: 1.08rem; color: rgba(243, 237, 225, 0.8); }
.beliefs__list strong { display: block; margin-bottom: 4px; font-size: 1.3rem; color: var(--paper); }
@media (max-width: 760px) { .beliefs__list { grid-template-columns: 1fr; } }
.families { padding-block: clamp(56px, 8vw, 110px) 40px; }
.families__list { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.families__list a { display: grid; grid-template-columns: 50px 1fr auto 30px; align-items: center; gap: 16px; padding: 22px 4px; border-bottom: 1px dashed var(--line-2); text-decoration: none; transition: background 0.2s, padding 0.3s var(--ease); }
.families__list a:hover { background: var(--paper-2); padding-left: 16px; }
.families__name { font-size: clamp(1.5rem, 3.4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; }
.families__count { color: var(--ink-3); }
@media (max-width: 560px) { .families__list a { grid-template-columns: 34px 1fr 24px; } .families__count { display: none; } }
.cta-pocket { padding-block: 40px 100px; }
.cta-pocket__card { display: grid; justify-items: start; gap: 14px; padding: clamp(28px, 5vw, 56px); border-radius: var(--r-l); background: var(--pink); box-shadow: 0 0 0 1.5px var(--ink), 10px 10px 0 0 var(--ink); }
.cta-pocket__card p { margin: 0 0 8px; font-size: 1.1rem; }

/* 404 */
.notfound { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 5vw, 72px); align-items: center; padding-block: clamp(40px, 7vw, 100px); }
.notfound__media { aspect-ratio: 1; max-width: 420px; }
.notfound__search { display: flex; gap: 8px; margin: 26px 0 18px; max-width: 480px; }
.notfound__search input { flex: 1; min-width: 0; min-height: 48px; padding: 10px 16px; border: 1.5px solid var(--ink); border-radius: 999px; background: #fbf8f2; }
.notfound__links { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 760px) { .notfound { grid-template-columns: 1fr; } .notfound__media { max-width: 260px; } }

/* WooCommerce notices (global) */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; margin: 0 0 22px; padding: 14px 18px; border-radius: 14px; background: #e3e8cf; font-size: 0.95rem; }
.woocommerce-info { background: var(--paper-2); }
.woocommerce-error { background: #f6d6d1; display: block; }
.woocommerce-error li { margin: 2px 0; }
.woocommerce-message .button, .woocommerce-info .button { order: 2; display: inline-flex; align-items: center; min-height: 38px; padding: 6px 16px; border-radius: 999px; background: var(--ink); color: var(--paper); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.woocommerce-message a:not(.button), .woocommerce-info a:not(.button) { font-weight: 600; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .stop--1.reveal.is-in { transform: rotate(-2deg); }
.js .stop--2.reveal.is-in { transform: rotate(1.5deg); }
.js .stop--3.reveal.is-in { transform: rotate(-1deg); }
.js .stop--4.reveal.is-in { transform: rotate(2deg); }
@media (max-width: 560px) { .js .stop.reveal.is-in { transform: none; } }

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

/* Videos stay invisible until they actually play, so the poster image is never replaced by a black frame. */
.lazy-video { opacity: 0; transition: opacity 0.6s var(--ease); }
.lazy-video.is-playing { opacity: 1; }
