/*
Theme Name: Veloura Glow
Theme URI: https://veloura-glow.co.uk
Author: Veloura Glow
Description: A boutique teeth-whitening studio theme for Veloura Glow, with a drill-down mobile menu and a fully responsive one-page homepage.
Version: 1.0.0
Text Domain: veloura-glow
*/

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

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-x: clip;
	scrollbar-gutter: stable;
	touch-action: pan-y;
}

body {
	margin: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 0;
	background: #fff;
	color: #000;
	padding: 12px 20px;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
	position: fixed;
}

body.no-scroll {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
   Design tokens
------------------------------------------------------------------------- */
@font-face {
	font-family: 'Higuen Serif';
	src: url('assets/fonts/Higuen-Serif.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Jost';
	src: url('assets/fonts/jost-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('assets/fonts/playfair-display-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('assets/fonts/playfair-display-italic-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Give You Glory';
	src: url('assets/fonts/give-you-glory-latin.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-bg: #f7f1ed;
	--color-bg-alt: #f3ebe4;
	--color-surface: #ffffff;
	--color-text: #292421;
	--color-text-muted: #6f6058;
	--color-brand: #9a684b;
	--color-brand-dark: #7f5339;
	--color-brand-light: #e9d3c6;
	--color-blush: #ecdfd4;
	--color-border: #e6dbd1;
	--color-band: #eae0d7;
	--color-error: #a44f33;
	--color-error-bg: #f8ebe4;
	--color-error-border: #e3b4a0;

	--font-display: 'Higuen Serif', 'Playfair Display', 'Georgia', serif;
	--font-heading: 'Playfair Display', 'Georgia', serif;
	--font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-script: 'Give You Glory', cursive;

	--container-width: 1180px;
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 10px;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	font-size: 16px;
	font-weight: 300;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
	line-height: 1.15;
}

h1,
h2 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.01em;
}

p {
	margin: 0;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: 24px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-brand);
	margin: 0 0 10px;
}

.section-title {
	font-size: clamp(28px, 4vw, 38px);
}

.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.tag-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-brand);
	color: #fff;
	padding: 11px 30px;
	border-radius: 8px;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

/* The pricing label sits centred on a hairline that spans the container. */
.section-heading--rule {
	position: relative;
	margin-bottom: 34px;
}

.section-heading--rule::before {
	content: '';
	position: absolute;
	inset-inline: 0;
	top: 50%;
	border-top: 1px solid var(--color-border);
}

/* -------------------------------------------------------------------------
   Buttons
------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	border: 1.5px solid transparent;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--color-brand);
	color: #fff;
	box-shadow: 0 8px 20px -8px rgba(150, 101, 76, 0.6);
}

.btn--primary:hover {
	background: var(--color-brand-dark);
}

.btn--outline {
	background: transparent;
	border-color: var(--color-brand);
	color: var(--color-brand);
}

.btn--outline:hover {
	background: var(--color-brand);
	color: #fff;
}

.btn--sm {
	padding: 10px 20px;
	font-size: 16px;
}

.btn--block {
	display: flex;
	width: 100%;
}

/* -------------------------------------------------------------------------
   Header
------------------------------------------------------------------------- */
.site-header {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	border-bottom: none;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 16px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-logo__image {
	width: auto;
	height: 72px;
	object-fit: contain;
}

.site-logo__image--footer {
	height: 84px;
}

/* Desktop nav */
.site-nav {
	display: none;
}

/* Scoped to .site-nav so this desktop layout never leaks into the mobile
   drill-down copy of the same menu markup (see .mobile-menu__panels below). */
.site-nav .primary-menu {
	display: flex;
	align-items: center;
	gap: 36px;
}

.site-nav .primary-menu > li {
	position: relative;
}

.site-nav .primary-menu > li > a {
	font-size: 15px;
	font-weight: 400;
	color: var(--color-text);
	padding: 8px 0;
}

.site-nav .primary-menu > li > a:hover {
	color: var(--color-brand);
}

.site-nav .primary-menu li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-bottom: 2px;
}

.site-nav .primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 10px;
	min-width: 200px;
	box-shadow: 0 16px 32px -16px rgba(44, 33, 27, 0.2);
}

.site-nav .primary-menu li.menu-item-has-children:hover > .sub-menu,
.site-nav .primary-menu li.menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.site-nav .primary-menu .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 16px;
}

.site-nav .primary-menu .sub-menu a:hover {
	background: var(--color-bg);
	color: var(--color-brand);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-header__cta {
	padding: 14px 26px;
	font-size: 13px;
}

/* Hamburger */
.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
}

.menu-toggle__box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.menu-toggle__bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   Mobile drill-down menu
------------------------------------------------------------------------- */
.mobile-menu__overlay {
	position: fixed;
	inset: 0;
	background: rgba(44, 33, 27, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 199;
}

.mobile-menu__overlay.is-open {
	opacity: 1;
	visibility: visible;
}

/* display:none until first opened so the off-canvas panel (translated
   fully off-screen) never contributes to the document's scrollable width
   on mobile — a fixed + translateX element can otherwise force a
   horizontal scrollbar even though it's visually off-screen. */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: var(--color-surface);
	z-index: 200;
	display: none;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -20px 0 40px -20px rgba(44, 33, 27, 0.3);
}

.mobile-menu.is-visible {
	display: flex;
}

.mobile-menu.is-open {
	transform: translateX(0);
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px;
	border-bottom: 1px solid var(--color-border);
	flex-shrink: 0;
}

.mobile-menu__header .site-logo__image {
	height: 46px;
}

.mobile-menu__close {
	font-size: 28px;
	line-height: 1;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
}

.mobile-menu__panels {
	position: relative;
	flex: 1;
	overflow: hidden;
}

/* Each level (root + every sub-menu) becomes a full panel that slides in
   from the right and stacks on top of the previous level. */
.menu-panel {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	padding: 12px 12px 24px;
	background: var(--color-surface);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 1;
}

.menu-panel--root {
	transform: translateX(0);
	z-index: 0;
}

.menu-panel.is-active {
	transform: translateX(0);
	z-index: 2;
}

.mobile-menu__panels li {
	border-bottom: 1px solid var(--color-border);
}

.menu-panel > li:last-child {
	border-bottom: none;
}

.mobile-menu__panels a {
	display: block;
	padding: 16px 8px;
	font-size: 16px;
}

.mobile-menu__panels .menu-item-has-children {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.mobile-menu__panels .menu-item-has-children > a {
	flex: 1;
}

.menu-panel__open {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
	font-size: 20px;
}

.menu-panel__back-row {
	border-bottom: 1px solid var(--color-border) !important;
	margin-bottom: 4px;
}

.menu-panel__back {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	width: 100%;
	font-weight: 500;
	color: var(--color-brand);
}

.menu-panel__back-icon {
	font-size: 22px;
	line-height: 1;
}

.mobile-menu__footer {
	padding: 20px;
	border-top: 1px solid var(--color-border);
	flex-shrink: 0;
}

.mobile-menu__footer .btn {
	width: 100%;
}

/* -------------------------------------------------------------------------
   Hero
------------------------------------------------------------------------- */
.hero {
	background-color: #faf4f0;
	overflow: hidden;
	position: relative;
	isolation: isolate;
	min-height: clamp(620px, 92vh, 860px);
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 35%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	top: 280px;
	right: 24%;
	height: 100%;
	aspect-ratio: 979 / 1282;
	background: url('assets/images/placeholders/flowers-bg.png') top right / cover no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.2; /* Adjust this value from 0 to 1 */
	pointer-events: none;
	z-index: 2;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
	padding-block: 88px 18px;
	min-height: inherit;
}

.hero__content {
	position: relative;
	z-index: 3;
	width: min(60%, 620px);
	padding: clamp(22px, 5vw, 88px) 0 clamp(24px, 4vw, 52px);
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero .eyebrow {
	margin-bottom: 16px;
	font-size: 16px;
	letter-spacing: 0.18em;
}

.hero__title {
	font-size: clamp(30px, 7.4vw, 64px);
	text-transform: uppercase;
	letter-spacing: 0.005em;
	line-height: 0.92;
	margin-bottom: 18px;
}

.hero__text {
	color: #000000;
	font-size: clamp(15px, 1.55vw, 18px);
	max-width: 35ch;
	margin-bottom: 28px;
	line-height: 1.5;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 28px;
}

.hero__badges {
	display: flex;
	justify-content: flex-start;
	gap: 18px 18px;
	flex-wrap: wrap;
	padding-bottom: 0;
}

.hero-badge {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 9px;
	flex: 1 1 140px;
	max-width: 180px;
	align-items: end;
}

.hero-badge__icon {
	width: 48px;
	height: 48px;
	    border-radius: 12px;
	border: 1.5px solid var(--color-brand);
	color: var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* The confidence icon already draws its own circle, so it skips the ring. */
.hero-badge__icon--bare {
	border: none;
}

.hero-badge__icon .vg-icon {
	width: 26px;
	height: 26px;
}

.hero-badge__icon--bare .vg-icon {
	width: 38px;
	height: 38px;
}

.hero-badge__icon img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
}

.hero-badge__label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: left;
	line-height: 1.45;
}

.hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	z-index: 1;
	pointer-events: none;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right 18%;
}

.hero__sticker {
	position: absolute;
	top: 12% !important;
	left: -18px !important;
	width: 200px !important;
	height: auto !important;
	object-fit: contain;
	filter: drop-shadow(0 12px 24px rgba(44, 33, 27, 0.18));
}

.hero__script {
	position: absolute;
	right: 28px;
	bottom: clamp(18px, 3vw, 42px);
	font-family: var(--font-script);
	font-size: clamp(28px, 3.8vw, 48px);
	line-height: 0.92;
	color: #fff;
	margin: 0;
	max-width: 55%;
	text-align: right;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

/* -------------------------------------------------------------------------
   Before / after compare
------------------------------------------------------------------------- */
.compare {
	position: relative;
	padding-block: 32px;
}

/* Shared floral backdrop — same strength as the hero ::after. */
.why-choose::before,
.faq::before {
	content: '';
	position: absolute;
	inset: 0;
	mix-blend-mode: multiply;
	opacity: 0.2; /* Adjust this value from 0 to 1 */
	pointer-events: none;
	z-index: -1;
	width: 400px;
}

.compare::before,
.pricing::before {
	background: url('assets/images/placeholders/flowers-right.png') right center / contain no-repeat;
}

.why-choose::before,
.faq::before {
	background: url('assets/images/placeholders/flowers-left.png') left center / contain no-repeat;
}


.compare__inner {
	position: relative;
}

.compare__pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.compare__photo {
	position: relative;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-blush);
}

.compare__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.compare__tag {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-band);
	padding: 9px 40px;
	font-family: var(--font-display);
	font-size: 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text);
	z-index: 2;
}

.compare__control {
	position: absolute;
	top: 50%;
	left: 50.2%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	border-radius: 9999px;
	background: var(--color-brand);
	color: var(--color-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px -8px rgba(44, 33, 27, 0.35);
	z-index: 3;
	outline: 3px solid;
}

.compare__slide {
	display: none;
}

.compare__slide.is-active {
	display: block;
}

/* -------------------------------------------------------------------------
   Pricing
------------------------------------------------------------------------- */
.pricing {
	padding: 72px 60px 0;
	position: relative;
	overflow: hidden;
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-bottom: 40px;
}

.price-card {
	position: relative;
	background: #fffdf9;
	border: 2px solid #ecdfd3;
	border-radius: 14px;
	padding: 14px 14px 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 18px 36px -32px rgba(44, 33, 27, 0.4);
}

/* The VG monogram sits faintly behind the price, like the reference. */
.price-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url('assets/images/placeholders/veloura-glow-logo.png') center 46% / 74% auto no-repeat;
	opacity: 0.045;
	pointer-events: none;
}

.price-card > * {
	position: relative;
	z-index: 1;
}

.price-card__header {
	background: #ecdbcd;
	border-radius: 6px;
	padding: 20px 16px;
	margin-bottom: 30px;
}

.price-card__name {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 24px;
}

.price-card__duration {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 24px;
	color: var(--color-text);
	margin: 0;
}

.price-card__price {
	font-family: var(--font-display);
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
	margin: 0 16px 18px;
}

.price-card__desc {
	color: #4d433d;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	flex: 1;
	margin: 0 16px 30px;
	text-align: left;
}

.price-card .btn--block {
	width: auto;
	margin-inline: 16px;
}

.feature-strip {
	background: #fbf6f2;
	border: 2px solid #ebdcd0;
	border-radius: 18px;
	padding: 42px 38px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 28px;
}

.feature-strip__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-strip__icon {
	color: var(--color-text);
	flex-shrink: 0;
	margin-top: 3px;
}

.feature-strip__icon .vg-icon {
	width: 48px;
	height: 48px;
}

.feature-strip__title {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 0.04em;
	line-height: 1.15;
	margin: 0 0 8px;
	color: var(--color-text);
	font-weight: 400;
}

.feature-strip__text {
	font-size: 16px;
	color: var(--color-text-muted);
	line-height: 1.45;
}

/* -------------------------------------------------------------------------
   Why choose
------------------------------------------------------------------------- */
.why-choose {
	position: relative;
	padding-block: 60px;
}

.why-choose__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.why-choose__media {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.why-choose__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-choose__script {
	position: absolute;
	bottom: 28px;
	left: 28px;
	font-family: var(--font-script);
	font-size: 34px;
	line-height: 1.25;
	max-width: 55%;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.why-choose__text {
	color: var(--color-text-muted);
	margin: 20px 0 24px;
	line-height: 1.7;
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 32px;
}

.checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
}

.checklist__icon {
	width: 24px;
	height: 24px;
	    border-radius: 12px;
	background: var(--color-brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   FAQ
------------------------------------------------------------------------- */
.faq {
	position: relative;
	background: #fdfaf7;
	padding-block: 80px;
}

.faq__list {
	margin: 0 auto 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq__item {
	background: #f5ece4;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	transition: background-color 0.2s ease;
}

.faq__item.is-open {
	background: #ebdcd0;
}

.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 28px;
	text-align: left;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 500;
	color: var(--color-text);
}

.faq__icon {
	flex-shrink: 0;
	color: var(--color-text);
	transition: transform 0.25s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.faq__item.is-open .faq__icon {
	transform: rotate(45deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}

.faq__answer p {
	padding: 0 28px 22px;
	color: var(--color-text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.faq__item.is-open .faq__answer {
	max-height: 240px;
}

.cta-banner {
	margin: 0 auto;
	background: #f5ece4;
	border-radius: 20px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: center;
	align-items: center;
}

.cta-banner h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(24px, 3.2vw, 32px);
	margin-bottom: 8px;
	color: var(--color-text);
}

.price-card .btn {
	border-radius: 10px;
}

.why-choose .btn {
	border-radius: 8px;
}

.cta-banner .btn {
	border-radius: 12px;
	padding: 16px 32px;
	font-size: 15px;
	box-shadow: 0 8px 24px -10px rgba(150, 101, 76, 0.45);
}

.cta-banner p {
	color: var(--color-text-muted);
	font-size: 15px;
	line-height: 1.5;
}

/* -------------------------------------------------------------------------
   Footer
------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-bg-alt);
	padding-block: 56px 0;
	margin-top: 0;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	padding-bottom: 40px;
}

.site-footer__tagline {
	margin-top: 14px;
	color: var(--color-text-muted);
	font-size: 16px;
}

.site-footer__heading {
	font-size: 16px;
	margin-bottom: 16px;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__links a {
	color: var(--color-text-muted);
	font-size: 16px;
}

.site-footer__links a:hover {
	color: var(--color-brand);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	color: var(--color-text-muted);
}

.site-footer__contact a {
	color: var(--color-text-muted);
}

.site-footer__contact a:hover {
	color: var(--color-brand);
}

.site-footer__icon {
	color: var(--color-text);
	margin-top: 2px;
	flex-shrink: 0;
	display: inline-flex;
}

.site-footer__heading {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.footer-map {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 24px -12px rgba(44, 33, 27, 0.25);
	transition: transform 0.2s ease, filter 0.2s ease;
	line-height: 0;
}

.footer-map:hover {
	transform: translateY(-2px);
	filter: brightness(1.02);
}

.footer-map img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}


.site-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-block: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
	font-size: 13px;
	color: var(--color-text-muted);
}

.site-footer__legal a {
	color: var(--color-text-muted);
}

.site-footer__legal a:hover {
	color: var(--color-brand);
}

/* -------------------------------------------------------------------------
   Generic page content (index.php / page.php fallback)
------------------------------------------------------------------------- */
.generic-content {
	padding-block: 60px;
	max-width: 800px;
}

.generic-content .entry-title {
	font-size: 32px;
	margin-bottom: 20px;
}

.generic-content .entry-content {
	line-height: 1.8;
	color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------
   Responsive
------------------------------------------------------------------------- */
@media (min-width: 640px) {
	.hero__badges {
		gap: 36px;
	}

	.pricing__grid {
		gap: 28px;
	}
}

@media (min-width: 782px) {
	.site-nav {
		display: block;
	}

	.site-header__cta {
		padding: 11px 22px;
		font-size: 16px;
	}

	.menu-toggle {
		display: none;
	}

	.hero__inner {
		padding-block: 104px 24px;
	}

	.hero__content {
		width: min(56%, 660px);
		padding-block: clamp(48px, 7vw, 112px) 48px;
	}

	.hero__title {
		margin-bottom: 20px;
	}

	.hero__text {
		margin-bottom: 32px;
		max-width: 42ch;
	}

	.hero__actions {
		flex-direction: row;
		align-items: center;
		gap: 16px;
		margin-bottom: 40px;
	}

	.hero__badges {
		gap: 26px 28px;
	}

	.hero-badge {
		flex: 0 1 auto;
		max-width: none;
		gap: 12px;
	}

	.hero__sticker {
		top: 19%;
		left: -44px;
		width: clamp(96px, 8.5vw, 112px);
	}

	.hero__script {
		right: 10%;
		bottom: 34px;
		font-size: clamp(34px, 4vw, 36px);
	}

	.why-choose__inner {
		grid-template-columns: 1fr 1.05fr;
		gap: 56px;
	}

	.site-footer__grid {
		grid-template-columns: 1.2fr 0.8fr 1fr 1.6fr;
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
		padding-block: 28px;
	}
}

@media (max-width: 860px) {
	.pricing__grid {
		grid-template-columns: 1fr;
	}

	.pricing .section-heading--rule {
		position: relative;
		z-index: 2;
		margin-bottom: -20px;
	}

	.pricing .section-heading--rule::before {
		display: none;
	}

	.pricing .tag-pill {
		background: linear-gradient(135deg, #b98a66, #8a5a3f);
		border-radius: 6px;
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 10px;
	}

	.price-card {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		column-gap: 12px;
		padding: 18px 16px 24px;
	}

	.price-card__header {
		text-align: left;
		padding: 10px 16px;
		border-radius: 10px;
		margin-bottom: 0;
		width: 95%;
	}

	.price-card__name {
		font-size: clamp(16px, 4.8vw, 16px);
		line-height: 1.25;
	}

	.price-card__duration {
		font-size: clamp(18px, 4.6vw, 18px);
		line-height: 1.25;
	}

	.price-card__price {
		font-size: clamp(40px, 10vw, 62px);
		align-self: center;
		margin: 0 4px 0 0;
	}

	.price-card__desc {
		grid-column: 1 / -1;
		font-size: 15px;
		margin: 18px 4px 24px;
	}

	.price-card .btn--block {
		grid-column: 1 / -1;
		margin-inline: 0;
	}

	.feature-strip {
		grid-template-columns: 1fr;
		padding: 32px 24px;
		gap: 28px;
	}
}

@media (max-width: 600px) {
	.site-footer__contact {
		align-items: center;
	}
	.site-logo {
		place-self: center;
		justify-content: center;
	}
	.site-footer__grid {
		text-align: center;
	}

	.pricing {
		padding: 10px 0 0;
	}
	.compare__pair {
		gap: 10px;
	}

	.cta-banner {
		text-align: center;
	}
}

@media (min-width: 601px) {
	.cta-banner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
		align-items: center;
	}
}

@media (min-width: 980px) {
	.hero__media {
		width: 50%;
	}
}

/* -------------------------------------------------------------------------
   Scroll reveal — JS adds .vg-reveal, observer toggles .is-visible
------------------------------------------------------------------------- */
.vg-reveal {
	opacity: 0;
	transition: opacity 0.7s ease var(--reveal-delay, 0s);
}

.vg-reveal.is-visible {
	opacity: 1;
}

/* Hero content animates in on page load (CSS-only, no JS needed). */
@keyframes vg-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hero__content > * {
	animation: vg-fade-in 0.8s ease both;
}

.hero__content > *:nth-child(2) {
	animation-delay: 0.08s;
}

.hero__content > *:nth-child(3) {
	animation-delay: 0.16s;
}

.hero__content > *:nth-child(4) {
	animation-delay: 0.24s;
}

.hero__content > *:nth-child(5) {
	animation-delay: 0.34s;
}

.hero__media {
	animation: vg-fade-in 1s 0.15s ease both;
}

@media (prefers-reduced-motion: reduce) {
	.vg-reveal {
		opacity: 1;
		transition: none;
	}

	.hero__content > *,
	.hero__media {
		animation: none;
	}
}

@media (max-width: 979px ) {
	.hero {
		min-height: 700px;
	}

	.hero__inner {
		padding-block: 96px 0;
	}

	.hero__content {
		width: 100%;
	}

	.hero .eyebrow {
		margin-top: auto;
		margin-bottom: 14px;
		font-size: 13px;
	}

	.hero__title {
		font-size: clamp(38px, 10.5vw, 52px);
		line-height: 0.95;
		margin-bottom: 18px;
	}

	.hero__text {
		font-size: 16px;
		max-width: 33ch;
		margin-bottom: 28px;
	}

	.hero__actions {
		margin-bottom: 0;
	}

	.hero__actions .btn {
		width: 60%;
		max-width: 320px;
		justify-content: center;
	}

	.hero__badges {
		width: 100%;
		margin-top: auto;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 8px;
		padding-bottom: 20px;
		flex-direction: column;
    	place-items: flex-start;
	}

	.hero-badge {
		flex: 1;
		max-width: none;
		justify-content: center;
	}

	.hero-badge__icon img {
		width: 44px;
		height: 44px;
	}

	.hero-badge__label {
		font-size: 11px;
	}

	.hero__script {
		display: none;
	}

	.hero-img {
		opacity: 0.2;
	}

	.hero::after {
		display: none;
	}

	.hero__sticker {
		top: 65% !important;
        left: unset !important;
        right: 4% !important;
        width: 130px !important;
	}
}

/* -------------------------------------------------------------------------
   Contact modal
------------------------------------------------------------------------- */
.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.contact-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(41, 36, 33, 0.55);
}

.contact-modal__dialog {
	position: relative;
	background: #fffdf9;
	border-radius: 18px;
	padding: 40px 36px 34px;
	width: min(480px, 100%);
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 30px 60px -20px rgba(44, 33, 27, 0.4);
	transform: translateY(14px);
	transition: transform 0.3s ease;
}

.contact-modal.is-open .contact-modal__dialog {
	transform: none;
}

.contact-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 36px;
	height: 36px;
	font-size: 28px;
	line-height: 1;
	color: var(--color-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-modal__close:hover {
	color: var(--color-text);
}

.contact-modal__title {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 400;
	margin: 0 0 22px;
}

.contact-modal__field {
	margin-bottom: 16px;
}

.contact-modal__field label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-brand);
	margin-bottom: 6px;
}

.contact-modal__field input,
.contact-modal__field textarea {
	width: 100%;
	font: inherit;
	font-size: 15px;
	color: var(--color-text);
	background: #fff;
	border: 1.5px solid var(--color-border);
	border-radius: 12px;
	padding: 12px 14px;
}

.contact-modal__field textarea {
	resize: none;
	min-height: 110px;
}

.contact-modal__field input:focus,
.contact-modal__field textarea:focus {
	outline: none;
	border-color: var(--color-brand);
}

.contact-modal__submit {
	width: 100%;
	justify-content: center;
}

.contact-modal__status {
	margin: 12px 0 0;
	font-size: 14px;
	text-align: center;
	color: var(--color-brand-dark);
}

/* -------------------------------------------------------------------------
   Consent form modal
------------------------------------------------------------------------- */
.consent-modal {
	position: fixed;
	inset: 0;
	z-index: 450;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consent-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.consent-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(41, 36, 33, 0.55);
}

.consent-modal__dialog {
	position: relative;
	background: #fffdf9;
	border-radius: 18px;
	padding: 32px 30px 30px;
	width: min(560px, 100%);
	max-height: 92vh;
	overflow-y: auto;
	box-shadow: 0 30px 60px -20px rgba(44, 33, 27, 0.4);
	transform: translateY(14px);
	transition: transform 0.3s ease;
}

.consent-modal.is-open .consent-modal__dialog {
	transform: none;
}

.consent-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 36px;
	height: 36px;
	font-size: 28px;
	line-height: 1;
	color: var(--color-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.consent-modal__close:hover {
	color: var(--color-text);
}

.consent-modal__head {
	display: flex;
	align-items: center;
	gap: 18px;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 18px;
	margin-bottom: 16px;
}

.consent-modal__logo {
	width: 84px;
	height: auto;
	flex-shrink: 0;
}

.consent-modal__kicker {
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin: 0 0 4px;
}

.consent-modal__title {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0;
}

.consent-modal__title-script {
	display: block;
	font-family: var(--font-script);
	font-size: 24px;
	text-transform: none;
	letter-spacing: 0;
	color: var(--color-brand);
	margin-top: -4px;
}

.consent-modal__tagline {
	font-size: 9px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-brand);
	margin: 6px 0 0;
}

.consent-modal__intro {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin: 0 0 4px;
}

.consent-form__section {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
	margin: 20px 0 10px;
}

.consent-form__hint {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: -6px 0 10px;
}

.consent-form__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px 12px;
}

.consent-form__grid > * {
	min-width: 0;
}

#consent-dob {
	min-height: 44px;
}

.consent-form__field label {
	display: block;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-brand);
	margin-bottom: 5px;
}

.consent-form__field input,
.consent-form__field textarea {
	width: 100%;
	font: inherit;
	font-size: 14px;
	color: var(--color-text);
	background: #fff;
	border: 1.5px solid var(--color-border);
	border-radius: 10px;
	padding: 10px 12px;
}

.consent-form__field textarea {
	resize: none;
}

/* iOS/Android date inputs keep an intrinsic min-width that overflows the
   grid cell — appearance:none + block removes it while keeping the picker. */
.consent-form__field input[type='date'] {
	display: block;
	min-width: 0;
	max-width: 100%;
	-webkit-appearance: none;
	appearance: none;
}

.consent-form__field input:focus,
.consent-form__field textarea:focus {
	outline: none;
	border-color: var(--color-brand);
}

.consent-history {
	margin-bottom: 14px;
}

.consent-history label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.45;
	margin-bottom: 8px;
	cursor: pointer;
}

.consent-history input[type='checkbox'],
.consent-box input[type='checkbox'],
.consent-declaration input[type='checkbox'] {
	margin-top: 2px;
	accent-color: var(--color-brand);
}

.consent-info {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1.2fr;
	gap: 10px;
	margin: 16px 0 12px;
}

.consent-info__col {
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 12px;
	font-size: 11.5px;
	line-height: 1.55;
	color: var(--color-text-muted);
}

.consent-info__col h5 {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text);
	margin: 0 0 8px;
}

.consent-info__col p {
	margin: 0 0 8px;
}

.consent-info__col strong {
	display: block;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text);
	margin-bottom: 2px;
}

.consent-info__check svg {
	width: 11px;
	height: 11px;
	vertical-align: -1px;
	margin-right: 4px;
	color: var(--color-brand);
}

.consent-info__col ul {
	margin: 0;
}

.consent-info__col li {
	margin-bottom: 6px;
}

.consent-boxes {
	display: flex;
	flex-direction: column;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 6px;
}

.consent-box {
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 12px;
	font-size: 11.5px;
	line-height: 1.55;
	color: var(--color-text-muted);
}

.consent-box h5 {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text);
	margin: 0 0 8px;
}

.consent-box p {
	margin: 0 0 6px;
}

.consent-box ul {
	margin: 0;
}

.consent-box li {
	margin-bottom: 5px;
}

.consent-box--confirm {
	background: var(--color-bg-alt);
}

.consent-box--confirm label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.consent-declaration p {
	font-size: 12px;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin: 0 0 10px;
}

.consent-declaration__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 500;
	cursor: pointer;
}

.consent-form__submit {
	width: 100%;
	justify-content: center;
	margin-top: 20px;
}

.consent-form__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--color-text-muted);
	margin: 12px 0 0;
}

.consent-form__secure svg {
	width: 12px;
	height: 12px;
	color: var(--color-brand);
}

@media (max-width: 600px) {
	.consent-modal {
		padding: 12px;
	}

	.consent-modal__dialog {
		padding: 24px 20px 22px;
	}

	.consent-modal__head {
		gap: 12px;
	}

	.consent-modal__logo {
		width: 64px;
	}

	.consent-modal__title {
		font-size: 19px;
	}

	.consent-modal__title-script {
		font-size: 19px;
	}

	.consent-form__grid,
	.consent-info,
	.consent-boxes {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* -------------------------------------------------------------------------
   Form errors — on-brand terracotta instead of harsh reds
------------------------------------------------------------------------- */
.consent-form__error {
	margin: 6px 0 0;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-error);
}

.consent-form__field input.has-error,
.consent-form__field input:user-invalid,
.contact-modal__field input:user-invalid,
.contact-modal__field textarea:user-invalid {
	border-color: var(--color-error);
	box-shadow: 0 0 0 3px rgba(164, 79, 51, 0.12);
}

.contact-modal__status.is-error,
.contact-modal__status.is-success {
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid;
}

.contact-modal__status.is-error {
	background: var(--color-error-bg);
	border-color: var(--color-error-border);
	color: var(--color-error);
}

.contact-modal__status.is-success {
	background: var(--color-brand-light);
	border-color: var(--color-brand);
	color: var(--color-brand-dark);
}

/* LatePoint booking modal — brand colours + matching corner radius. */
.latepoint-w {
	--latepoint-brand-primary: var(--color-brand);
	--latepoint-border-radius: 12px;
}

.latepoint-w .latepoint-message.latepoint-message-error,
.latepoint-w .os-form-message-w.status-error {
	background: var(--color-error-bg);
	border: 1px solid var(--color-error-border);
	border-radius: 12px;
	color: var(--color-error);
}

.latepoint-w .latepoint-message.latepoint-message-warning {
	background: var(--color-blush);
	border: 1px solid var(--color-brand-light);
	border-radius: 12px;
	color: var(--color-brand-dark);
}

.latepoint-w .item.item-type-error {
	color: var(--color-error);
}

/* Invalid fields inside the booking flow. */
.latepoint-w .os-invalid .os-form-control,
.latepoint-w .os-form-control.os-invalid,
.latepoint-w .os-form-group.os-invalid .os-form-control,
.latepoint-w .os-form-control.os-framed-field.invalid {
	border-color: var(--color-error) !important;
	box-shadow: 0 0 0 3px rgba(164, 79, 51, 0.12) !important;
}

.latepoint-w .os-invalid label,
.latepoint-w .os-form-group.os-invalid label {
	color: var(--color-error) !important;
}

.latepoint-w .os-invalid .os-form-control::placeholder,
.latepoint-w .os-form-control.os-invalid::placeholder {
	color: #cf9a86 !important;
}

/* -------------------------------------------------------------------------
   Contact card (right column of the FAQ section)
------------------------------------------------------------------------- */
.faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 440px);
	gap: 48px;
	align-items: start;
}

.faq__contact {
	position: sticky;
	top: 100px;
}

.contact-card {
	background: #fffdf9;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	padding: 30px 28px;
	box-shadow: 0 20px 45px -25px rgba(44, 33, 27, 0.25);
}

.contact-card__title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 400;
	margin: 4px 0 20px;
}

.contact-card__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.contact-card__field--full {
	grid-column: 1 / -1;
}

.contact-card__field label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-brand);
	margin-bottom: 6px;
}

.contact-card__field input,
.contact-card__field textarea {
	width: 100%;
	font: inherit;
	font-size: 15px;
	color: var(--color-text);
	background: #fff;
	border: 1.5px solid var(--color-border);
	border-radius: 12px;
	padding: 12px 14px;
}

.contact-card__field textarea {
	resize: none;
}

.contact-card__field input:focus,
.contact-card__field textarea:focus {
	outline: none;
	border-color: var(--color-brand);
}

.contact-card__field input:user-invalid,
.contact-card__field textarea:user-invalid {
	border-color: var(--color-error);
	box-shadow: 0 0 0 3px rgba(164, 79, 51, 0.12);
}

.contact-card__submit {
	width: 100%;
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 979px) {
	.faq__layout {
		grid-template-columns: 1fr;
	}

	.faq__contact {
		position: static;
	}
}

@media (max-width: 600px) {
	.contact-card {
		padding: 26px 20px;
	}
}

/* -------------------------------------------------------------------------
   404 page
------------------------------------------------------------------------- */
.not-found {
	padding: 120px 0 140px;
	text-align: center;
}

.not-found__script {
	font-family: var(--font-script);
	font-size: 30px;
	color: var(--color-brand);
	margin: 0;
}

.not-found__code {
	font-family: var(--font-display);
	font-size: clamp(90px, 18vw, 160px);
	line-height: 1;
	color: var(--color-brand);
	margin: 0 0 8px;
}

.not-found__title {
	font-family: var(--font-heading);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	margin: 0 0 14px;
}

.not-found__text {
	max-width: 46ch;
	margin: 0 auto 32px;
	font-size: 17px;
	color: var(--color-text-muted);
}

.not-found__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
