/* ==========================================================================
   NEXROC Group theme
   Reference layout = 2576px wide. --s scales the reference pixel values down
   for smaller screens, so proportions stay identical everywhere.
   ========================================================================== */

/* 1 reference px (at the 2576px-wide reference layout) = --u. Everything scales with page width,
   exactly like the original Wix layout, so proportions never drift. */
:root {
	--u: calc(100vw / 2576);
	--black: #000;
	--white: #fff;
	--paper: #f7f7f4;
	--navy: #0a0919;
	--ink: #1a2338;
	--mute: #7d8798;
	--line: #e4e6ea;

	--serif: 'Cormorant Garamond', 'Times New Roman', serif;
	--display: 'Playfair Display', Georgia, serif;
	--sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--geo: 'Poppins', 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
	--grot: 'Space Grotesk', system-ui, sans-serif;
	--helv: Arial, 'Helvetica Neue', Helvetica, sans-serif;

	--topbar-h: calc(54 * var(--u));
	--nav-h: calc(81.5 * var(--u));
	--sub-h: calc(41 * var(--u));
	--header-h: calc(var(--topbar-h) + var(--nav-h) + var(--sub-h));
	--strip-h: calc(54 * var(--u));
	--hero-tail: calc(32 * var(--u));
	--gutter-l: calc(40 * var(--u));
	--gutter-r: calc(50 * var(--u));
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------- Base */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #000;
	color: #fff;
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

/* Keeps page content below the fixed header (a real element, so nothing can collapse it) */
.header-spacer { height: var(--header-h); }

img, video, svg { max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: #fff; color: #000; }

.skip-link {
	position: fixed; left: 12px; top: -80px; z-index: 2000;
	background: #fff; color: #000; padding: 10px 16px; font: 400 14px var(--sans);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* Lenis (smooth scroll) */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------------------------------------------------------------- Header */

.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 900;
	transition: transform 0.7s var(--ease);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* On scroll the utility bar slides away, navigation stays. */
.is-scrolled .site-header { transform: translateY(calc(var(--topbar-h) * -1)); }

.topbar {
	height: var(--topbar-h);
	background: #fff; color: #000;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.topbar__in {
	height: 100%; padding: 0 calc(72 * var(--u)) 0 var(--gutter-l);
	display: flex; align-items: center; justify-content: space-between;
}

.clocks {
	display: flex; list-style: none; margin: 0; padding: 0;
	font: 400 calc(18.3 * var(--u)) / 1 var(--helv);
	white-space: nowrap;
}
.clocks b { font-weight: 700; }
.clocks time { font-variant-numeric: tabular-nums; }
.clocks li + li::before { content: '|'; margin: 0 calc(12 * var(--u)); }

.toplinks {
	display: flex; gap: 0; list-style: none; margin: 0; padding: 0;
	font: 400 calc(12.2 * var(--u)) / 1 var(--helv);
	text-transform: uppercase;
}
.toplinks a { color: #000; text-decoration: underline; }
.topbar__links .toplinks li:nth-child(2) { margin-left: calc(88 * var(--u)); }
.topbar__links .toplinks li:nth-child(3) { margin-left: calc(82 * var(--u)); }
.topbar__links .toplinks li:nth-child(4) { margin-left: calc(67 * var(--u)); }
.mpanel .toplinks li + li { margin-left: 0; }
.toplinks a:hover { opacity: 0.6; }

.mainbar {
	height: var(--nav-h);
	background: var(--paper); color: #000;
	display: grid; grid-template-columns: auto 1fr auto; align-items: center;
	column-gap: calc(30 * var(--u));
	padding: 0 calc(70 * var(--u)) 0 var(--gutter-l);
}

.logo {
	font-family: var(--display); font-weight: 700;
	font-size: calc(64 * var(--u)); line-height: 1; letter-spacing: 0.02em; position: relative; top: calc(-5 * var(--u));
	color: #000; text-decoration: underline;
	text-decoration-thickness: 0.09em; text-underline-offset: 0.07em; text-decoration-skip-ink: none;
	white-space: nowrap;
}

.mainnav { justify-self: center; padding-left: calc(40 * var(--u)); }
.nav-list {
	display: flex; list-style: none; margin: 0; padding: 0;
	gap: calc(44 * var(--u));
}
.nav-list > li { position: relative; }
.nav-list a {
	display: block; padding: calc(8 * var(--u)) 0;
	font-family: var(--serif); font-weight: 500;
	font-size: calc(21.2 * var(--u));
	letter-spacing: 0.12em; text-transform: uppercase;
	color: #1a1a1a; text-decoration: underline;
	text-decoration-thickness: 1px; text-underline-offset: 0.22em;
	transition: opacity 0.3s;
}
.nav-list > li > a:hover { opacity: 0.55; }

.nav-list .sub-menu {
	position: absolute; top: 100%; left: calc(-22 * var(--u)); z-index: 5;
	min-width: calc(230 * var(--u)); margin: 0; padding: calc(14 * var(--u)) calc(22 * var(--u)); list-style: none;
	background: var(--paper);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity 0.35s, transform 0.45s var(--ease), visibility 0s 0.35s;
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: none;
	transition: opacity 0.35s, transform 0.45s var(--ease);
}
.nav-list .sub-menu a {
	font-size: calc(17 * var(--u));
	padding: calc(7 * var(--u)) 0; white-space: nowrap; text-decoration: none;
}
.nav-list .sub-menu a:hover { text-decoration: underline; }

.mainbar__cta { display: flex; align-items: center; gap: calc(18 * var(--u)); }

/* Double-line button */
.btn-dbl {
	display: inline-flex; align-items: center; justify-content: center;
	height: calc(55 * var(--u)); padding: 0 calc(14.5 * var(--u));
	background: #000; color: #fff;
	border: 1px solid #fff;
	box-shadow: inset 0 0 0 calc(3 * var(--u)) #000, inset 0 0 0 calc(5 * var(--u)) #fff;
	font-family: var(--serif); font-weight: 600;
	font-size: calc(17.4 * var(--u)); line-height: 1;
	letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
	cursor: pointer; border-radius: 0; -webkit-appearance: none; appearance: none;
	transition: background 0.35s, color 0.35s, box-shadow 0.35s;
}
.btn-dbl:hover { background: #fff; color: #000; box-shadow: inset 0 0 0 calc(3 * var(--u)) #fff, inset 0 0 0 calc(5 * var(--u)) #000; }
.btn-dbl--light { border-color: #000; }
.btn-dbl--light:hover { background: #222; color: #fff; box-shadow: inset 0 0 0 calc(3 * var(--u)) #222, inset 0 0 0 calc(5 * var(--u)) #fff; }

.lang {
	display: flex; align-items: center;
	width: calc(115 * var(--u)); height: calc(56 * var(--u));
	margin-left: calc(-6 * var(--u)); padding: 0 0 0 calc(18 * var(--u));
	background: #000; border-radius: calc(14 * var(--u));
}
.lang .flag { width: calc(30 * var(--u)); height: calc(30 * var(--u)); flex: none; }

.burger { display: none; }
.mpanel { display: none; }

.subbar {
	height: var(--sub-h);
	background: #000;
	display: flex; align-items: center; justify-content: flex-start; padding-bottom: calc(10 * var(--u));
}
.subbar__in { margin-left: calc(625 * var(--u)); }
.brandlinks {
	display: grid; grid-template-columns: calc(329 * var(--u)) calc(424 * var(--u)) calc(294 * var(--u)) auto;
	list-style: none; margin: 0; padding: 0;
}
.brandlinks a {
	font-family: var(--serif); font-weight: 600;
	font-size: calc(17.5 * var(--u)); letter-spacing: 0.26em; text-transform: uppercase;
	color: #cfcfcf; text-decoration: none; transition: color 0.3s;
}
.brandlinks a:hover { color: #fff; }

/* ---------------------------------------------------------------- Hero */

.nx-hero {
	--bar-h: calc(74 * var(--u)); --dur: 1000ms;
	position: relative; isolation: isolate; overflow: hidden;
	/* Full window, but never shorter than the Wix proportion (949 ref px at 2576 wide) */
	height: max(calc(100vh - var(--header-h) - var(--hero-tail)), calc(949 * var(--u)));
	min-height: 420px;
	background: #000; color: #fff;
}
@supports (height: 100svh) {
	.nx-hero { height: max(calc(100svh - var(--header-h) - var(--hero-tail)), calc(949 * var(--u))); min-height: 420px; }
}

.nx-stage { position: absolute; inset: 0; overflow: hidden; }

.nx-slide { position: absolute; inset: 0; overflow: hidden; background: #000; will-change: transform; }
.nx-video {
	position: absolute; top: 50%; left: 50%;
	width: 100%; height: 100%; max-width: none;
	transform: translate(-50%, -50%);
	object-fit: cover; border: 0; pointer-events: none;
}
.nx-slide::before {
	content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(to right, rgba(0,0,0,0.32) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.32) 100%),
		linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 32%),
		rgba(0,0,0,0.15);
}

.nx-slide.slide-in-up    { animation: nxInUp    var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 10; }
.nx-slide.slide-out-up   { animation: nxOutUp   var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 5; }
.nx-slide.slide-in-down  { animation: nxInDown  var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 10; }
.nx-slide.slide-out-down { animation: nxOutDown var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 5; }
@keyframes nxInUp    { from { transform: translateY(100%); }  to { transform: translateY(0); } }
@keyframes nxOutUp   { from { transform: translateY(0); opacity: 1; }  to { transform: translateY(-8%); opacity: 0.25; } }
@keyframes nxInDown  { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes nxOutDown { from { transform: translateY(0); opacity: 1; }  to { transform: translateY(8%); opacity: 0.25; } }

.nx-overlay {
	position: absolute; inset: 0; z-index: 2;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: calc(24 * var(--u)); padding: 0 24px; text-align: center;
	pointer-events: none; opacity: 0; transition: opacity 0.8s ease-in-out;
}
.nx-overlay.is-in { opacity: 1; pointer-events: auto; }

.nx-title {
	margin: 0; font-family: var(--serif); font-weight: 300;
	font-size: calc(102 * var(--u)); letter-spacing: 0.08em; line-height: 1.2;
	color: rgba(255, 255, 255, 0.95); text-transform: uppercase;
}
.nx-line { display: block; }

.nx-btn {
	display: inline-block; padding: calc(12 * var(--u)) calc(36 * var(--u));
	font-family: var(--sans); font-size: calc(11 * var(--u)); letter-spacing: 0.24em; text-transform: uppercase;
	color: rgba(255,255,255,0.85); text-decoration: none;
	border: 1px solid rgba(255,255,255,0.45); background: transparent; cursor: pointer;
	transition: border-color 0.25s, background 0.25s, color 0.25s, opacity 1s ease 0.7s, transform 1s var(--ease) 0.7s;
}
.nx-btn:hover { border-color: #fff; background: rgba(255,255,255,0.07); color: #fff; }
.js .nx-overlay .nx-btn { opacity: 0; transform: translateY(14px); }
.js .nx-overlay.is-in .nx-btn { opacity: 1; transform: none; }

.nx-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 50;
	width: calc(68 * var(--u)); height: calc(68 * var(--u)); padding: 0;
	display: flex; align-items: center; justify-content: center;
	border: calc(1.5 * var(--u)) solid rgba(255,255,255,0.55); border-radius: 50%;
	background: rgba(0,0,0,0.35); color: #fff; cursor: pointer;
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	transition: border-color 0.25s, background 0.25s, transform 0.25s, opacity 0.4s;
	user-select: none;
}
.nx-arrow:hover { border-color: #fff; background: rgba(255,255,255,0.14); transform: translateY(-50%) scale(1.1); }
.nx-arrow svg { stroke: #fff; fill: none; stroke-width: 2; width: calc(26 * var(--u)); height: calc(26 * var(--u)); }
.nx-arrow--prev { left: calc(5 * var(--u)); }
.nx-arrow--next { right: calc(6 * var(--u)); }

.nx-progress {
	position: absolute; bottom: 0; left: 0; right: 0; z-index: 50;
	height: var(--bar-h); padding: 0 calc(73.5 * var(--u)) 0 calc(68.5 * var(--u));
	display: flex; align-items: center;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
.nx-track { flex: 1; display: flex; flex-direction: column; gap: calc(9 * var(--u)); padding: 0 calc(10.5 * var(--u)); cursor: pointer; transition: opacity 0.3s; min-width: 0; }
.nx-track:hover { opacity: 0.8; }
.nx-track__line { height: calc(2 * var(--u)); background: rgba(255,255,255,0.25); position: relative; overflow: hidden; border-radius: 2px; }
.nx-track__fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: #fff; border-radius: 2px; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.nx-track__label { display: flex; align-items: baseline; gap: calc(7 * var(--u)); }
.nx-track__num { min-width: calc(19 * var(--u)); font-family: var(--serif); font-weight: 300; font-style: italic; font-size: calc(11 * var(--u)); letter-spacing: 0.12em; color: rgba(255,255,255,0.45); }
.nx-track__name { font-family: var(--sans); font-weight: 400; font-size: calc(9.7 * var(--u)); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s; }
.nx-track.is-active .nx-track__num,
.nx-track.is-active .nx-track__name { color: #fff; }
.nx-track.is-active .nx-track__line { background: rgba(255,255,255,0.35); }
.nx-track.is-active .nx-track__fill { box-shadow: 0 0 12px rgba(255,255,255,0.8); }

.nx-counter {
	position: absolute; top: calc(34 * var(--u)); right: calc(20 * var(--u)); z-index: 50; pointer-events: none;
	font-family: var(--serif); font-weight: 300; font-style: italic;
	font-size: calc(16 * var(--u)); letter-spacing: 0.14em; color: rgba(255,255,255,0.5);
}
.nx-counter span { color: rgba(255,255,255,0.9); }

.nx-pause {
	position: absolute; bottom: calc(var(--bar-h) + 28 * var(--u)); right: calc(5 * var(--u)); z-index: 50;
	width: calc(39 * var(--u)); height: calc(39 * var(--u)); padding: 0; border-radius: 50%;
	border: calc(1.5 * var(--u)) solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.3); cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.nx-pause:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: scale(1.08); }
.nx-pause svg { width: calc(12 * var(--u)); height: calc(12 * var(--u)); fill: #fff; }

.nx-hint {
	position: absolute; left: 50%; bottom: calc(var(--bar-h) + 32 * var(--u)); z-index: 49;
	display: flex; flex-direction: column; align-items: center; gap: calc(12 * var(--u));
	color: #fff; text-decoration: none; opacity: 0.65;
	animation: nxFloat 3.2s ease-in-out infinite; transition: opacity 0.6s;
}
.nx-hint span { font-family: var(--sans); font-weight: 300; font-size: calc(12.5 * var(--u)); letter-spacing: 0.1em; }
.nx-hint svg { width: calc(53 * var(--u)); height: calc(53 * var(--u)); }
.nx-hint.is-hidden { opacity: 0 !important; pointer-events: none; }
@keyframes nxFloat {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
	50%      { transform: translateX(-50%) translateY(calc(-12 * var(--u))); opacity: 0.8; }
}

/* Black strip with the metallic emblem (between every home section) */
.strip {
	position: relative; z-index: 1;
	height: var(--strip-h); background: #000;
	display: flex; align-items: center; justify-content: center;
}
.strip img { display: block; width: calc(43 * var(--u)); height: auto; max-width: none; }

/* ---------------------------------------------------------- Section headings */

.sec-title {
	margin: 0; text-align: center;
	font-family: var(--display); font-weight: 400;
	font-size: calc(132 * var(--u)); line-height: 1; letter-spacing: 0;
}
.sec-title__t { position: relative; display: inline-block; white-space: nowrap; }
.sec-title__t::after {
	content: ''; position: absolute; left: 0; right: 0;
	top: var(--ul-top); height: var(--ul-h); background: currentColor;
	transform-origin: left center; transition: transform 1.3s var(--ease) 0.4s;
}
.js .sec-title__t::after { transform: scaleX(0); }
.js .sec-title__t.is-in::after { transform: none; }
.sec-title--dark  { color: #000;    --ul-top: calc(121.5 * var(--u)); --ul-h: calc(15 * var(--u)); }
.sec-title--light { font-size: calc(130.5 * var(--u)); color: #e8e6e6; --ul-top: calc(130 * var(--u));   --ul-h: calc(10 * var(--u)); }

/* ---------------------------------------------------------------- Updates */

.updates {
	background: #e8e6e6; color: #1a2e44;
	padding: calc(43.6 * var(--u)) 0 calc(111 * var(--u));
}
.pr-label {
	margin: calc(102 * var(--u)) 0 calc(44.5 * var(--u)); text-align: center;
	font: 500 calc(12.4 * var(--u)) / calc(15 * var(--u)) var(--sans);
	letter-spacing: 0.18em; text-transform: uppercase; color: #8a9bac;
}
.pr-list { width: 100%; border-top: 1px solid #e8ecef; }
.pr-item {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	width: 100%; padding: calc(42 * var(--u)) 24px;
	border-bottom: 1px solid #e8ecef; text-align: center; text-decoration: none; color: inherit;
}
.pr-date { margin-bottom: calc(13 * var(--u)); font: 400 calc(14.8 * var(--u)) / 1.2 var(--sans); color: #8a9bac; }
.pr-title {
	display: inline-block; max-width: 100%; padding: 0 calc(6 * var(--u));
	font: 700 calc(18.6 * var(--u)) / 1.55 var(--sans); color: #1a2e44;
	-webkit-text-stroke: max(0.5px, calc(2 * var(--u))) #fff; paint-order: stroke fill;
	transition: color 0.2s ease, transform 0.2s ease;
}
.pr-item:hover .pr-title { color: #1a6b8a; transform: translateY(-1px); }
.pr-footer { display: flex; justify-content: center; margin-top: calc(55 * var(--u)); }
.view-all-btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: calc(46.8 * var(--u)); padding: 0 calc(40 * var(--u));
	border: max(1px, calc(2.5 * var(--u))) solid #c8d4dd; border-radius: 999px;
	font: 500 calc(15 * var(--u)) / 1 var(--sans); letter-spacing: 0.01em;
	color: #4a6478; background: transparent; text-decoration: none; cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.view-all-btn:hover { border-color: #1a6b8a; color: #1a6b8a; background: rgba(240, 247, 250, 0.5); }

/* Soft reveal used by the Updates list (blur + rise, replays every time it scrolls into view) */
.updates [data-reveal="up"] {
	transform: translate3d(0, 14px, 0); filter: blur(8px);
	transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

/* ----------------------------------------------------------- Presentation */

.pres {
	background: #050631; color: #e8e6e6;
	padding: calc(89.6 * var(--u)) 0 calc(116 * var(--u));
}
.pdfv {
	--pu: var(--u);
	position: relative; width: calc(1203 * var(--pu)); height: calc(667 * var(--pu));
	margin: calc(106 * var(--u)) auto 0;
	background: #f7f7f4; overflow: hidden;
	font-family: 'Helvetica Neue', Arial, sans-serif; color: #111;
}
.pdfv__view {
	position: relative; width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
	background: radial-gradient(ellipse at center, rgba(255,255,255,.98) 0%, rgba(250,250,247,.94) 38%, rgba(247,247,244,.90) 72%, rgba(242,241,237,.88) 100%);
}
.pdfv__info {
	position: absolute; top: calc(28 * var(--pu)); left: calc(34 * var(--pu)); z-index: 200; pointer-events: none;
	font-size: calc(10 * var(--pu)); letter-spacing: calc(2 * var(--pu)); text-transform: uppercase; color: #777;
}
.pdfv__nav {
	position: absolute; top: 50%; z-index: 500; margin: 0; padding: 0;
	width: calc(64 * var(--pu)); height: calc(64 * var(--pu));
	border: 1px solid rgba(210,207,200,.8); border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.98), rgba(255,255,255,.68) 48%, rgba(235,233,228,.72));
	box-shadow: inset 0 calc(2 * var(--pu)) calc(4 * var(--pu)) rgba(255,255,255,.95), inset 0 calc(-5 * var(--pu)) calc(10 * var(--pu)) rgba(0,0,0,.07), 0 calc(12 * var(--pu)) calc(28 * var(--pu)) rgba(0,0,0,.09);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	display: flex; align-items: center; justify-content: center;
	font: calc(20 * var(--pu)) / 1 Arial, sans-serif; color: #111;
	cursor: pointer; user-select: none; pointer-events: auto; -webkit-appearance: none; appearance: none; touch-action: manipulation;
	transform: translateY(-50%);
	transition: transform .28s ease, background .28s ease, box-shadow .28s ease, color .28s ease, opacity .25s ease;
}
.pdfv__nav:hover { transform: translateY(-50%) scale(1.08); background: radial-gradient(circle at 35% 25%, #333, #111 65%, #000); color: #fff; border-color: #111; }
.pdfv__nav:active { transform: translateY(-50%) scale(.94); }
.pdfv__nav:focus-visible { outline: 2px solid #111; outline-offset: 4px; }
.pdfv__nav.disabled { opacity: .22; cursor: default; pointer-events: none; }
.pdfv__nav--prev { left: calc(28 * var(--pu)); }
.pdfv__nav--next { right: calc(28 * var(--pu)); }
.pdfv__stage {
	position: relative; z-index: 10; width: min(calc(980 * var(--pu)), 92%); height: 100%;
	display: flex; align-items: center; justify-content: center;
	padding: calc(40 * var(--pu)) 0; perspective: 1800px; pointer-events: none;
}
.pdfv__card {
	position: relative; flex: none; display: flex; align-items: center; justify-content: center;
	padding: calc(34 * var(--pu)); border-radius: 42% / 7%;
	background: radial-gradient(ellipse at 50% 5%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 30%, rgba(246,245,241,.98) 68%, rgba(224,222,216,.96) 100%);
	border: 1px solid rgba(255,255,255,.9);
	box-shadow:
		0 calc(55 * var(--pu)) calc(100 * var(--pu)) rgba(0,0,0,.18),
		0 calc(18 * var(--pu)) calc(35 * var(--pu)) rgba(0,0,0,.12),
		0 0 0 1px rgba(0,0,0,.035),
		inset 0 calc(3 * var(--pu)) calc(5 * var(--pu)) rgba(255,255,255,.98),
		inset 0 calc(-14 * var(--pu)) calc(24 * var(--pu)) rgba(0,0,0,.07),
		inset calc(12 * var(--pu)) 0 calc(25 * var(--pu)) rgba(255,255,255,.45),
		inset calc(-12 * var(--pu)) 0 calc(25 * var(--pu)) rgba(0,0,0,.035);
	transform: perspective(1800px) rotateX(1deg);
	transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
	will-change: transform; pointer-events: none;
}
.pdfv__card::before {
	content: ''; position: absolute; inset: calc(-8 * var(--pu)); border-radius: 43% / 8%; z-index: -1; pointer-events: none;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0) 54%, rgba(255,255,255,.62) 72%, rgba(255,255,255,0) 100%);
	filter: blur(7px); opacity: .75;
}
.pdfv__card::after {
	content: ''; position: absolute; left: 8%; right: 8%; bottom: calc(-34 * var(--pu)); height: calc(48 * var(--pu));
	border-radius: 50%; background: rgba(0,0,0,.16); filter: blur(22px); opacity: .65; z-index: -2; pointer-events: none;
}
.pdfv__card canvas {
	position: relative; z-index: 2; display: block; background: #fff; pointer-events: none;
	max-width: 100%; max-height: calc(547 * var(--pu)); width: auto; height: auto;
	box-shadow: 0 calc(18 * var(--pu)) calc(40 * var(--pu)) rgba(0,0,0,.12), 0 calc(3 * var(--pu)) calc(10 * var(--pu)) rgba(0,0,0,.06);
}
.pdfv__card.canvas-fade-out { opacity: 0; transform: translateY(8px) scale(.988); }
.pdfv__card.canvas-fade-in { opacity: 1; transform: perspective(1800px) rotateX(1deg); }

/* ---------------------------------------------------------- Making a change */

.change {
	position: relative; isolation: isolate; overflow: hidden;
	height: calc(1153 * var(--u)); background: #000;
	display: flex; align-items: center; justify-content: center;
}
.change__video { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; z-index: 0; pointer-events: none; }
/* slight dark veil + the fine 3px grid overlay seen on the original */
.change__shade {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		repeating-linear-gradient(0deg,  rgba(0,0,0,.22) 0, rgba(0,0,0,.22) 1px, transparent 1px, transparent 3px),
		repeating-linear-gradient(90deg, rgba(0,0,0,.22) 0, rgba(0,0,0,.22) 1px, transparent 1px, transparent 3px),
		rgba(0,0,0,.22);
}
.change__title {
	position: relative; z-index: 2; margin: 0; padding: 0 24px; text-align: center;
	font: 400 calc(129 * var(--u)) / calc(165 * var(--u)) var(--display);
	color: rgba(232, 230, 230, 0.88);
}
.change__line { display: block; }

/* Press release archive rows */
.press__eyebrow { margin: 0 0 45px; font: 500 12px/1 var(--sans); letter-spacing: 0.26em; text-transform: uppercase; color: var(--mute); }
.press__list { border-top: 1px solid var(--line); text-align: left; }
.press__row { display: grid; grid-template-columns: 215px 1fr; align-items: center; column-gap: 16px; min-height: 97px; padding: 18px 0; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; }
.press__date { font: 400 14.5px/1.3 var(--sans); color: var(--mute); }
.press__title { font: 600 17.5px/1.4 var(--sans); letter-spacing: -0.012em; color: var(--ink); }
.press__row:hover .press__title { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.press__all { display: inline-flex; align-items: center; justify-content: center; margin-top: 48px; height: 41px; padding: 0 36px; border: 1px solid #ccd1d9; border-radius: 999px; background: #fff; font: 400 15px/1 var(--sans); color: #2a3448; text-decoration: none; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.press__all:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Simple content pages (press release + archive) */
.doc { background: #fff; color: var(--ink); padding: calc(150 * var(--u)) 24px calc(170 * var(--u)); min-height: calc(100vh - var(--header-h)); }
.doc__in { max-width: 820px; margin: 0 auto; }
.doc__in--wide { max-width: 1000px; text-align: center; }
.doc__date { display: block; margin-bottom: 18px; font: 400 14.5px/1 var(--sans); color: var(--mute); }
.doc__title { margin: 0 0 40px; font: 400 clamp(30px, 3.4vw, 54px)/1.15 var(--serif); letter-spacing: 0.01em; }
.doc__body { font: 300 17px/1.85 var(--sans); color: #2a3448; }
.doc__body p { margin: 0 0 1.2em; }
.doc__body a { text-decoration: underline; }
.doc__pager { margin-top: 48px; font: 400 14px var(--sans); }
.doc__pager .nav-links { display: flex; gap: 14px; justify-content: center; }
.doc__pager a, .doc__pager span { text-decoration: none; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }
.doc__pager .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------- Coming soon */

.soon {
	position: relative; isolation: isolate; overflow: hidden;
	min-height: calc(100vh - var(--header-h)); background: #000;
	display: flex; align-items: center; justify-content: center;
}
.soon__video { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; z-index: 0; pointer-events: none; }
.soon__shade {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 42%), rgba(0,0,0,0.32);
}
.soon__title {
	position: relative; z-index: 2; margin: 0; padding: 0 24px 0 calc(24px + 0.14em); text-align: center;
	font-family: var(--serif); font-weight: 300; text-transform: uppercase;
	font-size: clamp(44px, 8vw, 128px); letter-spacing: 0.14em; line-height: 1.15;
	color: rgba(255, 255, 255, 0.95);
}

/* ---------------------------------------------------------------- Footer */

.site-footer { background: #000; color: #d4d4d4; text-align: center; }

/* base (tablet / phone): simple stacked layout */
.fstage { display: flex; flex-direction: column; align-items: center; padding: 48px 22px 0; }
.flinks { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-bottom: 44px; text-align: left; }
.flinks__list { list-style: none; margin: 0; padding: 0; }
.flinks__list li + li { margin-top: 12px; }
.flinks__list a {
	display: block; font: 500 18px/1.3 var(--serif); letter-spacing: 0.09em; color: #e8e6e6;
	text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 0.2em;
}
.f-logo { order: 1; display: block; width: 150px; margin-bottom: 34px; }
.f-logo img { display: block; width: 100%; height: auto; }
.f-co, .f-reg, .f-addr, .f-maps, .f-ph, .f-links, .f-copy, .f-year, .f-verify { order: 2; margin: 0; }
.f-co { font: 300 17px/1.3 var(--grot); }
.f-co a { color: #d2d2d2; text-decoration: underline; }
.f-reg { margin-top: 12px !important; font: 300 17px/1.3 var(--grot); color: #d2d2d2; }
.f-addr { margin-top: 16px !important; font: 300 14px/1.5 var(--geo); font-style: normal; color: #a9a9a9; }
.f-maps { margin-top: 18px !important; font: 300 13px/1 var(--geo); }
.f-maps a { color: #cfcfcf; text-decoration: underline; }
.f-ph { margin-top: 16px !important; font: 300 14px/1.5 var(--grot); color: #d8d8d8; }
.f-ph a { text-decoration: none; color: inherit; }
.f-links { margin-top: 26px !important; font: 300 10px/1.9 var(--geo); color: #cfcfcf; }
.f-links a, .f-verify a { color: #cfcfcf; text-decoration: underline; }
.f-copy, .f-year { font: 300 11px/1.9 var(--geo); color: #cfcfcf; }
.f-verify { margin-top: 6px !important; font: 300 11px/1.7 var(--geo); }
.f-btn {
	order: 3; display: flex; align-items: center; justify-content: center;
	width: 200px; height: 52px; margin-top: 22px;
	border: 2px solid #fff; color: #cfcfcf; text-decoration: none;
	font: 500 17px/1 var(--serif); letter-spacing: 0.22em;
	transition: background 0.35s, color 0.35s;
}
.f-btn:hover { background: #fff; color: #000; }
.f-rule { order: 4; width: 100%; height: 1px; margin: 34px 0 0; border: 0; background: #fff; }
.f-co a:hover, .f-links a:hover, .f-verify a:hover, .f-maps a:hover, .f-ph a:hover, .flinks__list a:hover { opacity: 0.65; }

.legal { padding: 22px 22px 60px; font: 300 11px/1.5 var(--geo); color: #9a9a9a; text-align: center; }
.legal p, .legal h4 { margin: 0 0 14px; font-weight: 300; }
.legal a { text-decoration: underline; }

/* desktop: everything positioned in reference units measured from the original */
@media (min-width: 1280px) {
	.fstage { display: block; position: relative; height: calc(1140 * var(--u)); padding: 0; }
	.flinks { position: absolute; top: 0; left: 0; display: block; width: 0; height: 0; margin: 0; }
	.flinks__col { position: absolute; top: calc(98 * var(--u)); }
	.flinks__col--1 { left: calc(612 * var(--u)); }
	.flinks__col--2 { left: calc(966 * var(--u)); }
	.flinks__col--3 { left: calc(1335 * var(--u)); }
	.flinks__col--4 { left: calc(1751 * var(--u)); }
	.flinks__list li { margin: 0; }
	.flinks__list li:nth-child(2) { margin-top: calc(30 * var(--u)); }
	.flinks__list li:nth-child(3) { margin-top: calc(35 * var(--u)); }
	.flinks__list li:nth-child(4) { margin-top: calc(22 * var(--u)); }
	.flinks__list li:nth-child(5) { margin-top: calc(24 * var(--u)); }
	.flinks__list a { font-size: calc(20.6 * var(--u)); line-height: calc(26 * var(--u)); letter-spacing: 0.092em; white-space: nowrap; text-decoration-thickness: max(1px, calc(2.6 * var(--u))); }

	.f-logo { position: absolute; top: calc(447 * var(--u)); left: calc(8 * var(--u)); right: calc(-8 * var(--u)); width: calc(198 * var(--u)); margin: 0 auto; }
	.f-btn { position: absolute; top: calc(686 * var(--u)); width: calc(216 * var(--u)); height: calc(73 * var(--u)); margin: 0; border-width: max(2px, calc(4.4 * var(--u))); font-size: calc(19 * var(--u)); }
	.f-btn--l { left: calc(539 * var(--u)); }
	.f-btn--r { left: calc(1802 * var(--u)); }

	.f-co, .f-reg, .f-addr, .f-maps, .f-ph, .f-links, .f-copy, .f-year, .f-verify {
		position: absolute; left: 0; right: 0; width: max-content; margin: 0 auto !important; white-space: nowrap;
	}
	.f-co     { top: calc(670 * var(--u));   font-size: calc(19.9 * var(--u)); line-height: calc(26 * var(--u)); }
	.f-reg    { top: calc(716 * var(--u));   font-size: calc(22.5 * var(--u)); line-height: calc(28 * var(--u)); }
	.f-addr   { top: calc(764.6 * var(--u)); font-size: calc(18.5 * var(--u)); line-height: calc(24.7 * var(--u)); }
	.f-maps   { top: calc(890 * var(--u));   font-size: calc(16.3 * var(--u)); line-height: calc(20 * var(--u)); }
	.f-ph     { top: calc(930.5 * var(--u)); font-size: calc(17.4 * var(--u)); line-height: calc(23 * var(--u)); }
	.f-links  { top: calc(1023 * var(--u)); font-size: calc(10.4 * var(--u)); line-height: calc(14 * var(--u)); }
	.f-copy   { top: calc(1045 * var(--u)); font-size: calc(11 * var(--u));   line-height: calc(14 * var(--u)); }
	.f-year   { top: calc(1069 * var(--u)); font-size: calc(12.4 * var(--u)); line-height: calc(16 * var(--u)); }
	.f-verify { top: calc(1089.5 * var(--u)); font-size: calc(11.8 * var(--u)); line-height: calc(15 * var(--u)); white-space: nowrap; }
	.f-rule { position: absolute; top: calc(1126 * var(--u)); left: calc(501 * var(--u)); width: calc(1538 * var(--u)); height: max(1px, calc(2.4 * var(--u))); margin: 0; }

	.legal { width: calc(2303 * var(--u)); margin: calc(11 * var(--u)) auto 0; padding: 0 0 calc(70 * var(--u)); font-size: calc(10.3 * var(--u)); line-height: calc(15.4 * var(--u)); }
	.legal p, .legal h4 { margin-bottom: calc(15.4 * var(--u)); }
}

/* ---------------------------------------------------------- Text reveals */

/* Fade + rise + de-blur */
.js [data-reveal="up"] {
	opacity: 0; transform: translate3d(0, 26px, 0); filter: blur(6px);
	transition: opacity 1.1s var(--ease), transform 1.3s var(--ease), filter 1.1s var(--ease);
	transition-delay: var(--d, 0s);
}
.js [data-reveal="up"].is-in { opacity: 1; transform: none; filter: none; }
.legal[data-reveal="up"] { filter: none !important; }

/* Words slide up out of a mask */
.rv-w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.rv-w > span { display: inline-block; }
.js [data-reveal="mask"] .rv-w > span {
	transform: translate3d(0, 112%, 0);
	transition: transform 1.25s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms + var(--d, 0s) + 0.1s);
}
.js [data-reveal="mask"].is-in .rv-w > span,
.js .is-in [data-reveal="mask"] .rv-w > span { transform: none; }

/* No JS / JS failed */
.rv-fallback [data-reveal="up"] { opacity: 1 !important; transform: none !important; filter: none !important; }
.rv-fallback [data-reveal="mask"] .rv-w > span { transform: none !important; }
.rv-fallback .nx-overlay .nx-btn { opacity: 1 !important; transform: none !important; }

/* Device-lock overlay used by protect.js */
.nx-lock { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; background: #000; color: #fff; text-align: center; padding: 24px; font: 300 18px/1.6 var(--serif); letter-spacing: 0.12em; text-transform: uppercase; }
html.nx-locked .nx-lock { display: flex; }
html.nx-locked body > *:not(.nx-lock) { visibility: hidden !important; }

/* --------------------------------------------------------- Tablet / mobile */

@media (max-width: 1279px) {
	:root { --u: calc(100vw / 900); --topbar-h: 0px; --nav-h: 64px; --sub-h: 0px; --gutter-l: 22px; --gutter-r: 22px; --strip-h: 36px; --hero-tail: 36px; }
	.btn-dbl { height: 46px; padding: 0 16px; font-size: 15px; box-shadow: inset 0 0 0 3px #000, inset 0 0 0 5px #fff; }
	.btn-dbl--light { box-shadow: inset 0 0 0 3px #000, inset 0 0 0 5px #fff; }
	.nx-btn { font-size: 10px; padding: 12px 30px; }
	.nx-counter { font-size: 13px; }
	.nx-hint span { font-size: 12px; }
	.nx-track__line { height: 2px; }
	.nx-arrow, .nx-pause { border-width: 1.5px; }
	.nx-pause { width: 38px; height: 38px; }
	.nx-pause svg { width: 12px; height: 12px; }
	.sec-title { font-size: clamp(38px, 11vw, 64px); }
	.sec-title--dark  { --ul-top: 0.92em; --ul-h: 0.115em; }
	.sec-title--light { --ul-top: 0.985em; --ul-h: 0.076em; }
	.updates { padding: 40px 0 70px; }
	.pr-label { margin: 46px 0 26px; font-size: 11px; line-height: 14px; }
	.pr-item { padding: 26px 18px; }
	.pr-date { font-size: 13px; margin-bottom: 8px; }
	.pr-title { font-size: 16px; line-height: 1.45; }
	.pr-footer { margin-top: 34px; }
	.view-all-btn { height: 42px; padding: 0 32px; font-size: 14px; }
	.pres { padding: 56px 0 70px; }
	.pdfv { --pu: calc((100vw - 28px) / 1203); width: calc(100vw - 28px); height: calc(667 * var(--pu)); margin-top: 40px; }
	.pdfv__nav { width: max(34px, calc(64 * var(--pu))); height: max(34px, calc(64 * var(--pu))); font-size: 13px; }
	.pdfv__nav--prev { left: 6px; } .pdfv__nav--next { right: 6px; }
	.pdfv__info { font-size: 8px; letter-spacing: 1.5px; top: 8px; left: 10px; }
	.change { height: max(360px, 62vw); }
	.change__title { font-size: clamp(34px, 9vw, 70px); line-height: 1.25; }
	.strip { height: 36px; } .strip img { width: 30px; }
	.fstage { padding-top: 40px; }
	.topbar, .subbar, .mainnav, .mainbar__cta { display: none; }
	.mainbar { grid-template-columns: 1fr auto; }
	.logo { font-size: 36px; }

	.burger { display: block; position: relative; width: 44px; height: 44px; margin-right: -10px; padding: 0; border: 0; background: none; cursor: pointer; }
	.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #000; transition: transform 0.5s var(--ease); }
	.burger span:nth-child(1) { top: 18px; }
	.burger span:nth-child(2) { top: 26px; }
	.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
	.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
	html.menu-open { overflow: hidden; }

	.mpanel {
		display: block; position: fixed; inset: 0; z-index: 850;
		background: var(--navy); color: #fff; overflow-y: auto;
		transform: translateY(-100%); visibility: hidden;
		transition: transform 0.8s var(--ease), visibility 0s 0.8s;
	}
	.menu-open .mpanel { transform: none; visibility: visible; transition: transform 0.8s var(--ease); }
	.mpanel__in { padding: calc(var(--nav-h) + 28px) 28px 48px; }
	.mpanel .nav-list { flex-direction: column; gap: 6px; }
	.mpanel .nav-list a { color: #fff; font-size: 26px; padding: 8px 0; letter-spacing: 0.1em; }
	.mpanel .nav-list .sub-menu { position: static; opacity: 1; visibility: inherit; transform: none; background: none; box-shadow: none; padding: 0 0 6px 18px; min-width: 0; }
	.mpanel .nav-list .sub-menu a { font-size: 18px; padding: 5px 0; opacity: 0.75; }
	.mpanel__btns { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
	.mpanel__btns .btn-dbl { height: 50px; }
	.mpanel .brandlinks { display: flex; }
	.mpanel .brandlinks, .mpanel .toplinks { flex-wrap: wrap; gap: 10px 26px; }
	.mpanel .toplinks { display: flex; font-size: 12px; }
	.mpanel .brandlinks a { font-size: 15px; }
	.mpanel .clocks--panel { font-size: 13px; }
	.mpanel .toplinks { margin-top: 20px; }
	.mpanel .toplinks a { color: #fff; }
	.clocks--panel { flex-direction: column; gap: 8px; margin: 28px 0 0; color: #fff; font-size: 13px; }
	.clocks--panel li + li::before { content: none; }

	.nx-arrow { width: 46px; height: 46px; }
	.nx-arrow--prev { left: 12px; }
	.nx-arrow--next { right: 12px; }
	.nx-arrow svg { width: 18px; height: 18px; }
	.nx-title { font-size: 56px; }
	.nx-hint svg { width: 40px; height: 40px; }
	.nx-hint { bottom: calc(var(--bar-h) + 14px); gap: 10px; }
	.nx-pause { bottom: calc(var(--bar-h) + 14px); }
	.nx-hero { --bar-h: 64px; height: calc(100svh - var(--header-h) - var(--hero-tail)); min-height: 520px; }
	.nx-progress { padding: 0 14px; }
	.nx-track { padding: 0 4px; }
	.nx-track__name { display: none; }
	.nx-counter { top: 16px; right: 18px; }
	.nx-pause { right: 14px; }
	.nx-hint svg { width: 40px; height: 40px; }
	.nx-btn { font-size: 10px; }

	.press__row { grid-template-columns: 1fr; row-gap: 6px; padding: 22px 0; min-height: 0; }
	.press__title { font-size: 17px; }

}

@media (max-width: 520px) {
	.flinks { grid-template-columns: 1fr 1fr; }
	.nx-title { font-size: 44px; }
}

/* ---------------------------------------------------------- Reduced motion */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal], .rv-w > span, .nx-btn, .site-header, .sec-title__t::after {
		transition: none !important; transform: none !important; opacity: 1 !important; filter: none !important; clip-path: none !important;
	}
	.nx-hint { animation: none; }
}

/* WordPress core helpers */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
