/* ==========================================================================
   EMVAR — sand-teal
   ========================================================================== */

@font-face { font-family: "Marcellus"; src: url("../fonts/marcellus.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Nunito Sans"; src: url("../fonts/nunito-sans.woff2") format("woff2"); font-weight: 200 1000; font-style: normal; font-display: swap; }
@font-face { font-family: "Nunito Sans"; src: url("../fonts/nunito-sans-italic.woff2") format("woff2"); font-weight: 200 1000; font-style: italic; font-display: swap; }

:root {
	--text: #2A2420;
	--muted: #6A5B4F;
	--bg: #FAF5EC;
	--bg2: #EFE5D5;
	--deep: #3B2B22;
	--deep2: #2E211A;
	--accent: #1F6B67;
	--accent-ink: #1F6B67;
	--accent-soft: #CFE3DF;
	--on-accent: #FFFFFF;
	--on-deep: #FAF5EC;
	--on-deep-muted: #D9CBB6;
	--teal-light: #8FD0C8;
	--border: #DFD2BF;
	--terracotta: #B4583A;
	--ochre: #C8963E;

	--f-display: "Marcellus", "Cormorant Garamond", Georgia, serif;
	--f-body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;

	--r-s: 10px;
	--r-m: 18px;
	--r-l: 28px;
	--r-xl: 44px;
	--r-arch: 999px 999px var(--r-m) var(--r-m);

	--gut: clamp(16px, 4vw, 56px);
	--max: 1440px;
	--ease: cubic-bezier(.7, 0, .2, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);
	--header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--f-body);
	font-size: 16.5px;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
body::after {
	content: "";
	position: fixed; inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: .35;
	background-image: url("../img/grain.png");
	background-size: 160px 160px;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.emv-skip { position: absolute; left: -999px; top: 8px; z-index: 10000; background: var(--deep); color: var(--on-deep); padding: 10px 16px; border-radius: var(--r-s); }
.emv-skip:focus { left: 8px; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.08; letter-spacing: -.005em; margin: 0 0 .5em; color: var(--text); }
p { margin: 0 0 1em; }
.emv-display { font-family: var(--f-display); font-size: clamp(2.6rem, 6.4vw, 5.8rem); line-height: .98; letter-spacing: -.02em; margin: 0 0 .35em; }
.emv-h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.emv-h2 { font-family: var(--f-display); font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.05; margin: 0 0 .5em; }
.emv-eyebrow {
	display: inline-flex; align-items: center; gap: .6em;
	font-family: var(--f-body); font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
	color: var(--accent-ink); margin: 0 0 1.1em; text-decoration: none;
}
.emv-eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.emv-scribble { color: var(--terracotta); }

/* ---------- Buttons: rounded, wipe-fill ---------- */
.emv-btn, .button, button.button, .wc-block-components-button:not(.is-link), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .single_add_to_cart_button {
	position: relative; isolation: isolate; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center; gap: .7em;
	min-height: 54px; padding: 0 1.7em;
	border: 1.5px solid var(--accent); border-radius: 16px;
	background: var(--accent); color: var(--on-accent);
	font-family: var(--f-body); font-size: .86rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; line-height: 1;
	text-decoration: none; cursor: pointer;
	transition: color .45s var(--ease), border-color .45s var(--ease);
}
.emv-btn::before, .woocommerce a.button::before, .woocommerce button.button::before, .single_add_to_cart_button::before {
	content: ""; position: absolute; inset: -2px; z-index: -1;
	background: var(--deep);
	transform: scaleX(0); transform-origin: right center;
	transition: transform .5s var(--ease);
}
.emv-btn:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .single_add_to_cart_button:hover { color: var(--on-deep); border-color: var(--deep); background: var(--accent); }
.emv-btn:hover::before, .woocommerce a.button:hover::before, .woocommerce button.button:hover::before, .single_add_to_cart_button:hover::before { transform: scaleX(1); transform-origin: left center; }
.emv-btn .emv-i { transition: transform .45s var(--ease); }
.emv-btn:hover .emv-i { transform: translateX(4px); }
.emv-btn--ghost { background: rgba(250, 245, 236, .08); color: var(--on-deep); border-color: rgba(250, 245, 236, .75); backdrop-filter: blur(6px); }
.emv-btn--ghost::before { background: var(--bg); }
.emv-btn--ghost:hover { color: var(--text); border-color: var(--bg); background: rgba(250, 245, 236, .08); }
.emv-btn--ink { background: transparent; color: var(--text); border-color: var(--text); }
.emv-btn--ink::before { background: var(--text); }
.emv-btn--ink:hover { background: transparent; color: var(--bg); border-color: var(--text); }
.emv-btn--light { background: var(--bg); color: var(--text); border-color: var(--bg); }
.emv-btn--light::before { background: var(--accent); }
.emv-btn--light:hover { background: var(--bg); color: #fff; border-color: var(--accent); }
.emv-btn--small { min-height: 42px; padding: 0 1.2em; font-size: .75rem; border-radius: 12px; }

.emv-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; background: linear-gradient(currentColor 0 0) no-repeat left bottom / 100% 1px; padding-bottom: 4px; transition: background-size .45s var(--ease); }
.emv-link:hover { background-size: 0 1px; background-position: right bottom; }
.emv-link--light { color: var(--on-deep); }
.emv-link--light:hover { color: var(--teal-light); }
.emv-round { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--text); background: transparent; display: grid; place-items: center; transition: background .3s, color .3s; }
.emv-round:hover { background: var(--text); color: var(--bg); }
.emv-round[data-rail-prev] .emv-i { transform: scaleX(-1); }

/* ---------- Announcement ---------- */
.emv-announce { background: var(--deep); color: var(--on-deep); font-size: .76rem; font-weight: 700; letter-spacing: .08em; overflow: hidden; height: 36px; display: flex; align-items: center; position: relative; z-index: 60; }
.emv-announce__track { display: flex; width: max-content; animation: emv-marquee 42s linear infinite; }
.emv-announce:hover .emv-announce__track { animation-play-state: paused; }
.emv-announce__group { display: flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap; }
.emv-announce__group i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); display: block; }
@keyframes emv-marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.emv-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: rgba(250, 245, 236, .94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: background .4s, color .4s, border-color .4s, height .4s; }
.emv-header__inner { height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.emv-home .emv-header { position: fixed; top: 36px; left: 0; right: 0; background: transparent; color: var(--on-deep); border-color: transparent; backdrop-filter: none; }
.emv-home .emv-header.is-solid { top: 0; background: rgba(250, 245, 236, .94); color: var(--text); border-color: var(--border); backdrop-filter: blur(12px); --header-h: 66px; }
.emv-home .emv-header .emv-logo__word { filter: invert(1) brightness(2); }
.emv-home .emv-header.is-solid .emv-logo__word { filter: none; }
.emv-home .emv-header:not(.is-solid) .emv-logo__mark { --emv-sun: var(--teal-light); }
.emv-header__burger { display: none; background: none; border: 0; padding: 8px; margin-left: -8px; }
.emv-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
.emv-nav > ul > li > a { display: block; padding: 26px 0; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; position: relative; }
.emv-nav > ul > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.emv-nav > ul > li:hover > a::after, .emv-nav > ul > li:focus-within > a::after { transform: scaleX(1); transform-origin: left; }
.emv-nav a:hover { color: inherit; }
.emv-mega {
	position: absolute; left: var(--gut); right: var(--gut); top: calc(100% - 6px);
	display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 28px; align-items: start;
	background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: var(--r-l);
	padding: 36px; box-shadow: 0 30px 60px -30px rgba(59, 43, 34, .35);
	opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s, transform .4s var(--ease-out), visibility .3s;
}
.emv-nav__has-panel:hover .emv-mega, .emv-nav__has-panel:focus-within .emv-mega { opacity: 1; visibility: visible; transform: none; }
.emv-mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.emv-mega__cols a { display: block; font-family: var(--f-display); font-size: 1.28rem; line-height: 1.25; padding: 6px 0; text-decoration: none; }
.emv-mega__cols a:hover { color: var(--accent-ink); transform: translateX(4px); }
.emv-mega__cols a { transition: transform .3s var(--ease-out), color .2s; }
.emv-mega__title { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
a.emv-mega__all { font-family: var(--f-body); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; gap: 6px; align-items: center; margin-top: 16px; color: var(--accent-ink); }
.emv-mega__pic { position: relative; display: block; overflow: hidden; text-decoration: none; }
.emv-mega__pic img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .8s var(--ease-out); }
.emv-mega__pic:hover img { transform: scale(1.05); }
.emv-mega__pic--a { border-radius: var(--r-arch); transform: rotate(-2deg); }
.emv-mega__pic--b { border-radius: 50%; aspect-ratio: 1; margin-top: 40px; transform: rotate(3deg); }
.emv-mega__pic--b img { aspect-ratio: 1; height: 100%; }
.emv-mega__pic span { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); background: var(--bg); padding: 4px 14px; border-radius: 99px; font-family: var(--f-display); font-size: 1rem; }

.emv-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; justify-self: center; }
.emv-logo__mark { width: 34px; height: 34px; color: currentColor; }
.emv-logo__word { width: 128px; height: auto; }
.emv-tools { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.emv-tools__link { font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; padding: 8px 10px; }
.emv-tools__link:hover { color: inherit; opacity: .7; }
.emv-tools__icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border: 0; background: none; border-radius: 50%; text-decoration: none; transition: background .3s; }
.emv-tools__icon:hover { background: rgba(59, 43, 34, .08); color: inherit; }
.emv-bag-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 99px; background: var(--accent); color: #fff; font-size: .66rem; font-weight: 800; display: grid; place-items: center; line-height: 1; }
.emv-bag-count[data-count="0"] { display: none; }

/* search overlay */
.emv-search { position: fixed; inset: 0 0 auto 0; z-index: 80; background: var(--bg); border-bottom: 1px solid var(--border); padding: 28px var(--gut); box-shadow: 0 30px 60px -30px rgba(59, 43, 34, .35); }
.emv-search__form { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.emv-search__form input { flex: 1; border: 0; border-bottom: 1.5px solid var(--text); background: transparent; font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.2rem); padding: 10px 0; color: var(--text); border-radius: 0; }
.emv-search__form input:focus { outline: none; border-color: var(--accent); }
.emv-search__close { background: none; border: 0; padding: 8px; }

/* drawer */
.emv-drawer { position: fixed; inset: 0; z-index: 90; background: rgba(42, 36, 32, .45); }
.emv-drawer__panel { position: absolute; inset: 0 auto 0 0; width: min(420px, 92vw); background: var(--bg); padding: 26px 28px 40px; overflow-y: auto; animation: emv-slide .5s var(--ease-out); border-radius: 0 var(--r-l) var(--r-l) 0; }
@keyframes emv-slide { from { transform: translateX(-100%); } }
.emv-drawer__close { background: none; border: 0; padding: 6px; margin: 0 0 18px -6px; }
.emv-drawer__label { font-size: .7rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 24px 0 8px; }
.emv-drawer ul { list-style: none; margin: 0; padding: 0; }
.emv-drawer__big a { display: block; font-family: var(--f-display); font-size: 1.55rem; line-height: 1.2; padding: 7px 0; text-decoration: none; border-bottom: 1px solid var(--border); }
.emv-drawer__small a { display: block; padding: 6px 0; text-decoration: none; font-weight: 600; }
.emv-drawer__mail { display: inline-flex; gap: 8px; align-items: center; margin-top: 26px; font-weight: 700; color: var(--accent-ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.emv-hero {
	position: relative; isolation: isolate;
	min-height: max(680px, 100svh);
	color: var(--on-deep);
	overflow: hidden;
	background: var(--deep);
	margin-top: -36px; padding-top: 36px;
}
.emv-hero__stage { position: absolute; inset: 0; z-index: -2; }
.emv-hero__poster, .emv-hero__poster img, .emv-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.emv-hero__video { z-index: 1; opacity: 0; transition: opacity 1.2s ease; }
.emv-hero__video.is-playing { opacity: 1; }
.emv-hero__poster img { animation: emv-kenburns 18s ease-out both; }
@keyframes emv-kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.emv-hero__shade {
	position: absolute; inset: 0; z-index: 2;
	background:
		radial-gradient(120% 90% at 0% 100%, rgba(46, 33, 26, .86) 0%, rgba(46, 33, 26, .55) 38%, rgba(46, 33, 26, 0) 70%),
		linear-gradient(180deg, rgba(46, 33, 26, .45) 0%, rgba(46, 33, 26, 0) 22%, rgba(46, 33, 26, 0) 60%, rgba(46, 33, 26, .55) 100%);
}

.emv-hero__word { position: absolute; left: -1vw; right: -1vw; bottom: -4.2vw; z-index: -1; pointer-events: none; opacity: .9; }
.emv-hero__word img { width: 100%; filter: invert(1) brightness(2); opacity: .16; mix-blend-mode: screen; }

.emv-hero__collage { position: absolute; right: var(--gut); top: calc(var(--header-h) + 64px); width: min(42vw, 620px); height: min(64vh, 640px); z-index: 1; }
.emv-frame { position: absolute; margin: 0; overflow: hidden; background: var(--bg); box-shadow: 0 30px 60px -20px rgba(20, 12, 8, .55); will-change: transform; }
.emv-frame img { width: 100%; height: 100%; object-fit: cover; }
.emv-frame--arch { right: 6%; top: 0; width: 44%; aspect-ratio: 3/4; border-radius: var(--r-arch); border: 7px solid var(--bg); --rot: 4deg; }
.emv-frame--circle { right: 43%; top: 46%; width: 30%; aspect-ratio: 1; border-radius: 50%; border: 6px solid var(--bg); --rot: -6deg; z-index: 2; }
.emv-frame--postcard { right: 0; top: 64%; width: 38%; aspect-ratio: 4/3; border-radius: var(--r-s); border: 8px solid var(--bg); border-bottom-width: 26px; --rot: -3deg; overflow: visible; z-index: 3; }
.emv-frame--postcard img { border-radius: 3px; }
.emv-frame { transform: translate3d(0, var(--py, 0px), 0) rotate(var(--rot, 0deg)); opacity: 0; animation: emv-frame-in 1.1s var(--ease-out) forwards; }
.emv-frame--arch { animation-delay: .35s; }
.emv-frame--circle { animation-delay: .55s; }
.emv-frame--postcard { animation-delay: .75s; }
@keyframes emv-frame-in { from { opacity: 0; translate: 0 60px; rotate: -8deg; } to { opacity: 1; translate: 0 0; rotate: 0deg; } }
.emv-tape { position: absolute; top: -14px; left: 50%; width: 92px; height: 26px; transform: translateX(-50%) rotate(-7deg); background: rgba(239, 229, 213, .78); box-shadow: 0 2px 6px rgba(0, 0, 0, .12); clip-path: polygon(3% 0, 97% 4%, 100% 50%, 96% 100%, 2% 96%, 0 50%); }

.emv-badge { position: absolute; left: 14%; top: 74%; width: 138px; height: 138px; z-index: 4; opacity: 0; animation: emv-fade 1s .9s forwards; }
.emv-badge::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: rgba(46, 33, 26, .55); backdrop-filter: blur(6px); }
.emv-badge > svg:first-child { position: relative; width: 100%; height: 100%; animation: emv-spin 26s linear infinite; fill: var(--on-deep); }
.emv-badge text { font-family: var(--f-body); font-size: 12.5px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; }
.emv-badge__mark { position: absolute; inset: 34%; width: 32%; height: 32%; color: var(--on-deep); --emv-sun: var(--teal-light); }
@keyframes emv-spin { to { transform: rotate(360deg); } }
@keyframes emv-fade { to { opacity: 1; } }

.emv-hero__copy { position: absolute; left: var(--gut); bottom: clamp(80px, 13vh, 150px); max-width: min(760px, 56vw); z-index: 2; }
.emv-hero__kicker { position: relative; display: inline-block; text-shadow: 0 1px 18px rgba(20, 12, 8, .55), 0 0 2px rgba(20, 12, 8, .35); font-family: var(--f-display); font-size: clamp(1.15rem, 1.6vw, 1.45rem); font-style: italic; margin: 0 0 18px; color: var(--on-deep); }
.emv-hero__kicker span { position: relative; z-index: 1; }
.emv-hero__scribble { position: absolute; left: -4%; right: -6%; bottom: -12px; width: 112%; height: 16px; color: var(--teal-light); }
.emv-hero__scribble path { stroke-dasharray: 420; stroke-dashoffset: 420; animation: emv-draw 1.4s 1s var(--ease-out) forwards; }
@keyframes emv-draw { to { stroke-dashoffset: 0; } }
.emv-hero__title { font-size: clamp(3rem, 5.9vw, 6rem); line-height: .92; letter-spacing: -.03em; color: var(--on-deep); margin: 0 0 24px; text-shadow: 0 2px 30px rgba(20, 12, 8, .25); }
.emv-line { display: block; overflow: hidden; padding-bottom: .06em; }
.emv-line > span { display: block; transform: translateY(105%); animation: emv-rise 1.1s var(--ease-out) forwards; }
.emv-line:nth-child(2) > span { animation-delay: .14s; padding-left: clamp(24px, 6vw, 110px); }
.emv-hero__title em { font-style: normal; color: var(--teal-light); }
@keyframes emv-rise { to { transform: none; } }
.emv-hero__lede { max-width: 440px; font-size: 1.06rem; color: var(--on-deep-muted); margin-bottom: 30px; opacity: 0; animation: emv-fade 1s .6s forwards; }
.emv-hero__actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 16px; opacity: 0; animation: emv-fade 1s .8s forwards; }
.emv-btn--offset { margin-top: 26px; margin-left: 8px; }
.emv-hero__toggle { position: absolute; right: var(--gut); bottom: 30px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(250, 245, 236, .6); background: rgba(46, 33, 26, .3); color: var(--on-deep); display: grid; place-items: center; backdrop-filter: blur(6px); }
.emv-hero__toggle-play { display: none; }
.emv-hero__toggle[aria-pressed="true"] .emv-hero__toggle-play { display: block; }
.emv-hero__toggle[aria-pressed="true"] .emv-hero__toggle-pause { display: none; }
.emv-hero__toggle-pause { display: grid; place-items: center; }
.emv-hero__toggle[aria-pressed="true"] .emv-hero__toggle-play { display: grid; place-items: center; }
.emv-hero__scroll { position: absolute; left: 50%; bottom: 26px; z-index: 3; font-size: .68rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--on-deep-muted); padding-bottom: 46px; transform: translateX(-50%); }
.emv-hero__scroll::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 38px; background: linear-gradient(var(--on-deep), transparent); animation: emv-drip 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes emv-drip { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- ribbon ---------- */
.emv-ribbon { background: var(--accent); color: #fff; overflow: hidden; padding: 20px 0; border-radius: 0 0 var(--r-xl) var(--r-xl); position: relative; z-index: 2; }
.emv-ribbon__track { display: flex; width: max-content; animation: emv-marquee 48s linear infinite; }
.emv-ribbon:hover .emv-ribbon__track { animation-play-state: paused; }
.emv-ribbon ul { display: flex; list-style: none; margin: 0; padding: 0; }
.emv-ribbon li { display: flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap; }
.emv-ribbon a { font-family: var(--f-display); font-size: clamp(1.4rem, 2.6vw, 2.2rem); text-decoration: none; }
.emv-ribbon a:hover { color: var(--bg); font-style: italic; }
.emv-ribbon__dot { width: 30px; height: 30px; color: #fff; --emv-sun: var(--ochre); }

/* ---------- sections shared ---------- */
.emv-section-head { max-width: var(--max); margin: 0 auto 48px; padding: 0 var(--gut); }
.emv-section-head--split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.emv-section-head--split p { max-width: 420px; justify-self: end; color: var(--muted); }

/* ---------- two ways in ---------- */
.emv-ways { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 11vw, 160px) var(--gut) clamp(60px, 8vw, 120px); display: grid; grid-template-columns: 1.15fr .9fr .8fr; gap: clamp(20px, 3vw, 48px); align-items: start; }
.emv-ways__item { position: relative; display: block; text-decoration: none; color: var(--text); }
.emv-ways__media { display: block; overflow: hidden; }
.emv-ways__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.emv-ways__item:hover .emv-ways__media img { transform: scale(1.05); }
.emv-ways__item--wear .emv-ways__media { aspect-ratio: 3/4; border-radius: var(--r-arch); }
.emv-ways__item--layer { margin-top: clamp(80px, 14vw, 220px); }
.emv-ways__item--layer .emv-ways__media { aspect-ratio: 1; border-radius: 50%; }
.emv-ways__word { position: absolute; font-family: var(--f-display); font-size: clamp(4rem, 10vw, 9.5rem); line-height: .8; letter-spacing: -.04em; color: var(--bg); mix-blend-mode: normal; text-shadow: 0 4px 40px rgba(20, 12, 8, .3); pointer-events: none; }
.emv-ways__item--wear .emv-ways__word { right: 8%; bottom: 16%; }
.emv-ways__item--layer .emv-ways__word { right: -6%; top: auto; bottom: 64px; color: var(--accent); text-shadow: none; z-index: 2; }
.emv-ways__note { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); font-weight: 700; }
.emv-ways__item:hover .emv-ways__note { color: var(--accent-ink); }
.emv-ways__text { padding-top: clamp(40px, 8vw, 120px); position: relative; }
.emv-ways__text p:not(.emv-eyebrow) { color: var(--muted); }
.emv-ways__arrow { width: 120px; color: var(--terracotta); margin-top: 18px; transform: rotate(10deg); }

/* ---------- mosaic ---------- */
.emv-mosaic { background: var(--bg2); padding: clamp(80px, 10vw, 140px) 0; border-radius: var(--r-xl); margin: 0 clamp(0px, 1vw, 16px); position: relative; }
.emv-mosaic__grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(46px, 5.4vw, 78px); gap: clamp(12px, 1.6vw, 24px); }
.emv-tile { position: relative; display: block; text-decoration: none; color: var(--text); }
.emv-tile__media { position: absolute; inset: 0; overflow: hidden; border-radius: var(--r-l); background: var(--border); transition: border-radius .6s var(--ease-out); }
.emv-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.emv-tile:hover .emv-tile__media img { transform: scale(1.06); }
.emv-tile__label { position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; background: var(--bg); padding: 12px 18px; border-radius: 16px; max-width: calc(100% - 36px); width: max-content; transition: transform .5s var(--ease-out), background .3s; box-shadow: 0 12px 30px -16px rgba(59, 43, 34, .4); }
.emv-tile:hover .emv-tile__label { transform: translateX(8px) rotate(-1.5deg); background: var(--accent); color: #fff; }
.emv-tile__num { font-size: .7rem; font-weight: 800; letter-spacing: .16em; color: var(--accent-ink); }
.emv-tile:hover .emv-tile__num, .emv-tile:hover .emv-tile__count { color: rgba(255, 255, 255, .85); }
.emv-tile__name { font-family: var(--f-display); font-size: clamp(1.1rem, 1.6vw, 1.5rem); line-height: 1.1; }
.emv-tile__count { font-size: .76rem; color: var(--muted); font-weight: 700; }
.emv-tile--1 { grid-column: 1 / span 5; grid-row: 1 / span 8; }
.emv-tile--1 .emv-tile__media { border-radius: var(--r-arch); }
.emv-tile--2 { grid-column: 6 / span 4; grid-row: 2 / span 6; }
.emv-tile--3 { grid-column: 10 / span 3; grid-row: 1 / span 5; }
.emv-tile--3 .emv-tile__media { border-radius: 999px; }
.emv-tile--4 { grid-column: 6 / span 4; grid-row: 8 / span 5; }
.emv-tile--4 .emv-tile__media { border-radius: var(--r-l) var(--r-l) 999px var(--r-l); }
.emv-tile--5 { grid-column: 10 / span 3; grid-row: 6 / span 4; }
.emv-tile--5 .emv-tile__media { border-radius: 50%; }
.emv-tile--6 { grid-column: 2 / span 4; grid-row: 9 / span 5; }
.emv-tile--6 .emv-tile__media { border-radius: 999px 999px var(--r-l) var(--r-l); }
.emv-tile--3 .emv-tile__label, .emv-tile--5 .emv-tile__label { left: 50%; transform: translateX(-50%); bottom: -14px; right: auto; white-space: nowrap; }
.emv-tile--3:hover .emv-tile__label, .emv-tile--5:hover .emv-tile__label { transform: translateX(-50%) rotate(-2deg); }
.emv-tile--3 .emv-tile__label, .emv-tile--5 .emv-tile__label { white-space: normal; width: max-content; max-width: 118%; justify-content: center; text-align: center; }

/* ---------- rail + product cards ---------- */
.emv-rail { padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 100px); }
.emv-rail__head { max-width: var(--max); margin: 0 auto 36px; padding: 0 var(--gut); display: flex; align-items: flex-end; gap: 24px; }
.emv-rail__head .emv-h2 { margin: 0; }
.emv-rail__arrow { width: 96px; margin-bottom: -10px; }
.emv-rail__ctrl { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.emv-rail__ctrl .emv-link { margin-left: 14px; }
ul.emv-rail__list { list-style: none; margin: 0; padding: 0 var(--gut) 20px; display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 22vw, 330px); gap: clamp(14px, 1.8vw, 28px); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--gut); scrollbar-width: none; }
ul.emv-rail__list::-webkit-scrollbar { display: none; }
ul.emv-rail__list > li { scroll-snap-align: start; margin: 0 !important; width: auto !important; float: none !important; }
ul.emv-rail__list > li:nth-child(even) { padding-top: 46px; }

.emv-card { display: block; text-decoration: none; color: var(--text); }
.emv-card:hover { color: var(--text); }
.emv-card__media { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-l) var(--r-l) var(--r-s) var(--r-l); background: var(--bg2); }
.emv-card__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transition: opacity .7s ease, transform 1.2s var(--ease-out); margin: 0 !important; }
.emv-card__img--alt { opacity: 0; }
.emv-card:hover .emv-card__img--alt { opacity: 1; }
.emv-card:hover .emv-card__img { transform: scale(1.04); }
.emv-card__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--border); }
.emv-card__ph svg { width: 40%; }
.emv-sticker { position: absolute; left: 12px; top: 14px; background: var(--bg); color: var(--accent-ink); font-family: var(--f-display); font-size: .92rem; padding: 3px 12px 4px; border-radius: 99px; transform: rotate(-4deg); box-shadow: 0 6px 16px -8px rgba(59, 43, 34, .5); }
.emv-sticker--muted { color: var(--muted); }
.emv-card__view { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; background: var(--deep); color: var(--on-deep); padding: 8px 14px; border-radius: 99px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .5s var(--ease-out); }
.emv-card:hover .emv-card__view, .emv-card:focus-visible .emv-card__view { opacity: 1; transform: none; }
.emv-card__body { display: block; padding: 14px 4px 0; }
.emv-card__cat { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.emv-card__title { display: block; font-family: var(--f-display); font-size: 1.16rem; line-height: 1.2; margin-bottom: 6px; }
.emv-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.emv-card__price { font-weight: 800; font-variant-numeric: tabular-nums; }
.emv-card__price .amount { color: var(--text); }
.emv-card__colour { font-size: .8rem; color: var(--muted); text-align: right; }

/* ---------- meadow diary ---------- */
.emv-diary { max-width: var(--max); margin: 0 auto; padding: clamp(60px, 8vw, 120px) var(--gut) clamp(120px, 14vw, 220px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.emv-diary__sticky { position: sticky; top: calc(var(--header-h) + 40px); padding-top: 40px; }
.emv-diary__sticky p:not(.emv-eyebrow) { color: var(--muted); max-width: 420px; }
.emv-diary__sticky .emv-btn { margin-top: 14px; }
.emv-diary__collage { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 70px; gap: 16px; }
.emv-diary__collage figure { margin: 0; position: relative; }
.emv-diary__collage img, .emv-diary__collage video { width: 100%; height: 100%; object-fit: cover; }
.emv-diary__film { grid-column: 2 / span 3; grid-row: 1 / span 8; border-radius: var(--r-arch); overflow: hidden; box-shadow: 0 40px 70px -40px rgba(59, 43, 34, .6); z-index: 2; }
.emv-diary__film figcaption { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); white-space: nowrap; background: rgba(250, 245, 236, .92); padding: 6px 14px; border-radius: 99px; font-size: .78rem; font-weight: 700; }
.emv-diary__p { will-change: transform; transform: translate3d(0, var(--py, 0px), 0); }
.emv-diary__p > img { border-radius: var(--r-l); }
.emv-diary__p--1 { grid-column: 5 / span 2; grid-row: 3 / span 5; }
.emv-diary__p--1 img { border-radius: var(--r-l) var(--r-l) 999px 999px; }
.emv-diary__p--2 { grid-column: 1 / span 2; grid-row: 7 / span 3; z-index: 3; }
.emv-diary__p--2 img { border-radius: 50%; aspect-ratio: 1; border: 6px solid var(--bg); }
.emv-diary__p--2 figcaption { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; text-align: center; margin-top: 8px; transform: rotate(-3deg); }
.emv-diary__p--3 { grid-column: 4 / span 3; grid-row: 9 / span 5; margin-left: 20%; }
.emv-diary__p--4 { grid-column: 1 / span 3; grid-row: 11 / span 4; transform: translate3d(0, var(--py, 0px), 0) rotate(-3deg); background: #fff; padding: 10px 10px 34px; border-radius: 6px; box-shadow: 0 30px 50px -30px rgba(59, 43, 34, .5); }
.emv-diary__p--4 img { border-radius: 2px; }

/* ---------- layering (dark) ---------- */
.emv-layer { position: relative; background: var(--deep); color: var(--on-deep); border-radius: var(--r-xl); margin: 0 clamp(0px, 1vw, 16px); padding: clamp(80px, 10vw, 140px) var(--gut) 0; overflow: hidden; }
.emv-layer h2, .emv-layer h3 { color: var(--on-deep); }
.emv-layer .emv-eyebrow { color: var(--teal-light); }
.emv-layer__intro { max-width: var(--max); margin: 0 auto 60px; display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 40px; align-items: end; }
.emv-layer__intro .emv-display { margin: 0; }
.emv-layer__intro p:not(.emv-eyebrow) { color: var(--on-deep-muted); max-width: 400px; margin: 0; }
.emv-layer__orb { margin: 0; width: clamp(140px, 14vw, 210px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 2px solid rgba(143, 208, 200, .5); outline: 1px dashed rgba(250, 245, 236, .3); outline-offset: 10px; }
.emv-layer__orb video { width: 100%; height: 100%; object-fit: cover; }
.emv-layer__steps { list-style: none; margin: 0 auto; padding: 0; max-width: var(--max); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.emv-step { position: relative; }
.emv-step:nth-child(2) { margin-top: 70px; }
.emv-step:nth-child(3) { margin-top: 140px; }
.emv-step__num { position: absolute; top: -.52em; left: -.08em; z-index: 2; font-family: var(--f-display); font-size: clamp(4rem, 8vw, 7.5rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--teal-light); }
.emv-step__media { display: block; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-l); margin-bottom: 20px; }
.emv-step:nth-child(2) .emv-step__media { border-radius: var(--r-arch); }
.emv-step:nth-child(3) .emv-step__media { border-radius: var(--r-l) 999px var(--r-l) var(--r-l); }
.emv-step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.emv-step:hover .emv-step__media img { transform: scale(1.05); }
.emv-step h3 { font-size: 1.6rem; margin-bottom: .3em; }
.emv-step p { color: var(--on-deep-muted); max-width: 320px; }
.emv-layer__cta { max-width: var(--max); margin: 60px auto 0; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.emv-layer__marquee { margin: 80px calc(var(--gut) * -1) 0; padding: 18px 0 26px; border-top: 1px solid rgba(250, 245, 236, .15); overflow: hidden; white-space: nowrap; }
.emv-layer__marquee span { display: inline-block; font-family: var(--f-display); font-size: clamp(3rem, 8vw, 7rem); color: transparent; -webkit-text-stroke: 1px rgba(250, 245, 236, .35); animation: emv-marquee 60s linear infinite reverse; }

/* ---------- scenes ---------- */
.emv-scenes { padding: clamp(100px, 12vw, 180px) 0 clamp(60px, 8vw, 110px); }
.emv-scenes__row { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: clamp(16px, 2.4vw, 36px); align-items: start; }
.emv-scene { display: block; text-decoration: none; color: var(--text); }
.emv-scene__media { display: block; overflow: hidden; aspect-ratio: 2/3; border-radius: var(--r-l); }
.emv-scene__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .6s; }
.emv-scene:hover .emv-scene__media img { transform: scale(1.05); }
.emv-scene--1 { margin-top: 120px; }
.emv-scene--1 .emv-scene__media { border-radius: 999px 999px var(--r-l) var(--r-l); }
.emv-scene--2 .emv-scene__media { aspect-ratio: 3/4; }
.emv-scene--3 { margin-top: 220px; }
.emv-scene--3 .emv-scene__media { border-radius: var(--r-l) var(--r-l) 999px 999px; }
.emv-scene__cap { display: block; font-family: var(--f-display); font-size: 1.5rem; margin-top: 16px; line-height: 1.2; }
.emv-scene__cap em { font-style: italic; color: var(--terracotta); margin-right: 6px; }
.emv-scene__cap small { display: block; font-family: var(--f-body); font-size: .88rem; color: var(--muted); margin-top: 4px; }
.emv-scene:hover .emv-scene__cap { color: var(--accent-ink); }

/* ---------- materials ---------- */
.emv-materials { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--gut) clamp(90px, 10vw, 150px); display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(30px, 6vw, 100px); }
.emv-materials__head { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
.emv-materials__head p:not(.emv-eyebrow) { color: var(--muted); }
.emv-materials__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; }
.emv-materials__list li:nth-child(even) { transform: translateY(60px); }
.emv-orb { display: block; width: 132px; height: 132px; border-radius: 50%; overflow: hidden; margin-bottom: 18px; outline: 1px dashed var(--terracotta); outline-offset: 7px; }
.emv-orb img { width: 100%; height: 100%; object-fit: cover; }
.emv-materials__list h3 { font-size: 1.5rem; margin-bottom: .35em; }
.emv-materials__list p { color: var(--muted); }

/* ---------- help ---------- */
.emv-help { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) clamp(90px, 10vw, 150px); display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.emv-help__pic { margin: 0; border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 999px; overflow: hidden; aspect-ratio: 5/4; }
.emv-help__pic img { width: 100%; height: 100%; object-fit: cover; }
.emv-help__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.emv-help__list a { display: flex; gap: 20px; align-items: center; padding: 22px 6px; border-bottom: 1px solid var(--border); text-decoration: none; transition: padding .4s var(--ease-out), background .3s; border-radius: 0; }
.emv-help__list a:hover { padding-left: 18px; background: var(--bg2); color: var(--text); }
.emv-help__list .emv-i { flex: none; width: 30px; height: 30px; color: var(--accent-ink); }
.emv-help__list span { display: flex; flex-direction: column; color: var(--muted); font-size: .94rem; }
.emv-help__list strong { font-family: var(--f-display); font-weight: 400; font-size: 1.35rem; color: var(--text); }

/* ---------- letter ---------- */
.emv-letter { position: relative; min-height: 560px; display: grid; place-items: center; padding: 80px var(--gut); margin: 0 clamp(0px, 1vw, 16px) clamp(16px, 2vw, 24px); border-radius: var(--r-xl); overflow: hidden; }
.emv-letter__bg { position: absolute; inset: 0; }
.emv-letter__bg img { width: 100%; height: 100%; object-fit: cover; }
.emv-letter__card { position: relative; max-width: 560px; background: var(--bg); padding: clamp(32px, 4vw, 56px); border-radius: var(--r-m); transform: rotate(-1.6deg); box-shadow: 0 40px 80px -30px rgba(20, 12, 8, .55); }
.emv-letter__card p:not(.emv-eyebrow) { color: var(--muted); }
.emv-letter__card .emv-btn { text-transform: none; letter-spacing: .02em; font-size: .95rem; }
.emv-letter__stamp { position: absolute; right: 26px; top: -30px; width: 84px; height: 84px; padding: 12px; background: var(--accent); color: #fff; border-radius: 8px; --emv-sun: var(--ochre); transform: rotate(8deg); outline: 3px dashed var(--bg); outline-offset: -8px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.emv-footer { background: var(--deep); color: var(--on-deep); border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; margin-top: 0; }
.emv-footer a { color: var(--on-deep); text-decoration: none; }
.emv-footer a:hover { color: var(--teal-light); }
.emv-footer__promise { max-width: var(--max); margin: 0 auto; padding: 44px var(--gut); display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; border-bottom: 1px solid rgba(250, 245, 236, .14); }
.emv-promise { display: flex; gap: 14px; align-items: flex-start; }
.emv-promise .emv-i { flex: none; color: var(--teal-light); }
.emv-promise strong { display: block; font-family: var(--f-display); font-weight: 400; font-size: 1.12rem; }
.emv-promise span { font-size: .88rem; color: var(--on-deep-muted); }
.emv-footer__main { max-width: var(--max); margin: 0 auto; padding: 64px var(--gut) 20px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.emv-footer__logo { display: inline-block; width: 64px; margin-bottom: 18px; --emv-sun: var(--teal-light); }
.emv-footer__brand p { color: var(--on-deep-muted); max-width: 320px; }
.emv-footer__mail { font-weight: 800; border-bottom: 1px solid rgba(250, 245, 236, .4); }
.emv-footer__title { font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }
.emv-footer__col ul { list-style: none; margin: 0; padding: 0; }
.emv-footer__col li { margin: 0 0 9px; }
.emv-footer__col a { color: var(--on-deep-muted); background: linear-gradient(currentColor 0 0) no-repeat left bottom / 0 1px; transition: background-size .4s var(--ease), color .3s; padding-bottom: 2px; }
.emv-footer__col a:hover { color: var(--on-deep); background-size: 100% 1px; }
.emv-footer__word { padding: 30px var(--gut) 0; margin-bottom: -5.2vw; opacity: .12; }
.emv-footer__word img { width: 100%; filter: invert(1) brightness(2); }
.emv-footer__legal { position: relative; background: var(--deep2); padding: 18px var(--gut); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .8rem; color: var(--on-deep-muted); }
.emv-footer__legal p { margin: 0; }

/* cookie */
.emv-cookie { position: fixed; left: 16px; bottom: 16px; z-index: 95; max-width: 420px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-m); padding: 18px 20px; display: flex; gap: 16px; align-items: center; box-shadow: 0 30px 60px -30px rgba(59, 43, 34, .5); font-size: .88rem; }
.emv-cookie p { margin: 0; }
.emv-cookie .emv-btn { white-space: nowrap; flex: none; }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.emv-page-head { position: relative; max-width: var(--max); margin: 0 auto; padding: clamp(50px, 7vw, 100px) var(--gut) clamp(40px, 5vw, 70px); display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end; }
.emv-page-head::before { content: ""; position: absolute; inset: 0 clamp(0px, 1vw, 16px); background: var(--bg2); border-radius: 0 0 var(--r-xl) var(--r-xl); z-index: -1; }
.emv-page-head__text { padding-bottom: 10px; }
.emv-page-head__date, .emv-page-head__lede { color: var(--muted); font-weight: 600; margin: 0; max-width: 560px; }
.emv-page-head__pic { margin: 0 0 -80px; width: 100%; max-width: 320px; justify-self: end; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 8px solid var(--bg); transform: rotate(6deg); box-shadow: 0 30px 60px -30px rgba(59, 43, 34, .5); }
.emv-page-head__pic img { width: 100%; height: 100%; object-fit: cover; }
.emv-page-head__emblem { position: absolute; right: calc(var(--gut) + 360px); bottom: 40px; width: 56px; color: var(--terracotta); --emv-sun: var(--accent); animation: emv-spin 30s linear infinite; }

.emv-page { max-width: 1180px; margin: 0 auto; padding: clamp(60px, 7vw, 110px) var(--gut) 80px; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); }
.emv-page--list { grid-template-columns: minmax(0, 760px); justify-content: center; }
.emv-toc { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; font-size: .9rem; }
.emv-toc summary { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); cursor: pointer; margin-bottom: 12px; list-style: none; }
.emv-toc summary::-webkit-details-marker { display: none; }
.emv-toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--border); }
.emv-toc a { display: block; padding: 6px 0 6px 16px; margin-left: -1px; border-left: 2px solid transparent; text-decoration: none; color: var(--muted); line-height: 1.35; }
.emv-toc a:hover { color: var(--text); }
.emv-toc a.is-current { color: var(--accent-ink); border-color: var(--accent); font-weight: 700; }
.emv-page:not(:has(.emv-toc:not([hidden]))) { grid-template-columns: minmax(0, 820px); justify-content: center; }

.emv-prose { max-width: 740px; font-size: 1.04rem; }
.emv-prose > *:first-child { margin-top: 0; }
.emv-prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 2.2em 0 .6em; scroll-margin-top: calc(var(--header-h) + 30px); position: relative; }
.emv-prose h3 { font-size: 1.35rem; margin: 1.8em 0 .5em; }
.emv-prose p, .emv-prose li { color: #3E3530; }
.emv-prose ul, .emv-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.emv-prose li { margin-bottom: .45em; }
.emv-prose li::marker { color: var(--accent); }
.emv-prose a { color: var(--accent-ink); font-weight: 700; }
.emv-prose strong { color: var(--text); }
.emv-prose table { width: 100%; border-collapse: collapse; margin: 1em 0 1.8em; font-size: .95rem; background: #fff; border-radius: var(--r-s); overflow: hidden; box-shadow: 0 0 0 1px var(--border); }
.emv-prose th, .emv-prose td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.emv-prose th { background: var(--bg2); font-weight: 800; font-size: .82rem; letter-spacing: .04em; }
.emv-prose tr:last-child td { border-bottom: 0; }
.emv-prose .emv-callout, .emv-prose blockquote { margin: 1.6em 0; padding: 20px 24px; background: var(--bg2); border-left: 3px solid var(--accent); border-radius: 0 var(--r-m) var(--r-m) 0; }
.emv-prose blockquote p:last-child, .emv-prose .emv-callout p:last-child { margin: 0; }
.emv-prose .emv-form { background: #fff; border: 1px dashed var(--border); padding: 24px; border-radius: var(--r-m); font-size: .95rem; }
.emv-prose figure { margin: 2em 0; }
.emv-prose figure img { border-radius: var(--r-l); width: 100%; }
.emv-prose figcaption { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.emv-prose .emv-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 1.5em 0 2em; }
.emv-prose .emv-steps-grid figure { margin: 0; }
.emv-prose .emv-steps-grid img { aspect-ratio: 3/4; object-fit: cover; }
.emv-table-wrap { overflow-x: auto; }

.emv-still { max-width: 1180px; margin: 0 auto 90px; padding: 36px clamp(24px, 4vw, 48px); background: var(--accent); color: #fff; border-radius: var(--r-l); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; width: calc(100% - var(--gut) * 2); }
.emv-still h2 { color: #fff; margin-bottom: .2em; }
.emv-still p { margin: 0; color: rgba(255, 255, 255, .88); }
.emv-still .emv-btn { background: var(--bg); color: var(--text); border-color: var(--bg); text-transform: none; letter-spacing: .02em; font-size: .95rem; }
.emv-still .emv-btn:hover { color: var(--on-deep); border-color: var(--deep); }

/* lookbook */
.emv-lb-hero { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 5vw, 80px) var(--gut); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.emv-lb-hero__media { aspect-ratio: 9/14; max-height: 78vh; border-radius: var(--r-arch); overflow: hidden; justify-self: center; width: 100%; max-width: 520px; }
.emv-lb-hero__media video, .emv-lb-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.emv-lb-hero__text p:not(.emv-eyebrow) { color: var(--muted); max-width: 440px; font-size: 1.1rem; }
.emv-lb-hero__scribble { width: 260px; height: 20px; }
.emv-lb { max-width: var(--max); margin: 0 auto; padding: 40px var(--gut) 120px; display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); align-items: start; }
.emv-lb__item { display: block; text-decoration: none; color: var(--text); grid-column: span 4; }
.emv-lb__media { display: block; overflow: hidden; border-radius: var(--r-l); }
.emv-lb__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.emv-lb__item:hover img { transform: scale(1.04); }
.emv-lb__item--tall .emv-lb__media { aspect-ratio: 3/4; }
.emv-lb__item--wide { grid-column: span 8; }
.emv-lb__item--wide .emv-lb__media { aspect-ratio: 16/10; }
.emv-lb__item--square .emv-lb__media { aspect-ratio: 1; border-radius: 50%; }
.emv-lb__item--n2 { margin-top: 80px; }
.emv-lb__item--n3 { grid-column: 2 / span 4; }
.emv-lb__item--n4 { grid-column: span 3; margin-top: 140px; }
.emv-lb__item--n5 { grid-column: span 4; margin-top: -40px; }
.emv-lb__item--n5 .emv-lb__media { border-radius: var(--r-arch); }
.emv-lb__item--n6 { grid-column: span 3; margin-top: 60px; }
.emv-lb__item--n7 { grid-column: 3 / span 4; }
.emv-lb__item--n8 { margin-top: 120px; }
.emv-lb__item--n8 .emv-lb__media { border-radius: var(--r-l) var(--r-l) 999px 999px; }
.emv-lb__item--n9 { grid-column: span 7; }
.emv-lb__item--n10 { grid-column: span 5; margin-top: 90px; }
.emv-lb__item--n11 { grid-column: 2 / span 4; }
.emv-lb__item--n11 .emv-lb__media { border-radius: 999px 999px var(--r-l) var(--r-l); }
.emv-lb__item--n12 { grid-column: span 7; margin-top: 140px; }
.emv-lb__cap { display: block; margin-top: 12px; font-size: .92rem; color: var(--muted); }
.emv-lb__cap b { font-family: var(--f-display); font-weight: 400; color: var(--terracotta); margin-right: 6px; }
.emv-lb__quote { grid-column: 3 / span 8; margin: 60px 0; text-align: center; font-family: var(--f-display); font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.15; }
.emv-lb__quote p { margin: 0; }

/* 404 */
.emv-404 { max-width: var(--max); margin: 0 auto; padding: clamp(50px, 8vw, 120px) var(--gut); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.emv-404__pic { margin: 0; border-radius: var(--r-arch); overflow: hidden; aspect-ratio: 4/5; }
.emv-404__pic img { width: 100%; height: 100%; object-fit: cover; }
.emv-404 .emv-display { font-size: clamp(2.2rem, 4.6vw, 4rem); }
.emv-404 p:not(.emv-eyebrow) { color: var(--muted); }

/* ==========================================================================
   WOOCOMMERCE
   ========================================================================== */
.emv-crumbs { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.emv-crumbs a { text-decoration: none; }
.emv-crumbs a:hover { color: var(--accent-ink); }

.emv-shop-head { position: relative; max-width: var(--max); margin: 0 auto; padding: clamp(40px, 6vw, 90px) var(--gut) clamp(30px, 4vw, 60px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.emv-shop-head__desc { color: var(--muted); max-width: 560px; font-size: 1.05rem; }
.emv-shop-head__pic { margin: 0; justify-self: end; width: min(100%, 340px); aspect-ratio: 3/4; border-radius: var(--r-arch); overflow: hidden; transform: rotate(3deg); box-shadow: 0 30px 60px -30px rgba(59, 43, 34, .5); }
.emv-shop-head__pic img { width: 100%; height: 100%; object-fit: cover; }
.emv-shop-head__ring { position: absolute; right: calc(var(--gut) + 190px); bottom: 12%; width: 240px; height: 96px; color: var(--accent); opacity: .7; transform: rotate(-8deg); pointer-events: none; }
.emv-chips { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) 10px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.emv-chips::-webkit-scrollbar { display: none; }
.emv-chips a { flex: none; padding: 10px 18px; border: 1px solid var(--border); border-radius: 99px; text-decoration: none; font-size: .88rem; font-weight: 700; background: #fff; transition: background .3s, color .3s, border-color .3s; }
.emv-chips a:hover { border-color: var(--text); color: var(--text); }
.emv-chips a.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.emv-shop { max-width: var(--max); margin: 0 auto; padding: 30px var(--gut) 110px; }
.emv-shop__bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 30px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.woocommerce .woocommerce-result-count { margin: 0; color: var(--muted); font-size: .9rem; float: none; }
.woocommerce .woocommerce-ordering { margin: 0; float: none; }
.woocommerce-ordering select, .emv-select, .woocommerce div.product form.cart .variations select {
	appearance: none; -webkit-appearance: none; border: 1.5px solid var(--border); border-radius: 12px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%232A2420' stroke-width='1.6'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center; padding: 11px 40px 11px 14px; font: inherit; font-size: .92rem; color: var(--text); min-width: 180px;
}
.woocommerce ul.products, .woocommerce-page ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px clamp(16px, 2.4vw, 36px); margin: 0; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; padding: 0; text-align: left; }
.emv-shop ul.products li.product:nth-child(3n+2) { transform: translateY(40px); }
.emv-shop ul.products li.emv-shop__story { grid-column: span 2; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; background: var(--bg2); border-radius: var(--r-xl); padding: 20px; transform: none !important; }
.emv-shop__story img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-arch); }
.emv-shop__quote { font-family: var(--f-display); font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.2; }
.woocommerce nav.woocommerce-pagination { margin-top: 90px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: inline-flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--border); padding: 0; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--text); color: var(--bg); }
.woocommerce-info, .woocommerce-message, .woocommerce-error, .woocommerce-noreviews, p.no-comments { background: var(--bg2) !important; color: var(--text) !important; border-top-color: var(--accent) !important; border-radius: var(--r-s); }
.woocommerce-info::before, .woocommerce-message::before { color: var(--accent) !important; }

/* single product */
.emv-product-wrap { max-width: var(--max); margin: 0 auto; padding: 30px var(--gut) 100px; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: clamp(30px, 5vw, 90px); align-items: start; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { width: auto !important; float: none !important; margin: 0 !important; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.woocommerce div.product div.images .woocommerce-product-gallery__image { width: auto !important; margin: 0 !important; overflow: hidden; border-radius: var(--r-l); background: var(--bg2); }
.woocommerce div.product div.images .woocommerce-product-gallery__image:first-child { grid-column: 1 / -1; border-radius: var(--r-xl) var(--r-xl) var(--r-l) var(--r-l); }
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(3) { margin-top: 60px !important; border-radius: var(--r-l) var(--r-l) 999px 999px; }
.woocommerce div.product div.images img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.woocommerce div.product div.images .flex-control-thumbs { display: none; }
.woocommerce div.product .woocommerce-product-gallery__trigger { top: 18px; right: 18px; background: var(--bg); border-radius: 50%; }
.woocommerce div.product div.summary { position: sticky; top: calc(var(--header-h) + 24px); }
.woocommerce div.product .product_title { font-size: clamp(2.1rem, 3.4vw, 3.2rem); line-height: 1.02; margin: 8px 0 14px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--text); font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.emv-price-note { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: #3E3530; font-size: 1.05rem; margin-bottom: 22px; }
.woocommerce div.product form.cart { margin: 0 0 26px; padding: 22px; background: var(--bg2); border-radius: var(--r-l); }
.woocommerce div.product form.cart::before, .woocommerce div.product form.cart::after { display: none; }
.woocommerce div.product form.cart .variations { margin-bottom: 12px; }
.woocommerce div.product form.cart .variations th, .woocommerce div.product form.cart .variations td { display: block; padding: 0; text-align: left; }
.woocommerce div.product form.cart .variations label { font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.woocommerce div.product form.cart .variations select { width: 100%; margin: 8px 0 4px; }
.woocommerce div.product form.cart .reset_variations { font-size: .8rem; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart, .woocommerce div.product form.cart:not(.variations_form) { display: flex; gap: 12px; flex-wrap: wrap; }
.woocommerce .quantity .qty { width: 78px; height: 54px; border: 1.5px solid var(--border); border-radius: 14px; font: inherit; font-weight: 800; background: #fff; }
.woocommerce div.product form.cart .button { flex: 1; min-width: 200px; float: none; }
.woocommerce div.product form.cart .button.disabled, .woocommerce div.product form.cart .button:disabled, .woocommerce div.product form.cart .button.disabled:hover { background: var(--accent) !important; border-color: var(--accent) !important; color: #fff !important; opacity: .45; cursor: not-allowed; }
.woocommerce div.product form.cart .button.disabled::before { display: none; }
.woocommerce-variation-price .price { font-size: 1.1rem !important; }
.woocommerce div.product .woocommerce-message .button, .woocommerce-message .button { min-height: 40px; }
.woocommerce div.product .stock { font-weight: 700; }
.woocommerce div.product .stock.out-of-stock { color: var(--terracotta); }
.woocommerce div.product .stock.in-stock { color: var(--accent-ink); }
.emv-panels { border-top: 1px solid var(--border); }
.emv-panel { border-bottom: 1px solid var(--border); }
.emv-panel summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 2px; cursor: pointer; list-style: none; font-family: var(--f-display); font-size: 1.25rem; }
.emv-panel summary::-webkit-details-marker { display: none; }
.emv-panel summary .emv-i { transition: transform .4s var(--ease-out); }
.emv-panel[open] summary .emv-i { transform: rotate(45deg); }
.emv-panel__body { padding: 0 2px 18px; color: #3E3530; font-size: .96rem; }
.emv-spec { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .92rem; }
.emv-spec th, .emv-spec td { text-align: left; padding: 9px 0; border-bottom: 1px dashed var(--border); vertical-align: top; }
.emv-spec th { width: 38%; font-weight: 800; color: var(--text); padding-right: 12px; }
.emv-note { font-size: .88rem; color: var(--muted); }
.woocommerce div.product .related.products, .woocommerce div.product .upsells.products { grid-column: 1 / -1; margin-top: 80px; }
.woocommerce div.product .related.products > h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 36px; }
.woocommerce div.product .related ul.products { grid-template-columns: repeat(4, 1fr); }
.emv-eyebrow + .product_title { margin-top: 0; }

/* woocommerce blocks: cart / checkout / account */
.emv-wc-head { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 5vw, 70px) var(--gut) 10px; }
.emv-wc-page { max-width: var(--max); margin: 0 auto; padding: 10px var(--gut) 100px; }
.emv-wc-page .wc-block-components-button:not(.is-link) { border-radius: 16px; }
.emv-wc-page .wc-block-components-button:not(.is-link)::before { display: none; }
.emv-wc-page .wc-block-components-button:not(.is-link):hover { background: var(--deep); border-color: var(--deep); color: #fff; }
.emv-wc-page .wc-block-components-text-input input, .emv-wc-page .wc-block-components-combobox input, .emv-wc-page .wc-blocks-components-select__select { border-radius: 12px !important; background: #fff !important; }
.emv-wc-page .wc-block-cart__submit-container, .emv-wc-page .wp-block-woocommerce-checkout-order-summary-block, .emv-wc-page .wc-block-components-sidebar { border-radius: var(--r-l); }
.emv-wc-page .wc-block-components-product-name { font-family: var(--f-display); font-size: 1.12rem; text-decoration: none; }
.emv-wc-page .wc-block-cart-items img, .emv-wc-page .wc-block-components-order-summary-item__image img { border-radius: 12px; }
.emv-wc-page h2, .emv-wc-page .wc-block-components-title { font-family: var(--f-display) !important; font-weight: 400 !important; }
.emv-wc-page .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title { font-family: var(--f-display); }
.emv-wc-page .wc-block-grid__product-title { font-family: var(--f-display); }
.emv-checkout-note { font-size: .86rem; color: var(--muted); }
.emv-wc-page > .emv-checkout-note { max-width: 760px; background: var(--bg2); border-left: 3px solid var(--accent); padding: 14px 18px; border-radius: 0 var(--r-m) var(--r-m) 0; margin: 0 0 28px; color: var(--text); }
.emv-wc-page .emv-checkout-note a { color: var(--accent-ink); font-weight: 700; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px; background: #fff; }
.woocommerce form.login, .woocommerce form.register { border: 1px solid var(--border); border-radius: var(--r-l); padding: 28px; }

/* ==========================================================================
   REVEAL + MOTION
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.emv-line > span, .emv-frame, .emv-hero__lede, .emv-hero__actions, .emv-badge { opacity: 1; transform: none; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
	.emv-nav { display: none; }
	.emv-header__burger { display: grid; place-items: center; }
	.emv-header__inner { grid-template-columns: auto 1fr auto; }
	.emv-logo { justify-self: start; }
	.emv-hide-sm { display: none; }
	.emv-hero__collage { width: 46vw; }
	.emv-ways { grid-template-columns: 1fr 1fr; }
	.emv-ways__text { grid-column: 1 / -1; grid-row: 1; padding-top: 0; max-width: 640px; }
	.emv-ways__item--layer { margin-top: 120px; }
	.emv-materials { grid-template-columns: 1fr; }
	.emv-materials__head { position: static; }
	.emv-footer__main { grid-template-columns: 1fr 1fr; }
	.emv-footer__promise { grid-template-columns: 1fr 1fr; }
	.emv-layer__intro { grid-template-columns: 1fr auto; }
	
	.woocommerce div.product .related ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	:root { --header-h: 64px; }
	body { font-size: 16px; }
	.emv-logo__word { width: 108px; }
	.emv-logo__mark { width: 30px; height: 30px; }
	.emv-hero { min-height: max(640px, 100svh); }
	.emv-hero__poster img, .emv-hero__video { object-position: 50% 30%; }
	.emv-hero__collage { top: auto; bottom: auto; right: 16px; top: calc(var(--header-h) + 56px); width: 44vw; height: 40vh; }
	.emv-frame--arch { width: 62%; right: 0; }
	.emv-frame--circle { width: 42%; right: 50%; top: 52%; }
	.emv-frame--postcard, .emv-badge { display: none; }
	.emv-hero__copy { left: 16px; right: 16px; max-width: none; bottom: 84px; }
	.emv-hero__title { font-size: clamp(2.4rem, 10.6vw, 3.8rem); }
	.emv-hero__shade { background: linear-gradient(180deg, rgba(46, 33, 26, .45) 0%, rgba(46, 33, 26, 0) 18%, rgba(46, 33, 26, 0) 36%, rgba(46, 33, 26, .72) 64%, rgba(46, 33, 26, .9) 100%); }
	.emv-hero__lede { font-size: .98rem; max-width: 92%; }
	.emv-hero__scroll { display: none; }
	.emv-btn--offset { margin-top: 0; margin-left: 22px; }
	.emv-ribbon { border-radius: 0 0 var(--r-l) var(--r-l); padding: 14px 0; }
	.emv-section-head--split { grid-template-columns: 1fr; gap: 10px; }
	.emv-section-head--split p { justify-self: start; }
	.emv-ways { grid-template-columns: 1fr; padding-top: 70px; }
	.emv-ways__item--wear { width: 86%; }
	.emv-ways__item--layer { width: 74%; margin: -40px 0 0 auto; }
	.emv-ways__item--layer .emv-ways__word { right: 0; bottom: 56px; }
	.emv-ways__item--wear .emv-ways__word { right: 6%; }
	.emv-mosaic { border-radius: var(--r-l); margin: 0; }
	.emv-mosaic__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 30px; scrollbar-width: none; }
	.emv-mosaic__grid::-webkit-scrollbar { display: none; }
	.emv-tile { flex: none; width: 72vw; aspect-ratio: 3/4; scroll-snap-align: center; }
	.emv-tile:nth-child(even) { margin-top: 40px; }
	.emv-tile--3 .emv-tile__label, .emv-tile--5 .emv-tile__label { bottom: 16px; }
	.emv-tile--3 .emv-tile__media, .emv-tile--5 .emv-tile__media { border-radius: 999px 999px var(--r-l) var(--r-l); }
	.emv-rail__head { flex-wrap: wrap; }
	.emv-rail__arrow { display: none; }
	.emv-rail__ctrl { margin-left: 0; width: 100%; }
	.emv-rail__ctrl .emv-round { display: none; }
	.emv-rail__ctrl .emv-link { margin-left: 0; }
	ul.emv-rail__list { grid-auto-columns: 64vw; }
	.emv-diary { grid-template-columns: 1fr; padding-bottom: 80px; }
	.emv-diary__sticky { position: static; padding-top: 0; }
	.emv-diary__collage { grid-auto-rows: 44px; gap: 10px; }
	.emv-diary__film { grid-column: 1 / span 4; }
	.emv-diary__p--3 { margin-left: 0; }
	.emv-layer { border-radius: var(--r-l); margin: 0; }
	.emv-layer__intro { grid-template-columns: 1fr; gap: 20px; }
	.emv-layer__orb { justify-self: end; margin-top: 0; width: 120px; }
	.emv-layer__steps { grid-template-columns: 1fr; gap: 50px; }
	.emv-step:nth-child(n) { margin-top: 0; width: 86%; }
	.emv-step:nth-child(2) { margin-left: auto; }
	.emv-scenes__row { grid-template-columns: 1fr 1fr; }
	.emv-scene--1 { margin-top: 60px; }
	.emv-scene--2 { grid-column: 1 / -1; grid-row: 1; width: 86%; margin-left: auto; }
	.emv-scene--3 { margin-top: 0; }
	.emv-materials__list { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
	.emv-materials__list li:nth-child(even) { transform: translateY(40px); }
	.emv-orb { width: 100px; height: 100px; }
	.emv-materials__list h3 { font-size: 1.25rem; }
	.emv-materials__list p { font-size: .9rem; }
	.emv-help { grid-template-columns: 1fr; }
	.emv-letter { margin: 0 0 12px; border-radius: var(--r-l); min-height: 480px; }
	.emv-letter__card .emv-btn { font-size: .82rem; padding: 0 1.1em; }
	.emv-footer { border-radius: var(--r-l) var(--r-l) 0 0; }
	.emv-footer__promise { grid-template-columns: 1fr; gap: 18px; }
	.emv-footer__main { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
	.emv-footer__brand { grid-column: 1 / -1; }
	.emv-footer__legal { flex-direction: column; gap: 6px; }
	.emv-cookie { left: 10px; right: 10px; bottom: 10px; max-width: none; padding: 12px 14px; gap: 12px; font-size: .78rem; line-height: 1.45; }
	.emv-page-head { grid-template-columns: 1fr; gap: 0; }
	.emv-page-head__pic { width: 150px; margin: -30px 0 -60px; }
	.emv-page-head__emblem { display: none; }
	.emv-page { grid-template-columns: 1fr; padding-top: 80px; }
	.emv-toc { position: static; background: var(--bg2); border-radius: var(--r-m); padding: 14px 18px; }
	.emv-toc details:not([open]) summary { margin: 0; }
	.emv-prose .emv-steps-grid { grid-template-columns: 1fr 1fr; }
	.emv-lb-hero { grid-template-columns: 1fr; }
	.emv-lb-hero__media { max-height: 64vh; }
	.emv-lb { grid-template-columns: repeat(2, 1fr); }
	.emv-lb__item, .emv-lb__item[class*="--n"] { grid-column: span 1; margin-top: 0; }
	.emv-lb__item:nth-child(even) { margin-top: 40px; }
	.emv-lb__item--wide, .emv-lb__item--wide[class*="--n"] { grid-column: 1 / -1; margin-top: 0; }
	.emv-lb__quote { grid-column: 1 / -1; margin: 20px 0; }
	.emv-404 { grid-template-columns: 1fr; }
	.emv-shop-head { grid-template-columns: 1fr; }
	.emv-shop-head__pic { position: absolute; right: 16px; top: 30px; width: 110px; }
	.emv-shop-head__text { padding-right: 120px; }
	.emv-shop-head__ring { display: none; }
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 36px 14px; }
	.emv-shop ul.products li.product:nth-child(3n+2) { transform: none; }
	.emv-shop ul.products li.product:nth-child(even) { transform: translateY(28px); }
	.emv-shop ul.products li.emv-shop__story { grid-column: 1 / -1; grid-template-columns: 1fr 1.2fr; gap: 16px; padding: 14px; }
	.emv-shop__bar { flex-direction: column; align-items: flex-start; }
	.emv-card__title { font-size: 1rem; }
	.emv-card__row { flex-direction: column; gap: 0; }
	.emv-card__colour { text-align: left; font-size: .76rem; }
	.emv-card__view { display: none; }
	.woocommerce div.product { grid-template-columns: 1fr; }
	.woocommerce div.product div.summary { position: static; }
	.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(3) { margin-top: 30px !important; }
	.woocommerce div.product .related ul.products { grid-template-columns: repeat(2, 1fr); }
	.emv-still { flex-direction: column; align-items: flex-start; }
	.emv-still .emv-btn { font-size: .82rem; }
}

@media (max-width: 420px) {
	.emv-hero__actions .emv-btn { min-height: 50px; padding: 0 1.2em; font-size: .78rem; }
	.emv-btn--offset { margin-left: 0; }
	.emv-materials__list { grid-template-columns: 1fr; }
	.emv-materials__list li:nth-child(even) { transform: none; }
	.emv-footer__main { grid-template-columns: 1fr; }
}
