/* ==================================================
   AARVELLA SERVICE PAGES - GLOBAL DESIGN TOKENS
   ================================================== */

:root {
	--gold:#D4AF37;
	--gold2:#F2D675;
	--black:#070707;
	--charcoal:#111;
	--ivory:#F7F2E8;
	--muted:#B9B0A2;
	--glass:rgba(12, 12, 12, .58);
	--line:rgba(212, 175, 55, .24);
	--white:#fff;
	--shadow:0 24px 80px rgba(0, 0, 0, .42);
	--radius:28px;
	--ease:cubic-bezier(.2, .8, .2, 1);
	--transition: all 0.35s ease;
}
* {
	box-sizing:border-box
}
html {
	scroll-behavior:smooth
}
body {
	margin:0;
	background:var(--black);
	color:var(--ivory);
	font-family:Inter, Poppins, system-ui, -apple-system, Segoe UI, sans-serif;
	overflow-x:hidden
}
body.menu-open {
	overflow: hidden;
}
/* h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--gold); } */
h1, h2, h3 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	letter-spacing: -0.5px;
	color: var(--gold);
}
a {
	color:inherit;
	text-decoration:none
}
img {
	max-width:100%;
	display:block
}


/* ==================================================
   HEADER + NAVIGATION
   ================================================== */

section {
	scroll-margin-top: 100px; /* Adjust this value to match your header height */
}
header {
	position: absolute;
	top: 24px;
	left: 5%;
	width: 90%;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 3000;
}
.logo { 
	font-size: 2rem;
	letter-spacing: 4px;
	font-weight: bold;
	position: relative;
	z-index: 3001;
	background: transparent !important;
}

/* Logo Hyperlink Cleanup */
.logo-link {
	text-decoration: none;
	color: inherit;
}

.logo-link:hover .logo {
	text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}
.site-header {
	position: fixed;
	top: clamp(12px, 2vw, 22px);
	left: 0;
	width: 100%;
	z-index: 3000;
	padding-inline: clamp(14px, 3vw, 48px);
	box-sizing: border-box;

	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}
/* Hidden state */
.site-header.nav-hidden {
	transform: translateY(-140%);
	opacity: 0;
}

/* Visible state */
.site-header.nav-visible {
	transform: translateY(0);
	opacity: 1;
}
.nav-shell {
	position: relative;
	z-index: 2600;
	width: 100%;
	min-height: clamp(62px, 7vw, 76px);
	padding-inline: clamp(18px, 3vw, 42px);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(16px, 2.5vw, 36px);

	border-radius: clamp(14px, 1.5vw, 22px);
	background: rgba(10, 10, 10, 0.42);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	box-sizing: border-box;
}
.logo-link,
.logo {
	flex-shrink: 0;
}
.desktop-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2vw, 34px);
	min-width: 0;
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;

	border: none !important;
	box-shadow: none !important;
	overflow: visible;
}
.desktop-nav a {
	color: var(--white);
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 0.8rem;
	white-space: nowrap;
	text-transform: uppercase;
	background: transparent !important;
	box-shadow: none !important;
	position: relative;
	z-index: 2;
}
.desktop-nav a:hover {
	color: var(--gold);
}		
/* The Magic Fix: Flexbox Gap */
.desktop-nav {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
}
.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	left: auto;

	height: 100vh;
	min-width: 320px;
	width: 80%;

	z-index: 2500;

	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	padding: 0 60px;
	gap: 2.5rem;

	border-left: 1px solid rgba(212, 175, 55, 0.15);
	box-shadow: -40px 0 80px rgba(0,0,0,0.75);

	transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav a,
.mobile-nav a:visited,
.mobile-nav a:active {
	right: 0;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	letter-spacing: 2px;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	color: var(--white);
	text-decoration: none;
	display: block;
}
/* Keep links/buttons clean */
.desktop-nav a,
.mobile-nav a {
	background: transparent !important;
	box-shadow: none;
	position: relative;
	z-index: 1;
}

.desktop-nav button,
.mobile-nav button {
	position: relative;
	z-index: 2;
}
.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 2400;

	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.35s ease,
		visibility 0.35s ease;
}
body.menu-open .nav-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.nav-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.desktop-nav .btn-gold {
	height: 42px;
	min-width: 145px;
	padding: 0 22px;
	font-size: 0.78rem;
	flex-shrink: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mobile-nav .btn-gold {
	width: 100%;
	max-width: 260px;
	height: 48px;
	min-width: 220px;
	font-size: 0.95rem;
	margin-top: 1rem;
}
/* --- Hamburger Icon --- */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 3000; /* Ensure it stays above the overlay */
	position: relative;
}

.hamburger span {
	width: 30px;
	height: 2px;
	background-color: var(--gold);
	transition: all 0.4s ease;
	transform-origin: center;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
#crm-booking-widget {
	max-width: 500px;
	margin: 40px auto;
	padding: 30px 20px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	background: linear-gradient(145deg, #111, #0a0a0a);
	text-align: center;
	border-radius: 10px;
}
/* Fix text spacing */
.booking-note {
	margin-bottom: 20px;
	font-size: 0.95rem;
	opacity: 0.8;
	line-height: 1.6;
}

/* Buttons FIX */
.booking-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.booking-actions a,
.booking-actions button {
	width: 100%;
	max-width: 280px;
}

/* Mobile spacing */
@media (max-width: 768px) {
	#crm-booking-widget {
		padding: 25px 15px;
	}
}
@keyframes fadeInUp {
	to { opacity: 1; transform: translateY(0); }
}
/* --- Mobile Responsiveness Breakpoint --- */
@media (max-width: 768px) {
	.site-header {
		top: 14px;
		padding-inline: 14px;
	}

	.nav-shell {
		min-height: 64px;
		padding-inline: 18px;
		border-radius: 16px;
	}
	.desktop-nav {
		display: none; /* Hide standard nav */
	}
	.hero h1 { font-size: 3rem; }
	.hamburger {
		display: flex; /* Show hamburger only on mobile */
		flex-shrink: 0;
	}
	.mobile-nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;

		min-width: 320px;
		width: 80%;

		background: rgba(10, 10, 10, 0.67);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		box-shadow: -40px 0 80px rgba(0,0,0,0.8);

		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		
		padding: 0 60px;
		gap: 2.5rem;

		border-left: 1px solid rgba(212, 175, 55, 0.15);

		transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
		z-index: 2500;
	}
	.mobile-nav.active {
		right: 0; /* Slides into view from the right */
		box-shadow: -20px 0 60px rgba(0,0,0,0.6);
	}
	.mobile-nav a {
		/* font-family: 'Playfair Display', serif; */
		font-family: 'Inter', sans-serif;
		font-weight: 600;
		font-size: 1.8rem;
		letter-spacing: 2px;
		position: relative;
		opacity: 0;
		transform: translateY(20px);				
		transition: all 0.5s ease;
		color: var(--white); /* FORCE it */
	}
	.mobile-nav a::after {
		content: "";
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 40px;
		height: 1px;
		background: rgba(212,175,55,0.2);
	}
	.mobile-nav.active a {
		opacity: 1;
		transform: translateY(0);
	}

	/* Staggered delay */
	.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
	.mobile-nav.active a:nth-child(2) { transition-delay: 0.2s; }
	.mobile-nav.active a:nth-child(3) { transition-delay: 0.3s; }
	.mobile-nav.active a:nth-child(4) { transition-delay: 0.4s; }
	.mobile-nav.active a:nth-child(5) { transition-delay: 0.5s; }
	.mobile-nav a:hover {
		color: var(--gold);
	}
	#mobileBookBtn {
		margin-top: 1rem;
	}
	/* Transform hamburger to 'X' when active */
	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}
.btn-gold,
.btn-outline {
	--magnetic: translate(0, 0);
	--glass-bg: rgba(255, 255, 255, 0.12);
	--glass-border: rgba(255, 255, 255, 0.34);
	--glass-highlight: rgba(255, 255, 255, 0.7);

	height: 45px;
	padding: 0 24px;
	min-width: 180px;
	border-radius: 999px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	
	box-sizing: border-box;
	white-space: nowrap;
	flex-shrink: 0;
	transform-origin: center center;

	position: relative;
	overflow: hidden;
	cursor: pointer;

	font-family: inherit;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;

	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);

	transform: var(--magnetic);
	will-change: transform;
	
	isolation: isolate;
	text-align: center;

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}
.btn-gold span,
.btn-outline span {
	position: relative;
	z-index: 5;
	display:  flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	transform: none !important;
	translate: none !important;
	pointer-events: none;
}
.btn-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.btn-ripple-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
  border-radius: inherit;
}
/* GOLD LIQUID GLASS */
.btn-gold {
	border: 1px solid rgba(255, 230, 150, 0.55);
	color: var(--black);

	background:
		linear-gradient(
			135deg,
			rgba(255, 236, 160, 0.82),
			rgba(212, 175, 55, 0.42)
		),
		rgba(255, 255, 255, 0.16);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.75),
		inset 0 -1px 1px rgba(90, 60, 0, 0.18),
		0 12px 30px rgba(212, 175, 55, 0.28),
		0 4px 12px rgba(0, 0, 0, 0.28);
}

/* OUTLINE LIQUID GLASS */
.btn-outline {
	border: 1px solid rgba(212, 175, 55, 0.6);
	color: var(--gold);

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.16),
			rgba(255, 255, 255, 0.04)
		);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.45),
		inset 0 -1px 1px rgba(255, 255, 255, 0.08),
		0 10px 26px rgba(212, 175, 55, 0.16),
		0 4px 12px rgba(0, 0, 0, 0.22);
}

/* Shared glass shine */
.btn-gold::before,
.btn-outline::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	pointer-events: none;
	z-index: 1;

	background:
		radial-gradient(
			circle at 28% 18%,
			rgba(255, 255, 255, 0.85),
			rgba(255, 255, 255, 0.25) 18%,
			transparent 42%
		),
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.4),
			transparent 38%
		);

	opacity: 0.75;
}

/* Moving reflective streak */
.btn-gold::after,
.btn-outline::after {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	width: 55%;
	height: 190%;
	border-radius: inherit;
	pointer-events: none;
	z-index: 2;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.55),
		transparent
	);

	transform: rotate(18deg) translateX(-120%);
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover states */
.btn-gold:hover {
	transform: translateY(-4px) scale(1.035);
	background:
		linear-gradient(
			135deg,
			rgba(255, 244, 190, 0.92),
			rgba(212, 175, 55, 0.52)
		),
		rgba(255, 255, 255, 0.22);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.85),
		0 18px 42px rgba(212, 175, 55, 0.36),
		0 8px 18px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
	transform: translateY(-4px) scale(1.035);
	color: var(--black);
	border-color: rgba(255, 230, 150, 0.65);

	background:
		linear-gradient(
			135deg,
			rgba(255, 236, 160, 0.8),
			rgba(212, 175, 55, 0.38)
		),
		rgba(255, 255, 255, 0.16);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.75),
		0 18px 42px rgba(212, 175, 55, 0.32),
		0 8px 18px rgba(0, 0, 0, 0.28);
}

.btn-gold:hover::after,
.btn-outline:hover::after {
	transform: rotate(18deg) translateX(420%);
}

/* Click feel */
.btn-gold:active,
.btn-outline:active {
	transform: translateY(1px) scale(0.965);

	box-shadow:
		inset 0 3px 8px rgba(0, 0, 0, 0.28),
		inset 0 -1px 1px rgba(255, 255, 255, 0.15),
		0 4px 12px rgba(0, 0, 0, 0.3);

	transition: transform 0.08s ease, box-shadow 0.08s ease;
}

/* Accessible keyboard focus */
.btn-gold:focus-visible,
.btn-outline:focus-visible {
	outline: 3px solid rgba(255, 220, 120, 0.65);
	outline-offset: 4px;
}

/* Existing ripple still works */
.btn-ripple {
	position: absolute;
	left: var(--ripple-x, 50%);
	top: var(--ripple-y, 50%);		
	width: 120px;
	height: 120px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.45) 0%,
		rgba(255, 255, 255, 0.18) 40%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	animation: ripple 0.6s ease-out;
	pointer-events: none;
	z-index: 3;
}

@keyframes ripple {
	to {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}


/* ==================================================
   HERO SECTIONS
   ================================================== */

.hero {
	min-height:92vh;
	position:relative;
	display:flex;
	align-items:flex-end;
	padding:
		160px   /* top */
		7vw     /* left-right */
		36px;      /* bottom */
	isolation:isolate
}
.hero:before {
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .36), rgba(0, 0, 0, .55)), var(--hero-img);
	background-size:cover;
	background-position:center;
	z-index:-2;
	transform:scale(1.02)
}
.hero:after {
	content:"";
	position:absolute;
	inset:auto 0 0;
	height:40%;
	background:linear-gradient(transparent, var(--black));
	z-index:-1
}
.eyebrow {
	color:var(--gold2);
	letter-spacing:.24em;
	text-transform:uppercase;
	font-size:.78rem;
	font-weight:700;
	margin-bottom:18px
}
.hero h1 {
	font-family:Playfair Display, serif;
	font-size:clamp(3.6rem, 8vw, 8.5rem);
	line-height:.9;
	margin:0 0 24px;
	max-width:970px
}
.hero p {
	font-size:clamp(1.05rem, 1.65vw, 1.35rem);
	color:#e8decf;
	max-width:720px;
	line-height:1.75;
	margin:0 0 34px
}
.hero-actions {
	display:flex;
	gap:14px;
	flex-wrap:wrap
}


/* ==================================================
   PREMIUM TRUST CENTRE
   ================================================== */

.trust-strip {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: -1px;
	padding: 18px 7vw;

	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.035),
			rgba(255, 255, 255, 0.01)
		),
		rgba(8, 8, 8, 0.96);

	border: none;
	border-top: 1px solid rgba(212, 175, 55, 0.16);
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 -30px 80px rgba(0, 0, 0, 0.35);
}

.trust-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(212, 175, 55, 0.14),
			transparent 38%
		);
	opacity: 0.75;
}

.trust-strip div {
	position: relative;
	padding: 26px 22px;
	text-align: center;
	background: transparent;
	border: none;
}

.trust-strip div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 28%;
	right: 0;
	width: 1px;
	height: 44%;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(212, 175, 55, 0.22),
		transparent
	);
}

.trust-strip strong {
	display: block;
	margin-bottom: 8px;

	color: var(--gold2);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.trust-strip span {
	display: block;

	color: rgba(247, 242, 232, 0.58);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

/* Hover polish */
.trust-strip div {
	transition:
		transform 0.35s var(--ease),
		background 0.35s var(--ease);
}

.trust-strip div:hover {
	transform: translateY(-2px);
	background: radial-gradient(
		circle at center,
		rgba(212, 175, 55, 0.07),
		transparent 62%
	);
}

.trust-strip div:hover strong {
	color: var(--gold);
}

/* Mobile */
@media (max-width: 900px) {
	.trust-strip {
		grid-template-columns: repeat(2, 1fr);
		padding: 12px 5vw;
	}

	.trust-strip div {
		padding: 22px 14px;
	}

	.trust-strip div:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 520px) {
	.trust-strip {
		grid-template-columns: 1fr;
	}

	.trust-strip div {
		border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	}

	.trust-strip div:last-child {
		border-bottom: none;
	}
}

/* ==================================================
   CONTENT SECTIONS
   ================================================== */
   
.section {
	padding:100px 7vw
}
.section.light {
	background:var(--ivory);
	color:#111
}
.section-head {
	max-width:840px;
	margin-bottom:50px
}
.section-head.center {
	text-align:center;
	margin-inline:auto
}
.section-head h2 {
	font-family:Playfair Display, serif;
	font-size:clamp(2.3rem, 4.4vw, 4.9rem);
	line-height:1;
	margin:0 0 18px
}
.section-head p {
	color:var(--muted);
	line-height:1.8;
	font-size:1.05rem
}
.light .section-head p {
	color:#655f56
}
.grid {
	display:grid;
	gap:24px
}
.cards-3 {
	grid-template-columns:repeat(3, minmax(0, 1fr))
}
.cards-2 {
	grid-template-columns:repeat(2, minmax(0, 1fr))
}
.service-card, .price-card, .feature-card {
	position:relative;
	border:1px solid var(--line);
	border-radius:var(--radius);
	background:linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018));
	box-shadow:var(--shadow);
	overflow:hidden
}
.service-card img {
	height:330px;
	width:100%;
	object-fit:cover;
	filter:saturate(.9)
}
.service-card .body, .price-card, .feature-card {
	padding:30px
}
.service-card h3, .price-card h3, .feature-card h3 {
	font-family:Playfair Display, serif;
	font-size:2rem;
	margin:0 0 12px
}
.service-card p, .feature-card p {
	color:var(--muted);
	line-height:1.7
}
.price-table {
	display:grid;
	gap:14px
}
.price-row {
	display:grid;
	grid-template-columns:1fr auto;
	gap:18px;
	align-items:center;
	padding:18px 0;
	border-bottom:1px solid rgba(212, 175, 55, .18)
}
.price-row:last-child {
	border-bottom:0
}
.price-row h4 {
	margin:0 0 5px;
	font-size:1rem
}
.price-row p {
	margin:0;
	color:var(--muted);
	font-size:.9rem;
	line-height:1.6
}
.price {
	color:var(--gold2);
	font-weight:800;
	white-space:nowrap
}
.split {
	display:grid;
	grid-template-columns:1.05fr .95fr;
	gap:42px;
	align-items:center
}
.visual {
	border-radius:32px;
	overflow:hidden;
	border:1px solid var(--line);
	box-shadow:var(--shadow);
	min-height:520px;
	object-fit:cover
}
.steps {
	counter-reset:item;
	display:grid;
	gap:18px
}
.step {
	padding:24px;
	border-radius:22px;
	border:1px solid var(--line);
	background:rgba(255, 255, 255, .04)
}
.step:before {
	counter-increment:item;
	content:"0" counter(item);
	display:inline-flex;
	color:#0a0a0a;
	background:var(--gold);
	border-radius:999px;
	padding:6px 11px;
	font-weight:800;
	margin-bottom:15px
}
.step h3 {
	margin:0 0 8px
}
.step p {
	margin:0;
	color:var(--muted);
	line-height:1.7
}


/* ==================================================
   CTA
   ================================================== */

.cta {
	padding:90px 7vw;
	text-align:center;
	background:radial-gradient(circle at top, rgba(212, 175, 55, .22), transparent 36%), #080808;
	border-top:1px solid var(--line)
}
.cta h2 {
	font-family:Playfair Display, serif;
	font-size:clamp(2.4rem, 5vw, 5.3rem);
	margin:0 0 20px
}
.cta p {
	color:var(--muted);
	max-width:650px;
	margin:0 auto 30px;
	line-height:1.75
}

/* ==================================================
   BOOKING POPUP
   ================================================== */

.booking-popup {
	position:fixed;
	inset:0;
	z-index:5000;
	display:none
}
.booking-popup.active {
	display:block
}
.popup-overlay {
	position:absolute;
	inset:0;
	background:rgba(0, 0, 0, .64);
	backdrop-filter:blur(8px)
}
.popup-container {
	position:relative;
	max-width:520px;
	margin:90px auto;
	background:#111;
	border:1px solid var(--line);
	border-radius:28px;
	padding:34px;
	box-shadow:var(--shadow)
}
.popup-container h3 {
	font-family:Playfair Display, serif;
	font-size:2.3rem;
	margin:0 0 10px
}
.popup-container p {
	color:var(--muted);
	line-height:1.6
}
.close-popup {
	position:absolute;
	top:16px;
	right:16px;
	background:rgba(255, 255, 255, .08);
	color:var(--ivory);
	border:1px solid rgba(255, 255, 255, .12);
	width:40px;
	height:40px;
	border-radius:50%;
	cursor:pointer
}
.quick-form {
	display:grid;
	gap:14px;
	margin-top:22px
}
.quick-form input, .quick-form select {
	background:#090909;
	border:1px solid rgba(255, 255, 255, .12);
	border-radius:14px;
	padding:15px;
	color:var(--ivory)
}
.note {
	font-size:.86rem;
	color:var(--muted);
	margin-top:16px
}
.pill-row {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin:24px 0
}
.pill {
	border:1px solid var(--line);
	border-radius:999px;
	padding:10px 14px;
	color:var(--gold2);
	font-size:.76rem;
	text-transform:uppercase;
	letter-spacing:.1em;
	background:rgba(255, 255, 255, .04)
}


/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media(max-width:900px) {
	.desktop-nav {
		display:none
	}
	.hamburger {
		display:flex
	}
	.hero {
		padding:140px 6vw 70px;
		min-height:88vh
	}
	.cards-3, .cards-2, .split, .trust-strip, .footer-grid, .footer-container {
		grid-template-columns:1fr
	}
	.service-card img {
		height:260px
	}
	.site-header {
		left:12px;
		right:12px;
		top:12px
	}
	.section {
		padding:72px 6vw
	}
	.price-row {
		grid-template-columns:1fr
	}
	.price {
		justify-self:start
	}
	.visual {
		min-height:360px
	}
	.popup-container {
		margin:84px 16px
	}
}
