:root {
	--primary: #0c1218;
	--primary-soft: #1e2936;
	--accent: #b45309;
	--accent-mid: #c2410c;
	--accent-soft: #fef7ed;
	--light: #f5f3ef;
	--surface: #fffcf7;
	--border: #e0d9ce;
	--border-subtle: rgb(12 18 24 / 8%);
	--text: #3a3632;
	--text-muted: #6b645c;
	--white: #fffcf7;
	--error: #991b1b;
	--radius: 8px;
	--radius-sm: 4px;
	--shadow-sm: 0 1px 0 rgb(12 18 24 / 4%);
	--shadow: 0 2px 8px rgb(12 18 24 / 5%), 0 12px 40px rgb(12 18 24 / 7%);
	--max-info: 1040px;
	--max-book: 820px;
	font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
	color: var(--text);
	background: var(--light);
	line-height: 1.6;
	font-feature-settings: "kern" 1, "liga" 1;
}

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

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: rgb(194 65 12 / 22%);
	color: var(--primary);
}

body {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 400;
}

a {
	color: var(--primary-soft);
	text-decoration-thickness: max(1px, 0.07em);
	text-underline-offset: 0.12em;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--accent-mid);
}

h1,
h2,
h3,
.hero__title,
.info-section__heading,
.booking-section__title,
.products-section__heading,
.contact-section__heading,
.product-card__title,
.thankyou-panel__title {
	font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--primary);
}

h1,
h2,
h3 {
	line-height: 1.2;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--border-subtle);
	box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
}

.site-header__inner {
	max-width: var(--max-info);
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
	color: var(--primary);
}

.site-logo__img {
	display: block;
	height: 40px;
	width: auto;
	max-width: min(220px, 58vw);
	object-fit: contain;
}

@media (min-width: 600px) {
	.site-logo__img {
		height: 46px;
		max-width: 260px;
	}
}

.woocommerce-checkout .site-logo__img,
.woocommerce-order-received .site-logo__img {
	height: 40px;
	max-width: min(220px, 52vw);
}

.site-nav {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.site-header__menu-toggle {
	display: none;
	width: 2.6rem;
	height: 2.6rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: var(--surface);
	padding: 0.5rem;
	cursor: pointer;
}

.site-header__menu-toggle-line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--primary);
	margin: 0.26rem 0;
}

.site-header__mobile-panel {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-nav__link {
	text-decoration: none;
	font-weight: 600;
	color: var(--primary);
	font-size: 0.95rem;
}

.site-nav__link:hover {
	color: var(--accent-mid);
}

.lang-switch {
	display: flex;
	gap: 0.35rem;
}

.lang-switch__btn {
	border: 1px solid var(--border);
	background: var(--surface);
	padding: 0.4rem 0.75rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--text-muted);
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.lang-switch__btn:hover {
	border-color: var(--text-muted);
	color: var(--primary);
}

.lang-switch__btn--active {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--surface);
}

.hero {
	position: relative;
	min-height: min(72vh, 840px);
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: var(--hero-image), linear-gradient(155deg, #1a1510 0%, #0c1218 50%, #141c24 100%);
	background-size: cover;
	background-position: center 38%;
	background-repeat: no-repeat;
	color: var(--surface);
	text-align: center;
	padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgb(8 10 12 / 45%) 0%,
		rgb(12 18 24 / 72%) 45%,
		rgb(8 10 12 / 82%) 100%
	);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	max-width: 880px;
}

.hero__title {
	font-size: clamp(2.75rem, 6vw, 4.25rem);
	font-weight: 600;
	margin: 0 0 1.25rem;
	line-height: 1.05;
	color: var(--surface);
	text-wrap: balance;
}

.hero__sub {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-weight: 400;
	margin: 0 0 2rem;
	max-width: 36ch;
	margin-left: auto;
	margin-right: auto;
	color: rgb(255 252 247 / 88%);
	line-height: 1.55;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	text-decoration: none;
	font-family: inherit;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn--accent {
	background: var(--accent-mid);
	color: #fffef9;
	border-color: rgb(0 0 0 / 12%);
	box-shadow: var(--shadow-sm), 0 4px 14px rgb(194 65 12 / 28%);
}

.btn--accent:hover {
	background: #9a3412;
	color: #fff;
	box-shadow: var(--shadow-sm), 0 6px 20px rgb(154 52 18 / 25%);
}

.btn--primary {
	background: var(--primary);
	color: var(--surface);
	border-color: var(--primary);
}

.btn--primary:hover {
	background: var(--primary-soft);
	border-color: var(--primary-soft);
}

.btn--ghost {
	background: transparent;
	color: var(--primary);
	border-color: var(--border);
}

.btn--ghost:hover {
	background: rgb(12 18 24 / 4%);
	border-color: var(--text-muted);
}

.btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.btn__spinner {
	width: 1.15rem;
	height: 1.15rem;
	border: 2px solid rgb(255 255 255 / 35%);
	border-top-color: #fffef9;
	border-radius: 50%;
	animation: tg-spin 0.75s linear infinite;
}

.btn--accent .btn__spinner {
	border: 2px solid rgb(255 255 255 / 35%);
	border-top-color: #fffef9;
}

@keyframes tg-spin {
	to {
		transform: rotate(360deg);
	}
}

.info-section {
	padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
	background: var(--surface);
}

.info-section__inner {
	max-width: var(--max-info);
	margin: 0 auto;
}

.info-section__heading {
	text-align: center;
	font-size: clamp(1.85rem, 3.5vw, 2.35rem);
	margin: 0 0 2.5rem;
	font-weight: 600;
}

.info-section__lead {
	max-width: 860px;
	margin: -1.2rem auto 1.6rem;
	text-align: center;
	font-size: 1.05rem;
}

.info-usage {
	max-width: 900px;
	margin: 0 auto 1.9rem;
	padding: 1.2rem 1.3rem;
	background: #fff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
}

.info-usage__heading {
	margin: 0 0 0.45rem;
	text-align: center;
	font-size: 1.2rem;
}

.info-usage__text {
	margin: 0;
	text-align: center;
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.info-card {
	background: var(--light);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.5rem 1.4rem;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
	border-color: rgb(12 18 24 / 10%);
	box-shadow: var(--shadow);
}

.info-card__icon {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1;
	opacity: 0.9;
}

.info-card__title {
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
	font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
	font-weight: 600;
}

.info-card__text {
	margin: 0;
	color: var(--text);
	font-size: 1rem;
	line-height: 1.65;
}

.seo-benefits {
	max-width: 900px;
	margin: 1.1rem auto 0;
	text-align: center;
}

.seo-benefits__heading {
	text-align: center;
	margin: 0 0 1rem;
	font-size: 1.25rem;
}

.seo-benefits__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 1.15rem;
}

.seo-benefits__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	text-align: center;
}

.seo-benefits__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-mid);
	border: 1px solid color-mix(in srgb, var(--accent-mid) 32%, white);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
}

.seo-benefits__title {
	display: block;
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
}

.seo-benefits__text {
	margin: 0;
	max-width: 42rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
}

.howto-section {
	margin-top: 2rem;
}

.howto-section__heading {
	text-align: center;
	font-size: clamp(1.85rem, 3.5vw, 2.35rem);
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.howto-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.howto-card {
	background: #fff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1rem 1rem 1.05rem;
}

.howto-card__num {
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 999px;
	background: var(--accent-mid);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 0.55rem;
}

.howto-card__text {
	margin: 0;
	line-height: 1.6;
}

.howto-section__terms {
	margin: 0.95rem 0 0;
	font-size: 0.875rem;
	color: var(--text-muted);
	text-align: center;
}

.howto-section__terms a {
	color: inherit;
	text-decoration: underline;
}

.booking-section {
	padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem 4.5rem;
	background: linear-gradient(180deg, var(--light) 0%, var(--surface) 35%);
	/* Prevent mobile scroll anchoring from jumping to FAQ when step panels change height. */
	overflow-anchor: none;
}

.booking-section__inner {
	max-width: var(--max-book);
	margin: 0 auto;
}

.booking-section__title {
	text-align: center;
	margin: 0 0 1.75rem;
	font-size: clamp(1.75rem, 3vw, 2.1rem);
	font-weight: 600;
}

.card {
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow);
	padding: clamp(1.35rem, 3vw, 1.75rem);
}

.booking-wizard__steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.75rem;
	border-bottom: 1px solid var(--border);
	padding-bottom: 0;
}

.step-pill {
	flex: 1 1 22%;
	min-width: 120px;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	padding: 0.65rem 0.35rem 0.85rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.step-pill.is-active {
	border-bottom-color: var(--accent-mid);
	color: var(--primary);
}

.step-pill:disabled {
	cursor: default;
	opacity: 1;
}

.form-step[hidden] {
	display: none !important;
}

.form-grid {
	display: grid;
	gap: 1rem;
}

.form-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.device-pickers__intro {
	margin: 1.25rem 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text);
}

.device-pickers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.device-picker {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.15rem;
	background: var(--light);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	transition: border-color 0.15s ease;
}

.device-picker:focus-within {
	border-color: rgb(12 18 24 / 14%);
}

.device-picker__visual {
	flex-shrink: 0;
	width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--surface);
	border-radius: var(--radius-sm);
	padding: 0.5rem;
	border: 1px solid var(--border-subtle);
}

.device-picker__visual img {
	display: block;
	max-width: 100%;
	height: auto;
}

.device-picker__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.device-picker__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.device-picker__name {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
}

.device-picker__rate {
	margin: 0;
	font-size: 0.85rem;
}

.device-picker__info {
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.qty-stepper {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 0.35rem;
	max-width: 11rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--surface);
}

.qty-stepper__btn {
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background: var(--light);
	color: var(--primary);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s;
}

.qty-stepper__btn:hover {
	background: rgb(0 0 0 / 6%);
}

.qty-stepper__input {
	flex: 1;
	min-width: 0;
	height: 2.5rem;
	border: none;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	text-align: center;
	font: inherit;
	font-weight: 600;
	color: var(--text);
	background: var(--surface);
	-moz-appearance: textfield;
	appearance: textfield;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.thankyou-panel__actions {
	margin-top: 1.25rem;
	margin-bottom: 0;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.field--with-help {
	position: relative;
}

.field--with-help .info-btn {
	position: absolute;
	right: 0;
	top: 0;
}

.field--date {
	position: relative;
}

.field--date input[type="text"] {
	padding-right: 2.7rem;
}

.date-native-picker {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.date-trigger-btn {
	position: absolute;
	right: 0.55rem;
	top: 2.05rem;
	width: 1.9rem;
	height: 1.9rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: var(--surface);
	color: var(--text-muted);
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.date-trigger-btn:hover {
	color: var(--primary);
	border-color: var(--text-muted);
}

.field label,
.field legend {
	font-size: 0.9rem;
	font-weight: 600;
}

.courier-brand {
	display: inline-flex;
	align-items: center;
	margin: 0 0 0.55rem;
	padding: 0.4rem;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	background: #fff;
}

.courier-brand__logo {
	display: block;
	height: 2rem;
	width: auto;
}

.field input,
.field select,
.field textarea {
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font: inherit;
	color: var(--text);
	background: var(--surface);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
	border-color: rgb(12 18 24 / 18%);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--accent-mid);
	box-shadow: 0 0 0 3px rgb(194 65 12 / 12%);
}

.rate-hint {
	font-weight: 600;
	color: var(--accent-mid);
	font-variant-numeric: tabular-nums;
}

.info-btn {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--light);
	color: var(--primary);
	font-weight: 700;
	cursor: help;
	line-height: 1;
}

.price-summary {
	margin-top: 1.25rem;
	padding: 1.15rem 1.25rem;
	background: linear-gradient(160deg, var(--primary-soft) 0%, var(--primary) 100%);
	color: rgb(255 252 247 / 92%);
	border-radius: var(--radius);
	display: grid;
	gap: 0.4rem;
	border: 1px solid rgb(0 0 0 / 15%);
}

.price-summary__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.9375rem;
}

.price-summary__total {
	margin-top: 0.35rem;
	padding-top: 0.55rem;
	border-top: 1px solid rgb(255 255 255 / 18%);
	font-size: 1.1rem;
}

.price-summary .accent {
	color: #fcd34d;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.alert {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.95rem;
}

.alert--warn {
	background: var(--accent-soft);
	border: 1px solid rgb(251 191 36 / 35%);
	color: #7c2d12;
}

.alert--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: var(--error);
}

.confirm-box {
	background: var(--light);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.15rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 1rem;
}

.confirm-box .grand {
	font-size: 1.25rem;
	font-weight: 700;
	font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
	color: var(--accent-mid);
	margin-top: 0.75rem;
}

.field--checks .check,
.field--radio-group .check {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.35rem;
	margin: 0.5rem 0;
	font-weight: 500;
	cursor: pointer;
}

.field--radio-group legend {
	margin-bottom: 0.35rem;
}

.modal[hidden],
.thankyou-panel[hidden] {
	display: none !important;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(8 10 12 / 58%);
	backdrop-filter: blur(4px);
}

.modal__dialog {
	position: relative;
	z-index: 1;
	max-width: 420px;
	width: 100%;
	padding: 1.5rem 1.25rem 1.25rem;
}

.modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--text);
}

.modal__img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0.75rem 0;
	border-radius: 8px;
	border: 1px solid var(--border);
}

.contact-section {
	padding: clamp(3rem, 6vw, 4rem) 1.5rem 4.5rem;
	background: var(--surface);
	border-top: 1px solid var(--border-subtle);
}

.contact-section__inner {
	max-width: var(--max-info);
	margin: 0 auto;
	display: block;
}

.contact-section__heading {
	text-align: center;
	margin: 0 0 1.75rem;
}

.contact-panel {
	width: 100%;
	background: #fff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.2rem;
	box-shadow: var(--shadow-sm);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.contact-form {
	margin-top: 0;
	margin-bottom: 1rem;
	background: var(--light);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.1rem 1.15rem;
}

.contact-form__heading {
	margin: 0 0 0.75rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.9rem 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--border-subtle);
	background: #fff;
}

.contact-item__label {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contact-item__value {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--primary);
}

.contact-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
}

.contact-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(8 10 12 / 45%);
}

.contact-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(560px, 92vw);
	background: #fff;
	border-left: 1px solid var(--border-subtle);
	padding: 0.75rem 0.8rem 0.95rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.22s ease;
}

.contact-drawer.is-open .contact-drawer__panel {
	transform: translateX(0);
}

.contact-drawer__close {
	border: none;
	background: transparent;
	font-size: 1.7rem;
	line-height: 1;
	cursor: pointer;
	color: var(--text);
	float: right;
}

.contact-drawer__title {
	margin: 0 0 0.65rem;
}

.contact-drawer .contact-form {
	background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
	border-color: var(--border);
	padding: 0.75rem 0.8rem;
	margin-bottom: 0.7rem;
}

.contact-drawer .wpcf7 {
	margin-top: 0.15rem;
}

.contact-drawer .wpcf7 form {
	display: grid;
	gap: 0.4rem;
}

.contact-drawer .wpcf7 form > p {
	margin: 0;
}

.contact-drawer .wpcf7 label {
	display: block;
	font-weight: 600;
	font-size: 0.86rem;
	color: var(--primary);
	line-height: 1.25;
}

.contact-drawer .wpcf7 input[type="text"],
.contact-drawer .wpcf7 input[type="email"],
.contact-drawer .wpcf7 input[type="tel"],
.contact-drawer .wpcf7 textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--text);
	font: inherit;
	padding: 0.54rem 0.68rem;
	min-height: 2.15rem;
	margin-top: 0.28rem;
}

.contact-drawer .wpcf7 textarea {
	min-height: 5.2rem;
	resize: vertical;
}

.contact-drawer .wpcf7 input:focus,
.contact-drawer .wpcf7 textarea:focus {
	outline: none;
	border-color: var(--accent-mid);
	box-shadow: 0 0 0 3px rgb(194 65 12 / 12%);
}

.contact-drawer .wpcf7 .wpcf7-submit {
	background: var(--accent-mid);
	color: #fff;
	border: 1px solid rgb(0 0 0 / 12%);
	border-radius: var(--radius-sm);
	padding: 0.55rem 0.9rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	min-width: 7.5rem;
}

.contact-drawer .wpcf7 p {
	line-height: 1.3;
}

.contact-drawer .wpcf7 .wpcf7-submit:hover {
	background: #9a3412;
}

.site-footer {
	background: var(--primary);
	color: rgb(255 252 247 / 78%);
	padding: 2rem 1.5rem;
	text-align: center;
	border-top: 1px solid rgb(255 255 255 / 6%);
}

.site-footer__copy {
	margin: 0;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}

.site-footer__seo {
	max-width: 920px;
	margin: 0.75rem auto 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: rgb(255 252 247 / 70%);
}

.site-footer a {
	color: rgb(255 252 247 / 88%);
}

.thankyou-panel.card--thankyou {
	margin-top: 1rem;
	text-align: center;
}

.thankyou-panel__title {
	margin-top: 0;
}

.products-section {
	padding: clamp(2.75rem, 5vw, 4rem) 1.5rem;
	background: var(--surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.products-section__inner {
	max-width: var(--max-info);
	margin: 0 auto;
}

.products-section__heading {
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	margin: 0 0 1.5rem;
}

.product-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.product-card {
	background: #fff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
	border-color: rgb(12 18 24 / 12%);
	box-shadow: var(--shadow);
}

.product-card__media {
	display: block;
	text-align: center;
	margin-bottom: 0.75rem;
}

.product-card__media img {
	max-width: 100%;
	height: auto;
}

.product-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
}

.product-card__title a {
	text-decoration: none;
	color: var(--primary);
}

.product-card__title a:hover {
	color: var(--accent-mid);
}

.product-card__price {
	margin: 0 0 0.5rem;
	font-weight: 700;
	color: var(--primary);
	font-variant-numeric: tabular-nums;
}

.product-card__price .woocommerce-Price-amount {
	color: var(--accent-mid);
}

.product-card__per {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text);
}

.product-card__excerpt {
	margin: 0 0 1rem;
	flex-grow: 1;
	font-size: 0.95rem;
}

.product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.woo-page {
	padding: 2rem 1.5rem 4rem;
	background: var(--light);
}

.woo-page__inner {
	max-width: 920px;
	margin: 0 auto;
	background: var(--surface);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border-radius: var(--radius);
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow);
}

.woo-page .woocommerce-product-gallery {
	margin-bottom: 1.5rem;
}

.woo-page .summary {
	margin-bottom: 0;
}

.woo-page .tourguide-rental-cta {
	margin-top: 1.25rem;
}

.woo-page .tourguide-rental-cta .btn {
	width: 100%;
	max-width: 320px;
}

.woo-page .price {
	color: var(--primary);
	font-size: 1.35rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.woo-page .price .woocommerce-Price-amount {
	color: var(--accent-mid);
}

.legal-page {
	padding: 2.5rem 1.5rem 4rem;
	background: var(--light);
}

.legal-page__inner {
	max-width: 760px;
	margin: 0 auto;
	background: var(--surface);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border-radius: var(--radius);
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow);
}

.legal-page__title {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.5rem;
}

.booking-wizard.is-complete .booking-wizard__steps,
.booking-wizard.is-complete #tg-booking-form {
	display: none;
}

.faq-section {
	padding: clamp(2.25rem, 5vw, 3.2rem) 1.5rem 4rem;
	background: var(--light);
	border-top: 1px solid var(--border-subtle);
}

.faq-section__inner {
	max-width: var(--max-book);
	margin: 0 auto;
}

.faq-section__heading {
	text-align: center;
	margin: 0 0 1.4rem;
	font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}

.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1rem 1.1rem;
}

.faq-item__q {
	margin: 0 0 0.45rem;
	font-size: 1.05rem;
}

.faq-item__a {
	margin: 0;
	color: var(--text);
}

@media (max-width: 600px) {
	.step-pill {
		flex: 1 1 45%;
	}
}

@media (max-width: 860px) {
	.site-header__menu-toggle {
		display: inline-block;
	}

	.site-header__mobile-panel {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 0.35rem;
	}

	.site-header__inner.is-menu-open .site-header__mobile-panel {
		display: flex;
	}

	.site-header__inner.is-menu-open .site-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.7rem;
	}

	.site-header__inner.is-menu-open .lang-switch {
		padding-top: 0.25rem;
	}
}
