/* Paras - paraspack.in · design system from Brand Guidelines 2026 (v4) */
@font-face { font-family: 'Hanken'; src: url('/paras-preview-assets/fonts/Hanken-var.ttf'); font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('/paras-preview-assets/fonts/Archivo-var.ttf'); font-weight: 100 900; font-stretch: 50% 125%; font-display: swap; }
@font-face { font-family: 'UnbSemi'; src: url('/paras-preview-assets/fonts/Unbounded-600.ttf'); font-display: swap; }

:root {
  --deep: #26398F; --deeper: #141613; --fresh: #9DB1F2; --pale: #9DB1F2; --wash: #EAEDFA;
  --ink: #141613; --body: #2A2E38; --mut: #646C7A; --line: #DBDFF0; --white: #fff;
  --sun: #EBB424; --red: #C6362B; --night: #26398F;
  --d-scarlet: #E85D3A; --d-amber: #F2B32B; --d-cyan: #2E9BB0;
  --max: 1240px; --r: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Hanken', Arial, sans-serif; color: var(--body); background: var(--white); font-size: 17px; line-height: 1.6; font-weight: 450; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { color: var(--ink); letter-spacing: -.02em; line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(34px, 4.6vw, 56px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: 22px; letter-spacing: -.012em; }
.label { font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); }
.onDeep .label, .banddeep .label { color: var(--fresh); }
.stand { font-weight: 600; font-size: clamp(19px, 2vw, 23px); letter-spacing: -.01em; color: var(--ink); }
.muted { color: var(--mut); }
.wm { font-family: 'UnbSemi'; letter-spacing: .01em; color: var(--ink); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 34px; height: 74px; }
.nav .brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.nav .brand img { height: 30px; }
.nav .brand .wm { font-size: 21px; }
.nav a.link { font-weight: 600; font-size: 15.5px; color: #333844; padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .18s, color .18s; }
.nav a.link:hover, .nav a.link[aria-current] { color: var(--deep); border-bottom-color: var(--fresh); }
.btn { display: inline-block; font-weight: 700; font-size: 15.5px; border-radius: 999px; padding: 11px 22px; transition: transform .18s, box-shadow .18s, background .18s; }
.btn:active { transform: translateY(1px); }
.btn-deep { background: var(--deep); color: #fff; }
.btn-deep:hover { background: var(--deeper); box-shadow: 0 6px 18px rgba(38,57,143,.25); }
.btn-fresh { background: var(--fresh); color: var(--deep); }
.btn-fresh:hover { box-shadow: 0 6px 18px rgba(38,57,143,.35); }
.btn-ghost { border: 1.5px solid var(--wash); color: var(--wash); }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-hair { border: 1.5px solid var(--line); color: var(--ink); }
.btn-hair:hover { border-color: var(--deep); }

/* ---------- hero / bands ---------- */
.banddeep { background: var(--deep); color: var(--wash); }
.banddeep h1, .banddeep h2, .banddeep h3 { color: var(--fresh); }
.bandwash { background: var(--wash); }
.hero { overflow: hidden; }
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding: 84px 0; }
.hero p.lead { font-size: 19px; color: var(--pale); max-width: 34em; margin-top: 20px; }
.hero .cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .pic { border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.28); animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.hero .copy { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero .pic, .hero .copy { animation: none; } }
.factstrip { border-top: 1px solid rgba(234,237,250,.18); }
.factstrip .wrap { display: flex; justify-content: space-between; gap: 20px; padding: 22px 28px; flex-wrap: wrap; }
.factstrip b { font-weight: 700; font-size: 20px; color: #fff; display: block; letter-spacing: -.01em; }
.factstrip span { font-weight: 600; font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--fresh); }

.section { padding: 88px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-head p { max-width: 44em; margin-top: 12px; }

/* ---------- cards ---------- */
.cardgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(19,21,26,.10); }
.card .thumb { aspect-ratio: 4/3; background: var(--wash); position: relative; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .thumb svg { width: 100%; height: 100%; }
.card .meta { padding: 16px 18px 18px; }
.card .meta h3 { font-size: 18px; }
.card .meta .muted { font-size: 14.5px; margin-top: 3px; }

/* ---------- tables ---------- */
table.spec { width: 100%; border-collapse: collapse; }
table.spec th { text-align: left; font-weight: 600; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; color: var(--mut); border-bottom: 2px solid var(--ink); padding: 0 16px 10px 0; white-space: nowrap; }
table.spec td { padding: 13px 16px 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
table.spec tr:hover td { background: #FAFBFD; }
table.spec td:first-child a { font-weight: 650; color: var(--ink); border-bottom: 1px solid transparent; }
table.spec td:first-child a:hover { border-bottom-color: var(--fresh); }
table.kv { width: 100%; border-collapse: collapse; }
table.kv th { text-align: left; font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--mut); padding: 13px 20px 13px 0; border-bottom: 1px solid var(--line); width: 250px; vertical-align: top; }
table.kv td { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; font-weight: 500; color: var(--ink); }

/* ---------- breadcrumbs ---------- */
.crumbs { padding: 20px 0 0; font-size: 14.5px; color: var(--mut); font-weight: 500; }
.crumbs a:hover { color: var(--deep); text-decoration: underline; }
.crumbs span.sep { margin: 0 8px; color: var(--line); }

/* ---------- product page ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 44px 0 88px; align-items: start; }
.pdp .stage { background: var(--wash); border-radius: var(--r); padding: 34px; position: sticky; top: 98px; }
.pdp .stage img { border-radius: 6px; }
.pdp .caption { font-size: 13px; margin-top: 14px; }
.hairbox { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.notice { background: var(--wash); border-radius: var(--r); padding: 18px 22px; font-size: 15px; color: var(--deep); }

/* ---------- footer ---------- */
footer { background: var(--wash); color: var(--body); margin-top: 0; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding: 64px 0 44px; }
footer .brand { display: flex; align-items: center; gap: 11px; }
footer .brand img { height: 32px; }
footer .brand .wm { color: #fff; font-size: 22px; }
footer p { font-size: 15px; color: var(--pale); max-width: 26em; }
footer h4 { font-weight: 600; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: var(--fresh); margin-bottom: 14px; }
footer a { display: block; padding: 5px 0; font-size: 15.5px; color: var(--body); }
footer a:hover { color: var(--deep); text-decoration: underline; }
footer .base { border-top: 1px solid rgba(234,237,250,.18); padding: 20px 0 26px; display: flex; justify-content: space-between; gap: 20px; font-size: 13.5px; color: var(--mut); flex-wrap: wrap; }

/* ---------- misc ---------- */
.pillrow { display: flex; gap: 10px; flex-wrap: wrap; }
.pillrow span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-weight: 600; font-size: 14px; color: var(--ink); }
.banddeep .pillrow span { border-color: rgba(234,237,250,.3); color: var(--wash); }
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split2 .pic { border-radius: var(--r); overflow: hidden; }
.checks { list-style: none; }
.checks li { padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); position: relative; font-size: 16.5px; }
.checks li::before { content: '✓'; position: absolute; left: 2px; color: var(--deep); font-weight: 800; }
.banddeep .checks li { border-color: rgba(234,237,250,.15); color: var(--wash); }
.banddeep .checks li::before { color: var(--fresh); }
.contactbox { background: #fff; border-radius: var(--r); padding: 28px; color: var(--body); }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea { font-family: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; width: 100%; margin-bottom: 14px; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--fresh); border-color: var(--fresh); }
.skip { position: absolute; left: -9999px; }
.skip:focus { position: fixed; left: 16px; top: 12px; background: #fff; padding: 10px 16px; z-index: 99; border-radius: 6px; }

@media (max-width: 860px) {
  .hero .grid, .pdp, .split2 { grid-template-columns: 1fr; }
  .cardgrid { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .nav a.link { display: none; }
  .pdp .stage { position: static; }
}

/* ================= v2 - cinematic layer ================= */




.nav { transition: background .35s, border-color .35s; }




.hero-cine { position: relative; min-height: calc(100vh - 122px); display: flex; align-items: flex-end; color: #fff; }
.hero-cine .bg { position: absolute; inset: 0; background-size: cover; background-position: 62% 45%; }
.hero-cine .scrim { position: absolute; inset: 0; background: rgba(24,33,84,.28); }
.hero-cine .scrim::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,33,84,.7) 0%, transparent 34%), linear-gradient(180deg, rgba(24,33,84,.45) 0%, transparent 26%); }
.hero-cine .inner { position: relative; width: 100%; padding: 160px 0 0; }
.hero-cine .label { color: var(--fresh); }
.hero-cine .display { font-weight: 700; font-size: clamp(58px, 8.2vw, 126px); line-height: .98; letter-spacing: -.035em; color: #fff; margin-top: 22px; max-width: 9.5em; }
.hero-cine .display em { font-style: normal; color: var(--fresh); }
.hero-cine p.lead { font-size: clamp(17px, 1.4vw, 21px); color: var(--pale); max-width: 33em; margin-top: 26px; line-height: 1.6; }
.hero-cine .cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-cine .facts { border-top: 1px solid rgba(234,237,250,.22); margin-top: 64px; }
.hero-cine .facts .wrap { display: flex; justify-content: space-between; gap: 24px; padding: 26px 28px 30px; flex-wrap: wrap; }
.hero-cine .facts b { font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); color: #fff; display: block; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.hero-cine .facts span { font-weight: 600; font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--fresh); }

.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

.statement-band { background: var(--wash); padding: 120px 0; text-align: center; }
.statement-band .big { font-weight: 650; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.3; letter-spacing: -.02em; color: var(--deep); max-width: 26em; margin: 30px auto 0; }
.statement-band .big b { color: var(--ink); font-weight: 700; }

/* punnet scroll story */
.story { position: relative; height: 340vh; background: var(--deep); color: var(--wash); }
.story .pin { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.story .copy { padding: 0 6vw; }
.story .copy .label { color: var(--fresh); }
.story h2.st { color: var(--fresh); font-size: clamp(34px, 3.6vw, 52px); margin-top: 14px; }
.story .step { position: absolute; inset: 0 auto auto 0; opacity: 0; transform: translateY(18px); transition: opacity .35s, transform .5s; max-width: 24em; pointer-events: none; background: var(--deep); }
.story .steps { position: relative; margin-top: 26px; height: 250px; }
.story .step.on { opacity: 1; transform: none; }
.story .step h3 { color: #fff; font-size: 24px; }
.story .step p { color: var(--pale); margin-top: 10px; font-size: 17.5px; line-height: 1.6; }
.story .stage { height: 100%; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16vh; position: relative; }
.story .stage svg { width: min(40vw, 640px); overflow: visible; }
.punnet-shape { opacity: 0; transform: translateY(60px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.punnet-shape.up { opacity: 1; transform: none; }
.story .h-readout { position: absolute; right: 7vw; top: 16vh; font-weight: 700; font-size: clamp(40px, 4.6vw, 68px); color: var(--fresh); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.story .h-cap { position: absolute; right: 7vw; top: calc(16vh - 26px); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--pale); }
@media (max-width: 980px) { .story { height: auto; } .story .pin { position: static; height: auto; grid-template-columns: 1fr; padding: 72px 0; } .story .steps { height: auto; } .story .step { position: static; opacity: 1; transform: none; margin-bottom: 22px; } .story .h-readout, .story .h-cap { display: none; } }

/* explorer */
.explorer { padding: 110px 0; }
.ex-controls { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-top: 36px; }
.chip { border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 650; font-size: 15px; cursor: pointer; background: #fff; transition: all .18s; color: var(--ink); font-family: inherit; }
.chip:hover { border-color: var(--deep); }
.chip.on { background: var(--deep); border-color: var(--deep); color: #fff; }
.cap-wrap { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 15px; color: var(--mut); }
input[type=range] { accent-color: var(--deep); width: 220px; margin: 0; }
.ex-count-line { font-weight: 600; font-size: 15px; color: var(--mut); margin-left: auto; }
.ex-count-line b { color: var(--deep); font-size: 22px; font-weight: 700; }
.ex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.ex-item { border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; transition: all .18s; background: #fff; }
.ex-item:hover { border-color: var(--deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(19,21,26,.08); }
.ex-name { font-weight: 650; color: var(--ink); font-size: 16.5px; }
.ex-meta { font-size: 14px; color: var(--mut); }
.ex-cat { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); margin-top: 8px; }
.ex-item.more { align-items: center; justify-content: center; font-weight: 650; color: var(--deep); background: var(--wash); border-color: transparent; }
@media (max-width: 980px) { .ex-grid { grid-template-columns: 1fr 1fr; } .ex-count-line { margin-left: 0; } }

/* gallery band */
.gallery { background: var(--deep); padding: 110px 0 120px; color: var(--wash); }
.gallery .rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 44px 28px 10px; max-width: calc(var(--max) + 56px); margin: 0 auto; scrollbar-width: none; }
.gallery .rail::-webkit-scrollbar { display: none; }
.gcard { flex: 0 0 320px; scroll-snap-align: start; border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 3/4.2; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gcard:hover img { transform: scale(1.05); }
.gcard span { position: absolute; left: 16px; bottom: 14px; font-weight: 600; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.gallery h2 { color: var(--fresh); }

/* full-bleed CTA band */
.bleed { position: relative; min-height: 74vh; display: flex; align-items: center; color: #fff; }
.bleed .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bleed .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,33,84,.9), rgba(24,33,84,.55) 55%, rgba(24,33,84,.15)); }
.bleed .inner { position: relative; }
.bleed h2 { color: #fff; font-size: clamp(34px, 4vw, 56px); max-width: 13em; }
.bleed h2 em { font-style: normal; color: var(--fresh); }

/* FAQ */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; font-weight: 650; font-size: 18px; color: var(--ink); }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--mut); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 24px; max-width: 52em; color: #2A2E38; }

/* floating actions + widget mount */
.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.float-wa a { width: 56px; height: 56px; border-radius: 999px; background: var(--deep); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(19,21,26,.35); transition: transform .18s; }
.float-wa a svg { width: 26px; height: 26px; fill: #fff; }
.float-wa a:hover { transform: translateY(-3px); }
.geo-banner { position: fixed; left: 50%; transform: translateX(-50%); bottom: 20px; z-index: 70; background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 12px 10px 22px; display: flex; gap: 14px; align-items: center; font-size: 15px; box-shadow: 0 16px 44px rgba(0,0,0,.3); }
.geo-banner button { background: none; border: 0; color: #aaa; font-size: 15px; cursor: pointer; padding: 6px; }

/* insights */
.postgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.post-body { max-width: 720px; }
.post-body h2 { font-size: 28px; margin: 40px 0 14px; }
.post-body p { margin: 16px 0; font-size: 17.5px; line-height: 1.7; }
.post-body table.spec { margin: 26px 0; }
.byline { display: flex; gap: 12px; align-items: baseline; color: var(--mut); font-size: 15px; margin-top: 18px; }

/* ================= v3 - reference-mix motion layer ================= */
/* Metric (preloader / marquee / mono indices) × Price&Pierce (wordmark hero,
   linework, inertial scroll, parallax, masked reveals) × Biofarma (stat cards) */
:root { --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace; }

/* preloader gate (home, once per session, JS-only) */
.pre { display: none; position: fixed; inset: 0; z-index: 200; background: var(--deep); align-items: center; justify-content: center; flex-direction: column; gap: 22px; animation: prekill 0s linear 4.5s forwards; }
html.js .pre { display: flex; }
.pre-mark { position: relative; height: clamp(120px, 18vh, 190px); }
.pre-mark img { height: 100%; }
.pre-mark img.o { opacity: .18; }
.pre-mark img.f { position: absolute; left: 0; top: 0; clip-path: inset(0 100% 0 0); }
.pre.go .pre-mark img.f { animation: prefill 1.05s cubic-bezier(.65,0,.35,1) .15s forwards; }
.pre-cap { font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--pale); opacity: .75; }
.pre.go { animation: prelift .75s cubic-bezier(.76,0,.24,1) 1.5s forwards, prekill 0s linear 4.5s forwards; }
@keyframes prefill { to { clip-path: inset(0 0 0 0); } }
@keyframes prelift { to { transform: translateY(-101%); } }
@keyframes prekill { to { visibility: hidden; pointer-events: none; } }

/* nav hides scrolling down, returns scrolling up */
.nav { transition: background .35s, border-color .35s, transform .45s cubic-bezier(.2,.7,.2,1); }
.nav.hid { transform: translateY(-100%); }

/* hero - centred wordmark over media + drawn linework (P&P grammar) */
.hero-cine { overflow: hidden; }
.hero-cine .bg { overflow: hidden; }
.hero-cine .hero-bg { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-cine .hero-bg-1 { opacity: 1; }
.hero-cine .hero-bg img, .hero-cine .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-cine.hero-option-2 .hero-bg-1, .hero-cine.hero-option-3 .hero-bg-1 { opacity: 0; }
.hero-cine.hero-option-2 .hero-bg-2, .hero-cine.hero-option-3 .hero-bg-3 { opacity: 1; }
.hero-cine.hero-option-2 .scrim { background: linear-gradient(78deg, rgba(24,33,84,.78), rgba(24,33,84,.34) 48%, rgba(24,33,84,.08) 82%), linear-gradient(0deg, rgba(24,33,84,.76), transparent 42%); }
.hero-cine.hero-option-3 .scrim { background: linear-gradient(78deg, rgba(24,33,84,.9), rgba(24,33,84,.48) 52%, rgba(24,33,84,.2) 86%), linear-gradient(0deg, rgba(24,33,84,.86), transparent 42%); }
.hero-cine .bg .kb { position: absolute; inset: 0; background-size: cover; background-position: 62% 45%; animation: kb 26s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.08); } }
.wm-giant { position: absolute; inset: 0; display: grid; place-items: start center; padding-top: 17vh; font-family: 'Archivo'; font-weight: 900; font-stretch: 115%; font-size: clamp(88px, 14.5vw, 218px); line-height: 1; letter-spacing: .01em; color: rgba(255,255,255,.96); pointer-events: none; text-shadow: 0 8px 60px rgba(24,33,84,.35); z-index: 2; }
.hero-cine .display { font-size: clamp(34px, 3.4vw, 52px); max-width: 12em; }
.hero-cine p.lead { margin-top: 0; font-size: clamp(16px, 1.2vw, 18.5px); max-width: 30em; }
.hero-cine .hgrid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: end; }
.hero-cine .cta { margin-top: 24px; }
@media (max-width: 980px) { .hero-cine .hgrid { grid-template-columns: 1fr; gap: 22px; } }
.hero-lines { position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%); width: min(42vw, 580px); opacity: .45; pointer-events: none; z-index: 1; }
.hero-lines path { fill: none; stroke: #9DB1F2; stroke-width: 1.4; stroke-dasharray: 1; stroke-dashoffset: 1; }
.hero-lines.go path { animation: draw 2s cubic-bezier(.4,0,.2,1) forwards; }
.hero-lines text { font-family: var(--mono); font-size: 13px; fill: rgba(196,212,238,.9); opacity: 0; transition: opacity .8s ease 1.6s; }
.hero-lines.go text { opacity: 1; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* masked word reveals on h1/h2 (JS splits) */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .12em; margin-bottom: -.12em; }
.split .wi { display: inline-block; transform: translateY(115%); transition: transform .85s cubic-bezier(.2,.65,.15,1); }
.split.go .wi { transform: none; }

/* numbered mono section indices (Metric) */
.label .idx { font-family: var(--mono); font-weight: 500; letter-spacing: .04em; margin-right: 10px; color: var(--deep); }
.banddeep .label .idx, .onDeep .label .idx, .hero-cine .label .idx, .gallery .label .idx, .bleed .label .idx, .story .label .idx { color: rgba(196,212,238,.75); }

/* stat cards (Biofarma) */
.statcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--max); margin: 54px auto 0; padding: 0 28px; text-align: left; }
.scard { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px 26px 24px; }
.scard b { font-size: clamp(30px, 3vw, 44px); font-weight: 750; color: var(--deep); display: block; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.scard span { font-weight: 600; font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--mut); margin-top: 6px; display: block; }
@media (max-width: 980px) { .statcards { grid-template-columns: 1fr 1fr; } }

/* marquee tickers (Metric) */
.marq { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0 58px; overflow: hidden; display: grid; gap: 18px; }
.mrow { display: flex; white-space: nowrap; }
.mtrack { display: flex; align-items: center; flex-shrink: 0; animation: marq 38s linear infinite; }
.mtrack.rev { animation: marqr 46s linear infinite; }
.marq:hover .mtrack { animation-play-state: paused; }
.mo { font-weight: 800; font-size: clamp(38px, 4.8vw, 72px); letter-spacing: -.02em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1.3px var(--fresh); padding: 0 22px; }
.msep { color: var(--fresh); font-size: clamp(22px, 2.6vw, 38px); }
.r2 .mo { font-family: var(--mono); font-weight: 500; font-size: clamp(15px, 1.5vw, 21px); letter-spacing: .14em; -webkit-text-stroke: 0; color: var(--mut); padding: 0 26px; }
.r2 .msep { font-size: 14px; color: var(--deep); }
@keyframes marq { to { transform: translateX(-50%); } }
@keyframes marqr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* image wipe entrances */
.imgrv { position: relative; overflow: hidden; }
.imgrv::after { content: ''; position: absolute; inset: 0; background: var(--wash); transition: transform .9s cubic-bezier(.65,0,.2,1); }
.imgrv img { transform: scale(1.12); transition: transform 1.25s cubic-bezier(.2,.7,.2,1); }
.imgrv.in::after { transform: translateY(-101%); }
.imgrv.in img { transform: none; }
.banddeep .imgrv::after { background: var(--deeper); }
.gallery .imgrv::after { background: var(--deep); }
.gcard.imgrv.in:hover img { transform: scale(1.05); }

/* parallax media */
[data-plx] { will-change: transform; }
.bleed { overflow: hidden; }
.bleed .bg { inset: -12% 0; }

@media (prefers-reduced-motion: reduce) {
  .pre { display: none !important; }
  .hero-cine .bg .kb { animation: none; }
  .hero-lines path { stroke-dashoffset: 0; animation: none; }
  .hero-lines text { opacity: 1; transition: none; }
  .mtrack { animation: none; }
  .split .wi { transform: none; transition: none; }
  .imgrv::after { display: none; }
  .imgrv img { transform: none; transition: none; }
}

/* ================= v4 - Price & Pierce grammar (user: "look at the reference") ================= */
/* Light type at editorial scale, square edge-bleed imagery, full-width hairlines,
   hamburger + centred mark + pill nav, scroll-scrubbed statement, giant-number stat band. */
:root { --r: 0; }
h1, h2 { font-weight: 300; letter-spacing: -.015em; line-height: 1.08; }
h2 { font-size: clamp(34px, 3.8vw, 58px); }
h3 { font-weight: 500; font-size: 20px; }
.statement-band .big b, .statement-band .big { font-weight: 300; }
.btn { font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 12px 24px; }
.card, .split2 .pic, .gcard, .pdp .stage, .hairbox, .contactbox, .notice, .ex-item, .scard { border-radius: 0; }
.pdp .stage img { border-radius: 0; }

/* nav: hamburger left · centred mark · pill right */
.nav .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0; height: 78px; }
.nav .brand { margin: 0 auto; grid-column: 2; }
.nav .burger { grid-column: 1; justify-self: start; width: 46px; height: 46px; border: 0; border-radius: 999px; background: var(--wash); cursor: pointer; display: grid; place-items: center; gap: 0; padding: 0; }
.nav .burger span { display: block; width: 18px; height: 1.6px; background: var(--ink); margin: 2.5px 0; transition: transform .3s, opacity .3s; }


.nav .cta-slot { grid-column: 3; justify-self: end; }
.nav a.link { display: none; }
body.menu-open .nav .burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .nav .burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav .burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* fullscreen menu overlay */
.menu { position: fixed; inset: 0; z-index: 40; background: var(--deep); color: var(--wash); padding: 140px 0 60px; clip-path: inset(0 0 100% 0); transition: clip-path .6s cubic-bezier(.76,0,.24,1); overflow: auto; }
body.menu-open .menu { clip-path: inset(0); }
.menu .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }
.menu a.big { display: block; font-weight: 300; font-size: clamp(30px, 3.6vw, 52px); letter-spacing: -.015em; color: #fff; padding: 10px 0; border-bottom: 1px solid rgba(234,237,250,.14); opacity: 0; transform: translateY(22px); transition: opacity .5s, transform .6s cubic-bezier(.2,.7,.2,1), color .2s; }
.menu a.big:hover { color: var(--fresh); }
body.menu-open .menu a.big { opacity: 1; transform: none; }
.menu .side { font-size: 15px; color: var(--pale); }
.menu .side .label { color: var(--fresh); }
.menu .side a { display: block; padding: 6px 0; color: var(--wash); }
.menu .side a:hover { color: #fff; }

/* hero - light tracked wordmark, specialists line bottom-left (P&P) */
.wm-giant { font-family: 'UnbSemi'; font-weight: 400; font-stretch: 100%; font-size: clamp(54px, 8.6vw, 138px); letter-spacing: .01em; text-indent: 0; place-items: center; padding-top: 0; text-shadow: 0 4px 44px rgba(24,33,84,.45); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.wm-giant .wmtag { font-family: 'Hanken'; font-weight: 650; font-size: clamp(14px, 1.3vw, 20px); letter-spacing: .06em; color: rgba(255,255,255,.92); text-shadow: 0 2px 18px rgba(24,33,84,.5); }
.hero-cine .hgrid { grid-template-columns: 1fr auto; align-items: end; }
.hero-cine .display { font-weight: 300; font-size: clamp(26px, 2.2vw, 36px); letter-spacing: -.01em; line-height: 1.2; }
.hero-cine .display em { color: #fff; }
.hero-cine p.lead { display: none; }
.hero-cine .label { font-family: var(--mono); font-weight: 500; letter-spacing: .2em; }
.hero-cine .facts { display: none; }

/* Review-ready hero system: clear message first, proof points visible below. */
.hero-cine .display { font-size: clamp(34px, 4.2vw, 60px); max-width: 11em; line-height: 1.03; }
.hero-cine .facts { display: block; }
.hero-cine .facts .wrap { padding-top: 18px; padding-bottom: 22px; }
.hero-cine .facts b { font-size: clamp(19px, 1.7vw, 25px); }
.hero-picker { position: absolute; right: 28px; bottom: 24px; z-index: 8; display: flex; gap: 7px; align-items: center; padding: 7px 9px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(24,33,84,.35); backdrop-filter: blur(10px); }
.hero-picker a { color: rgba(255,255,255,.7); font: 600 11px/1 var(--mono); letter-spacing: .1em; padding: 7px 8px; border-radius: 999px; }
.hero-picker a[aria-current="true"], .hero-picker a:hover { color: var(--deep); background: var(--fresh); }
.hero-lines { width: min(70vw, 960px); top: 50%; opacity: .35; }

/* scroll-scrubbed statement (P&P signature) */
.scrubsec { background: #fff; padding: 130px 0 120px; }
.scrubsec .top { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 54px; }
.scrub { font-weight: 300; font-size: clamp(32px, 4vw, 58px); letter-spacing: -.015em; line-height: 1.16; color: var(--ink); max-width: 17em; }
.scrub .w { opacity: .13; }
.btn-pill-wash { background: var(--wash); color: var(--deep); }
.btn-pill-wash:hover { background: var(--pale); }

/* giant-number stat band (P&P dark band) */
.statband { background: var(--deep); color: var(--wash); padding: 40px 0 70px; }
.statband .row { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 30px; border-top: 1px solid rgba(234,237,250,.16); padding: 26px 0 34px; }
.statband b { font-weight: 200; font-size: clamp(64px, 7.5vw, 120px); line-height: 1; letter-spacing: -.02em; color: #fff; font-variant-numeric: tabular-nums; }
.statband .row span { font-size: 15px; color: var(--pale); padding-top: 12px; max-width: 22em; text-align: right; }

/* image + crossing hairline sections (P&P) */
.xsec { position: relative; background: #fff; }
.xsec .media { width: 65.5%; aspect-ratio: 16/10.5; position: relative; }
.xsec .media img { width: 100%; height: 100%; object-fit: cover; }
.xsec .media .tint { position: absolute; inset: 0; background: rgba(24,33,84,.38); }
.xsec .rule { position: absolute; left: 7.3%; right: 7.3%; top: 38%; border-top: 1px solid rgba(255,255,255,.55); z-index: 3; pointer-events: none; }
.xsec .rule::after { content: ''; position: absolute; right: -0%; top: 0; }
.xsec h2 { position: absolute; left: 7.3%; top: 40%; z-index: 4; color: #fff; font-weight: 300; font-size: clamp(34px, 3.6vw, 56px); max-width: 12em; }
.xsec .col { position: absolute; right: 0; top: 38%; width: 34.5%; padding: 40px 7.3% 0 44px; font-size: 16px; }
.xsec .col .rule2 { border-top: 1px solid var(--line); margin: -40px 0 40px -44px; }
.xsec .col p { margin-bottom: 20px; color: var(--body); }
.xsec.flip .media { margin-left: 34.5%; }
.xsec.flip h2 { left: 41.8%; }
.xsec.flip .col { left: 0; right: auto; padding: 40px 44px 0 7.3%; }
@media (max-width: 980px) {
  .xsec .media { width: 100%; }
  .xsec h2 { top: auto; bottom: 12%; }
  .xsec .col { position: static; width: 100%; padding: 28px 28px 56px; }
  .xsec.flip .media { margin-left: 0; }
}

/* deep products band (P&P "Our Products") */
.prodband { background: #fff; color: var(--body); padding: 96px 0 110px; }
.prodband .label { color: var(--mut); }
.prodband .hr { border-top: 1px solid rgba(234,237,250,.16); margin: 18px 0 46px; }
.prodband h2 { color: var(--ink); font-weight: 300; max-width: 15em; }
.prodband .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.prodband .duo .ph { aspect-ratio: 16/11; overflow: hidden; }
.prodband .duo .ph img { width: 100%; height: 100%; object-fit: cover; }
.prodband .explorer { padding: 64px 0 0; }
.prodband h2.exh { font-size: clamp(24px, 2vw, 32px); margin-top: 8px; }
.prodband .chip { background: transparent; border-color: rgba(234,237,250,.3); color: var(--wash); }
.prodband .chip.on { background: var(--fresh); border-color: var(--fresh); color: var(--deep); }
.prodband .chip:hover { border-color: var(--fresh); }
.prodband .cap-wrap { color: var(--pale); }
.prodband input[type=range] { accent-color: var(--fresh); }
.prodband .ex-count-line { color: var(--pale); }
.prodband .ex-count-line b { color: #fff; }
.prodband .ex-item { background: transparent; border-color: rgba(234,237,250,.18); }
.prodband .ex-name { color: #fff; }
.prodband .ex-meta { color: var(--pale); }
.prodband .ex-cat { color: var(--fresh); }
.prodband .ex-item:hover { border-color: var(--fresh); box-shadow: none; }
.prodband .ex-item.more { background: rgba(234,237,250,.08); color: var(--fresh); }

/* story + marquee restyled light */
.story h2.st { font-weight: 300; }
.story .step h3 { font-weight: 500; }
.mo { font-weight: 400; -webkit-text-stroke: 1px var(--fresh); }
.statement-band { display: none; }
.gallery h2, .bleed h2 { font-weight: 300; }

/* hero video */
.hero-cine .bg video.vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: none; }

/* category tiles (real photography) */
.catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.cat-tile { position: relative; aspect-ratio: 4/4.4; overflow: hidden; display: block; background: var(--deeper); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile .ct-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,33,84,.78), rgba(24,33,84,.06) 55%); transition: background .3s; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile .ct-name { position: absolute; left: 16px; right: 16px; bottom: 32px; font-weight: 500; font-size: 16.5px; color: #fff; letter-spacing: .01em; z-index: 2; }
.cat-tile .ct-count { position: absolute; left: 16px; bottom: 13px; font-family: var(--mono); font-weight: 500; font-size: 11.5px; letter-spacing: .08em; color: var(--fresh); z-index: 2; }
.cat-tile .nophoto { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 300; font-size: 22px; color: rgba(234,237,250,.5); padding: 20px; text-align: center; }
@media (max-width: 980px) { .catgrid { grid-template-columns: 1fr 1fr; } }

/* menu-open nav treatment */
body.menu-open { overflow: hidden; }
body.menu-open .nav { background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
body.menu-open .nav .brand .wm { color: #fff; }
body.menu-open .nav .brand img.ink { display: none; }
body.menu-open .nav .brand img.white { display: block; }
body.menu-open .nav .burger { background: rgba(255,255,255,.14); }
body.menu-open .nav .burger span { background: #fff; }
body.menu-open .nav .btn-deep { background: var(--fresh); color: var(--deep); }
body.menu-open .nav.hid { transform: none; }
@media (prefers-reduced-motion: reduce) { .scrub .w { opacity: 1 !important; } .menu { transition: none; } .menu a.big { transition: none; opacity: 1; transform: none; } }

/* footer - hairline + light */
footer { margin-top: 0; }
footer .wm-line { font-family: 'Archivo'; font-weight: 800; font-stretch: 125%; font-size: clamp(60px, 9vw, 150px); letter-spacing: .005em; text-indent: 0; color: rgba(255,255,255,.95); text-align: center; padding: 70px 0 30px; }
footer .cols { border-top: 1px solid rgba(234,237,250,.14); }

/* ---- v5.1 spacing rhythm (one vertical scale for the home) ---- */
:root { --sect: clamp(100px, 9vw, 150px); }
.hero-cine .inner { padding: 160px 0 72px; }
.scrubsec { padding: var(--sect) 0; }
.scrubsec .top { margin-bottom: 76px; }
.statband { padding: 72px 0 100px; }
.statband .row { padding: 32px 0 44px; }
.prodband { padding: var(--sect) 0; }
.prodband .hr { margin: 20px 0 56px; }
.catgrid { margin-top: 68px; }
.prodband .explorer { padding: 96px 0 0; }
.marq { padding: 76px 0; }
.gallery { padding: var(--sect) 0; }
.gallery .rail { padding-top: 56px; }
.story .copy { padding: 0 7.3vw; }
.bleed { min-height: 78vh; }
.xsec .media { margin-top: 0; }
.xsec.flip { margin-top: 0; }

/* PDP stage: photography full-bleed, diagram in its own wash panel */
.pdp .stage { background: transparent; padding: 0; }
.pdp .stage > img { width: 100%; }
.pdp .stage .caption { margin: 14px 2px 0; }
.pdp .stage .diabox { background: var(--wash); padding: 26px; margin-top: 24px; }
.pdp .stage .diabox .caption { margin: 12px 0 0; }

/* Homepage review compositions: keep the signature wordmark atmospheric, never over the message. */
.hero-cine .inner { position: relative; z-index: 3; }
.hero-cine .hero-picker { z-index: 6; right: 106px; }
@media (max-width: 700px) {
  .hero-cine .display { font-size: clamp(32px, 9vw, 46px); max-width: 9em; }
  .hero-cine .hgrid { display: block; }
  .hero-cine .cta { margin-top: 28px; }
  .hero-cine .facts .wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .hero-picker { right: 82px; bottom: 18px; }
}


/* ================= v6 - Price & Pierce faithful home ================= */
.hero-cine .bg video.vid { filter: sepia(.18) saturate(.92) contrast(1.05) brightness(.8); }
.hero-cine .specialists { position: absolute; left: 28px; bottom: 44px; z-index: 3; font-weight: 450; font-size: 16px; line-height: 1.5; letter-spacing: .01em; color: rgba(255,255,255,.92); }
.hero-cine .inner { padding: 160px 0 56px; }

.ppdark { background: var(--deep); color: var(--wash); }
.ppdark .scrub { color: #fff; font-size: clamp(30px, 3.4vw, 50px); max-width: 16em; }
.ppphoto { aspect-ratio: 4/3.4; margin-top: 10px; }
.ppphoto img { width: 100%; height: 100%; object-fit: cover; }
.statband { padding: 30px 0 90px; }
.statband .row:first-child { border-top: 0; }

.ppstatement { font-weight: 300; font-size: clamp(30px, 3.4vw, 50px); letter-spacing: -.015em; line-height: 1.16; color: var(--ink); max-width: 17em; }
.pproute { margin-top: 84px; }
.ppmap { margin-top: 76px; }

.ppcenter { padding: clamp(120px, 14vw, 200px) 0; text-align: center; background: #fff; }
.ppcenter h2 { font-weight: 300; font-size: clamp(48px, 6.5vw, 96px); letter-spacing: -.02em; }
.ppcenter h2 em { font-style: normal; color: var(--fresh); }
.ppcenter .ppl { display: inline-block; margin-top: 26px; font-weight: 500; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); border-bottom: 1.5px solid var(--fresh); padding-bottom: 4px; }

.prodband .duo { margin-top: 64px; }
.prodband .phl { display: block; }
.prodband .phl .ph { display: block; aspect-ratio: 16/11; overflow: hidden; }
.prodband .phl .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.prodband .phl:hover .ph img { transform: scale(1.04); }
.prodband .phl .cap { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(234,237,250,.25); margin-top: 16px; padding-top: 14px; font-weight: 400; font-size: 19px; color: #fff; }
.prodband .phl .arr { font-size: 22px; color: var(--fresh); transition: transform .25s; }
.prodband .phl:hover .arr { transform: translateX(6px); }

.pptalk { background: var(--wash); padding: clamp(100px, 11vw, 170px) 0; }
.pptalk .talk { font-weight: 300; font-size: clamp(48px, 5.6vw, 84px); letter-spacing: -.02em; line-height: 1.12; }
.pptalk .talk a { color: var(--deep); border-bottom: 3px solid var(--fresh); }
.pptalk .talk a:hover { border-bottom-color: var(--deep); }

footer .fline { display: flex; gap: 26px; align-items: baseline; padding: 34px 0 26px; border-bottom: 1px solid #D5DAF0; flex-wrap: wrap; }
footer .fline a { font-weight: 500; font-size: 15px; color: var(--ink); padding: 0; display: inline; }
footer .fline a:hover { color: var(--deep); }
footer .fspacer { flex: 1; }
footer .base { border-top: 0; }
@media (max-width: 980px) { .ppdark .wrap, .pptalk .wrap { grid-template-columns: 1fr !important; } .prodband .duo { grid-template-columns: 1fr; } }


/* map interactivity: lanes flow from Delhi, markers pop, regions hover-link */
.ppmap .arc { opacity: 0; transition: opacity .8s ease .3s; }
.ppmap.in .arc { opacity: 1; animation: laneflow 9s linear infinite; }
@keyframes laneflow { from { stroke-dashoffset: 84; } to { stroke-dashoffset: 0; } }
.ppmap .mk { cursor: pointer; }
.ppmap .mk text, .ppmap .dlabel { font-family: ui-monospace, Menlo, monospace; font-weight: 600; font-size: 14px; fill: #26398F; letter-spacing: 1.5px; }
.ppmap .mk .mdot { transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform .5s cubic-bezier(.2,.7,.2,1), fill .2s; }
.ppmap.in .mk .mdot { transform: scale(1); }
.ppmap.in .mk-gcc .mdot { transition-delay: .5s; } .ppmap.in .mk-eu .mdot { transition-delay: .65s; }
.ppmap.in .mk-cis .mdot { transition-delay: .8s; } .ppmap.in .mk-am .mdot { transition-delay: .95s; }
.ppmap .mk:hover .mdot { transform: scale(1.7); fill: #141613; }
.ppmap .mk text { opacity: .85; transition: opacity .2s; }
.ppmap .mk:hover text { opacity: 1; }
.ppmap:has(.mk-gcc:hover) .arc-gcc, .ppmap:has(.mk-eu:hover) .arc-eu,
.ppmap:has(.mk-cis:hover) .arc-cis, .ppmap:has(.mk-am:hover) .arc-am { stroke: #26398F; stroke-width: 2.2; }
.ppmap .pulse { transform-box: fill-box; transform-origin: center; animation: mappulse 2.6s ease-out infinite; }
@keyframes mappulse { 0% { transform: scale(.6); opacity: 1; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ppmap .arc, .ppmap.in .arc { animation: none; opacity: 1; }
  .ppmap .mk .mdot { transform: scale(1); transition: none; }
  .ppmap .pulse { animation: none; opacity: .5; }
}


/* ================= Smurfit-style two-tier menu ================= */
.topbar { background: #fff; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.topbar .wrap { display: flex; justify-content: flex-end; align-items: center; gap: 26px; height: 40px; }
.topbar a { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mut); }
.topbar a:hover { color: var(--deep); }
.lang { position: relative; }
.langbtn { display: flex; align-items: center; gap: 7px; background: none; border: 0; cursor: pointer; font: 600 12.5px 'Hanken'; letter-spacing: .08em; text-transform: uppercase; color: var(--deep); padding: 6px 0; }
.lang .chev { font-size: 13px; line-height: 1; transform: translateY(-2px); }
.langmenu { position: absolute; right: 0; top: calc(100% + 6px); z-index: 90; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(20,22,30,.14); min-width: 230px; padding: 8px 0; }
.langmenu a, .langmenu span { display: block; padding: 9px 18px; font-size: 14.5px; font-weight: 500; color: var(--ink); text-transform: none; letter-spacing: 0; }
.langmenu a[aria-current] { color: var(--deep); font-weight: 700; }
.langmenu span { color: var(--mut); }
.langmenu a:hover { background: var(--wash); }
.langmenu .alled { border-top: 1px solid var(--line); margin-top: 6px; color: var(--deep); }

.nav2 .wrap { display: flex; align-items: center; gap: 38px; height: 82px; }
.nav2 .brand { margin: 0; display: flex; }
.nav2 .brand img { height: 34px; }
.nav2 .links { display: flex; gap: 30px; align-items: center; margin: 0 auto; }
.nav2 a.link { display: inline-block; font-weight: 600; font-size: 15.5px; color: #333844; padding: 30px 0; border-bottom: 2px solid transparent; }
.nav2 a.link:hover, .nav2 a.link[aria-current] { color: var(--deep); border-bottom-color: var(--deep); }
.nav2 .link .chev { font-size: 13px; color: var(--mut); }
.nav2 .burger { display: none; }
.ddwrap { position: relative; }
.dd { position: absolute; left: -24px; top: 100%; z-index: 80; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 54px rgba(20,22,30,.14); padding: 18px 22px; min-width: 520px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .25s, visibility .2s; }
.ddwrap:hover .dd, .ddwrap:focus-within .dd { opacity: 1; visibility: visible; transform: none; }
.ddgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 28px; }
.ddgrid a { display: block; padding: 8px 2px; font-weight: 500; font-size: 15px; color: var(--ink); }
.ddgrid a:hover { color: var(--deep); }
.ddall { display: block; margin-top: 12px; padding: 12px 2px 4px; border-top: 1px solid var(--line); font-weight: 650; font-size: 14.5px; color: var(--deep); }
@media (max-width: 1080px) {
  .topbar a { display: none; }
  .nav2 .links, .nav2 .cta-slot { display: none; }
  .nav2 .burger { display: grid; margin-left: auto; }
  .nav2 .wrap { height: 66px; }
}


/* footer certifications row */
footer .certs { display: flex; gap: 10px; flex-wrap: wrap; padding: 22px 0 4px; }
footer .certs span { border: 1px solid #CDD4EC; border-radius: 4px; padding: 7px 14px; font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mut); }

/* ================= v7 · Paras home, Price & Pierce editorial benchmark ================= */
.nav2 .brand img.white { display: none; }
.nav-home {
  position: absolute;
  inset: 0 0 auto;
  z-index: 70;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.28);
  backdrop-filter: none;
}
.nav-home .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
}
.nav-home .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  margin: 0;
}
.nav-home .brand img { height: 48px; width: auto; }
.nav-home .brand img.ink { display: none; }
.nav-home .brand img.white { display: block; }
.nav-home .links { display: none; }
.nav-home .burger {
  display: grid;
  order: -1;
  width: 46px;
  height: 46px;
  margin: 0;
  background: rgba(20,22,19,.28);
  border: 1px solid rgba(255,255,255,.46);
  backdrop-filter: blur(8px);
}
.nav-home .burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  background: #fff;
}
.nav-home .burger span:nth-child(1) { transform: translate(-50%,-7px); }
.nav-home .burger span:nth-child(2) { transform: translate(-50%,-50%); }
.nav-home .burger span:nth-child(3) { transform: translate(-50%,5px); }
body.menu-open .nav-home .burger span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
body.menu-open .nav-home .burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-home .burger span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }
.nav-home .cta-slot { display: block; margin-left: auto; }
.nav-home .btn-deep {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  padding: 10px 22px;
}
.nav-home .btn-deep:hover {
  background: #fff;
  color: var(--deep);
  border-color: #fff;
  box-shadow: 0 12px 34px rgba(20,22,19,.24);
}

.hero-home {
  min-height: 700px;
  height: 100svh;
  align-items: center;
  isolation: isolate;
  background: var(--deep);
}
.hero-home .bg { inset: 0; }
.hero-home .bg video.vid {
  filter: saturate(.86) contrast(1.08) brightness(.76);
  object-position: center 52%;
}
.hero-home .scrim {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,22,19,.48) 0%, rgba(38,57,143,.08) 34%, rgba(20,22,19,.62) 100%),
    linear-gradient(90deg, rgba(38,57,143,.3), transparent 58%);
}
.hero-home .scrim::after { display: none; }
.hero-thread {
  position: absolute;
  inset: 14% 7.3% 16%;
  z-index: 2;
  width: 85.4%;
  height: 70%;
  overflow: visible;
  pointer-events: none;
}
.hero-thread path,
.hero-thread circle {
  fill: none;
  stroke: rgba(255,255,255,.56);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.hero-thread path:last-of-type {
  stroke: rgba(157,177,242,.85);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: homeLine 1.9s cubic-bezier(.16,1,.3,1) .35s forwards;
}
.hero-thread circle { fill: var(--fresh); stroke: #fff; }
@keyframes homeLine { to { stroke-dashoffset: 0; } }
.hero-word {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
  transform: translateY(-2vh);
}
.hero-word .hw-mark { height: clamp(58px, 6vw, 88px); margin: 0 auto 26px; display: block; filter: drop-shadow(0 6px 30px rgba(20,22,19,.3)); }
.hero-word h1 {
  color: #fff;
  font-family: 'UnbSemi';
  font-size: clamp(2.6rem,5.2vw,4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01em;
  text-shadow: 0 8px 42px rgba(20,22,19,.34);
}
.hero-word p {
  margin-top: 20px;
  color: rgba(255,255,255,.9);
  font-size: clamp(.8rem,1vw,.95rem);
  font-weight: 550;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.42);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .035em;
}

.ppdark { background: var(--deep); }
.ppintro-grid {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  gap: clamp(64px,8vw,124px);
  align-items: start;
  padding-top: clamp(110px,10vw,150px);
  padding-bottom: 96px;
}
.ppintro-copy { padding-top: 6px; }
.ppintro-copy .label { color: var(--fresh); }
.ppintro-copy p {
  margin-top: 34px;
  max-width: 16em;
  color: #fff;
  font-size: clamp(2.25rem,3.7vw,4rem);
  font-weight: 260;
  line-height: 1.11;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--fresh);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { transition: transform .22s cubic-bezier(.16,1,.3,1); }
.text-link:hover span { transform: translateX(5px); }
.ppphoto {
  aspect-ratio: 4/5;
  margin-top: 0;
  overflow: hidden;
  background: var(--deep);
}
.ppphoto img,
.home-media img { width: 100%; height: 100%; object-fit: cover; }
.home-stats {
  background: var(--deep);
  padding: 0 0 clamp(90px,9vw,130px);
}
.home-stats .row {
  grid-template-columns: minmax(0,1fr) minmax(220px,.38fr);
  align-items: end;
  padding: 34px 0 42px;
  border-top-color: rgba(157,177,242,.3);
}
.home-stats .row:first-child { border-top: 1px solid rgba(157,177,242,.3); }
.home-stats b {
  max-width: 100%;
  font-size: clamp(4rem,7.4vw,6rem);
  font-weight: 220;
  letter-spacing: -.04em;
}
.home-stats .row span {
  max-width: 28em;
  padding: 0 0 8px;
  color: var(--pale);
  font-size: 15px;
  line-height: 1.5;
}

.scrubsec { padding: clamp(110px,10vw,150px) 0 100px; }
.scrubsec .top {
  align-items: flex-start;
  margin-bottom: clamp(54px,6vw,86px);
  padding-top: 20px;
}
.light-link { margin-top: 0; color: var(--deep); }
.ppstatement {
  max-width: 19em;
  font-size: clamp(2.35rem,4vw,4.6rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.ppmap { margin-top: clamp(64px,7vw,96px); }
.ppmap svg { display: block; }
.map-copy-mobile { display: none; }

.home-manufacturing .media { width: 64%; aspect-ratio: 16/10; }
.home-manufacturing .media .tint {
  background: linear-gradient(90deg, rgba(38,57,143,.45), rgba(38,57,143,.08));
}
.home-manufacturing h2 {
  top: 43%;
  font-size: clamp(2.4rem,4vw,4.8rem);
  line-height: 1.04;
  text-wrap: balance;
}
.home-manufacturing .rule { top: 40%; }
.home-manufacturing .col { top: 40%; width: 36%; padding-top: 38px; }
.home-manufacturing .col p { margin: 22px 0 28px; line-height: 1.62; }

.prodband {
  background: var(--deep);
  color: var(--pale);
  padding: clamp(110px,10vw,150px) 0;
}
.prodband .label { color: var(--fresh); }
.prodband .hr { border-top-color: rgba(234,237,250,.28); }
.prodband h2 {
  max-width: 17em;
  color: #fff;
  font-size: clamp(2.25rem,3.8vw,4.35rem);
  line-height: 1.09;
  text-wrap: balance;
}
.prodband .duo { gap: 28px; margin-top: clamp(54px,6vw,82px); }
.prodband .phl .ph { aspect-ratio: 16/10; background: var(--deeper); }
.prodband .phl .cap { align-items: flex-start; margin-top: 18px; padding-top: 18px; }
.prodband .phl .cap strong { display: block; color: #fff; font-size: 20px; font-weight: 520; }
.prodband .phl .cap small { display: block; margin-top: 6px; color: var(--pale); font-size: 14px; font-weight: 450; line-height: 1.5; }
.product-all {
  display: inline-flex;
  gap: 16px;
  margin-top: 56px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--fresh);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.product-all span { color: var(--fresh); transition: transform .22s cubic-bezier(.16,1,.3,1); }
.product-all:hover span { transform: translateX(5px); }

.pptalk { padding: clamp(96px,9vw,140px) 0; }
.pptalk-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(56px,8vw,110px);
  align-items: center;
}
.pptalk .talk { max-width: 11em; font-size: clamp(3rem,5.4vw,6rem); }
.contact-lines { margin-top: 20px; font-size: 16.5px; }
.contact-lines a { color: var(--deep); font-weight: 550; }
.contact-address { max-width: 28em; margin-top: 16px; color: var(--mut); font-size: 14.5px; }

@media (max-width: 980px) {
  .ppintro-grid { grid-template-columns: 1fr; }
  .ppintro-copy p { max-width: 18em; }
  .ppphoto { width: min(72vw,560px); margin-left: auto; }
  .home-manufacturing .media { width: 100%; aspect-ratio: 16/9; }
  .home-manufacturing h2 { top: 42vw; bottom: auto; }
  .home-manufacturing .rule { top: 38vw; bottom: auto; }
  .home-manufacturing .col { position: static; width: 100%; padding: 44px 28px 72px; }
  .pptalk-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-home .wrap { height: 76px; padding-inline: 18px; }
  .nav-home .brand img { height: 40px; }
  .nav-home .burger { width: 42px; height: 42px; }
  .nav-home .btn-deep { padding: 9px 15px; font-size: 11px; letter-spacing: .08em; }
  .hero-home { min-height: 620px; }
  .hero-thread { inset: 18% 18px 18%; width: calc(100% - 36px); height: 64%; }
  .hero-word { transform: translateY(-1vh); }
  .hero-word h1 { font-size: clamp(3rem,17vw,4.2rem); letter-spacing: .045em; text-indent: .045em; }
  .hero-word p { margin-top: 16px; font-size: 11px; letter-spacing: .12em; }
  .hero-meta { left: 18px; right: 18px; bottom: 22px; font-size: 12px; }
  .hero-meta span:last-child { display: none; }
  .ppintro-grid { gap: 54px; padding: 88px 20px 70px; }
  .ppintro-copy p { margin-top: 24px; font-size: clamp(2.1rem,10vw,3rem); }
  .ppphoto { width: 84%; }
  .home-stats .wrap { padding-inline: 20px; }
  .home-stats .row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0 34px; }
  .home-stats b { font-size: clamp(3.8rem,20vw,5.2rem); }
  .home-stats .row span { max-width: 22em; padding: 0; text-align: left; }
  .scrubsec { padding: 88px 0 72px; }
  .scrubsec .wrap { padding-inline: 20px; }
  .scrubsec .top { display: block; margin-bottom: 46px; }
  .scrubsec .top .text-link { margin-top: 24px; }
  .ppstatement { font-size: clamp(2.15rem,10vw,3.1rem); }
  .ppmap { margin-top: 48px; overflow: hidden; }
  .ppmap svg { width: 620px !important; max-width: none; transform: translateX(-22%); }
  .map-copy-mobile { display: block; margin-top: 16px; color: var(--deep); font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
  .home-manufacturing .media { aspect-ratio: 5/4; }
  .home-manufacturing h2 { left: 20px; top: 42vw; bottom: auto; max-width: 8em; font-size: 2.45rem; }
  .home-manufacturing .rule { left: 20px; right: 20px; top: 36vw; bottom: auto; }
  .home-manufacturing .col { padding: 36px 20px 72px; }
  .prodband { padding: 88px 0; }
  .prodband .wrap { padding-inline: 20px; }
  .prodband .duo { grid-template-columns: 1fr; gap: 50px; }
  .prodband .phl .ph { aspect-ratio: 4/3; }
  .pptalk { padding: 84px 0; }
  .pptalk .wrap { padding-inline: 20px; }
  .pptalk .talk { font-size: clamp(3rem,14vw,4.3rem); }
  .menu { padding: 108px 0 44px; }
  .menu .wrap { grid-template-columns: 1fr; gap: 0; padding-inline: 20px; }
  .menu .side { display: none; }
  .menu a.big { padding: 8px 0; font-size: clamp(1.8rem,8vw,2.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-thread path:last-of-type { stroke-dashoffset: 0; animation: none; }
}

/* ================= v8 · Paras product experience ================= */
.products-index,
.range-page,
.product-page { overflow: clip; background: #fff; }

.catalog-crumbs .crumbs,
.range-crumbs .crumbs,
.product-crumbs .crumbs { padding-top: 22px; }

.catalog-hero { padding: 46px 0 0; }
.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: clamp(56px, 7vw, 108px);
  align-items: center;
  min-height: 590px;
}
.catalog-hero-copy { padding: 50px 0 76px; }
.catalog-hero-copy .label,
.catalog-section-head .label,
.range-hero-copy .label,
.range-table-head .label { color: var(--deep); }
.catalog-hero-copy h1 {
  max-width: 8.5em;
  margin-top: 20px;
  font-size: clamp(3.4rem, 6.3vw, 6.2rem);
  font-weight: 245;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.catalog-hero-copy p {
  max-width: 36em;
  margin-top: 30px;
  color: var(--mut);
  font-size: 18px;
  line-height: 1.62;
}
.catalog-hero-copy .btn { margin-top: 36px; }
.catalog-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  background: var(--deep);
}
.catalog-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.catalog-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.catalog-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalog-facts > div { padding: 30px 24px 32px 0; }
.catalog-facts > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.catalog-facts strong {
  display: block;
  color: var(--deep);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 290;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.catalog-facts span {
  display: block;
  margin-top: 12px;
  color: var(--mut);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.catalog-ranges { padding: clamp(108px, 10vw, 156px) 0; }
.catalog-section-head { max-width: 770px; }
.catalog-section-head h2,
.range-table-head h2 {
  max-width: 10.5em;
  margin-top: 18px;
  font-size: clamp(2.7rem, 4.9vw, 5.2rem);
  font-weight: 260;
  line-height: 1.02;
  letter-spacing: -.046em;
  text-wrap: balance;
}
.catalog-section-head > p,
.range-table-head > p {
  max-width: 42em;
  margin-top: 25px;
  color: var(--mut);
  font-size: 17px;
}
.catalog-range-layout {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: start;
  margin-top: 72px;
}
.featured-range { display: block; }
.featured-range-image {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--deep);
}
.featured-range-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.featured-range:hover .featured-range-image img { transform: scale(1.035); }
.featured-range-copy {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--ink);
}
.featured-range-copy small,
.featured-range-copy em { display: block; color: var(--mut); font-size: 13px; font-style: normal; }
.featured-range-copy strong { display: block; margin: 7px 0 4px; color: var(--ink); font-size: 23px; font-weight: 540; }
.featured-range-copy > span:last-child { color: var(--deep); font-size: 29px; transition: transform .25s cubic-bezier(.16,1,.3,1); }
.featured-range:hover .featured-range-copy > span:last-child { transform: translateX(8px); }
.category-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 38px; }
.category-index a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title arrow" "count arrow";
  gap: 3px 20px;
  align-items: center;
  min-height: 96px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  transition: padding .25s cubic-bezier(.16,1,.3,1), border-color .25s;
}
.category-index a:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.category-index a:hover { padding-left: 9px; border-top-color: var(--deep); }
.category-index a > span { grid-area: title; color: var(--ink); font-size: 18px; font-weight: 560; line-height: 1.25; }
.category-index a > small { grid-area: count; color: var(--mut); font-size: 13px; }
.category-index a > b { grid-area: arrow; color: var(--deep); font-size: 21px; font-weight: 450; transition: transform .25s; }
.category-index a:hover > b { transform: translateX(5px); }

.catalog-explorer {
  padding: clamp(108px, 10vw, 150px) 0;
  background: var(--wash);
}
.explorer-head { max-width: 810px; }
.product-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  margin-top: 62px;
}
.search-field { display: block; }
.search-field > span,
.cap-wrap label {
  display: block;
  color: var(--mut);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .12em;
  text-transform: uppercase;
}
#product-search {
  margin: 7px 0 0;
  padding: 13px 0 16px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 370;
  letter-spacing: -.025em;
}
#product-search::placeholder { color: #7a8094; opacity: .72; }
#product-search:focus { outline: 0; border-color: var(--deep); box-shadow: 0 2px 0 var(--deep); }
.ex-count-line { min-width: 142px; margin: 0 0 14px; text-align: right; }
.ex-count-line b { display: block; color: var(--deep); font-size: 34px; font-weight: 320; line-height: 1; }
.ex-count-line span { font-size: 13px; }
.catalog-explorer .ex-controls {
  display: grid;
  grid-template-columns: 1fr minmax(310px, auto);
  gap: 50px;
  align-items: center;
  margin-top: 36px;
  padding: 0 0 34px;
  border-bottom: 1px solid #c9cee2;
}
.material-filters { display: flex; gap: 9px; flex-wrap: wrap; }
.catalog-explorer .chip { margin: 0; padding: 9px 17px; background: transparent; }
.catalog-explorer .chip.on { background: var(--deep); }
.catalog-explorer .cap-wrap { display: grid; grid-template-columns: 1fr auto; gap: 9px 16px; align-items: center; }
.catalog-explorer .cap-wrap label { grid-column: 1; }
.catalog-explorer .cap-wrap input { grid-column: 1; width: 100%; }
.catalog-explorer .cap-wrap output { grid-column: 2; grid-row: 1 / 3; min-width: 100px; color: var(--deep); font-size: 13px; font-weight: 650; text-align: right; }
.catalog-explorer .ex-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin-top: 46px; }
.catalog-explorer .ex-item {
  min-height: 188px;
  padding: 24px 0 26px;
  border: 0;
  border-top: 1px solid #c9cee2;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.catalog-explorer .ex-item:hover { padding-left: 9px; border-color: var(--deep); box-shadow: none; transform: none; }
.ex-item-top { display: flex; justify-content: space-between; align-items: center; }
.product-code {
  color: var(--deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.ex-arr { color: var(--deep); font-size: 21px; transition: transform .22s; }
.ex-item:hover .ex-arr { transform: translateX(6px); }
.catalog-explorer .ex-name { margin-top: 24px; font-size: 20px; font-weight: 550; line-height: 1.24; }
.catalog-explorer .ex-meta { margin-top: 7px; font-size: 14px; }
.catalog-explorer .ex-cat { margin-top: auto; }
.ex-more-note { margin-top: 28px; color: var(--mut); font-size: 14px; }
.ex-empty {
  grid-column: 1 / -1;
  padding: 40px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.ex-empty strong { color: var(--ink); font-size: 23px; font-weight: 560; }
.ex-empty p { margin-top: 5px; color: var(--mut); }
.ex-empty button { margin-top: 20px; padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--deep); font: inherit; font-size: 14px; font-weight: 680; cursor: pointer; }

.range-hero { padding: 44px 0 clamp(94px, 9vw, 138px); }
.range-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: clamp(58px, 8vw, 116px);
  align-items: center;
}
.range-hero-copy h1 {
  max-width: 9em;
  margin-top: 20px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 250;
  line-height: 1;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.range-hero-copy > p { max-width: 35em; margin-top: 28px; color: var(--mut); font-size: 18px; line-height: 1.62; }
.range-event { margin-top: 30px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--deep); font-size: 14px; font-weight: 620; }
.range-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-top: 36px; }
.range-actions .text-link { margin-top: 0; }
.range-hero-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--wash); }
.range-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.range-diagram { width: 100%; height: 100%; padding: 36px; }
.range-diagram svg { width: 100%; height: 100%; }
.range-media-fallback,
.product-media-fallback {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--deep);
  color: var(--pale);
}
.range-media-fallback .label,
.product-media-fallback .label { color: var(--fresh); }
.range-media-fallback strong,
.product-media-fallback strong { display: block; margin-top: 18px; color: #fff; font-size: clamp(3rem, 7vw, 6rem); font-weight: 240; line-height: 1; letter-spacing: -.05em; }
.range-media-fallback p,
.product-media-fallback p { max-width: 25em; margin-top: 18px; font-size: 15px; }
.range-table-section { padding: clamp(105px, 10vw, 150px) 0; background: #fff; }
.range-table-head { max-width: 760px; margin-bottom: 72px; }
.spec-group { margin-top: 58px; }
.spec-group:first-of-type { margin-top: 0; }
.spec-group-head { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; padding-bottom: 17px; border-bottom: 2px solid var(--ink); }
.spec-group-head h3 { font-size: clamp(1.55rem, 2.3vw, 2.2rem); font-weight: 440; }
.spec-group-head span { color: var(--mut); font-size: 13px; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.spec-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
.spec-scroll:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }
.table-scroll-hint { display: none; margin: 14px 0 8px; color: var(--mut); font-size: 13px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.range-table-section table.spec { min-width: 980px; }
.range-table-section table.spec th { padding-top: 18px; border-bottom-width: 1px; }
.range-table-section table.spec td { padding-top: 17px; padding-bottom: 17px; }

.product-detail { padding: 46px 0 clamp(98px, 9vw, 140px); }
.product-page .pdp {
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: clamp(58px, 8vw, 112px);
  padding: 0;
}
.product-page .pdp > .stage,
.product-page .pdp > .pdp-copy { min-width: 0; }
.product-page .pdp .stage { top: 100px; }
.product-page .pdp .stage > img { width: 100%; max-height: 710px; object-fit: contain; background: var(--ink); }
.product-page .pdp .stage > .caption { margin: 14px 0 0; }
.product-page .pdp .stage .diabox { margin-top: 28px; padding: 42px; background: var(--wash); }
.product-page .pdp .stage > .diabox:first-child { margin-top: 0; }
.pdp-kicker { display: flex; justify-content: space-between; gap: 28px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.pdp-copy h1 {
  max-width: 11em;
  margin-top: 32px;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  font-weight: 260;
  line-height: 1.01;
  letter-spacing: -.047em;
  text-wrap: balance;
}
.pdp-lead { max-width: 38em; margin-top: 26px; color: var(--mut); font-size: 17px; }
.pdp-copy table.kv { margin-top: 40px; border-top: 2px solid var(--ink); }
.pdp-copy table.kv th { width: 42%; padding: 15px 18px 15px 0; }
.pdp-copy table.kv td { padding: 15px 0; }
.container-plan { margin-top: 36px; padding: 30px; background: var(--deep); color: var(--pale); }
.container-plan .label { color: var(--fresh); }
.container-plan > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.container-plan p + p { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.22); }
.container-plan strong { display: block; color: #fff; font-size: clamp(2rem, 3.1vw, 3.35rem); font-weight: 270; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.container-plan small { display: block; margin-top: 9px; color: var(--pale); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.container-plan em { display: block; margin-top: 27px; color: var(--pale); font-size: 13px; font-style: normal; line-height: 1.55; }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.pdp-note { margin-top: 19px; color: var(--mut); font-size: 14px; }
.same-family { margin-top: 55px; padding-top: 25px; border-top: 2px solid var(--ink); }
.same-family-head { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 24px; }
.same-family-head a { color: var(--deep); font-size: 13px; font-weight: 680; border-bottom: 1px solid currentColor; }
.same-family table.spec { min-width: 580px; }
.same-family table.spec th { border-bottom-width: 1px; }
.pdp-assurance { background: var(--wash); }
.pdp-assurance .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.pdp-assurance .wrap > div { min-height: 184px; padding: 43px 42px 42px 0; }
.pdp-assurance .wrap > div + div { padding-left: 42px; border-left: 1px solid #c9cee2; }
.pdp-assurance strong { display: block; color: var(--deep); font-size: 19px; font-weight: 560; }
.pdp-assurance span { display: block; max-width: 24em; margin-top: 10px; color: var(--mut); font-size: 14px; line-height: 1.55; }

.products-index a:focus-visible,
.range-page a:focus-visible,
.product-page a:focus-visible,
.products-index button:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

@media (max-width: 1050px) {
  .catalog-hero-grid,
  .range-hero-grid,
  .product-page .pdp { grid-template-columns: 1fr 1fr; gap: 48px; }
  .catalog-hero-media { min-height: 500px; }
  .catalog-range-layout { grid-template-columns: .8fr 1.2fr; gap: 44px; }
  .category-index { grid-template-columns: 1fr; }
  .category-index a:nth-last-child(2) { border-bottom: 0; }
  .product-page .pdp-copy h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
}

@media (max-width: 820px) {
  .catalog-hero-grid,
  .range-hero-grid,
  .catalog-range-layout,
  .product-page .pdp { grid-template-columns: 1fr; }
  .catalog-hero-grid { gap: 0; }
  .catalog-hero-copy { padding-top: 28px; }
  .catalog-hero-media { min-height: 0; aspect-ratio: 4/3; }
  .catalog-facts { grid-template-columns: repeat(2, 1fr); }
  .catalog-facts > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .catalog-facts > div:nth-child(4) { border-top: 1px solid var(--line); }
  .catalog-range-layout { gap: 56px; }
  .featured-range-image { aspect-ratio: 5/4; }
  .category-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-index a:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .product-search-row { grid-template-columns: 1fr; gap: 20px; }
  .ex-count-line { text-align: left; }
  .ex-count-line b { display: inline; margin-right: 4px; font-size: 24px; }
  .catalog-explorer .ex-controls { grid-template-columns: 1fr; gap: 28px; }
  .range-hero-copy { order: 1; }
  .range-hero-media { order: 2; }
  .product-page .pdp .stage { position: static; }
  .pdp-assurance .wrap { grid-template-columns: 1fr; }
  .pdp-assurance .wrap > div { min-height: auto; padding: 30px 0; }
  .pdp-assurance .wrap > div + div { padding-left: 0; border-left: 0; border-top: 1px solid #c9cee2; }
}

@media (max-width: 620px) {
  .catalog-crumbs .wrap,
  .range-crumbs .wrap,
  .product-crumbs .wrap,
  .catalog-hero .wrap,
  .catalog-ranges .wrap,
  .catalog-explorer .wrap,
  .range-hero .wrap,
  .range-table-section .wrap,
  .product-detail .wrap,
  .pdp-assurance .wrap { padding-inline: 20px; }
  .catalog-crumbs .crumbs,
  .range-crumbs .crumbs,
  .product-crumbs .crumbs { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .catalog-hero { padding-top: 25px; }
  .catalog-hero-copy { padding: 24px 0 60px; }
  .catalog-hero-copy h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .catalog-hero-copy p { margin-top: 24px; font-size: 16px; }
  .catalog-hero-media { aspect-ratio: 4/3; }
  .catalog-facts { margin-top: 28px; padding-inline: 20px; }
  .catalog-facts > div { padding: 23px 13px 24px 0; }
  .catalog-facts > div + div { padding-left: 17px; }
  .catalog-facts strong { font-size: 2.25rem; }
  .catalog-facts span { font-size: 10px; letter-spacing: .1em; }
  .catalog-ranges { padding: 88px 0; }
  .catalog-section-head h2,
  .range-table-head h2 { font-size: clamp(2.55rem, 12vw, 3.45rem); }
  .catalog-range-layout { margin-top: 48px; }
  .featured-range-image { aspect-ratio: 4/5; }
  .category-index { grid-template-columns: 1fr; }
  .category-index a:nth-last-child(2) { border-bottom: 0; }
  .catalog-explorer { padding: 88px 0; }
  .product-search-row { margin-top: 46px; }
  #product-search { font-size: 1.55rem; }
  .catalog-explorer .ex-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .catalog-explorer .ex-item { min-height: 166px; }
  .material-filters { gap: 7px; }
  .catalog-explorer .chip { padding: 8px 14px; font-size: 13px; }
  .catalog-explorer .cap-wrap { grid-template-columns: 1fr; }
  .catalog-explorer .cap-wrap output { grid-column: 1; grid-row: auto; text-align: left; }
  .range-hero { padding: 24px 0 82px; }
  .range-hero-grid { gap: 48px; }
  .range-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .range-hero-copy > p { font-size: 16px; }
  .range-actions { align-items: flex-start; flex-direction: column; }
  .range-hero-media { aspect-ratio: 5/4; }
  .range-table-section { padding: 86px 0; }
  .range-table-head { margin-bottom: 52px; }
  .spec-group { margin-top: 48px; }
  .spec-group-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .table-scroll-hint { display: block; }
  .story .copy { padding-inline: 20px; }
  .story .stage { display: none; }
  .product-detail { padding: 24px 0 82px; }
  .product-page .pdp { gap: 50px; }
  .product-page .pdp .stage.has-photo > img { height: 300px; object-fit: contain; }
  .product-page .pdp .stage.has-photo .diabox { display: none; }
  .product-page .pdp .stage .diabox { padding: 24px; }
  .pdp-copy h1 { margin-top: 25px; font-size: clamp(2.65rem, 13vw, 3.85rem); }
  .pdp-kicker { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; }
  .pdp-kicker .label { min-width: 0; font-size: 10px; line-height: 1.5; letter-spacing: .11em; }
  .pdp-copy table.kv th { width: 44%; font-size: 11px; }
  .pdp-copy table.kv td { font-size: 14px; }
  .container-plan { padding: 25px 22px; }
  .container-plan > div { gap: 15px; }
  .container-plan p + p { padding-left: 15px; }
  .container-plan strong { font-size: 1.8rem; }
  .container-plan small { font-size: 9px; }
  .pdp-actions { flex-direction: column; }
  .pdp-actions .btn { width: 100%; text-align: center; }
  .same-family-head { align-items: flex-start; flex-direction: column; }
}

/* ================= Spain market edition ================= */
.es-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px) saturate(1.15);
}
.es-nav-row { display: flex; align-items: center; gap: 28px; height: 100%; }
.es-brand { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; align-self: stretch; margin-right: auto; }
.es-brand img { display: none; }
.es-brand::before {
  content: '';
  display: block;
  flex: 0 0 27px;
  width: 27px;
  height: 32px;
  background: var(--deep);
  -webkit-mask: url('/paras-preview-assets/img/paras-ink-mark.png') center / contain no-repeat;
  mask: url('/paras-preview-assets/img/paras-ink-mark.png') center / contain no-repeat;
}
.es-footer-brand::before {
  content: '';
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: var(--deep);
  -webkit-mask: url('/paras-preview-assets/img/paras-ink-mark.png') center / contain no-repeat;
  mask: url('/paras-preview-assets/img/paras-ink-mark.png') center / contain no-repeat;
}
.es-brand span { display: grid; line-height: 1; }
.es-brand strong { color: var(--deep); font-family: 'UnbSemi'; font-size: 22px; font-weight: 600; line-height: 1; }
.es-brand small { display: none; }
.es-nav-links { display: flex; align-items: center; gap: 27px; }
.es-nav-links a { padding: 26px 0 23px; border-bottom: 2px solid transparent; color: var(--ink); font-size: 14px; font-weight: 650; white-space: nowrap; }
.es-nav-links a:hover, .es-nav-links a[aria-current] { border-bottom-color: var(--deep); color: var(--deep); }
.es-language { color: var(--deep); font-size: 13px; font-weight: 750; letter-spacing: .08em; }
.es-country { position: relative; color: var(--deep); }
.es-country summary { min-width: 86px; padding: 10px 15px; border: 1px solid var(--deep); border-radius: 999px; cursor: pointer; font-size: 12px; font-weight: 700; list-style: none; text-align: center; }
.es-country summary::-webkit-details-marker { display: none; }
.es-country > div { position: absolute; top: calc(100% + 12px); right: 0; z-index: 72; width: 210px; padding: 8px; border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 42px rgba(38,57,143,.14); }
.es-country a { display: grid; gap: 3px; padding: 11px 12px; color: var(--ink); text-decoration: none; }
.es-country a:hover, .es-country a[aria-current] { background: var(--wash); color: var(--deep); }
.es-country a strong { font-size: 13px; }.es-country a span { color: var(--mut); font-size: 11px; }
.es-nav-cta { white-space: nowrap; }
.es-menu { display: none; position: relative; }
.es-menu summary { color: var(--deep); cursor: pointer; font-size: 14px; font-weight: 700; list-style: none; }
.es-menu summary::-webkit-details-marker { display: none; }
.es-menu > div { position: absolute; top: 34px; right: 0; width: 230px; padding: 14px 18px; border: 1px solid var(--line); background: #fff; box-shadow: 0 18px 46px rgba(38,57,143,.14); }
.es-menu a { display: block; padding: 9px 0; color: var(--ink); font-size: 14px; font-weight: 650; }
.es-kicker { color: var(--deep); font-size: 12px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }

.es-film-hero {
  position: relative;
  height: 190svh;
  min-height: 1160px;
  background: #eef1f9;
  --film-copy: 1;
  --film-details: 1;
  --film-product: 1;
  --film-sheen: 0;
  --film-shift: 0%;
  --film-scale: 1;
}
.es-film-sticky {
  position: sticky;
  top: 76px;
  height: calc(100svh - 76px);
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: #e9edfb;
}
.es-film-video,
.es-film-scroll-canvas,
.es-film-first,
.es-film-first img,
.es-film-fallback,
.es-film-fallback img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.es-film-video {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translate3d(var(--film-shift), 0, 0) scale(var(--film-scale));
  transform-origin: center;
  filter: saturate(1.22) contrast(1.07) brightness(1.02);
  will-change: transform;
}
.es-film-first { z-index: 0; display: none; transition: opacity .3s ease; }
.es-film-fallback { z-index: 0; transition: opacity .3s ease; }
.es-film-first img,
.es-film-fallback img { background: #eef1f9; }
.es-film-first img { object-fit: cover; object-position: center; filter: saturate(1.22) contrast(1.07) brightness(1.02); }
.es-film-fallback img { object-fit: cover; object-position: center; transform: translate3d(18%,0,0) scale(1.06); filter: saturate(1.22) contrast(1.07) brightness(1.02); }
.js .es-film-first { display: block; }
.js .es-film-fallback { display: none; }
.es-film-hero.is-ready .es-film-video { opacity: 1; }
.es-film-hero.is-ready .es-film-first { opacity: 0; }
.js .es-film-hero.is-reduced .es-film-first { display: none; }
.js .es-film-hero.is-reduced .es-film-fallback { display: block; }
.es-film-atmosphere,
.es-film-sheen {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.es-film-atmosphere {
  opacity: var(--film-product);
  background:
    radial-gradient(ellipse 31% 15% at 81% 87%, rgba(38,57,143,.3), transparent 73%),
    radial-gradient(circle 31vw at 100% 0%, rgba(157,177,242,.46), transparent 72%),
    linear-gradient(115deg, transparent 55%, rgba(157,177,242,.34) 100%);
}
.es-film-sheen {
  left: 43%;
  width: 34%;
  opacity: calc(var(--film-sheen) * .58);
  background: linear-gradient(108deg, transparent 37%, rgba(255,255,255,.78) 49%, transparent 61%);
  mix-blend-mode: screen;
  transform: translate3d(calc((var(--film-product) * 38vw) - 34vw), 0, 0) skewX(-7deg);
  will-change: transform, opacity;
}
.es-film-scrim {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: var(--film-copy);
  background: #26398f;
  clip-path: polygon(0 0, 41% 0, 47% 100%, 0 100%);
}
.es-film-copy {
  position: absolute;
  z-index: 3;
  left: max(28px, calc((100vw - 1280px) / 2));
  bottom: clamp(50px, 8vh, 92px);
  width: min(500px, 36vw);
  opacity: var(--film-copy);
  transform: translate3d(0, calc((1 - var(--film-copy)) * 30px), 0);
  filter: blur(calc((1 - var(--film-copy)) * 7px));
  clip-path: inset(calc((1 - var(--film-copy)) * 16%) 0 0 0);
  will-change: transform, opacity, filter, clip-path;
}
.js .es-film-copy { opacity: 0; }
.js .es-film-hero.is-ready .es-film-copy,
.js .es-film-hero.is-reduced .es-film-copy { opacity: var(--film-copy); }
.es-film-copy h1 {
  max-width: 6.1em;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(3.2rem, 4.75vw, 5.35rem);
  font-weight: 280;
  line-height: .94;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.es-film-copy .es-kicker { color: #dce3ff; }
.es-film-details {
  opacity: var(--film-details);
  transform: translate3d(0, calc((1 - var(--film-details)) * 18px), 0);
  filter: blur(calc((1 - var(--film-details)) * 5px));
  will-change: transform, opacity, filter;
}
.es-film-copy .es-lead { max-width: 29em; margin-top: 26px; color: #eef1ff; font-size: clamp(17px, 1.45vw, 19px); line-height: 1.55; }
.es-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 32px; }
.es-film-copy .btn-deep { border-color: #fff; background: #fff; color: var(--deep); }
.es-film-copy .btn-deep:hover { border-color: var(--fresh); background: var(--fresh); }
.es-film-copy .btn-hair { border-color: rgba(255,255,255,.58); color: #fff; }
.es-film-copy .btn-hair:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.es-proof-band { background: #fff; }
.es-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd5ed; }
.es-proof > div { padding: 24px 26px 25px 0; }
.es-proof > div + div { padding-left: 26px; border-left: 1px solid #cfd5ed; }
.es-proof strong { display: block; color: var(--deep); font-size: 18px; font-weight: 650; }
.es-proof span { display: block; margin-top: 4px; color: var(--mut); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

html:not(.js) .es-film-hero { height: auto; min-height: 0; }
html:not(.js) .es-film-sticky { position: relative; top: 0; height: calc(100svh - 76px); }

.es-event { background: var(--deep); color: var(--wash); }
.es-event .wrap { display: grid; grid-template-columns: .55fr 1.35fr auto; gap: 36px; align-items: center; padding-top: 34px; padding-bottom: 35px; }
.es-event p { color: var(--fresh); font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.es-event h2 { color: #fff; font-size: clamp(24px, 2.8vw, 38px); font-weight: 420; }
.es-event a { color: #fff; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--fresh); }

.es-local-story {
  position: relative;
  min-height: min(780px, 84svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
  color: #fff;
}
.es-local-story > img {
  position: absolute;
  inset: -2%;
  z-index: -2;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.es-local-story::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(19,29,78,.94) 0%, rgba(24,38,103,.72) 31%, rgba(24,38,103,.12) 58%, transparent 76%);
}
.es-local-story > .wrap { display: flex; min-height: min(780px, 84svh); align-items: center; }
.es-local-copy { width: min(510px, 42vw); padding: 72px 0; }
.es-local-copy .es-kicker { color: #dce3ff; }
.es-local-copy h2 {
  max-width: 8.4em;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.05em;
}
.es-local-copy > p:last-child { max-width: 32em; margin-top: 26px; color: #eef1ff; font-size: 18px; line-height: 1.62; }
.es-local-story:hover > img { transform: scale(1.015); }

.es-range { padding: clamp(90px, 10vw, 145px) 0; }
.es-section-copy { max-width: 680px; }
.es-section-copy h2 { color: var(--deep); font-size: clamp(2.5rem, 5vw, 4.7rem); font-weight: 300; line-height: 1; letter-spacing: -.05em; }
.es-section-copy p { max-width: 37em; margin-top: 24px; color: var(--mut); font-size: 17px; }
.es-range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 18px; margin-top: 58px; }
.es-range-grid a { min-width: 0; }
.es-range-grid a > div { overflow: hidden; aspect-ratio: 4 / 3; background: #171717; }
.es-range-grid img { width: 100%; height: 100%; padding: 6%; object-fit: contain; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.es-range-grid a:hover img { transform: scale(1.035); }
.es-range-grid strong { display: block; margin-top: 15px; color: var(--ink); font-size: 17px; font-weight: 650; }
.es-range-grid span { display: block; margin-top: 3px; color: var(--mut); font-size: 13px; }
.es-inline-link { display: inline-block; margin-top: 42px; color: var(--deep); font-weight: 700; border-bottom: 1px solid currentColor; }

.es-portfolio-preview { padding: clamp(96px, 10vw, 148px) 0; background: var(--wash); }
.es-portfolio-preview > .wrap { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 128px); align-items: start; }
.es-portfolio-intro { position: sticky; top: 118px; }
.es-portfolio-intro h2,
.es-all-categories-head h2 { max-width: 10em; color: var(--deep); font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 300; line-height: 1; letter-spacing: -.05em; }
.es-portfolio-intro p,
.es-all-categories-head p { max-width: 39em; margin-top: 25px; color: var(--mut); font-size: 17px; line-height: 1.6; }
.es-portfolio-intro .btn { margin-top: 31px; }
.es-portfolio-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 50px 38px; }
.es-portfolio-group h3 { padding-bottom: 13px; border-bottom: 2px solid var(--deep); color: var(--deep); font-size: 13px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.es-portfolio-group > div { display: grid; }
.es-portfolio-group a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; min-height: 76px; padding: 17px 0; border-bottom: 1px solid #c9cee2; color: var(--ink); }
.es-portfolio-group a:hover strong { color: var(--deep); }
.es-portfolio-group a:hover b { transform: translateX(5px); }
.es-portfolio-group strong { display: block; font-size: 16px; font-weight: 620; line-height: 1.25; transition: color .2s; }
.es-portfolio-group small { display: block; margin-top: 4px; color: var(--mut); font-size: 12px; }
.es-portfolio-group b { color: var(--deep); font-size: 19px; font-weight: 450; transition: transform .2s; }

.es-products-index { overflow: clip; background: #fff; }
.es-products-hero { padding: 28px 0 76px; }
.es-products-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: clamp(48px, 7vw, 96px); align-items: center; min-height: calc(100svh - 195px); }
.es-products-hero h1 { max-width: 9em; margin-top: 18px; color: var(--deep); font-size: clamp(3.6rem, 5.2vw, 5.4rem); font-weight: 260; line-height: .94; letter-spacing: -.055em; }
.es-products-hero p:not(.es-kicker) { max-width: 32em; margin-top: 24px; color: var(--mut); font-size: 18px; line-height: 1.55; }
.es-products-hero .btn { margin-top: 32px; }
.es-products-hero-grid > div:last-child { overflow: hidden; aspect-ratio: 5 / 4; max-height: 600px; background: #171717; }
.es-products-hero img { width: 100%; height: 100%; object-fit: cover; }
.es-featured-punnet { background: var(--deep); }
.es-featured-punnet a { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr) auto; gap: clamp(30px, 6vw, 86px); align-items: center; min-height: 310px; color: #fff; }
.es-featured-punnet-photo { align-self: stretch; overflow: hidden; background: #171717; }
.es-featured-punnet-photo img { width: 100%; height: 100%; padding: 6%; object-fit: contain; }
.es-featured-punnet-copy { display: grid; }
.es-featured-punnet-copy small { color: var(--fresh); font-size: 12px; font-weight: 720; letter-spacing: .09em; text-transform: uppercase; }
.es-featured-punnet-copy strong { margin-top: 12px; color: #fff; font-size: clamp(2.5rem, 5vw, 4.7rem); font-weight: 300; line-height: 1; letter-spacing: -.045em; }
.es-featured-punnet-copy em { margin-top: 15px; color: var(--pale); font-size: 15px; font-style: normal; }
.es-featured-punnet a > b { padding-right: 12px; color: var(--fresh); font-size: 36px; font-weight: 350; transition: transform .2s; }
.es-featured-punnet a:hover > b { transform: translateX(7px); }
.es-all-categories { padding: clamp(105px, 11vw, 160px) 0; }
.es-all-categories-head { max-width: 740px; margin-bottom: 70px; }
.es-all-categories .es-portfolio-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px clamp(40px, 7vw, 92px); }
.es-catalog-explorer { border-top: 1px solid #c9cee2; }
.es-catalog-explorer .es-all-categories-head { margin-bottom: 0; }
.es-category-page .range-hero-media img { object-fit: cover; }
.es-product .stage.diagram-only .diabox { margin-top: 0; min-height: 430px; display: flex; flex-direction: column; justify-content: center; }

.es-buyer { padding: clamp(90px, 9vw, 130px) 0; background: var(--deep); color: var(--pale); }
.es-buyer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); }
.es-buyer .es-kicker { color: var(--fresh); }
.es-buyer h2 { max-width: 9em; margin-top: 20px; color: #fff; font-size: clamp(2.6rem, 4.7vw, 4.7rem); font-weight: 310; line-height: 1; letter-spacing: -.05em; }
.es-buyer-list > div { display: grid; grid-template-columns: .4fr .6fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.es-buyer-list strong { color: #fff; font-size: 19px; font-weight: 600; }
.es-buyer-list p { color: var(--pale); font-size: 15px; }

.es-compliance { padding: clamp(90px, 10vw, 145px) 0; background: #fff; }
.es-compliance-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.es-compliance-grid > div:first-child { overflow: hidden; aspect-ratio: 4 / 5; background: var(--wash); }
.es-compliance img { width: 100%; height: 100%; object-fit: cover; }
.es-compliance h2 { max-width: 9em; margin-top: 18px; color: var(--deep); font-size: clamp(2.7rem, 4.7vw, 4.8rem); font-weight: 300; line-height: 1; letter-spacing: -.05em; }
.es-compliance p { margin-top: 26px; color: var(--body); }
.es-compliance ul, .es-quality ul { margin: 29px 0 34px; list-style: none; }
.es-compliance li, .es-quality li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 15px; }
.es-compliance li::before, .es-quality li::before { content: ''; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; background: var(--deep); border-radius: 50%; }

.es-closing { padding: clamp(85px, 9vw, 126px) 0; background: var(--deep); text-align: center; }
.es-closing h2 { max-width: 12em; margin: 0 auto; color: #fff; font-size: clamp(2.7rem, 5.2vw, 5.2rem); font-weight: 300; line-height: 1; letter-spacing: -.05em; }
.es-closing p { max-width: 40em; margin: 24px auto 0; color: var(--pale); }
.es-closing .btn { margin-top: 31px; }

.es-footer { background: var(--wash); }
.es-footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 60px; padding: 62px 0 43px; }
.es-footer-brand { display: flex; align-items: center; gap: 11px; }
.es-footer-brand img { display: none; }
.es-footer-brand::before { flex-basis: 31px; width: 31px; height: 31px; }
.es-footer-brand strong { color: var(--deep); font-family: 'UnbSemi'; font-size: 18px; }
.es-footer p { margin-top: 11px; color: var(--mut); }
.es-footer h4 { color: var(--deep); }
.es-footer-base { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0 25px; border-top: 1px solid #cfd5ed; color: var(--mut); font-size: 13px; }

.es-range-page { padding: 35px 0 120px; }
.es-range-head { max-width: 760px; padding: 58px 0 68px; }
.es-range-head h1 { margin-top: 14px; color: var(--deep); font-size: clamp(3.8rem, 8vw, 7.8rem); font-weight: 260; line-height: .93; letter-spacing: -.055em; }
.es-range-head > p:last-child { max-width: 42em; margin-top: 25px; color: var(--mut); font-size: 17px; }
.es-catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px 15px; }
.es-catalog-media { display: flex; align-items: center; justify-content: center; overflow: hidden; aspect-ratio: 4 / 3; background: #171717; }
.es-catalog-media img { width: 100%; height: 100%; padding: 6%; object-fit: contain; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.es-catalog-grid a:hover img { transform: scale(1.04); }
.es-catalog-media span { color: var(--deep); font-size: 29px; font-weight: 700; }
.es-catalog-grid strong { display: block; margin-top: 13px; color: var(--ink); font-size: 15px; font-weight: 650; }
.es-catalog-grid small { display: block; margin-top: 3px; color: var(--mut); font-size: 12px; }
.es-spec-table { margin-top: 115px; }
.es-spec-table h2 { color: var(--deep); font-size: clamp(2.5rem, 4.5vw, 4.3rem); font-weight: 310; }
.es-spec-table > p { margin: 14px 0 22px; color: var(--mut); font-size: 13px; }
.es-spec-table table { min-width: 940px; }

/* Spain fruit-punnet catalogue */
.es-punnet-page { overflow: clip; background: #fff; }
.es-range-crumbs { border-bottom: 1px solid var(--line); }
.es-punnet-hero { padding: 34px 0 78px; }
.es-punnet-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: clamp(50px, 8vw, 108px); align-items: center; min-height: calc(100svh - 230px); }
.es-punnet-hero h1 { max-width: 8em; margin-top: 18px; color: var(--deep); font-size: clamp(3.4rem, 5.6vw, 5.6rem); font-weight: 280; line-height: .96; letter-spacing: -.04em; }
.es-punnet-hero p:not(.es-kicker) { max-width: 34em; margin-top: 24px; color: var(--mut); font-size: 18px; line-height: 1.55; }
.es-punnet-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.es-punnet-actions > a:not(.btn) { color: var(--deep); font-size: 14px; font-weight: 680; border-bottom: 1px solid currentColor; }
.es-punnet-hero-media { overflow: hidden; aspect-ratio: 5 / 4; max-height: 570px; background: #f5f7fb; }
.es-punnet-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.es-punnet-jump { position: sticky; top: 76px; z-index: 30; border-top: 1px solid #c9cee2; border-bottom: 1px solid #c9cee2; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.es-punnet-jump .wrap { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.es-punnet-jump a { min-width: 0; padding: 18px 22px 17px 0; }
.es-punnet-jump a + a { padding-left: 22px; border-left: 1px solid #c9cee2; }
.es-punnet-jump strong { display: block; color: var(--ink); font-size: 14px; font-weight: 680; }
.es-punnet-jump span { display: block; margin-top: 3px; color: var(--mut); font-size: 11px; }
.es-punnet-catalogue { padding: 92px 0 126px; }
.es-punnet-family { scroll-margin-top: 170px; }
.es-punnet-family + .es-punnet-family { margin-top: 112px; }
.es-punnet-family-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--deep); }
.es-punnet-family-head h2 { color: var(--deep); font-size: clamp(2.25rem, 3.8vw, 3.9rem); font-weight: 320; line-height: 1; letter-spacing: -.035em; }
.es-punnet-family-head span { color: var(--mut); font-size: 12px; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
.es-punnet-family .es-catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 16px; margin-top: 34px; }
.es-product-card { position: relative; min-width: 0; }
.es-product-card .es-catalog-media { display: block; aspect-ratio: 4 / 3; }
.es-product-card-copy { display: block; padding: 15px 34px 0 0; }
.es-product-card-copy small { display: block; color: var(--deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.es-product-card-copy strong { display: block; margin-top: 7px; color: var(--ink); font-size: 16px; font-weight: 650; line-height: 1.35; }
.es-product-card-copy em { display: block; margin-top: 5px; color: var(--mut); font-size: 12px; font-style: normal; }
.es-product-card > b { position: absolute; right: 0; bottom: 19px; color: var(--deep); font-size: 19px; font-weight: 400; opacity: 0; transform: translateX(-5px); transition: opacity .22s, transform .22s; }
.es-product-card:hover > b { opacity: 1; transform: none; }
.es-product-card:hover .es-catalog-media img { transform: scale(1.035); }
.es-compare { scroll-margin-top: 160px; padding: 108px 0 126px; background: var(--wash); }
.es-compare-head { max-width: 720px; margin-bottom: 52px; }
.es-compare-head h2 { color: var(--deep); font-size: clamp(2.65rem, 4.5vw, 4.6rem); font-weight: 310; line-height: 1; letter-spacing: -.04em; }
.es-compare-head p { max-width: 38em; margin-top: 20px; color: var(--mut); font-size: 16px; }
.es-compare-groups { border-top: 2px solid var(--deep); }
.es-compare-group { border-bottom: 1px solid #c5cbe2; }
.es-compare-group summary { display: flex; justify-content: space-between; align-items: center; min-height: 76px; cursor: pointer; list-style: none; }
.es-compare-group summary::-webkit-details-marker { display: none; }
.es-compare-group summary span { color: var(--ink); font-size: 20px; font-weight: 620; }
.es-compare-group summary small { color: var(--mut); font-size: 12px; }
.es-compare-group summary::after { content: '+'; margin-left: 24px; color: var(--deep); font-size: 25px; font-weight: 350; }
.es-compare-group[open] summary::after { content: '−'; }
.es-compare-group .spec-scroll { padding: 4px 0 30px; }
.es-compare-group table { min-width: 900px; background: #fff; }
.es-compare-group table th { background: #fff; }
.es-punnet-cta { padding: 94px 0 104px; background: #fff; text-align: center; }
.es-punnet-cta h2 { max-width: 11em; margin: 0 auto; color: var(--deep); font-size: clamp(2.6rem, 4.7vw, 4.8rem); font-weight: 310; line-height: 1; letter-spacing: -.04em; }
.es-punnet-cta p { max-width: 39em; margin: 22px auto 0; color: var(--mut); }
.es-punnet-cta .btn { margin-top: 30px; }

.es-simple-hero { padding: clamp(80px, 9vw, 135px) 0; background: linear-gradient(145deg, #fff, #eef1fb); }
.es-simple-hero h1 { max-width: 10em; margin-top: 18px; color: var(--deep); font-size: clamp(3.3rem, 6.5vw, 6.3rem); font-weight: 280; line-height: .96; letter-spacing: -.055em; }
.es-simple-hero > .wrap > p:last-child { max-width: 43em; margin-top: 27px; color: var(--body); font-size: 18px; }
.es-process { padding: 92px 0; }
.es-process .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.es-process .wrap > div { padding: 8px 30px 24px 0; }
.es-process .wrap > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.es-process strong { color: var(--deep); font-size: 23px; font-weight: 600; }
.es-process p { margin-top: 11px; color: var(--mut); font-size: 14px; }
.es-quality { padding: 98px 0 126px; }
.es-quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 125px); }
.es-quality h2 { color: var(--deep); font-size: clamp(2.2rem, 3.8vw, 3.7rem); font-weight: 340; }
.es-quality dl { margin-top: 35px; }
.es-quality dl > div { display: grid; grid-template-columns: .38fr .62fr; gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.es-quality dt { color: var(--deep); font-weight: 700; }
.es-quality dd, .es-quality p { color: var(--mut); }
.es-quality > .wrap > div:nth-child(2) > p { margin-top: 25px; }

.es-contact { padding: clamp(78px, 9vw, 128px) 0; background: linear-gradient(145deg, #fff, #eef1fb); }
.es-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(65px, 9vw, 130px); align-items: start; }
.es-contact h1 { max-width: 9em; margin-top: 18px; color: var(--deep); font-size: clamp(3.2rem, 6vw, 5.9rem); font-weight: 280; line-height: .96; letter-spacing: -.055em; }
.es-contact-grid > div > p:not(.es-kicker) { max-width: 36em; margin-top: 26px; }
.es-contact-direct { display: grid; gap: 8px; margin-top: 36px; color: var(--deep); font-weight: 700; }
.es-form { padding: 34px; background: #fff; box-shadow: 0 24px 65px rgba(38,57,143,.12); }
.es-form label { display: block; color: var(--ink); font-size: 13px; font-weight: 700; }
.es-form label + label { margin-top: 13px; }
.es-form input, .es-form textarea { margin: 6px 0 0; }
.es-form .es-consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--mut); font-weight: 500; line-height: 1.45; }
.es-form .es-consent input { width: 18px; margin-top: 2px; }
.es-form button { width: 100%; margin-top: 22px; border: 0; cursor: pointer; }
.es-product .pdp-copy h1 { color: var(--deep); }
.es-product .pdp .stage.has-photo { background: #171717; }
.es-product .pdp .stage.has-photo > img { min-height: 480px; padding: clamp(22px, 5vw, 68px); object-fit: contain; background: #171717; }

@media (prefers-reduced-motion: reduce) {
  .es-film-hero { height: auto; min-height: 0; }
  .es-film-sticky { position: relative; top: 0; height: calc(100svh - 76px); }
  .es-film-copy, .es-film-details { opacity: 1; transform: none; }
  .es-film-copy, .es-film-details { filter: none; clip-path: none; }
  .es-film-sheen { display: none; }
  .es-range-grid img, .es-catalog-media img { transition: none; }
  .es-local-story > img { transition: none; }
}

@media (max-width: 980px) {
  .es-nav-links { display: none; }
  .es-menu { display: block; }
  .es-nav-cta { display: none; }
  .es-buyer-grid, .es-compliance-grid, .es-quality-grid, .es-contact-grid { grid-template-columns: 1fr; }
  .es-film-copy { width: min(500px, 39vw); }
  .es-event .wrap { grid-template-columns: 1fr auto; }
  .es-event p { grid-column: 1 / -1; }
  .es-local-copy { width: min(500px, 48vw); }
  .es-range-grid { grid-template-columns: repeat(2, 1fr); }
  .es-catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .es-process .wrap { grid-template-columns: repeat(2, 1fr); }
  .es-process .wrap > div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .es-process .wrap > div:nth-child(4) { border-top: 1px solid var(--line); padding-top: 30px; }
  .es-portfolio-preview > .wrap { grid-template-columns: 1fr; }
  .es-portfolio-intro { position: static; }
  .es-products-hero-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .es-punnet-hero-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .es-punnet-family .es-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .es-punnet-jump .wrap { overflow-x: auto; grid-template-columns: repeat(5, minmax(150px, 1fr)); padding-inline: 20px; }
}

@media (max-width: 760px) {
  .es-punnet-hero { padding: 28px 0 64px; }
  .es-punnet-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .es-punnet-hero h1 { font-size: clamp(3rem, 10.5vw, 4.25rem); }
  .es-punnet-hero p:not(.es-kicker) { font-size: 16px; }
  .es-punnet-hero-media { aspect-ratio: 4 / 3; }
  .es-punnet-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .es-punnet-family .es-catalog-grid { grid-template-columns: 1fr; }
  .es-product-card { display: grid; grid-template-columns: minmax(0, .47fr) minmax(0, .53fr); gap: 17px; align-items: center; }
  .es-product-card .es-catalog-media { aspect-ratio: 1 / 1; }
  .es-product-card-copy { padding: 0; }
  .es-product-card > b { display: none; }
}

@media (max-width: 640px) {
  .es-nav { height: 68px; }
  .es-nav-row { gap: 17px; padding-inline: 20px; }
  .es-brand small { display: none; }
  .es-brand { gap: 9px; }
  .es-brand::before { flex-basis: 25px; width: 25px; height: 29px; }
  .es-brand strong { font-size: 20px; }
  .es-language { margin-left: auto; }
  .es-country { margin-left: auto; }
  .es-country summary { min-width: 78px; padding: 9px 12px; }
  .es-film-sticky { top: 68px; height: calc(100svh - 68px); min-height: 520px; }
  .es-film-scrim { clip-path: none; background: linear-gradient(0deg, #26398f 0%, #26398f 38%, rgba(38,57,143,.88) 51%, rgba(38,57,143,.22) 68%, transparent 80%); }
  .es-film-atmosphere { background: radial-gradient(ellipse 62% 17% at 50% 80%, rgba(38,57,143,.24), transparent 74%); }
  .es-film-sheen { display: none; }
  .es-film-video { object-position: center; }
  .es-film-fallback img { transform: translate3d(4%,0,0) scale(1.04); }
  .es-film-copy { left: 20px; right: 20px; bottom: 32px; width: auto; }
  .es-film-copy h1 { max-width: 8em; font-size: clamp(2.35rem, 10.4vw, 3.15rem); line-height: .95; }
  .es-film-copy .es-lead { margin-top: 18px; color: #eef1ff; font-size: 14.5px; line-height: 1.48; }
  .es-film-copy .es-actions { flex-direction: column; margin-top: 22px; }
  .es-film-copy .es-actions .btn { width: 100%; padding: 14px 18px; text-align: center; }
  .es-proof { grid-template-columns: 1fr; padding-inline: 20px; }
  .es-proof > div { padding: 19px 0; }
  .es-proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid #cfd5ed; }
  .es-event .wrap { grid-template-columns: 1fr; gap: 15px; padding: 28px 20px 30px; }
  .es-event p { grid-column: auto; }
  .es-local-story { min-height: 700px; }
  .es-local-story > img { inset: 0; width: 100%; height: 100%; object-position: 67% center; }
  .es-local-story::after { background: linear-gradient(0deg, rgba(19,29,78,.98) 0%, rgba(24,38,103,.9) 34%, rgba(24,38,103,.18) 68%, transparent 86%); }
  .es-local-story > .wrap { min-height: 700px; align-items: flex-end; padding-inline: 20px; }
  .es-local-copy { width: 100%; padding: 0 0 58px; }
  .es-local-copy h2 { max-width: 8em; font-size: clamp(2.75rem, 12vw, 3.75rem); }
  .es-local-copy > p:last-child { font-size: 16px; }
  .es-range, .es-buyer, .es-compliance, .es-closing, .es-quality, .es-contact { padding-left: 0; padding-right: 0; }
  .es-range .wrap, .es-buyer .wrap, .es-compliance .wrap, .es-closing .wrap, .es-quality .wrap, .es-contact .wrap, .es-process .wrap, .es-simple-hero .wrap, .es-range-page .wrap, .es-footer .wrap, .es-portfolio-preview .wrap, .es-products-hero .wrap, .es-featured-punnet .wrap, .es-all-categories .wrap, .es-catalog-explorer .wrap { padding-inline: 20px; }
  .es-range-grid { grid-template-columns: 1fr; gap: 34px; }
  .es-buyer-list > div { grid-template-columns: 1fr; gap: 8px; }
  .es-compliance-grid > div:first-child { aspect-ratio: 4 / 3; }
  .es-footer-grid { grid-template-columns: 1fr; gap: 37px; padding-top: 48px; }
  .es-footer-base { flex-direction: column; }
  .es-range-head { padding-top: 45px; }
  .es-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 11px; }
  .es-catalog-grid strong { font-size: 13px; }
  .es-spec-table { margin-top: 78px; }
  .es-process .wrap { grid-template-columns: 1fr; }
  .es-process .wrap > div, .es-process .wrap > div + div { padding: 25px 0; border-left: 0; border-top: 1px solid var(--line); }
  .es-quality dl > div { grid-template-columns: 1fr; gap: 7px; }
  .es-form { padding: 25px 20px; }
  .es-portfolio-preview { padding: 88px 0; }
  .es-portfolio-columns,
  .es-all-categories .es-portfolio-columns { grid-template-columns: 1fr; gap: 46px; }
  .es-products-hero { padding-top: 34px; }
  .es-products-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .es-products-hero h1 { font-size: clamp(3.1rem, 14.5vw, 4.5rem); }
  .es-products-hero-grid > div:last-child { aspect-ratio: 4 / 3; }
  .es-featured-punnet a { grid-template-columns: 1fr auto; gap: 27px 20px; padding: 34px 0; }
  .es-featured-punnet-photo { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .es-featured-punnet-copy strong { font-size: 2.65rem; }
  .es-featured-punnet a > b { padding-right: 0; }
  .es-all-categories { padding: 88px 0; }
  .es-all-categories-head { margin-bottom: 52px; }
  .es-range-crumbs .wrap, .es-punnet-hero .wrap, .es-punnet-catalogue .wrap, .es-compare .wrap, .es-punnet-cta .wrap { padding-inline: 20px; }
  .es-punnet-hero { padding: 28px 0 64px; }
  .es-punnet-hero-grid { gap: 38px; }
  .es-punnet-hero h1 { font-size: clamp(3rem, 13vw, 4.15rem); }
  .es-punnet-hero p:not(.es-kicker) { font-size: 16px; }
  .es-punnet-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .es-punnet-jump { top: 68px; }
  .es-punnet-jump .wrap { padding-inline: 20px; }
  .es-punnet-jump a { min-width: 145px; }
  .es-punnet-catalogue { padding: 76px 0 96px; }
  .es-punnet-family + .es-punnet-family { margin-top: 82px; }
  .es-punnet-family-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .es-punnet-family .es-catalog-grid { grid-template-columns: 1fr; gap: 42px; margin-top: 28px; }
  .es-compare { padding: 84px 0 96px; }
  .es-compare-head { margin-bottom: 38px; }
  .es-compare-group summary { min-height: 70px; }
  .es-compare-group summary span { font-size: 17px; }
  .es-punnet-cta { padding: 78px 0 86px; }
}

.catsec { background: #fff; padding: var(--sect, clamp(100px, 9vw, 150px)) 0; }
.catsec .catgrid { margin-top: 60px; }
