:root {
	--bg: #fbfaf6;
	--bg2: #eee8dc;
	--text: #111920;
	--muted: #5e6b73;
	--accent: #a7672a;
	--accent2: #237966;
	--btn-text: #ffffff;
	--card: rgba(255, 255, 255, .86);
	--line: rgba(17, 25, 32, .12);
	--chip: #f0eee7;
	--nav: rgba(255, 255, 255, .84);
	--nav-line: rgba(17, 25, 32, .12);
	--nav-shadow: 0 14px 50px rgba(20, 30, 38, .11);
	--sticky: rgba(255, 255, 255, .92);
	--input: #ffffff;
	--radius: 30px;
	--shadow-soft: 0 22px 68px rgba(22, 34, 42, .09);
	--shadow-hard: 0 38px 120px rgba(22, 34, 42, .18);
	color-scheme: light;
}

body.areal-nz-preview[data-anx-view="brochure"] {
	--bg: #fbfaf6;
	--bg2: #eee8dc;
	--text: #111920;
	--muted: #5e6b73;
	--accent: #a7672a;
	--accent2: #237966;
	--btn-text: #ffffff;
	--card: rgba(255, 255, 255, .86);
	--line: rgba(17, 25, 32, .12);
	--chip: #f0eee7;
	--nav: rgba(255, 255, 255, .84);
	--nav-line: rgba(17, 25, 32, .12);
	--nav-shadow: 0 14px 50px rgba(20, 30, 38, .11);
	--sticky: rgba(255, 255, 255, .92);
	--input: #ffffff;
	--shadow-soft: 0 22px 68px rgba(22, 34, 42, .09);
	--shadow-hard: 0 38px 120px rgba(22, 34, 42, .18);
	color-scheme: light;
}

html[data-theme="dark"] body.areal-nz-preview {
	--bg: #081016;
	--bg2: #101b24;
	--text: #f5f0e8;
	--muted: #a9b5bd;
	--accent: #d89046;
	--accent2: #5cc3aa;
	--btn-text: #081016;
	--card: rgba(18, 28, 38, .78);
	--line: rgba(255, 255, 255, .13);
	--chip: rgba(255, 255, 255, .07);
	--nav: rgba(8, 12, 17, .72);
	--nav-line: rgba(255, 255, 255, .13);
	--nav-shadow: 0 18px 70px rgba(0, 0, 0, .35);
	--sticky: rgba(18, 28, 38, .92);
	--input: rgba(255, 255, 255, .06);
	--shadow-soft: 0 22px 68px rgba(0, 0, 0, .24);
	--shadow-hard: 0 38px 120px rgba(0, 0, 0, .52);
	color-scheme: dark;
}

html[data-theme="dark"] body.areal-nz-preview[data-anx-view="brochure"] {
	--bg: #081016;
	--bg2: #101b24;
	--text: #f5f0e8;
	--muted: #a9b5bd;
	--accent: #d89046;
	--accent2: #5cc3aa;
	--btn-text: #081016;
	--card: rgba(18, 28, 38, .78);
	--line: rgba(255, 255, 255, .13);
	--chip: rgba(255, 255, 255, .07);
	--nav: rgba(8, 12, 17, .72);
	--nav-line: rgba(255, 255, 255, .13);
	--nav-shadow: 0 18px 70px rgba(0, 0, 0, .35);
	--sticky: rgba(18, 28, 38, .92);
	--input: rgba(255, 255, 255, .06);
	--shadow-soft: 0 22px 68px rgba(0, 0, 0, .24);
	--shadow-hard: 0 38px 120px rgba(0, 0, 0, .52);
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	background: var(--bg);
}

body.areal-nz-preview {
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
		radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--accent2) 18%, transparent), transparent 32%),
		linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.areal-nz-preview.is-menu-open {
	overflow: hidden;
}

body.areal-nz-preview.is-lightbox-open,
body.areal-nz-preview.is-modal-open {
	overflow: hidden;
}

body.areal-nz-preview .screen-reader-text,
body.areal-nz-preview .screen-reader-text:focus {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.areal-nz-preview a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

body.areal-nz-preview img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.areal-nz-preview button,
body.areal-nz-preview input,
body.areal-nz-preview textarea,
body.areal-nz-preview select {
	font: inherit;
}

body.areal-nz-preview button {
	cursor: pointer;
}

body.areal-nz-preview ::selection {
	background: color-mix(in srgb, var(--accent) 34%, transparent);
	color: var(--text);
}

body.areal-nz-preview.is-synthetic-browser {
	--nav-shadow: none;
	--shadow-soft: none;
	--shadow-hard: none;
	background: var(--bg);
}

body.areal-nz-preview.is-synthetic-browser *,
body.areal-nz-preview.is-synthetic-browser *::before,
body.areal-nz-preview.is-synthetic-browser *::after {
	animation: none !important;
	transition: none !important;
}

body.areal-nz-preview.is-synthetic-browser .anx-cookie,
body.areal-nz-preview.is-synthetic-browser .anx-consent-manage,
body.areal-nz-preview.is-synthetic-browser .anx-dock,
body.areal-nz-preview.is-synthetic-browser .anx-mobile-cta,
body.areal-nz-preview.is-synthetic-browser .anx-modal,
body.areal-nz-preview.is-synthetic-browser .anx-lightbox,
body.areal-nz-preview.is-synthetic-browser .anx-nav-backdrop,
body.areal-nz-preview.is-synthetic-browser .cc-public-preview-banner,
body.areal-nz-preview.is-synthetic-browser .v7-section,
body.areal-nz-preview.is-synthetic-browser .v7-section-tight,
body.areal-nz-preview.is-synthetic-browser .anx-footer {
	display: none !important;
}

body.areal-nz-preview.is-synthetic-browser .anx-hero::before {
	transform: none;
}

body.areal-nz-preview :focus-visible {
	outline: 3px solid color-mix(in srgb, var(--accent) 58%, transparent);
	outline-offset: 3px;
}

.anx-shell {
	position: relative;
	min-height: 100vh;
}

.anx-container {
	width: min(1240px, calc(100% - 32px));
	margin-inline: auto;
}

.anx-progress {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1300;
	height: 4px;
	background: transparent;
	pointer-events: none;
}

.anx-progress span {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 60%, transparent);
}

.anx-header {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 1200;
	width: min(1240px, calc(100% - 32px));
	transform: translateX(-50%);
	border: 1px solid var(--nav-line);
	border-radius: 999px;
	background: var(--nav);
	backdrop-filter: blur(24px);
	box-shadow: var(--nav-shadow);
}

.anx-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 10px 12px;
	min-height: 62px;
}

.anx-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	text-decoration: none;
	font-weight: 950;
	letter-spacing: -.045em;
}

.anx-brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	aspect-ratio: 1;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	box-shadow: 0 14px 36px color-mix(in srgb, var(--accent) 32%, transparent);
	color: var(--btn-text);
	font-size: .84rem;
}

.anx-brand__copy {
	display: grid;
	min-width: 0;
	line-height: 1.08;
}

.anx-brand__copy strong {
	font-size: 1rem;
	white-space: nowrap;
}

.anx-brand__copy small {
	color: var(--muted);
	font-size: .74rem;
	font-weight: 700;
}

.anx-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 2px;
}

.anx-nav__group {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 2px;
}

.anx-nav__group--brochure {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-nav__group--sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-nav__group--brochure {
	display: flex;
}

.anx-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 12px;
	border-radius: 999px;
	color: var(--muted);
	font-size: .94rem;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}

.anx-nav a:hover,
.anx-nav a.is-active {
	background: var(--chip);
	color: var(--text);
}

.anx-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.anx-mode-switch {
	display: inline-flex;
	padding: 4px;
	border-radius: 999px;
	background: var(--chip);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.anx-mode-switch button {
	min-height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-weight: 900;
	letter-spacing: -.015em;
	white-space: nowrap;
}

.anx-mode-switch button.is-active {
	background: var(--text);
	color: var(--bg);
}

.anx-theme-toggle,
.anx-header__cta,
.anx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--accent);
	background-image: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--btn-text);
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 48px color-mix(in srgb, var(--accent) 30%, transparent);
}

.anx-button--ghost {
	background: var(--card);
	color: var(--text);
	border-color: var(--line);
	box-shadow: var(--shadow-soft);
}

body.areal-nz-preview .anx-header__cta,
body.areal-nz-preview a.anx-button:not(.anx-button--ghost):not(.anx-button--soft) {
	color: var(--btn-text);
}

.anx-theme-toggle {
	width: 42px;
	padding: 0;
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	background: var(--card);
	color: var(--text);
}

.anx-theme-toggle__sun,
.anx-theme-toggle__moon {
	position: absolute;
	transition: .3s ease;
}

.anx-theme-toggle__moon {
	opacity: 0;
	transform: translateY(18px) rotate(-45deg);
}

html[data-theme="dark"] .anx-theme-toggle__sun {
	opacity: 0;
	transform: translateY(-18px) rotate(45deg);
}

html[data-theme="dark"] .anx-theme-toggle__moon {
	opacity: 1;
	transform: none;
}

.anx-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	aspect-ratio: 1;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: var(--chip);
	color: var(--text);
}

.anx-menu-toggle__bars,
.anx-menu-toggle__bars::before,
.anx-menu-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.anx-menu-toggle__bars {
	position: relative;
}

.anx-menu-toggle__bars::before,
.anx-menu-toggle__bars::after {
	position: absolute;
	left: 0;
}

.anx-menu-toggle__bars::before {
	top: -6px;
}

.anx-menu-toggle__bars::after {
	top: 6px;
}

.anx-nav-backdrop {
	display: none;
}

.anx-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: min(100svh, 860px);
	padding: 104px 0 44px;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}

.anx-hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(105deg, color-mix(in srgb, var(--bg) 97%, transparent) 0%, color-mix(in srgb, var(--bg) 84%, transparent) 42%, color-mix(in srgb, var(--bg) 10%, transparent) 74%),
		url("../img/areal-nove-zamky/hero-building-lcp.webp") center/cover no-repeat;
	transform: scale(1.02);
	opacity: .96;
	content: "";
	pointer-events: none;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-hero::before,
body.areal-nz-preview[data-anx-view="brochure"] .anx-hero::before {
	background:
		linear-gradient(115deg, color-mix(in srgb, var(--bg) 95%, transparent) 0%, color-mix(in srgb, var(--bg) 80%, transparent) 44%, color-mix(in srgb, var(--bg) 12%, transparent) 76%),
		url("../img/areal-nove-zamky/front-building-lcp.webp") center/cover no-repeat;
	opacity: .96;
}

.anx-hero::after {
	position: absolute;
	inset: auto 0 -1px;
	z-index: 1;
	height: 32%;
	background: linear-gradient(180deg, transparent, var(--bg));
	content: "";
	pointer-events: none;
}

.anx-hero__inner {
	position: relative;
	z-index: 2;
}

.anx-hero__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.anx-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: color-mix(in srgb, var(--card) 82%, transparent);
	color: var(--muted);
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.anx-kicker::before {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 15%, transparent);
	content: "";
}

.anx-switch-note {
	max-width: 420px;
	margin: 0;
	color: var(--muted);
	font-size: .94rem;
}

.anx-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .98fr) minmax(340px, .78fr);
	gap: 30px;
	align-items: center;
}

.anx-hero__copy {
	display: grid;
	gap: 16px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 34px;
	background: color-mix(in srgb, var(--card) 93%, transparent);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(18px);
}

.anx-hero__copy h1,
.anx-section__title,
.anx-panel-title {
	margin: 0;
	font-weight: 800;
	letter-spacing: -.07em;
	line-height: .92;
}

.anx-hero__copy h1 {
	max-width: 15ch;
	font-size: clamp(2.7rem, 4.7vw, 5.1rem);
	line-height: .94;
	text-wrap: balance;
}

.anx-title-brochure {
	display: none;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-title-sales,
body.areal-nz-preview[data-anx-view="brochure"] .anx-title-sales {
	display: none;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-title-brochure,
body.areal-nz-preview[data-anx-view="brochure"] .anx-title-brochure {
	display: inline;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-sales-only,
body.areal-nz-preview[data-anx-view="brochure"] .anx-sales-only {
	display: none;
}

.anx-hero__lead,
.anx-section__lead {
	max-width: 760px;
	margin: 0;
	color: color-mix(in srgb, var(--text) 80%, var(--muted));
	font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.anx-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.anx-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--chip);
	color: var(--muted);
	font-size: .82rem;
	font-weight: 800;
}

.anx-pill.is-accent {
	background: color-mix(in srgb, var(--accent) 14%, var(--chip));
	border-color: color-mix(in srgb, var(--accent) 26%, var(--line));
	color: var(--text);
}

.anx-metric-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	padding: 1px;
	margin-top: 4px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 24px;
}

.anx-metric {
	display: grid;
	gap: 4px;
	padding: 14px;
	background: color-mix(in srgb, var(--card) 94%, transparent);
}

.anx-metric strong {
	font-size: clamp(1.16rem, 1.8vw, 1.7rem);
	line-height: 1;
	letter-spacing: -.05em;
}

.anx-metric span {
	color: var(--muted);
	font-size: .78rem;
	line-height: 1.25;
}

.anx-hero__panel {
	display: grid;
	gap: 16px;
	min-width: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.anx-hero__card {
	display: grid;
	gap: 14px;
}

.anx-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
	border: 1px solid var(--line);
}

.anx-hero__image--tall {
	min-height: clamp(320px, 42vh, 410px);
}

.anx-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.anx-hero__label {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	display: grid;
	gap: 2px;
	padding: 18px;
	border-radius: 22px;
	background: rgba(9, 14, 18, .62);
	color: #ffffff;
	backdrop-filter: blur(18px);
}

.anx-hero__label strong {
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: -.045em;
}

.anx-hero__label span {
	color: rgba(255, 255, 255, .76);
	font-size: .92rem;
}

.anx-hero__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.anx-hero__panel--sales .anx-hero__card + .anx-hero__card {
	display: none;
}

.anx-hero__facts div {
	display: grid;
	gap: 4px;
	padding: 13px;
	border-radius: 20px;
	background: var(--card);
	border: 1px solid var(--line);
}

.anx-hero__facts span {
	color: var(--muted);
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.anx-hero__facts strong {
	font-size: .94rem;
	letter-spacing: -.02em;
}

.anx-brochure-visual {
	display: none;
	gap: 14px;
	min-width: 0;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-hero,
body.areal-nz-preview[data-anx-view="brochure"] .anx-hero {
	align-items: center;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-hero__grid,
body.areal-nz-preview[data-anx-view="brochure"] .anx-hero__grid {
	align-items: center;
}

html[data-anx-view="brochure"] body.areal-nz-preview .anx-hero__copy h1,
body.areal-nz-preview[data-anx-view="brochure"] .anx-hero__copy h1 {
	max-width: 16ch;
	font-size: clamp(2.55rem, 4.2vw, 4.8rem);
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-metric-grid,
body.areal-nz-preview[data-anx-view="brochure"] .anx-hero__panel--sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-brochure-visual {
	display: grid;
}

.anx-visual-main {
	position: relative;
	overflow: hidden;
	min-height: clamp(320px, 50vh, 500px);
	border: 1px solid var(--line);
	border-radius: 38px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.anx-visual-main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.anx-visual-badges {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 2;
	display: grid;
	gap: 10px;
}

.anx-visual-badge {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(9, 14, 18, .64);
	color: #ffffff;
	backdrop-filter: blur(16px);
}

.anx-visual-badge strong {
	display: block;
	letter-spacing: -.02em;
}

.anx-visual-badge span {
	color: rgba(255, 255, 255, .76);
}

.anx-visual-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.anx-visual-row img {
	width: 100%;
	height: 96px;
	object-fit: cover;
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.anx-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 18px;
	color: var(--text);
}

.anx-list li::marker {
	color: var(--accent);
}

.anx-section {
	padding: 110px 0;
}

.anx-section--soft {
	padding: 110px 0;
}

.anx-section--paper {
	padding: 110px 0;
}

.anx-section--tight {
	padding: 76px 0;
}

.anx-hero,
.anx-section {
	scroll-margin-top: 118px;
}

.anx-flow--brochure {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-flow--sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-flow--brochure {
	display: block;
}

.anx-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.anx-section__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--accent);
}

.anx-section__title {
	font-size: clamp(34px, 5vw, 72px);
}

.anx-section__lead {
	max-width: 790px;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
}

.anx-card,
.anx-legal-card,
.anx-doc,
.anx-stat,
.reason,
.anx-contact__panel,
.anx-form {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(16px);
}

.proof-panel {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 24px;
	align-items: stretch;
}

.proof-panel .copy {
	padding: 32px;
}

.quick-reasons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.reason {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.reason .num {
	font-size: 13px;
	font-weight: 950;
	color: var(--accent);
	letter-spacing: .12em;
}

.reason strong {
	font-size: 1.15rem;
	letter-spacing: -.03em;
}

.reason p {
	margin: 0;
	color: var(--muted);
}

.anx-scenario {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 24px;
	align-items: start;
}

.anx-mode-copy {
	display: grid;
	gap: 16px;
	padding: 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: var(--shadow-soft);
}

.anx-segmented {
	display: inline-flex;
	padding: 4px;
	border-radius: 999px;
	background: var(--chip);
	border: 1px solid var(--line);
}

.anx-segmented button {
	min-height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-weight: 900;
}

.anx-segmented button.is-active {
	background: var(--text);
	color: var(--bg);
}

.anx-scenario__panel {
	overflow: hidden;
	border-radius: 32px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-hard);
}

.anx-scenario__panel[hidden] {
	display: none !important;
}

.anx-scenario__panel-grid {
	display: grid;
	grid-template-columns: 1fr .9fr;
	min-height: 500px;
}

.anx-scenario__panel-grid > div {
	padding: 34px;
}

.anx-scenario__panel-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.anx-panel-title {
	margin-top: 6px;
	font-size: clamp(28px, 3vw, 44px);
}

.anx-split {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 24px;
	align-items: start;
}

.anx-split__panel {
	padding: 34px;
}

.anx-range {
	display: grid;
	gap: 18px;
}

.anx-range__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.anx-range input[type="range"] {
	width: 100%;
	accent-color: var(--accent);
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent) 50%, color-mix(in srgb, var(--text) 15%, transparent) 50%);
	appearance: none;
}

.anx-range input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: #fff;
	border: 6px solid var(--accent);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.anx-note {
	margin: 0;
	color: var(--muted);
	font-size: .95rem;
}

.anx-stat-stack {
	display: grid;
	gap: 12px;
}

.anx-stat {
	padding: 22px;
}

.anx-stat strong {
	display: block;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1;
	letter-spacing: -.06em;
}

.anx-stat span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 750;
}

.anx-chapter-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 34px;
}

.anx-chapter-nav {
	position: sticky;
	top: 96px;
	align-self: start;
	display: grid;
	gap: 10px;
}

.anx-chapter-nav a {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--card);
	color: var(--muted);
	font-weight: 900;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
}

.anx-chapter-nav a:hover,
.anx-chapter-nav a.is-active {
	background: var(--chip);
	color: var(--text);
}

.anx-memo-grid,
.anx-brochure-stats,
.anx-route-cards,
.anx-spec-dossier {
	display: grid;
	gap: 14px;
}

.anx-memo-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.anx-memo-card {
	padding: 34px;
}

.anx-memo-card h3,
.anx-route-cards h3 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.anx-brochure-stats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 24px;
}

.anx-media-story {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: stretch;
}

.anx-media-tall {
	min-height: 640px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 38px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.anx-media-tall img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.anx-media-list {
	display: grid;
	gap: 14px;
}

.anx-media-list article,
.anx-route-cards article,
.anx-spec-dossier article {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: var(--card);
	box-shadow: var(--shadow-soft);
}

.anx-media-list article:first-child {
	padding: 28px;
}

.anx-media-list p,
.anx-route-cards p {
	margin: 0;
	color: var(--muted);
}

.anx-media-list h3 {
	margin: 0 0 8px;
}

.anx-access-premium,
.anx-site-composition {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 24px;
	align-items: start;
}

.anx-access-card,
.anx-site-notes {
	padding: 34px;
}

.anx-access-map-premium,
.anx-site-image {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 0;
	aspect-ratio: 1400 / 875;
	align-self: start;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 38px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.anx-site-image {
	min-height: 0;
}

body.areal-nz-preview .anx-access-map-premium img,
body.areal-nz-preview .anx-site-image img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.anx-map-hotspot {
	position: absolute;
	left: var(--x);
	top: var(--y);
	z-index: 2;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 25%, transparent), 0 20px 55px rgba(0, 0, 0, .25);
	transform: translate(-50%, -50%);
}

.anx-map-hotspot > span {
	position: absolute;
	left: 30px;
	top: 50%;
	width: 240px;
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--card);
	color: var(--text);
	box-shadow: var(--shadow-hard);
	font-size: 13px;
	font-weight: 850;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(.94);
	transition: .2s ease;
	backdrop-filter: blur(18px);
}

.anx-map-hotspot:hover > span,
.anx-map-hotspot:focus-within > span {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.anx-route-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anx-spec-dossier {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anx-spec-dossier article {
	min-height: 150px;
}

.anx-spec-dossier b {
	display: block;
	font-size: 26px;
	letter-spacing: -.04em;
}

.anx-spec-dossier span {
	color: var(--muted);
}

.anx-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.anx-row b {
	font-size: 18px;
	letter-spacing: -.02em;
	text-align: right;
}

.anx-location {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 24px;
	align-items: stretch;
}

.anx-map {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 0;
	aspect-ratio: 1400 / 875;
	align-self: start;
	border-radius: 38px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-hard);
	background: var(--chip);
}

body.areal-nz-preview .anx-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.anx-distance-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.anx-distance {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 14px;
	border-radius: 16px;
	background: var(--chip);
	border: 1px solid var(--line);
	font-weight: 850;
}

.anx-distance strong {
	letter-spacing: -.03em;
}

.anx-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.anx-filter button {
	border: 1px solid var(--line);
	background: var(--card);
	color: var(--muted);
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 900;
}

.anx-filter button.is-active {
	background: var(--text);
	color: var(--bg);
}

.anx-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 14px;
}

.anx-gallery-item {
	grid-column: span var(--anx-span, 3);
	position: relative;
	min-height: 250px;
	border-radius: 26px;
	overflow: hidden;
	background: var(--chip);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	cursor: zoom-in;
}

.anx-gallery-item:nth-child(1),
.anx-gallery-item:nth-child(2) {
	grid-column: span 6;
	min-height: 340px;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-gallery-item {
	min-height: 220px;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-gallery-item:nth-child(1),
body.areal-nz-preview[data-anx-view="brochure"] .anx-gallery-item:nth-child(2),
body.areal-nz-preview[data-anx-view="brochure"] .anx-gallery-item:nth-child(7) {
	min-height: 300px;
}

.anx-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform .35s ease;
}

.anx-gallery-item:hover img {
	transform: scale(1.045);
}

.anx-gallery-item figcaption {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: grid;
	gap: 2px;
	padding: 12px;
	border-radius: 18px;
	background: rgba(9, 14, 18, .66);
	color: #fff;
	backdrop-filter: blur(14px);
}

.anx-gallery-item figcaption span {
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
}

.anx-gallery-item figcaption strong {
	font-size: 14px;
}

.anx-doc-room {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 24px;
	align-items: start;
}

.anx-doc-room__intro {
	padding: 34px;
	display: grid;
	gap: 16px;
}

.anx-doc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.anx-doc {
	padding: 24px;
	display: grid;
	gap: 12px;
	min-height: 224px;
}

.anx-doc__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: color-mix(in srgb, var(--accent) 14%, transparent);
	color: var(--accent);
	font-weight: 950;
}

.anx-doc a {
	margin-top: auto;
	font-weight: 950;
	color: var(--accent);
}

.anx-legal-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.anx-legal-card {
	padding: 24px;
	display: grid;
	gap: 12px;
}

.anx-legal-page {
	padding-top: 142px;
}

.anx-legal-page__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
	gap: 24px;
	align-items: start;
}

.anx-legal-page__panel,
.anx-legal-page__aside {
	border: 1px solid var(--line);
	border-radius: 34px;
	background: color-mix(in srgb, var(--card) 94%, transparent);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(18px);
}

.anx-legal-page__panel {
	padding: 34px;
}

.anx-legal-page__panel .anx-section__head {
	margin-bottom: 26px;
}

.anx-legal-page__status {
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
	border-radius: 24px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent),
		var(--chip);
}

.anx-legal-page__status p,
.anx-legal-page__aside p {
	margin: 0;
	color: var(--muted);
}

.anx-legal-grid--page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.anx-legal-page__aside {
	position: sticky;
	top: 116px;
	display: grid;
	gap: 16px;
	padding: 28px;
}

.anx-legal-page__meta {
	display: grid;
	gap: 10px;
}

.anx-legal-page__meta div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--chip);
}

.anx-legal-page__meta span {
	color: var(--muted);
	font-weight: 850;
}

.anx-legal-page__content {
	margin-top: 24px;
	display: grid;
	gap: 16px;
}

.anx-legal-page__section {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: color-mix(in srgb, var(--card) 96%, transparent);
}

.anx-legal-page__section h2 {
	margin: 0 0 12px;
	font-size: clamp(22px, 2.3vw, 30px);
	line-height: 1.05;
	letter-spacing: -.04em;
}

.anx-legal-page__section p {
	margin: 0 0 12px;
	color: var(--muted);
}

.anx-legal-page__section .anx-list {
	margin-top: 10px;
}

.anx-faq {
	display: grid;
	gap: 12px;
}

.anx-faq details {
	padding: 18px 20px;
	border-radius: 22px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.anx-faq summary {
	font-weight: 950;
	cursor: pointer;
}

.anx-faq p {
	margin: 12px 0 0;
	color: var(--muted);
}

.anx-contact {
	border-radius: 42px;
	padding: 34px;
	background: linear-gradient(135deg, #13202b, #25423b);
	color: #fff;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 24px;
	box-shadow: 0 30px 100px rgba(0, 0, 0, .25);
	overflow: hidden;
	position: relative;
}

.anx-contact::before {
	content: "";
	position: absolute;
	inset: -40% auto auto 35%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(167, 103, 42, .48), transparent 60%);
	pointer-events: none;
}

.anx-contact > * {
	position: relative;
}

.anx-contact__panel {
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .16);
	border-radius: 30px;
	padding: 24px;
	backdrop-filter: blur(16px);
	display: grid;
	gap: 16px;
}

.anx-contact__details p {
	margin-top: 0;
}

.anx-form {
	padding: 24px;
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .16);
	border-radius: 30px;
	backdrop-filter: blur(16px);
}

.anx-form .cc-button,
.anx-form button[type="submit"],
.anx-contact .cc-button,
.anx-contact form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	width: 100%;
	padding: 14px 20px;
	border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--btn-text);
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 48px color-mix(in srgb, var(--accent) 30%, transparent);
	cursor: pointer;
}

.anx-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.anx-field {
	display: grid;
	gap: 6px;
}

.anx-field span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 900;
	color: var(--muted);
}

.anx-contact__panel .anx-field span,
.anx-form .anx-field span {
	color: rgba(255, 255, 255, .70);
}

.anx-field input,
.anx-field textarea,
.anx-field select {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--input);
	color: var(--text);
	border-radius: 16px;
	padding: 14px 15px;
	outline: none;
}

.anx-contact .anx-field input,
.anx-contact .anx-field textarea,
.anx-contact .anx-field select {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .18);
	color: #fff;
}

.anx-field textarea {
	min-height: 126px;
	resize: vertical;
}

.anx-field input:focus,
.anx-field textarea:focus,
.anx-field select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.anx-contact .anx-button--ghost {
	color: #fff;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .18);
	box-shadow: none;
}

.anx-footer {
	position: relative;
	overflow: hidden;
	padding: 42px 0 88px;
	border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
	background:
		radial-gradient(circle at 14% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 30%),
		radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--accent2) 16%, transparent), transparent 28%),
		linear-gradient(180deg, color-mix(in srgb, var(--bg) 90%, transparent) 0%, color-mix(in srgb, var(--bg2) 82%, transparent) 100%);
}

.anx-footer::before {
	content: "";
	position: absolute;
	inset: auto -12% 0;
	height: 180px;
	background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent) 8%, transparent));
	pointer-events: none;
}

.anx-footer__shell {
	display: grid;
	gap: 22px;
	position: relative;
	z-index: 1;
}

.anx-footer__hero {
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: 18px;
	align-items: stretch;
}

.anx-footer__brand-card {
	position: relative;
	overflow: hidden;
	padding: 30px;
	border-radius: 34px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--card) 92%, transparent), color-mix(in srgb, var(--chip) 82%, transparent));
	border: 1px solid var(--line);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(18px);
}

.anx-footer__brand-card::after {
	content: "";
	position: absolute;
	inset: auto -12% -56px;
	height: 120px;
	background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 68%);
	pointer-events: none;
}

html[data-theme="dark"] body.areal-nz-preview .anx-footer__brand-card {
	background: linear-gradient(145deg, rgba(12, 19, 28, .96), rgba(14, 22, 32, .94));
}

html[data-theme="dark"] body.areal-nz-preview .anx-footer__brand-card::after {
	inset: auto 14% -172px;
	height: 188px;
	background: radial-gradient(circle at 50% 100%, rgba(216, 144, 70, .16), rgba(92, 195, 170, .08) 28%, transparent 72%);
	opacity: .36;
	filter: blur(18px);
}

.anx-footer__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: color-mix(in srgb, var(--card) 80%, transparent);
	color: var(--muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.anx-footer__brand-card h2 {
	max-width: 12ch;
	margin-bottom: 14px;
	font-size: clamp(30px, 3.8vw, 50px);
	font-weight: 860;
	line-height: .98;
	letter-spacing: -.05em;
	text-wrap: balance;
}

.anx-footer__lead {
	max-width: 62ch;
	margin-bottom: 0;
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.68;
	letter-spacing: -.012em;
	color: var(--muted);
}

.anx-footer__cta-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
	align-items: stretch;
}

.anx-footer__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-width: 0;
	min-height: 54px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	color: var(--text);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.015em;
	text-align: center;
	white-space: normal;
	text-wrap: balance;
	text-decoration: none;
}

.anx-footer__chip--accent {
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 84%, var(--accent2)), color-mix(in srgb, var(--accent2) 80%, var(--accent)));
	color: var(--btn-text);
}

.anx-footer__meta-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.anx-footer__meta-row div {
	padding: 15px 16px 16px;
	border-radius: 20px;
	background: color-mix(in srgb, var(--card) 90%, transparent);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] body.areal-nz-preview .anx-footer__meta-row div {
	background: rgba(11, 18, 27, .92);
}

.anx-footer__meta-row span {
	display: block;
	margin-bottom: 7px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.anx-footer__meta-row strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -.02em;
	text-wrap: balance;
}

.anx-footer__visual {
	position: relative;
	overflow: hidden;
	min-height: 290px;
	border-radius: 34px;
	border: 1px solid var(--line);
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.anx-footer__visual-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 56%;
	display: block;
}

.anx-footer__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 35%, rgba(8, 12, 18, .66) 100%),
		linear-gradient(135deg, rgba(0, 0, 0, .12), transparent 52%);
	pointer-events: none;
}

.anx-footer__visual-card {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 18px 18px 17px;
	border-radius: 24px;
	background: rgba(8, 12, 18, .68);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.anx-footer__visual-card span {
	display: inline-flex;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, .7);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.anx-footer__visual-card strong {
	display: block;
	max-width: 16ch;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 820;
	line-height: 1.04;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.anx-footer__visual-card p {
	margin: 10px 0 0;
	max-width: 44ch;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
	line-height: 1.62;
	letter-spacing: -.008em;
}

.anx-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.anx-footer__brand,
.anx-footer__links {
	display: grid;
	align-content: start;
	gap: 10px;
	height: 100%;
	padding: 24px;
	border-radius: 28px;
	background: color-mix(in srgb, var(--card) 88%, transparent);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(16px);
}

.anx-footer__links strong {
	margin-bottom: 8px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.anx-footer__link-group {
	display: grid;
	gap: 10px;
}

.anx-footer__link-group--brochure {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-footer__link-group--sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-footer__link-group--brochure {
	display: grid;
}

.anx-footer__links a,
.anx-footer__links span {
	display: block;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: -.01em;
	word-break: normal;
	overflow-wrap: break-word;
	text-wrap: pretty;
}

.anx-company-inline {
	white-space: nowrap;
}

.anx-footer__links a {
	color: var(--text);
	font-weight: 650;
	text-decoration: none;
}

.anx-footer__links span {
	color: var(--muted);
	font-weight: 560;
}

.anx-footer__links a:hover {
	color: var(--text);
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--accent) 42%, transparent);
}

.anx-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
	color: var(--muted);
}

.anx-footer__credit a {
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--text);
}

.anx-footer__credit {
	max-width: 42ch;
	text-align: right;
	text-wrap: pretty;
}

.anx-footer__note {
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: -.01em;
	color: var(--muted);
	text-wrap: pretty;
}

@media (min-width: 1200px) {
	.anx-footer__bottom {
		gap: 14px 28px;
	}

	.anx-footer__credit {
		max-width: none;
		font-size: 13px;
		line-height: 1.5;
		white-space: nowrap;
	}
}

.anx-cookie {
	position: fixed;
	left: 18px;
	right: auto;
	bottom: 18px;
	z-index: 1400;
	display: grid;
	gap: 12px;
	max-width: 360px;
	padding: 18px;
	border-radius: 26px;
	background: var(--card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(16px);
}

.anx-cookie p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.anx-cookie.is-hidden {
	display: none !important;
}

.anx-cookie__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.anx-cookie__head strong {
	font-size: 18px;
	line-height: 1.2;
}

.anx-cookie__close {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--chip);
	color: var(--text);
	font-size: 22px;
	line-height: 1;
}

.anx-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.anx-cookie__actions .anx-button {
	justify-content: center;
}

.anx-cookie__panel {
	display: grid;
	gap: 10px;
	padding-top: 2px;
}

.anx-cookie__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: color-mix(in srgb, var(--chip) 72%, transparent);
}

.anx-cookie__option strong {
	display: block;
	font-size: 14px;
	line-height: 1.25;
}

.anx-cookie__option p {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.5;
}

.anx-cookie__option--toggle {
	cursor: pointer;
}

.anx-cookie__option--toggle input {
	width: 18px;
	height: 18px;
	accent-color: var(--accent-start);
	flex: 0 0 auto;
}

.anx-cookie__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .11);
	color: var(--text);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.anx-cookie__panel-actions {
	display: flex;
}

.anx-cookie__panel-actions .anx-button {
	width: 100%;
}

.anx-consent-manage {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 1345;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: color-mix(in srgb, var(--sticky) 92%, transparent);
	box-shadow: var(--shadow-soft);
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
	text-decoration: none;
	backdrop-filter: blur(18px);
	transition: opacity .22s ease, transform .22s ease;
}

.anx-consent-manage[hidden] {
	display: none !important;
}

body.areal-nz-preview.has-visible-cookie-banner .anx-consent-manage {
	opacity: 0;
	pointer-events: none;
	transform: translateY(16px);
}

.anx-dock {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1350;
	display: grid;
	gap: 10px;
	transition: opacity .22s ease, transform .22s ease;
}

.anx-dock.is-hidden-at-footer {
	opacity: 0;
	pointer-events: none;
	transform: translateX(16px);
}

.anx-mobile-cta.is-hidden-at-footer {
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
}

.anx-consent-manage.is-hidden-at-footer {
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
}

body.areal-nz-preview.has-visible-cookie-banner .anx-mobile-cta {
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px);
}

.anx-dock a,
.anx-dock button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 15px;
	border-radius: 999px;
	background: var(--sticky);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	font-weight: 900;
	color: var(--text);
	text-decoration: none;
}

.anx-mobile-cta {
	position: fixed;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 1350;
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: color-mix(in srgb, var(--sticky) 88%, transparent);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(18px);
}

.anx-mobile-cta .anx-button {
	width: 100%;
	min-height: 46px;
	padding-inline: 14px;
	box-shadow: none;
}

.anx-modal {
	position: fixed;
	inset: 0;
	z-index: 2900;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(8, 16, 22, .68);
	backdrop-filter: blur(14px);
}

.anx-modal.is-open {
	display: flex;
}

.anx-modal__card {
	position: relative;
	width: min(760px, 100%);
	max-height: min(86vh, 820px);
	overflow: auto;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 34px;
	background:
		radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--accent2) 18%, transparent), transparent 34%),
		var(--card);
	color: var(--text);
	box-shadow: var(--shadow-hard);
}

.anx-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.anx-modal__head h2 {
	margin: 0;
	max-width: 12ch;
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: .95;
	letter-spacing: -.06em;
}

.anx-modal__close {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--chip);
	color: var(--text);
	font-size: 28px;
	line-height: 1;
}

.anx-modal__lead {
	margin: 0 0 18px;
	max-width: 62ch;
	color: var(--muted);
}

.anx-modal__body {
	display: grid;
	gap: 16px;
}

.anx-modal__body .cc-button,
.anx-modal__body button[type="submit"],
.anx-modal__form .anx-button {
	width: 100%;
}

.anx-modal__body form,
.anx-modal__form {
	display: grid;
	gap: 14px;
}

.anx-consent-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: color-mix(in srgb, var(--chip) 72%, transparent);
	font-size: 14px;
	line-height: 1.55;
	color: var(--muted);
}

.anx-consent-check input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--accent-start);
	flex: 0 0 auto;
}

.anx-consent-check span {
	display: block;
}

.anx-consent-check a {
	color: var(--text);
	font-weight: 800;
}

.anx-lightbox {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(0, 0, 0, .86);
}

.anx-lightbox.is-open {
	display: flex;
}

.anx-lightbox__inner {
	position: relative;
}

.anx-lightbox img {
	max-width: min(1120px, 92vw);
	max-height: 88vh;
	border-radius: 24px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

/* Video lightbox: the JS injects either an <iframe> (youtube/vimeo embed) or a
   <video> (uploaded file) into this slot. Constrain both to the same box the image
   uses so embeds don't fall back to their tiny 300x150 default. */
.anx-lightbox__video {
	width: min(1120px, 92vw);
	max-width: 100%;
	max-height: 88vh;
}

.anx-lightbox__video[hidden] {
	display: none;
}

.anx-lightbox__video-frame {
	display: block;
	width: 100%;
	max-height: 88vh;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 24px;
	background: #000;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.anx-lightbox__video-media {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 88vh;
	border-radius: 24px;
	background: #000;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.anx-lightbox__close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .25);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 28px;
}

@media (max-width: 1180px) {
	body.areal-nz-preview {
		padding-bottom: 0;
	}

	.anx-nav {
		display: none;
	}

	.anx-menu-toggle {
		display: inline-flex;
	}

	.anx-header__actions {
		margin-left: auto;
	}

	.anx-header__actions .anx-mode-switch {
		display: none;
	}

	.anx-header.is-menu-open,
	body.is-menu-open .anx-header {
		border-bottom-left-radius: 28px;
		border-bottom-right-radius: 28px;
	}

	.anx-nav-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: -1;
		background: rgba(0, 0, 0, .44);
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease;
	}

	body.is-menu-open .anx-nav-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	body.is-menu-open .anx-nav {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-content: stretch;
		justify-items: stretch;
		align-items: stretch;
		align-content: start;
		position: absolute;
		top: calc(100% + 10px);
		left: 12px;
		right: 12px;
		gap: 10px;
		padding: 14px;
		border-radius: 26px;
		background: var(--nav);
		border: 1px solid var(--nav-line);
		box-shadow: var(--nav-shadow);
		backdrop-filter: blur(24px);
		max-height: calc(100vh - 120px);
		overflow: auto;
	}

	body.is-menu-open .anx-nav__group--sales,
	body.is-menu-open .anx-nav__group--brochure {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
		justify-content: stretch;
		align-items: stretch;
	}

	body.areal-nz-preview[data-anx-view="brochure"].is-menu-open .anx-nav__group--sales {
		display: none;
	}

	body.areal-nz-preview[data-anx-view="sales"].is-menu-open .anx-nav__group--brochure,
	body.areal-nz-preview:not([data-anx-view="brochure"]).is-menu-open .anx-nav__group--brochure {
		display: none;
	}

	body.is-menu-open .anx-nav a {
		display: flex;
		width: 100%;
		min-height: 46px;
		justify-self: stretch;
		justify-content: flex-start;
		padding-inline: 18px;
		background: color-mix(in srgb, var(--chip) 92%, transparent);
		border: 1px solid var(--line);
		border-radius: 18px;
	}

	.anx-hero__grid,
	.anx-chapter-layout,
	.anx-memo-grid,
	.anx-media-story,
	.anx-access-premium,
	.anx-site-composition,
	.proof-panel,
	.anx-scenario,
	.anx-scenario__panel-grid,
	.anx-split,
	.anx-location,
	.anx-doc-room,
	.anx-contact,
	.anx-footer__hero,
	.anx-footer__grid {
		grid-template-columns: 1fr;
	}

	.anx-footer__bottom {
		padding-right: 0;
	}

	.anx-footer__credit {
		max-width: none;
		text-align: left;
	}

	.anx-footer {
		padding-bottom: 124px;
	}

	.anx-chapter-nav {
		display: none;
	}

	.anx-hero__grid {
		gap: 20px;
	}

	.anx-legal-page__shell {
		grid-template-columns: 1fr;
	}

	.anx-legal-page__aside {
		position: static;
	}

	.anx-hero {
		min-height: auto;
		padding: 96px 0 42px;
	}

	.anx-hero__copy {
		padding: 28px;
	}

	.anx-hero__copy h1 {
		max-width: 18ch;
		font-size: clamp(2.45rem, 6.1vw, 4.5rem);
	}

	.anx-visual-main {
		height: clamp(320px, 38vh, 380px);
		min-height: 0;
	}

	.anx-visual-row {
		display: none;
	}

	.anx-hero__image--tall {
		height: clamp(300px, 34vh, 360px);
		min-height: 0;
	}

	.anx-hero__facts {
		display: none;
	}

	.anx-media-tall,
	.anx-access-map-premium,
	.anx-site-image {
		min-height: 0;
		aspect-ratio: 1400 / 875;
	}

	.anx-metric-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quick-reasons {
		grid-template-columns: 1fr 1fr;
	}

	.anx-brochure-stats,
	.anx-route-cards,
	.anx-spec-dossier {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.anx-gallery-item,
	.anx-gallery-item:nth-child(1),
	.anx-gallery-item:nth-child(2) {
		grid-column: span 6;
		min-height: 260px;
	}

	.anx-doc-grid,
	.anx-legal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.anx-contact {
		border-radius: 32px;
	}

	.anx-dock {
		display: none;
	}

	.anx-mobile-cta {
		display: grid;
	}

	.anx-footer__hero {
		gap: 16px;
	}

	.anx-footer__brand-card,
	.anx-footer__links {
		padding: 20px;
		border-radius: 24px;
	}

	.anx-footer__cta-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.anx-footer__brand-card h2 {
		max-width: none;
	}

	.anx-footer__meta-row {
		grid-template-columns: 1fr;
	}

	.anx-footer__visual {
		min-height: 360px;
		border-radius: 24px;
	}

	.anx-footer__visual-media {
		object-position: center 74%;
	}

	.anx-footer__visual-card {
		left: 14px;
		right: auto;
		bottom: 14px;
		max-width: min(72%, 640px);
		padding: 16px;
		border-radius: 20px;
	}

	.anx-footer__visual-card strong {
		max-width: none;
	}
}

@media (max-width: 720px) {
	.anx-container {
		width: min(100% - 28px, 1240px);
	}

	.anx-header {
		top: 10px;
		width: calc(100% - 20px);
	}

	.anx-footer__visual {
		min-height: 300px;
	}

	.anx-footer__visual-media {
		object-position: center 78%;
	}

	.anx-footer__visual-card {
		right: 14px;
		max-width: none;
	}

	.anx-footer__cta-row {
		grid-template-columns: 1fr;
	}

	.anx-header__inner {
		flex-wrap: wrap;
		gap: 6px;
		padding: 7px;
		min-height: 0;
	}

	.anx-brand {
		flex: 1 1 auto;
	}

	.anx-brand__mark {
		width: 34px;
		border-radius: 12px;
	}

	.anx-brand__copy strong {
		font-size: .92rem;
	}

	.anx-header__actions {
		flex: 0 0 auto;
		gap: 6px;
		margin-left: auto;
	}

	.anx-header__actions .anx-mode-switch {
		display: none;
	}

	.anx-mode-switch button {
		flex: 1;
		min-height: 32px;
		padding: 0 8px;
		font-size: .8rem;
	}

	.anx-theme-toggle,
	.anx-menu-toggle {
		width: 40px;
		min-height: 40px;
	}

	.anx-header__cta {
		display: none;
	}

	.anx-brand__copy small {
		display: none;
	}

	.anx-hero {
		padding-top: 116px;
		padding-bottom: 24px;
	}

	body.is-menu-open .anx-nav__group--sales,
	body.is-menu-open .anx-nav__group--brochure {
		grid-template-columns: 1fr;
	}

	.anx-hero__toolbar {
		margin-bottom: 10px;
	}

	.anx-kicker {
		padding: 6px 10px;
		font-size: .68rem;
		letter-spacing: .1em;
	}

	.anx-hero__copy {
		gap: 11px;
		padding: 16px;
		border-radius: 26px;
	}

	.anx-hero__copy h1 {
		max-width: none;
		font-size: clamp(31px, 7.8vw, 40px);
		line-height: .98;
		letter-spacing: -.055em;
	}

	html[data-anx-view="brochure"] body.areal-nz-preview .anx-hero__copy h1,
	body.areal-nz-preview[data-anx-view="brochure"] .anx-hero__copy h1 {
		font-size: clamp(30px, 7.4vw, 38px);
	}

	.anx-hero__lead {
		display: -webkit-box;
		overflow: hidden;
		font-size: .92rem;
		line-height: 1.42;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}

	.anx-hero__copy .anx-actions + .anx-actions {
		display: none;
	}

	.anx-hero__copy .anx-button {
		min-height: 42px;
		padding: 11px 14px;
		font-size: .9rem;
	}

	.anx-hero__panel {
		padding: 0;
	}

	.anx-hero__image--tall {
		height: 218px;
		min-height: 0;
		border-radius: 26px;
	}

	.anx-hero__label {
		right: 14px;
		bottom: 14px;
		left: 14px;
		padding: 12px 14px;
	}

	.anx-hero__label strong {
		font-size: 19px;
	}

	.anx-hero__label span,
	.anx-visual-badge span {
		display: none;
	}

	.anx-visual-main {
		height: 218px;
		min-height: 0;
		border-radius: 28px;
	}

	.anx-visual-badges {
		right: 14px;
		bottom: 14px;
		left: 14px;
		gap: 0;
	}

	.anx-visual-badge {
		padding: 12px 14px;
	}

	.anx-visual-row {
		display: none;
	}

	.anx-hero__facts,
	.anx-metric-grid,
	.quick-reasons,
	.anx-brochure-stats,
	.anx-route-cards,
	.anx-spec-dossier,
	.anx-doc-grid,
	.anx-legal-grid,
	.anx-distance-grid {
		grid-template-columns: 1fr;
	}

	.anx-metric-grid {
		display: none;
	}

	.anx-section,
	.anx-section--soft,
	.anx-section--paper {
		padding: 76px 0;
	}

	.anx-legal-page {
		padding-top: 128px;
	}

	.anx-section__head {
		display: block;
	}

	.anx-hero,
	.anx-section {
		scroll-margin-top: 128px;
	}

	.anx-scenario__panel-grid > div,
	.anx-split__panel,
	.anx-memo-card,
	.anx-access-card,
	.anx-site-notes,
	.anx-doc-room__intro,
	.anx-doc,
	.anx-legal-card,
	.anx-legal-page__panel,
	.anx-legal-page__aside,
	.anx-contact__panel,
	.anx-form {
		padding: 22px;
	}

	.anx-media-tall,
	.anx-access-map-premium,
	.anx-site-image {
		min-height: 0;
		aspect-ratio: 1400 / 875;
		border-radius: 28px;
	}

	.anx-map-hotspot > span {
		left: auto;
		right: 30px;
		width: 190px;
	}

	.anx-gallery-grid {
		grid-template-columns: 1fr;
	}

	.anx-gallery-item,
	.anx-gallery-item:nth-child(1),
	.anx-gallery-item:nth-child(2) {
		grid-column: auto;
		min-height: 250px;
	}

	.anx-contact {
		padding: 20px;
	}

	.anx-cookie {
		right: 14px;
		left: 14px;
		bottom: 14px;
		max-width: none;
		max-height: calc(100vh - 28px);
		overflow-y: auto;
		padding: 15px;
		gap: 9px;
		border-radius: 22px;
	}

	.anx-cookie p {
		font-size: 14px;
		line-height: 1.48;
	}

	.anx-cookie__head strong {
		font-size: 17px;
	}

	.anx-cookie__close {
		width: 44px;
		height: 44px;
		font-size: 22px;
	}

	.anx-cookie__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.anx-cookie__actions .anx-button {
		width: 100%;
		min-height: 44px;
		padding: 12px 14px;
		line-height: 1.3;
		text-wrap: balance;
	}

	.anx-cookie__option {
		padding: 11px 12px;
		border-radius: 16px;
	}

	.anx-cookie__badge {
		min-height: 30px;
		padding-inline: 10px;
	}

	.anx-consent-manage {
		left: 14px;
		bottom: 92px;
		max-width: calc(100vw - 28px);
	}

	.anx-mobile-cta {
		bottom: 10px;
		border-radius: 24px;
	}

	.anx-modal {
		align-items: flex-end;
		padding: 12px;
	}

	.anx-modal__card {
		max-height: 88vh;
		padding: 20px;
		border-radius: 28px;
	}

	.anx-modal__head h2 {
		max-width: 13ch;
		font-size: clamp(31px, 8vw, 42px);
	}

	.anx-form-grid {
		grid-template-columns: 1fr;
	}
}

body.areal-nz-preview .anx-brand__copy small,
.anx-cta-brochure,
.anx-dock-brochure {
	display: none;
}

body.areal-nz-preview .anx-header__cta {
	min-width: 188px;
	white-space: nowrap;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-cta-sales,
body.areal-nz-preview[data-anx-view="brochure"] .anx-dock-sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-cta-brochure,
body.areal-nz-preview[data-anx-view="brochure"] .anx-dock-brochure {
	display: inline;
}

.anx-button--soft {
	background: var(--chip);
	color: var(--text);
	border-color: var(--line);
	box-shadow: var(--shadow-soft);
}

body.areal-nz-preview a.anx-button--soft {
	color: var(--text);
}

.anx-v7 {
	position: relative;
	overflow: hidden;
}

.anx-v7-brochure {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-v7-sales {
	display: none;
}

body.areal-nz-preview[data-anx-view="brochure"] .anx-v7-brochure {
	display: block;
}

.v7-hero {
	position: relative;
	min-height: 100vh;
	padding: 118px 0 56px;
	display: grid;
	align-items: center;
	overflow: hidden;
}

.v7-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, color-mix(in srgb, var(--bg) 97%, transparent) 0%, color-mix(in srgb, var(--bg) 84%, transparent) 42%, color-mix(in srgb, var(--bg) 10%, transparent) 74%),
		url("../img/areal-nove-zamky/hero-building-lcp.webp") center/cover no-repeat;
	transform: scale(1.02);
	content: "";
	pointer-events: none;
}

.v7-hero--brochure::before {
	background:
		linear-gradient(115deg, color-mix(in srgb, var(--bg) 95%, transparent) 0%, color-mix(in srgb, var(--bg) 80%, transparent) 44%, color-mix(in srgb, var(--bg) 12%, transparent) 76%),
		url("../img/areal-nove-zamky/front-building-lcp.webp") center/cover no-repeat;
}

.v7-hero::after {
	position: absolute;
	inset: auto 0 -1px;
	height: 32%;
	background: linear-gradient(180deg, transparent, var(--bg));
	content: "";
	pointer-events: none;
}

.v7-hero--brochure::after {
	height: 28%;
}

.v7-hero-grid,
.v7-brochure-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 40px;
	align-items: center;
}

.v7-hero-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, .82fr);
}

.v7-brochure-hero-grid {
	grid-template-columns: minmax(0, 1fr) minmax(370px, .78fr);
}

.v7-hero-card,
.v7-brochure-copy {
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: 38px;
	background: color-mix(in srgb, var(--card) 93%, transparent);
	box-shadow: var(--shadow-hard);
	backdrop-filter: blur(18px);
}

.v7-brochure-copy {
	background: color-mix(in srgb, var(--card) 92%, transparent);
}

.v7-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: color-mix(in srgb, var(--card) 82%, transparent);
	color: var(--muted);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.v7-eyebrow::before {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 15%, transparent);
	content: "";
}

.v7-hero h1 {
	margin: 0 0 24px;
	max-width: 860px;
	color: var(--text);
	font-size: clamp(44px, 5.8vw, 88px);
	font-weight: 800;
	line-height: .89;
	letter-spacing: -.082em;
	text-wrap: balance;
}

.v7-hero--brochure h1 {
	max-width: none;
	font-size: clamp(44px, 5.4vw, 84px);
	letter-spacing: -.08em;
}

.v7-lead {
	max-width: 790px;
	margin: 0;
	color: var(--muted);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
}

.v7-lead strong {
	color: color-mix(in srgb, var(--text) 86%, var(--accent));
	font-weight: 950;
}

.v7-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 28px;
}

.v7-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.v7-deal-console,
.v7-brochure-visual {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.v7-console-photo,
.v7-visual-main {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 34px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.v7-console-photo {
	aspect-ratio: 4 / 3;
	min-height: 430px;
}

.v7-visual-main {
	height: min(64vh, 590px);
	min-height: 430px;
	border-radius: 38px;
}

.v7-console-photo img,
.v7-visual-main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.v7-photo-label {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	border-radius: 22px;
	background: rgba(9, 14, 18, .62);
	color: #fff;
	backdrop-filter: blur(18px);
}

.v7-photo-label {
	display: grid;
	gap: 4px;
	padding: 18px;
}

.v7-photo-label b {
	max-width: 18ch;
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: -.045em;
}

.v7-photo-label span,
.v7-visual-badges span {
	color: rgba(255, 255, 255, .76);
}

.v7-visual-badges {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	display: grid;
	gap: 10px;
}

.v7-visual-badges > div {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(9, 14, 18, .64);
	color: #fff;
	backdrop-filter: blur(16px);
}

.v7-visual-badges strong {
	display: block;
	font-size: 18px;
	letter-spacing: -.02em;
}

.v7-console-mini,
.v7-visual-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.v7-console-mini div {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--card);
	box-shadow: var(--shadow-soft);
}

.v7-console-mini b {
	display: block;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -.05em;
}

.v7-console-mini span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
}

.v7-visual-row {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-visual-row img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.v7-section {
	padding: 112px 0;
	scroll-margin-top: 118px;
}

.v7-section-tight {
	padding: 76px 0;
	scroll-margin-top: 118px;
}

/* NOTE: `content-visibility: auto` was removed from these sections. It reports an
   ESTIMATED height for off-screen sections, which broke in-page anchor scrolling
   ("hadze inde" — the jump landed thousands of px off the target). Correct anchor
   navigation outweighs the marginal below-the-fold paint saving. Anchor scrolling
   now works natively via `<a href="#id">` + the `scroll-margin-top` above. */
.v7-section,
.v7-section-tight {
	content-visibility: visible;
}

/* Cross-sell strip (alternatívna ponuka) before the footer. */
.v7-crosssell {
	padding-top: 0;
}
.v7-crosssell-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 46px 40px;
	display: grid;
	gap: 16px;
	justify-items: center;
	text-align: center;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: var(--shadow-soft);
}
.v7-crosssell-card h2 {
	margin: 0;
	font-size: clamp(1.28rem, 2.4vw, 1.92rem);
	line-height: 1.2;
}
.v7-crosssell-card .v7-eyebrow {
	color: var(--accent);
}
@media (max-width: 720px) {
	.v7-crosssell-card {
		padding: 34px 22px;
	}
}

/* Video prehliadka — click-to-play facade that opens the YouTube (nocookie)
   embed in the shared lightbox. No third-party request until the visitor
   clicks, so it stays GDPR-clean without a consent gate. */
.v7-video-section .v7-section-head {
	margin-bottom: 30px;
}
.v7-video {
	position: relative;
	margin: 0;
	aspect-ratio: 16 / 9;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	background: #0c0f0e;
}
.v7-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(.82) saturate(1.02);
	transition: transform .6s ease, filter .4s ease;
}
.v7-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, color-mix(in srgb, #000 52%, transparent));
	pointer-events: none;
}
.v7-video__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 86px;
	height: 86px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	box-shadow: 0 18px 48px color-mix(in srgb, var(--accent) 42%, transparent);
	z-index: 2;
	transition: transform .3s ease, box-shadow .3s ease;
}
.v7-video__play svg {
	margin-left: 4px;
}
.v7-video__badge {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 2;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	color: #fff;
	background: color-mix(in srgb, #000 42%, transparent);
	border: 1px solid color-mix(in srgb, #fff 22%, transparent);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.v7-video:hover img,
.v7-video:focus-visible img {
	transform: scale(1.04);
	filter: brightness(.7) saturate(1.05);
}
.v7-video:hover .v7-video__play,
.v7-video:focus-visible .v7-video__play {
	transform: scale(1.08);
	box-shadow: 0 22px 62px color-mix(in srgb, var(--accent) 56%, transparent);
}
.v7-video:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--accent) 58%, transparent);
	outline-offset: 3px;
}
@media (max-width: 720px) {
	.v7-video {
		border-radius: 16px;
	}
	.v7-video__play {
		width: 64px;
		height: 64px;
	}
	.v7-video__badge {
		font-size: .74rem;
		left: 12px;
		bottom: 12px;
	}
}

@media (min-width: 1201px) {
	body.areal-nz-preview {
		--nav-shadow: none;
		--shadow-soft: none;
		--shadow-hard: none;
		background: var(--bg);
	}

	body.areal-nz-preview * {
		backdrop-filter: none !important;
	}

	body.areal-nz-preview .anx-theme-toggle,
	body.areal-nz-preview .anx-header__cta,
	body.areal-nz-preview .anx-button,
	body.areal-nz-preview .anx-button--ghost,
	body.areal-nz-preview .anx-mobile-cta,
	body.areal-nz-preview .anx-modal__card,
	body.areal-nz-preview .anx-lightbox img,
	body.areal-nz-preview .anx-cookie,
	body.areal-nz-preview .anx-consent-manage,
	body.areal-nz-preview .anx-header,
	body.areal-nz-preview .anx-hero__copy,
	body.areal-nz-preview .anx-hero__image,
	body.areal-nz-preview .anx-hero__label,
	body.areal-nz-preview .v7-hero-card,
	body.areal-nz-preview .v7-brochure-copy,
	body.areal-nz-preview .v7-deal-console,
	body.areal-nz-preview .v7-console-photo,
	body.areal-nz-preview .v7-photo-label,
	body.areal-nz-preview .v7-console-mini div,
	body.areal-nz-preview .v7-visual-main,
	body.areal-nz-preview .v7-visual-badges > div,
	body.areal-nz-preview .v7-stat,
	body.areal-nz-preview .v7-reason,
	body.areal-nz-preview .v7-doc,
	body.areal-nz-preview .v7-ops-card,
	body.areal-nz-preview .v7-scenario-menu button,
	body.areal-nz-preview .v7-access-map,
	body.areal-nz-preview .v7-access-map-premium,
	body.areal-nz-preview .v7-site-image,
	body.areal-nz-preview .v7-media-tall,
	body.areal-nz-preview .v7-gallery-item,
	body.areal-nz-preview .v7-gallery-item figcaption,
	body.areal-nz-preview .v7-footer__brand-card,
	body.areal-nz-preview .v7-hotspot,
	body.areal-nz-preview .v7-hotspot span {
		box-shadow: none !important;
	}

	body.areal-nz-preview .v7-hero::before,
	body.areal-nz-preview .v7-hero--brochure::before {
		transform: none;
	}

	html[data-theme="dark"] body.areal-nz-preview .anx-footer__brand-card::after {
		filter: none !important;
	}
}

#faq.v7-section-tight {
	padding-bottom: 40px;
}

#kontakt.v7-section {
	padding-top: 56px;
}

.v7-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.v7-section-kicker {
	display: block;
	margin-bottom: 12px;
	color: #9d5d21;
	font-size: 13px;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.v7-section h2,
.v7-section-tight h2,
.v7-card h2 {
	margin: 0 0 18px;
	color: var(--text);
	font-size: clamp(34px, 5vw, 72px);
	font-weight: 800;
	line-height: .98;
	letter-spacing: -.06em;
	text-wrap: balance;
}

.v7-card,
.v7-stat,
.v7-reason,
.v7-doc,
.v7-faq details,
.v7-route-cards article,
.v7-spec-dossier article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(16px);
}

.v7-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.v7-stat {
	padding: 22px;
}

.v7-stat strong {
	display: block;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1;
	letter-spacing: -.06em;
}

.v7-stat span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 750;
}

.v7-proof-panel {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 24px;
	align-items: stretch;
}

.v7-proof-copy {
	padding: 32px;
}

.v7-proof-copy__title {
	font-size: clamp(38px, 4vw, 50px) !important;
}

.v7-quick-reasons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.v7-reason {
	display: grid;
	gap: 10px;
	padding: 22px;
}

.v7-num {
	color: var(--accent);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: .12em;
}

.v7-reason h3,
.v7-scenario-output h3,
.v7-memo-card h3,
.v7-route-cards h3,
.v7-media-list h3 {
	margin: 0 0 10px;
	color: var(--text);
	font-size: 24px;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.v7-reason p,
.v7-scenario-output p,
.v7-memo-card p,
.v7-route-cards p,
.v7-media-list p,
.v7-doc p {
	margin: 0;
	color: var(--muted);
}

.v7-scenario-wrap {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 24px;
	align-items: stretch;
}

.v7-scenario-menu {
	display: grid;
	gap: 12px;
}

.v7-scenario-menu button {
	display: block;
	width: 100%;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--card);
	color: var(--text);
	text-align: left;
	box-shadow: var(--shadow-soft);
}

.v7-scenario-menu button.is-active {
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), var(--card));
	border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}

.v7-scenario-menu strong {
	display: block;
	font-size: 20px;
	letter-spacing: -.03em;
}

.v7-scenario-menu span {
	display: block;
	margin-top: 6px;
	color: var(--muted);
}

.v7-scenario-output {
	display: grid;
	grid-template-columns: 1fr .9fr;
	overflow: hidden;
	min-height: 500px;
	transition: opacity .18s ease, transform .18s ease;
}

.v7-scenario-output[hidden] {
	display: none !important;
}

.v7-scenario-output.is-changing {
	opacity: .55;
	transform: scale(.99);
}

.v7-scenario-output > div {
	padding: 34px;
}

.v7-scenario-fit {
	padding: 16px;
	border-radius: 18px;
	background: var(--chip);
	color: var(--text) !important;
	font-weight: 750;
}

.v7-scenario-output img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.v7-access-panel,
.v7-access-premium,
.v7-site-composition,
.v7-split-section {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
	gap: 24px;
	align-items: start;
}

.v7-access-map,
.v7-access-map-premium,
.v7-site-image,
.v7-media-tall {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 0;
	align-self: start;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 38px;
	background: var(--chip);
	box-shadow: var(--shadow-hard);
}

.v7-access-map,
.v7-access-map-premium,
.v7-site-image {
	aspect-ratio: 1400 / 875;
}

.v7-media-tall {
	min-height: 620px;
}

body.areal-nz-preview .v7-access-map img,
body.areal-nz-preview .v7-access-map-premium img,
body.areal-nz-preview .v7-site-image img,
body.areal-nz-preview .v7-media-tall img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.areal-nz-preview .v7-access-map img {
	object-fit: contain;
	object-position: center center;
	background: #f3ede4;
}

body.areal-nz-preview .v7-access-map {
	aspect-ratio: 1141 / 1120;
}

.v7-access-map::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 68%, rgba(8, 18, 32, .18));
	pointer-events: none;
}

.v7-access-copy,
.v7-access-card,
.v7-site-notes,
.v7-calculator {
	padding: 34px;
}

.v7-map-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px 22px;
	align-items: end;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), var(--chip));
}

.v7-map-intro h3 {
	margin: 0 0 8px;
	color: var(--text);
	font-size: 24px;
	line-height: 1.08;
	letter-spacing: -.03em;
}

.v7-map-intro p {
	margin: 0;
	color: var(--muted);
}

.v7-map-intro .anx-button {
	align-self: center;
	justify-self: end;
}

.v7-map-widget {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, var(--chip)), var(--chip));
	box-shadow: var(--shadow-hard);
}

.v7-map-frame {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
	background: #d9dede;
}

.v7-map-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	background: linear-gradient(180deg, rgba(248, 245, 236, .96), rgba(248, 245, 236, .82));
	backdrop-filter: blur(4px);
	z-index: 2;
	transition: opacity .2s ease, transform .2s ease;
}

.v7-map-widget.is-loaded .v7-map-placeholder {
	opacity: 0;
	pointer-events: none;
	transform: scale(.98);
}

.v7-map-placeholder > div {
	max-width: 420px;
}

.v7-map-placeholder__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.v7-map-placeholder strong {
	display: block;
	margin-bottom: 10px;
	color: var(--text);
	font-size: 24px;
	line-height: 1.05;
	letter-spacing: -.04em;
}

.v7-map-placeholder p {
	margin: 0 0 16px;
	color: var(--muted);
}

.v7-map-chipbar {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
}

.v7-map-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(28, 37, 52, .14);
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(10px);
	color: var(--text);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: .01em;
	box-shadow: var(--shadow-soft);
}

.v7-map-chip i {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 16%, transparent);
}

.v7-map-chip--green {
	color: #1f8f4c;
}

.v7-map-chip--blue {
	color: #1b74d1;
}

.v7-map-chip--amber {
	color: #d58a1f;
}

.v7-map-chip--red {
	color: #c13a3a;
}

.v7-distance-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.v7-map-legend {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.v7-map-point {
	--tone: var(--accent);
	display: flex;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--chip);
	box-shadow: var(--shadow-soft);
}

.v7-map-point__tone {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	border-radius: 999px;
	background: var(--tone);
	box-shadow: 0 0 0 6px color-mix(in srgb, var(--tone) 24%, transparent);
}

.v7-map-point strong {
	display: block;
	margin-bottom: 4px;
	color: var(--text);
	font-size: 16px;
	line-height: 1.1;
}

.v7-map-point p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.v7-map-point--green {
	--tone: #1f8f4c;
}

.v7-map-point--blue {
	--tone: #1b74d1;
}

.v7-map-point--amber {
	--tone: #d58a1f;
}

.v7-map-point--red {
	--tone: #c13a3a;
}

.v7-map-point--slate {
	--tone: #516274;
}

.v7-map-note {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.v7-distance-grid div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 14px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--chip);
	font-weight: 850;
}

.v7-calc-results div {
	padding: 16px;
	border-radius: 20px;
	background: var(--chip);
}

.v7-distance-grid span,
.v7-calc-results span,
.v7-row span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.v7-distance-grid b,
.v7-calc-results strong,
.v7-row b {
	color: var(--text);
	font-size: 18px;
	letter-spacing: -.02em;
}

.v7-hotspot {
	position: absolute;
	left: var(--x);
	top: var(--y);
	transform: translate(-50%, -50%);
	width: 22px;
	height: 22px;
	border: 0;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 25%, transparent), 0 20px 55px rgba(0, 0, 0, .25);
	z-index: 2;
}

.v7-hotspot span {
	position: absolute;
	left: 30px;
	top: 50%;
	width: 240px;
	transform: translateY(-50%) scale(.94);
	opacity: 0;
	pointer-events: none;
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--card);
	color: var(--text);
	font-size: 13px;
	font-weight: 850;
	text-align: left;
	box-shadow: var(--shadow-hard);
	transition: .2s ease;
	backdrop-filter: blur(18px);
}

.v7-hotspot:hover span,
.v7-hotspot.is-open span {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.v7-split-section {
	grid-template-columns: .95fr 1.05fr;
	align-items: stretch;
}

.v7-split-section > .v7-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.v7-split-section .v7-hero-actions {
	margin-top: auto;
	padding-top: 24px;
}

.v7-range-row {
	margin: 24px 0;
}

.v7-range-row input[type="range"] {
	width: 100%;
	accent-color: var(--accent);
	--fill: 0%;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent) var(--fill), color-mix(in srgb, var(--text) 15%, transparent) 0);
	appearance: none;
}

.v7-range-row input[type="range"]::-webkit-slider-thumb {
	width: 26px;
	height: 26px;
	border: 6px solid var(--accent);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
	appearance: none;
}

.v7-range-row h3 {
	margin: 0;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
	letter-spacing: -.06em;
}

.v7-calc-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.v7-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.v7-gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.v7-gallery-filter button {
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--card);
	color: var(--muted);
	font-weight: 900;
}

.v7-gallery-filter button.is-active {
	background: var(--text);
	color: var(--bg);
}

.v7-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 14px;
}

.v7-gallery-item {
	position: relative;
	grid-column: span var(--v7-span, 3);
	min-height: 250px;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: var(--chip);
	box-shadow: var(--shadow-soft);
	cursor: zoom-in;
}

.v7-gallery-item[style*="--v7-span: 6"] {
	min-height: 340px;
}

.v7-gallery-grid--thin .v7-gallery-item[style*="--v7-span: 6"] {
	min-height: 300px;
}

.v7-gallery-item[hidden] {
	display: none !important;
}

.v7-gallery-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.v7-gallery-item:hover img {
	transform: scale(1.045);
}

.v7-gallery-item figcaption {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: grid;
	gap: 2px;
	padding: 12px;
	border-radius: 18px;
	background: rgba(9, 14, 18, .66);
	color: #fff;
	backdrop-filter: blur(14px);
}

.v7-gallery-item figcaption span {
	color: #fff;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.v7-gallery-item figcaption b {
	font-size: 14px;
}

.v7-gallery-item figcaption small {
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
}

/* Video tiles: centered play badge overlaid above the (absolutely positioned)
   image, below the figcaption. */
.v7-gallery-item--video {
	cursor: pointer;
}

.v7-gallery-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin: 0;
	padding-left: 4px;
	transform: translate(-50%, -50%);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .55);
	background: rgba(9, 14, 18, .58);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
	pointer-events: none;
	transition: transform .3s ease, background .3s ease;
}

.v7-gallery-item--video:hover .v7-gallery-play,
.v7-gallery-item--video:focus-visible .v7-gallery-play {
	transform: translate(-50%, -50%) scale(1.08);
	background: rgba(9, 14, 18, .74);
}

.v7-deal-room {
	display: grid;
	grid-template-columns: .72fr 1fr;
	gap: 24px;
}

.v7-deal-side,
.v7-doc {
	padding: 24px;
}

.v7-document-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.v7-doc {
	display: grid;
	gap: 12px;
	min-height: 224px;
}

.v7-doc__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: color-mix(in srgb, var(--accent) 14%, transparent);
	color: var(--accent);
	font-weight: 950;
}

.v7-doc a {
	margin-top: auto;
	color: var(--accent);
	font-weight: 950;
	text-decoration: none;
}

.v7-faq {
	display: grid;
	gap: 12px;
}

.v7-faq details {
	padding: 18px 20px;
}

.v7-faq summary {
	font-weight: 950;
	cursor: pointer;
}

.v7-faq p {
	margin: 12px 0 0;
	color: var(--muted);
}

.v7-contact-band {
	position: relative;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 24px;
	overflow: hidden;
	padding: 34px;
	border-radius: 42px;
	background: linear-gradient(135deg, #13202b, #25423b);
	color: #fff;
	box-shadow: 0 30px 100px rgba(0, 0, 0, .25);
}

.v7-contact-band::before {
	content: "";
	position: absolute;
	inset: -40% auto auto 35%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(167, 103, 42, .48), transparent 60%);
}

.v7-contact-band > * {
	position: relative;
}

.v7-contact-band .v7-contact-copy {
	color: #fff;
}

.v7-contact-band .v7-contact-copy h2 {
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.v7-contact-band .v7-contact-copy .v7-eyebrow {
	color: rgba(255, 255, 255, .82);
}

.v7-brochure-cta {
	display: grid;
	grid-template-columns: 1fr .95fr;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 44px;
	background: var(--card);
	color: var(--text);
	box-shadow: var(--shadow-hard);
}

.v7-brochure-cta {
	padding: 0;
}

.v7-brochure-cta .v7-contact-copy {
	padding: 40px;
}

.v7-contact-band .v7-lead {
	color: rgba(255, 255, 255, .76);
}

.v7-contact-form {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 30px;
	background: rgba(255, 255, 255, .09);
	backdrop-filter: blur(16px);
}

.v7-brochure-cta .v7-contact-form {
	margin-top: 26px;
	padding: 22px;
	border-radius: 28px;
	background: color-mix(in srgb, var(--chip) 80%, transparent);
	border: 1px solid var(--line);
}

.v7-form-consent {
	margin: 16px 0 0;
	font-size: .92rem;
	line-height: 1.55;
	color: var(--muted);
}

.v7-contact-band .v7-form-consent,
.anx-modal .v7-form-consent {
	color: rgba(255, 255, 255, .82);
}

[data-theme="light"] .v7-contact-band .anx-consent-check,
[data-theme="light"] .anx-modal .anx-consent-check {
	color: rgba(17, 24, 39, .84);
}

[data-theme="light"] .v7-contact-band .anx-consent-check a,
[data-theme="light"] .anx-modal .anx-consent-check a {
	color: #101826;
}

.v7-interest-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.v7-interest-chips button {
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .09);
	color: #fff;
	font-weight: 900;
}

.v7-brochure-cta__image {
	position: relative;
	min-height: 560px;
	background: url("../img/areal-nove-zamky/office-courtyard.webp") center/cover no-repeat;
}

.v7-brochure-cta__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--card), transparent 60%);
}

.v7-chapter-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 34px;
}

.v7-chapter-nav {
	position: sticky;
	top: 96px;
	align-self: start;
	display: grid;
	gap: 10px;
}

.v7-chapter-nav a {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--card);
	color: var(--muted);
	font-weight: 900;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
}

.v7-memo-grid,
.v7-route-cards,
.v7-spec-dossier {
	display: grid;
	gap: 14px;
}

.v7-memo-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.v7-memo-card {
	padding: 34px;
}

.v7-stat-grid--brochure {
	margin-top: 24px;
}

.v7-media-story {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 24px;
	align-items: stretch;
}

.v7-media-list {
	display: grid;
	align-content: center;
	gap: 26px;
}

.v7-media-title,
.v7-site-title {
	font-size: clamp(38px, 4vw, 48px) !important;
}

.v7-route-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-route-cards article,
.v7-spec-dossier article {
	padding: 28px;
}

.v7-spec-dossier {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-ops-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
	margin-bottom: 16px;
}

.v7-ops-card {
	display: grid;
	gap: 12px;
	padding: 26px;
}

.v7-ops-card h3 {
	margin: 0;
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1;
	letter-spacing: -.045em;
}

.v7-ops-card .anx-list {
	margin: 0;
	color: var(--muted);
}

.v7-spec-dossier b {
	display: block;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1;
	letter-spacing: -.055em;
}

.v7-spec-dossier span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 800;
}

@media (max-width: 1180px) {
	.v7-hero-grid,
	.v7-brochure-hero-grid,
	.v7-proof-panel,
	.v7-scenario-wrap,
	.v7-access-panel,
	.v7-access-premium,
	.v7-site-composition,
	.v7-split-section,
	.v7-deal-room,
	.v7-contact-band,
	.v7-brochure-cta,
	.v7-media-story {
		grid-template-columns: 1fr;
	}

	.v7-chapter-layout {
		grid-template-columns: 1fr;
	}

	.v7-chapter-nav {
		display: none;
	}

		.v7-stat-grid,
		.v7-ops-grid,
		.v7-document-grid,
		.v7-route-cards,
		.v7-spec-dossier {
			grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.v7-gallery-item,
	.v7-gallery-item[style*="--v7-span: 6"] {
		grid-column: span 6;
	}
}

@media (max-width: 720px) {
	.anx-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto auto;
		align-items: center;
	}

	.anx-brand {
		grid-column: 1 / 3;
	}

	.anx-header__actions {
		display: contents;
	}

	.anx-theme-toggle {
		grid-column: 3;
	}

	.anx-menu-toggle {
		grid-column: 4;
	}

	.anx-header__actions .anx-mode-switch {
		display: none;
	}

	.anx-mode-switch {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.v7-hero {
		min-height: auto;
		padding: 126px 0 26px;
	}

	.v7-hero-card,
	.v7-brochure-copy {
		padding: 18px;
		border-radius: 28px;
	}

	.v7-hero h1,
	.v7-hero--brochure h1 {
		max-width: none;
		font-size: clamp(38px, 11.5vw, 50px);
		line-height: .94;
		letter-spacing: -.058em;
	}

	.v7-lead {
		font-size: .98rem;
	}

	.v7-proof-copy__title,
	.v7-media-title,
	.v7-site-title {
		font-size: 38px !important;
	}

	.v7-hero-actions .anx-button {
		width: 100%;
	}

	.v7-hero-trust .anx-pill:nth-child(n+3) {
		display: none;
	}

	.v7-console-photo,
	.v7-visual-main {
		min-height: 360px;
		border-radius: 28px;
	}

	.v7-photo-label b {
		font-size: 22px;
	}

	.v7-visual-row {
		display: none;
	}

	.v7-section,
	.v7-section-tight {
		padding: 72px 0;
	}

	.v7-section-head {
		display: block;
	}

		.v7-stat-grid,
		.v7-ops-grid,
		.v7-document-grid,
		.v7-route-cards,
		.v7-spec-dossier,
	.v7-quick-reasons,
	.v7-console-mini,
	.v7-calc-results,
	.v7-distance-grid {
		grid-template-columns: 1fr;
	}

	.v7-scenario-output {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.v7-scenario-output img {
		height: 260px;
	}

	.v7-access-map,
	.v7-access-map-premium,
	.v7-site-image,
	.v7-media-tall {
		min-height: 0;
		border-radius: 28px;
	}

	.v7-access-map,
	.v7-access-map-premium,
	.v7-site-image {
		aspect-ratio: 1400 / 875;
	}

	.v7-map-intro {
		grid-template-columns: 1fr;
	}

	.v7-map-intro .anx-button {
		justify-self: start;
	}

	.v7-map-widget,
	.v7-map-frame {
		min-height: 280px;
	}

	.v7-map-chipbar {
		left: 14px;
		right: 14px;
		bottom: 14px;
		gap: 6px;
	}

	.v7-map-chip {
		padding: 7px 10px;
		font-size: 11px;
	}

	.v7-map-legend {
		grid-template-columns: 1fr;
	}

	.v7-map-placeholder strong {
		font-size: 20px;
	}

	.v7-media-tall {
		min-height: 380px;
	}

	.v7-hotspot span {
		display: none;
	}

	.v7-gallery-grid {
		grid-template-columns: 1fr;
	}

	.v7-gallery-item,
	.v7-gallery-item[style*="--v7-span: 6"] {
		grid-column: auto;
		min-height: 250px;
	}

	.v7-contact-band,
	.v7-brochure-cta {
		padding: 20px;
		border-radius: 28px;
	}

	.v7-contact-band {
		padding-bottom: 112px;
	}

	.v7-brochure-cta {
		padding: 0;
	}

	.v7-brochure-cta .v7-contact-copy {
		padding: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.anx-gallery-item img {
		transition: none;
	}
}
