:root {
	--ch-bg: #ffffff;
	--ch-text: #333333;
	--ch-muted: #666666;
	--ch-surface: #f4f4f4;
	--ch-card: #ebebeb;
	--ch-accent: #c1121f;
	--ch-accent-hover: #9b0e18;
	--ch-container: 1120px;
	--ch-font-body: "Roboto", "Montserrat", sans-serif;
	--ch-font-display: "Teko", "Montserrat", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: #1c1c1c;
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
}

body {
	min-height: 100vh;
	height: auto;
	margin: 0;
	display: flex;
	flex-direction: column;
	background: var(--ch-bg);
	color: var(--ch-text);
	font-family: var(--ch-font-body);
	font-size: 18px;
	line-height: 1.65;
}

main,
.site-content,
#content,
.site-main {
	flex: 1 0 auto;
}

footer,
.site-footer {
	flex-shrink: 0;
	margin-top: auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--ch-accent);
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 1100;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(100% - 40px, var(--ch-container));
	margin-inline: auto;
}

.site-main {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.site-main.checkout-page {
	overflow: visible;
}

.section {
	padding: 72px 0;
	background: var(--ch-bg);
}

.section__title {
	margin: 0 0 1.5rem;
	font-family: var(--ch-font-display);
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3.1rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1;
	color: var(--ch-text);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	flex-shrink: 0;
	overflow: visible;
	background: #1c1c1c;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
	border-bottom-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.site-header .container {
	position: relative;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem;
	min-height: 84px;
	padding-left: 108px;
}

.site-header .site-logo {
	position: absolute;
	left: -14px;
	top: 0;
	z-index: 2;
	line-height: 0;
	padding: 0;
}

.site-header .site-logo img {
	width: 86px;
	height: auto;
	max-width: 100%;
}

.nav-toggle {
	display: none;
	position: relative;
	z-index: 220;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	display: block;
	width: 22px;
	height: 2px;
	background: #e8e8e8;
	position: relative;
	transition: transform 0.25s ease, top 0.25s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 22px;
}

.nav-toggle span::before {
	top: -7px;
}

.nav-toggle span::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
	background-color: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
	top: 0;
	transform: rotate(-45deg);
}

body.nav-open {
	overflow: hidden;
}

.nav-close {
	display: none;
}

.nav-overlay {
	display: none;
}

.site-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	text-decoration: none;
	font-size: 15px;
	color: #e8e8e8;
	transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: #ffffff;
}

/* Buttons */
.btn-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.75rem;
	border-radius: 4px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.06em;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
	background: var(--ch-accent);
	color: #fff;
	border: 2px solid var(--ch-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--ch-accent-hover);
	border-color: var(--ch-accent-hover);
}

.btn--ghost {
	background: #ffffff;
	color: var(--ch-accent);
	border: 2px solid var(--ch-accent);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: var(--ch-accent);
	border-color: var(--ch-accent);
	color: #ffffff;
}

/* Hero */
.hero {
	min-height: calc(100vh - 84px);
	max-width: 100%;
	background: #ffffff top center / cover no-repeat;
	display: flex;
	align-items: flex-end;
}

.hero__inner {
	width: 100%;
	min-height: inherit;
}

/* Intro / copy */
.intro__grid {
	display: grid;
	gap: 2rem;
	align-items: stretch;
}

.intro__copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.intro__copy p {
	margin: 0 0 1.15rem;
	font-size: 18px;
	line-height: 1.65;
}

.intro__copy p:last-child {
	margin-bottom: 0;
}

.intro .video-grid {
	margin-top: 0;
	grid-template-columns: 1fr;
	align-content: stretch;
	height: 100%;
}

.intro .video-grid--three {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
}

.intro .yt-facade {
	flex: 0 0 auto;
	width: 100%;
}

/* Video facades */
.video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 2rem;
}

.video-grid--two,
.video-grid--three {
	grid-template-columns: 1fr;
}

.yt-facade {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 4px;
	overflow: hidden;
}

.yt-facade img,
.yt-facade iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.yt-facade__play {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.yt-facade__play::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 68px;
	height: 48px;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 22px no-repeat;
	border-radius: 10px;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.yt-facade__play:hover::after,
.yt-facade__play:focus-visible::after {
	transform: translate(-50%, -50%) scale(1.1);
	background-color: rgba(193, 18, 31, 0.85);
}

/* Maps slider */
.maps-slider {
	background: var(--ch-bg);
}

.maps-slider > .container {
	width: min(100% - 24px, 1500px);
}

.maps-slider__frame {
	position: relative;
}

.maps-slider__stage {
	position: relative;
	padding-inline: 56px;
}

.maps-slider .swiper {
	overflow: hidden;
}

.maps-slider .swiper-wrapper {
	align-items: stretch;
}

.maps-slider__slide {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	height: auto;
}

.maps-slider__zoom {
	display: block;
	width: 100%;
	cursor: zoom-in;
	text-decoration: none;
	color: inherit;
}

.maps-slider__slide img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 0;
	padding: 0.5rem;
	box-sizing: border-box;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	object-position: center center;
	background: transparent;
	border-radius: 0;
	image-rendering: auto;
	-ms-interpolation-mode: bicubic;
	pointer-events: none;
}

.maps-slider__caption,
.swiper-slide-caption {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	margin: 0.6rem 0.35rem 0;
	min-height: calc(1.4em * 3);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	text-align: center;
	color: var(--ch-text);
}

.maps-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 1px solid #333333;
	border-radius: 50%;
	background: #ffffff;
	color: #333333;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.maps-slider__nav:hover,
.maps-slider__nav:focus-visible {
	background: #333333;
	color: #ffffff;
}

.maps-slider__prev {
	left: 0;
}

.maps-slider__next {
	right: 0;
}

.maps-slider__nav svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.maps-slider__dots.swiper-pagination,
.maps-slider__dots {
	position: static;
	bottom: auto;
	left: auto;
	width: 100%;
	margin-top: 1.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.35rem;
	transform: none;
}

.maps-slider__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 !important;
	background: #cccccc;
	opacity: 1;
}

.maps-slider__dots .swiper-pagination-bullet-active {
	background: #333333;
}

.fancybox__container {
	z-index: 100010;
}

.fancybox__backdrop {
	background: rgba(0, 0, 0, 0.9) !important;
}

.fancybox__toolbar {
	justify-content: flex-end;
}

/* Quote */
.quote {
	background: var(--ch-surface);
}

.quote__layout {
	max-width: 1040px;
	margin-inline: auto;
}

.quote__card {
	position: relative;
	background: #ebebeb;
	padding: 3.5rem 2rem 2.25rem;
}

.quote__icon {
	position: absolute;
	top: 0;
	left: 50%;
	width: 72px;
	height: auto;
	transform: translate(-50%, -50%);
}

.quote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1.05rem;
	color: var(--ch-text);
	text-align: center;
}

.quote blockquote p + p {
	margin-top: 1.15rem;
}

/* Contents */
.contents,
.videos {
	background: var(--ch-bg);
	color: var(--ch-text);
}

.checkout-preview {
	background: var(--ch-surface);
	color: var(--ch-text);
}

.contents__layout {
	display: grid;
	gap: 2.5rem;
	align-items: stretch;
}

.contents__copy {
	min-width: 0;
}

.contents__list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.55;
}

.contents__list li {
	margin: 0 0 0.55rem;
}

.contents__map {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contents__map img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center center;
	border-radius: 4px;
}

/* Checkout preview */
.checkout-preview__layout {
	display: grid;
	gap: 2rem;
	align-items: start;
}

.checkout-preview__info {
	min-width: 0;
}

.checkout-preview__buy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.checkout-preview__price {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	font-family: var(--ch-font-display);
	line-height: 1;
	margin: 0 0 1rem;
	color: var(--ch-text);
}

.checkout-preview__price-value {
	font-size: clamp(3.5rem, 8vw, 5.5rem);
	font-weight: 700;
}

.checkout-preview__price-currency {
	font-size: 1.6rem;
	text-transform: uppercase;
}

.checkout-preview__meta {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	color: var(--ch-muted);
	font-size: 16px;
}

.checkout-preview__meta li {
	margin: 0 0 0.35rem;
}

.checkout-preview__cover {
	width: 100%;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.checkout-preview__cover img {
	margin-inline: auto;
	width: 100%;
	max-width: 420px;
	height: auto;
}

.checkout-page {
	--ch-navy: #344974;
	--ch-navy-hover: #273757;
	--ch-ticket: #ffffff;
	padding: 40px 0 72px;
	background: #ffffff;
}

.checkout-steps {
	margin: 0 0 2.5rem;
	border: 1px solid #e5e7eb;
	background: #fafafa;
	overflow: hidden;
}

.checkout-steps__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}

.checkout-steps__item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 1.05rem 2.4rem 1.05rem 1.5rem;
	color: #9aa3af;
	font-size: 14px;
	font-weight: 500;
}

.checkout-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: -14px;
	z-index: 2;
	width: 28px;
	height: 100%;
	background: #fafafa;
	border-right: 1px solid #d1d5db;
	transform: skewX(-22deg);
	pointer-events: none;
}

.checkout-steps__num {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 0;
	background: #e5e7eb;
	color: #9aa3af;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.checkout-steps__item.is-active,
.checkout-steps__item.is-done {
	color: #1f2937;
	font-weight: 700;
}

.checkout-steps__item.is-active .checkout-steps__num,
.checkout-steps__item.is-done .checkout-steps__num {
	background: var(--ch-navy);
	color: #ffffff;
}

.checkout-steps__label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.checkout-layout {
	display: grid;
	gap: 2rem;
	align-items: start;
}

.checkout-layout__main,
.checkout-card {
	background: #ffffff !important;
	padding: 2rem 1.75rem 2.25rem;
	border-radius: 8px;
	overflow: visible;
}

.checkout-section {
	margin: 0 0 2.25rem;
}

.checkout-layout__main .checkout-section:last-child {
	margin-bottom: 0;
}

.checkout-section__title,
.checkout-box__title {
	margin: 0 0 1.15rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #222222;
}

.checkout-form {
	width: 100%;
}

.checkout-field {
	display: grid;
	gap: 0.4rem;
	position: relative;
	margin: 0 0 1.05rem;
}

.checkout-field label,
.checkout-field legend,
.checkout-field__label {
	font-size: 14px;
	font-weight: 600;
	color: #222222;
}

.checkout-field input[type="text"]:not(.np-search-input),
.checkout-field input[type="tel"],
.checkout-field input[type="email"],
.checkout-field select,
.checkout-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.9rem;
	border: 1px solid #d1d5db;
	border-radius: 2px;
	background: #ffffff;
	color: var(--ch-text);
	font: inherit;
	appearance: none;
	color-scheme: light;
}

.checkout-field select {
	background: #f5f5f5;
	border: 1px solid #ddd;
	color: #333;
}

.checkout-field select:disabled {
	background: #f8f8f8;
	color: #888;
	cursor: not-allowed;
	border: 1px solid #e0e0e0;
}

.checkout-field input[type="text"]:not(.np-search-input):focus,
.checkout-field input[type="tel"]:focus,
.checkout-field input[type="email"]:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
	outline: 0;
	border-color: #94a3b8;
}

.checkout-field--chevron input[type="text"],
.checkout-field--chevron select {
	padding-right: 2.5rem;
	background-color: #f5f5f5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	background-size: 12px 8px;
	color-scheme: light;
}

.checkout-field textarea {
	min-height: 96px;
	resize: vertical;
}

.checkout-field input.is-invalid,
.checkout-field select.is-invalid,
.checkout-field textarea.is-invalid {
	border-color: #c1121f;
	box-shadow: inset 0 0 0 1px #c1121f;
}

.checkout-field__error {
	min-height: 1.1em;
	font-size: 13px;
	font-weight: 600;
	color: #c1121f;
}

.checkout-field--radios {
	border: 0;
	padding: 0;
	margin: 0 0 1rem;
	gap: 0.95rem;
}

.checkout-radio {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
}

.checkout-radio input[type="radio"] {
	appearance: none;
	width: 18px;
	height: 18px;
	margin: 0.2rem 0 0;
	flex-shrink: 0;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	background: #ffffff;
}

.checkout-radio input[type="radio"]:checked {
	border-color: var(--ch-navy);
	background: radial-gradient(circle, var(--ch-navy) 0 5px, #ffffff 6px 100%);
}

.checkout-radio__body {
	display: grid;
	gap: 0.3rem;
}

.checkout-radio__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
	color: #1f2937;
}

.checkout-radio__hint {
	font-size: 13px;
	color: var(--ch-muted);
	font-weight: 400;
}

.checkout-wfp {
	display: inline-flex;
	align-items: center;
	padding: 0.18rem 0.45rem 0.12rem;
	background: #1a3c8b;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.checkout-city {
	position: relative;
}

.checkout-field--np,
.checkout-field--suggest {
	overflow: visible;
	z-index: auto;
}

.checkout-field--np:has(.np-select.is-open) {
	z-index: 80;
}

.np-select {
	position: relative;
	display: block;
	z-index: 1;
}

.np-select.is-open {
	z-index: 80;
}

.np-select__trigger {
	width: 100%;
	min-height: 48px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 12px 16px;
	color: #333;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font: inherit;
	text-align: left;
	appearance: none;
	color-scheme: light;
}

.np-select__value {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.np-select__value.is-placeholder {
	color: #888;
}

.np-select__chevron {
	flex-shrink: 0;
	width: 12px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555555' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 8px no-repeat;
	transition: transform 0.15s ease;
}

.np-select.is-open .np-select__chevron {
	transform: rotate(180deg);
}

.np-select.is-disabled .np-select__trigger,
.np-select__trigger:disabled {
	background: #f8f8f8;
	color: #888;
	cursor: not-allowed;
	border: 1px solid #e0e0e0;
	box-shadow: none;
}

.np-select.is-disabled .np-select__value,
.np-select.is-disabled .np-select__value.is-placeholder {
	color: #888;
}

.np-select.is-invalid .np-select__trigger {
	border-color: #c1121f;
	box-shadow: inset 0 0 0 1px #c1121f;
}

.np-select__dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	width: 100%;
	margin: 0;
	padding: 8px;
	z-index: 90;
	box-sizing: border-box;
	background: #ffffff !important;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
	pointer-events: auto;
}

.np-select__dropdown[hidden] {
	display: none !important;
}

.np-select.is-open .np-select__dropdown:not([hidden]):not(.is-floating) {
	display: block;
}

.np-select__dropdown.is-floating {
	position: fixed !important;
	right: auto;
	z-index: 100050;
	display: flex !important;
	flex-direction: column;
	overflow: hidden;
}

.np-search-input {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	min-height: 40px;
	margin: 0 0 6px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #ffffff !important;
	color: #333;
	font: inherit;
	font-size: 15px;
	appearance: none;
	color-scheme: light;
}

.np-search-input:focus {
	outline: 0;
	border-color: #bbb;
}

.np-select__list {
	flex: 1 1 auto;
	min-height: 0;
	max-height: 220px;
	overflow-y: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #ffffff;
}

.np-select__list li {
	padding: 10px 12px;
	cursor: pointer;
	color: #222;
	border-radius: 4px;
	transition: background 0.15s;
}

.np-select__list li:hover,
.np-select__list li.is-active {
	background: #f0f0f0;
}

.np-select__list mark {
	padding: 0;
	background: #ffe08a;
	color: inherit;
	font-weight: 700;
}

.np-select__empty {
	padding: 10px 12px;
	color: #888;
	font-size: 14px;
}

.checkout-suggest {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 100%;
	z-index: 99999;
	margin: 0;
	padding: 0.25rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	max-height: 220px;
	overflow-y: auto;
}

.checkout-suggest:not([hidden]) {
	display: block;
}

.checkout-suggest li {
	padding: 10px 12px;
	cursor: pointer;
	color: #222;
	transition: background 0.15s;
}

.checkout-suggest li:hover,
.checkout-suggest li:focus,
.checkout-suggest li.is-active {
	background: #f0f0f0;
}

.checkout-suggest mark {
	padding: 0;
	background: #ffe08a;
	color: inherit;
	font-weight: 700;
}

.checkout-form__status {
	margin: 0 0 0.85rem;
	min-height: 1.2em;
	font-size: 15px;
	color: var(--ch-muted);
}

.checkout-form__submit {
	width: 100%;
	min-height: 54px;
	padding: 0.95rem 1.25rem;
	border: 0;
	border-radius: 0;
	background: var(--ch-navy);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.checkout-form__submit:hover,
.checkout-form__submit:focus-visible {
	background: var(--ch-navy-hover);
	color: #ffffff;
}

.checkout-form__submit:disabled {
	opacity: 0.7;
}

.checkout-box {
	--ticket: #ffffff;
	position: relative;
	background: #ffffff;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
	padding: 2.25rem 2rem;
	margin: 0.85rem 0 2rem;
}

.checkout-box::before,
.checkout-box::after {
	content: "";
	position: absolute;
	left: -1px;
	right: -1px;
	height: 12px;
	pointer-events: none;
	background-repeat: repeat-x;
	background-size: 16px 12px;
}

.checkout-box::before {
	top: -11px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12'%3E%3Cpath fill='%23ffffff' d='M0 12L8 1l8 11H0z'/%3E%3Cpath fill='none' stroke='%23e5e7eb' stroke-width='1' d='M0 12L8 1l8 11'/%3E%3C/svg%3E");
}

.checkout-box::after {
	bottom: -11px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12'%3E%3Cpath fill='%23ffffff' d='M0 0l8 11L16 0H0z'/%3E%3Cpath fill='none' stroke='%23e5e7eb' stroke-width='1' d='M0 0l8 11L16 0'/%3E%3C/svg%3E");
}

.checkout-box__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin: 0 0 1rem;
	font-size: 15px;
}

.checkout-box__row--ship {
	margin: 0 0 1.15rem;
	padding-bottom: 1.05rem;
	border-bottom: 1px solid #e5e7eb;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b7280;
}

.checkout-box__row--total {
	margin: 0;
	align-items: baseline;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #111827;
}

.checkout-box__row--total strong {
	font-size: 1.55rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.checkout-thankyou {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.checkout-thankyou__title {
	margin: 0 0 0.75rem;
	font-family: var(--ch-font-display);
	text-transform: uppercase;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.checkout-thankyou__text {
	margin: 0 0 1.5rem;
	color: var(--ch-muted);
}

.checkout-thankyou__summary {
	display: grid;
	gap: 0.75rem 1rem;
	margin: 0 0 1.75rem;
	padding: 1.25rem 1.5rem;
	text-align: left;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-thankyou__summary > div {
	display: grid;
	grid-template-columns: minmax(8rem, 40%) 1fr;
	gap: 0.5rem 1rem;
}

.checkout-thankyou__summary dt {
	margin: 0;
	color: var(--ch-muted);
	font-weight: 400;
}

.checkout-thankyou__summary dd {
	margin: 0;
	font-weight: 600;
}

/* Footer */
.site-footer {
	padding: 48px 0 32px;
	border-top: 0;
	color: #d0d0d0;
	font-size: 14px;
	background: #1c1c1c;
	max-width: 100%;
	overflow-x: clip;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem 2rem;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-footer .site-logo img {
	width: 88px;
	height: auto;
	max-width: 100%;
}

.site-footer__cluster {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.7rem;
	max-width: min(100%, 42rem);
}

.footer__title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.35;
	color: #f2f2f2;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.footer__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 0.55rem;
	background: var(--ch-accent);
}

.site-footer nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.35rem 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 36rem;
}

.site-footer a {
	text-decoration: none;
	color: #f2f2f2;
	font-size: 16px;
	line-height: 1.45;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #ffffff;
}

.site-footer__copy {
	margin: 0.35rem 0 0;
	text-align: left;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.checkout-page--thank-you {
	padding-top: 40px;
}

/* 404 */
.error-404 {
	background: #ffffff;
	min-height: calc(100vh - 84px);
}

.error-404__section {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	background: #ffffff;
	padding: 96px 0;
}

.error-404__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 36rem;
}

.error-404__title {
	margin: 0 0 1rem;
	font-family: var(--ch-font-display);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.1rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.15;
	color: var(--ch-text);
}

.error-404__text {
	margin: 0 0 2rem;
	color: var(--ch-muted);
}

/* Legal / info pages */
.legal-page {
	background: var(--ch-bg);
}

.legal-page__section {
	padding: 72px 0 96px;
}

.legal-page__inner {
	max-width: 760px;
	margin-inline: auto;
}

.legal-page__title,
.legal-page__inner > h1 {
	margin: 0 0 1.75rem;
	font-family: var(--ch-font-display);
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3.1rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--ch-text);
}

.legal-page__title::after,
.legal-page__inner > h1::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 0.75rem;
	background: var(--ch-accent);
}

.legal-page__inner h2,
.legal-page__inner h3 {
	margin: 2rem 0 0.85rem;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ch-text);
}

.legal-page__inner h3 {
	font-size: 1.2rem;
}

.legal-page__inner p,
.legal-page__inner li {
	margin: 0 0 1rem;
	color: var(--ch-text);
	font-size: 18px;
	line-height: 1.65;
}

.legal-page__inner a {
	color: var(--ch-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-page__inner a:hover,
.legal-page__inner a:focus-visible {
	color: var(--ch-accent-hover);
}

.legal-page__list,
.legal-page__inner ul {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
}

.legal-page__list ul,
.legal-page__inner ul ul {
	margin: 0.5rem 0 0;
	padding-left: 1.25rem;
}

.legal-page__inner strong {
	font-weight: 700;
	color: var(--ch-text);
}

.legal-page__contacts {
	margin: 1.5rem 0 0;
	display: grid;
	gap: 1rem;
}

.legal-page__contacts > div {
	display: grid;
	gap: 0.2rem;
}

.legal-page__contacts dt {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ch-muted);
}

.legal-page__contacts dd {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.intro__grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.intro .video-grid--three {
		display: flex;
		flex-direction: column;
	}

	.video-grid--three {
		grid-template-columns: 1fr 1fr;
	}

	.contents__layout,
	.checkout-preview__layout,
	.checkout-layout {
		grid-template-columns: 1fr 1fr;
	}

	.contents__map {
		position: sticky;
		top: 100px;
		align-self: stretch;
		min-height: 100%;
	}

	.contents__copy .section__title {
		text-align: left;
	}

	.maps-slider__slide img {
		min-height: 280px;
		padding: 0.6rem;
	}
}

@media (min-width: 1024px) {
	.checkout-layout {
		grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
		gap: 3rem;
	}

	.videos .video-grid--three {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.quote blockquote {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		text-align: left;
	}

	.quote blockquote p {
		margin: 0;
	}

	.quote blockquote p + p {
		margin-top: 0;
	}

	.videos .section__title {
		letter-spacing: 0.02em;
		font-size: clamp(1.75rem, 2.4vw, 2.6rem);
	}

	.maps-slider__slide img {
		min-height: 320px;
		padding: 0.75rem;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 0;
		width: 100%;
		aspect-ratio: 16 / 9;
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
	}

	.hero__inner {
		min-height: 0;
		height: 100%;
	}

	.checkout-steps {
		overflow: visible;
	}

	.checkout-steps__item {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0.3rem;
		padding: 0.7rem 0.35rem;
		font-size: 11px;
		text-align: center;
	}

	.checkout-steps__item:not(:last-child)::after {
		display: none;
	}

	.checkout-steps__num {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.checkout-steps__label {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
		line-height: 1.2;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.nav-toggle {
		display: block;
		z-index: 2;
	}

	.site-header__inner {
		padding-left: 88px;
	}

	.site-header .site-logo {
		left: -12px;
		top: 0;
	}

	.site-header .site-logo img {
		width: 72px;
	}

	.nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 100000;
		background: rgba(0, 0, 0, 0.55);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.nav-overlay.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 16px;
		right: 16px;
		z-index: 2;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		cursor: pointer;
		padding: 0;
	}

	.nav-close span,
	.nav-close span::before,
	.nav-close span::after {
		display: block;
		width: 22px;
		height: 2px;
		background: var(--ch-text);
		position: relative;
	}

	.nav-close span {
		background: transparent;
	}

	.nav-close span::before,
	.nav-close span::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
	}

	.nav-close span::before {
		transform: rotate(45deg);
	}

	.nav-close span::after {
		transform: rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		width: 76%;
		max-width: none;
		height: 100vh;
		height: 100dvh;
		z-index: 100001;
		background: #ffffff;
		padding: 5.5rem 1.5rem 2rem;
		visibility: visible;
		opacity: 1;
		transform: translateX(100%);
		pointer-events: none;
		transition: transform 0.3s ease;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		box-shadow: -12px 0 32px rgba(0, 0, 0, 0.18);
		box-sizing: border-box;
	}

	.site-nav.is-open {
		transform: translateX(0);
		pointer-events: auto;
	}

	.site-nav ul {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 0;
	}

	.site-nav li {
		display: block;
		width: 100%;
	}

	.site-nav a {
		display: block;
		width: 100%;
		padding: 0.85rem 0;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.4;
		color: var(--ch-text);
	}

	.maps-slider__stage {
		padding-inline: 44px;
	}

	.maps-slider__nav {
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
	}

	.maps-slider__prev {
		left: 0;
	}

	.maps-slider__next {
		right: 0;
	}

	.maps-slider__dots.swiper-pagination,
	.maps-slider__dots {
		position: static;
		margin-top: 1.5rem;
	}

	.checkout-preview__layout {
		justify-items: center;
		text-align: center;
	}

	.checkout-preview__cover,
	.checkout-preview__info {
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.checkout-preview__meta {
		text-align: center;
	}

	.checkout-preview__buy {
		align-items: center;
		width: 100%;
	}

	.checkout-preview__price {
		justify-content: center;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.checkout-box__row--total {
		font-size: 1.15rem;
	}

	.checkout-box__row--total strong {
		font-size: 1.3rem;
	}
}

.form-group,
.np-field-wrapper,
.checkout-step {
	background: transparent !important;
}

.np-select-trigger,
.np-city-trigger,
.np-warehouse-trigger,
.np-select__trigger {
	background-color: #f5f5f5 !important;
	border: 1px solid #ddd !important;
	color: #333 !important;
	border-radius: 4px;
}

.np-warehouse-trigger[disabled],
.np-warehouse-trigger.disabled,
.np-select.is-disabled .np-select__trigger,
.np-select__trigger:disabled {
	background-color: #f8f8f8 !important;
	border: 1px solid #e0e0e0 !important;
	color: #888 !important;
}
