/* ============================================================
   NORTHWINDS TRAVEL CO. — Editorial Travel Design System
   Forest green · warm gold · ivory cream · serif/sans pairing
   ============================================================ */

:root {
	/* Type scale (fluid) */
	--text-xs: clamp(0.75rem, 0.72rem + 0.18vw, 0.875rem);
	--text-sm: clamp(0.9rem, 0.84rem + 0.16vw, 1rem);
	--text-base: clamp(1rem, 0.97rem + 0.18vw, 1.125rem);
	--text-lg: clamp(1.125rem, 1rem + 0.55vw, 1.45rem);
	--text-xl: clamp(1.5rem, 1.22rem + 1vw, 2.2rem);
	--text-2xl: clamp(2.2rem, 1.5rem + 2.4vw, 4rem);
	--text-3xl: clamp(2.8rem, 1.2rem + 4.6vw, 6rem);

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* Brand palette */
	--forest: #0f3431;
	--forest-deep: #082522;
	--forest-mist: #1c4a46;
	--gold: #bb8d58;
	--gold-light: #d4a872;
	--gold-soft: #efe1d1;
	--ivory: #f7f4ed;
	--ivory-warm: #fbf8f3;
	--cream: #fffdfa;
	--sand: #efe6d9;
	--border: #d9c7af;
	--hairline: #e0d5c7;
	--ink: #1f1814;
	--ink-muted: #6d6359;
	--ink-faint: #9f9183;
	--inverse: #fcf8f3;

	--radius-sm: 0.4rem;
	--radius-md: 0.8rem;
	--radius-lg: 1.25rem;
	--radius-xl: 1.8rem;
	--radius-full: 999px;
	--shadow-sm: 0 1px 2px rgba(20, 14, 10, 0.06);
	--shadow-md: 0 10px 28px rgba(20, 14, 10, 0.1);
	--shadow-lg: 0 22px 60px rgba(20, 14, 10, 0.16);

	--content: 1240px;
	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Inter", system-ui, sans-serif;
	--transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}
body {
	min-height: 100vh;
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.65;
	background: var(--ivory);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}
img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
a,
button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}
a {
	text-decoration: none;
	color: inherit;
	transition: all var(--transition);
}
button {
	background: none;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}
:focus-visible {
	outline: 2px solid var(--forest);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

.container {
	width: min(calc(100% - 2rem), var(--content));
	margin-inline: auto;
}
.section {
	padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section-tight {
	padding-block: clamp(var(--space-8), 5vw, var(--space-12));
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: var(--text-xs);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ink-muted);
}
.eyebrow::before {
	content: "";
	width: 1.6rem;
	height: 1px;
	background: currentColor;
	opacity: 0.5;
}
.eyebrow.on-dark {
	color: rgba(255, 255, 255, 0.78);
}
.eyebrow.gold {
	color: var(--gold);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
}
h1 {
	font-size: var(--text-3xl);
}
h2 {
	font-size: var(--text-2xl);
	margin: 0.5rem 0 1rem;
}
h3 {
	font-size: var(--text-lg);
	line-height: 1.2;
	font-weight: 600;
}
h4 {
	font-size: var(--text-base);
	line-height: 1.3;
	font-weight: 600;
	font-family: var(--font-body);
	letter-spacing: 0;
}
p {
	max-width: 68ch;
}
.muted {
	color: var(--ink-muted);
}
.lede {
	font-size: var(--text-lg);
	color: var(--ink-muted);
	max-width: 56ch;
	line-height: 1.5;
}

/* Top ribbon */
.top-ribbon {
	background: var(--forest-deep);
	color: var(--inverse);
	padding: 0.55rem 0;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
}
.top-ribbon strong {
	font-weight: 700;
	color: var(--gold-light);
}
.top-ribbon .dot {
	display: inline-block;
	margin: 0 0.85rem;
	color: var(--gold);
}
.top-ribbon .ribbon-announce {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	text-align: center;
	letter-spacing: 0.12em;
}
.top-ribbon .ribbon-leaf {
	color: var(--gold-light);
	flex-shrink: 0;
	transition: color 0.25s ease;
}
.top-ribbon .ribbon-text {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
	transition: color 0.25s ease;
}
.top-ribbon .ribbon-announce-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.top-ribbon .ribbon-announce-link:hover .ribbon-text {
	color: #fff;
}
.top-ribbon .ribbon-announce-link:hover .ribbon-leaf {
	color: var(--gold);
}
.top-ribbon .ribbon-link {
	color: var(--gold-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(212, 168, 114, 0.45);
	padding-bottom: 1px;
	font-weight: 700;
	transition:
		color 0.25s ease,
		border-color 0.25s ease;
	white-space: nowrap;
}
.top-ribbon .ribbon-link:hover {
	color: #fff;
	border-color: #fff;
}
.top-ribbon .ribbon-arrow {
	display: inline-block;
	margin-left: 0.25rem;
}
@media (max-width: 640px) {
	.top-ribbon .ribbon-announce {
		gap: 0.4rem;
		font-size: 9.5px;
	}
}
.hero-grid.hero-grid-solo {
	grid-template-columns: minmax(0, 440px);
	justify-content: end;
	align-items: end;
}
.hero-grid.hero-grid-solo .hero-copy {
	max-width: 440px;
	margin: 0 0 0 auto;
	text-align: left;
}
.hero-grid.hero-grid-solo .hero-copy h1 {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	max-width: 14ch;
	line-height: 1.08;
	margin: 0.5rem 0 0.75rem;
}
.hero-grid.hero-grid-solo .hero-copy .eyebrow {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
}
.hero-grid.hero-grid-solo .hero-copy .lede {
	font-size: 0.98rem;
	line-height: 1.55;
	max-width: 42ch;
}
.hero-grid.hero-grid-solo .hero-actions {
	justify-content: flex-start;
	margin-top: 1.1rem;
}
@media (max-width: 900px) {
	.hero-grid.hero-grid-solo {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}
	.hero-grid.hero-grid-solo .hero-copy {
		max-width: 100%;
	}
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in srgb, var(--ivory) 88%, transparent);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding: var(--space-4) 0;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	text-decoration: none;
	color: var(--ink);
}
.brand-mark {
	display: inline-block;
	width: auto;
	height: clamp(96px, 9vw, 132px);
	flex-shrink: 0;
	transition: transform var(--transition);
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}
.brand:hover .brand-mark {
	transform: scale(1.02);
}
.brand-mark img {
	height: 100%;
	width: auto;
	display: block;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	content: url("../assets/brand/northwinds-logo-full.png");
}
/* Show the wordmark beside the logo (the baked-in text in the image is small,
   so we render a clean wordmark next to it for legibility). */
.brand .brand-name {
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 1.85vw, 1.9rem);
	font-weight: 500;
	letter-spacing: 0.005em;
	line-height: 1.05;
	color: var(--forest);
	white-space: nowrap;
}
.brand .brand-sub {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--gold);
	margin-top: 0.3rem;
}
.brand-text,
.brand > span:not(.brand-mark) {
	display: inline-flex;
	flex-direction: column;
}
@media (max-width: 900px) {
	.brand .brand-sub {
		display: none;
	}
	.brand .brand-name {
		font-size: 1.25rem;
	}
}
@media (max-width: 700px) {
	.brand-mark {
		height: 72px;
	}
	.brand {
		gap: var(--space-2);
	}
	.brand .brand-name {
		font-size: 1.15rem;
	}
	.brand .brand-sub {
		display: none;
	}
}
@media (max-width: 480px) {
	.brand-mark {
		height: 60px;
	}
	.brand .brand-name {
		font-size: 1.05rem;
	}
}
.nav {
	display: flex;
	align-items: center;
	gap: var(--space-5);
}
.nav a {
	font-size: var(--text-sm);
	color: var(--ink-muted);
	font-weight: 500;
	position: relative;
}
.nav a:hover {
	color: var(--ink);
}
.nav a.active {
	color: var(--forest);
}
.nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.4rem;
	height: 1px;
	background: var(--gold);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.icon-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--cream);
	border: 1px solid var(--hairline);
	color: var(--ink);
}
.icon-btn:hover {
	background: var(--sand);
}
.menu-toggle {
	display: none;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 50px;
	padding: 0 1.5rem;
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: all var(--transition);
}
.btn-primary {
	background: var(--gold);
	color: #1e1813;
	box-shadow: var(--shadow-md);
}
.btn-primary:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}
.btn-secondary {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--border);
}
.btn-secondary:hover {
	background: var(--cream);
	border-color: var(--ink);
}
.btn-ghost-light {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.18);
}
.btn-forest {
	background: var(--forest);
	color: var(--inverse);
}
.btn-forest:hover {
	background: var(--forest-deep);
}

/* Hero (home) — private terminal scene: travelers on left, jet & sky on right.
   Photo anchored to TOP so no heads are cropped. Headline sits in the lower-right
   over the floor/tarmac negative space, away from the travelers' faces. */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: flex-end;
	padding: var(--space-16) 0 var(--space-12);
	background: url("../assets/photos/hero-northwinds.png") center top / cover
		no-repeat;
	color: #fff;
	overflow: hidden;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	/* Bottom-up scrim so the text rests on a calm dark base while the upper photo stays clean */
	background: linear-gradient(
		0deg,
		rgba(8, 37, 34, 0.78) 0%,
		rgba(8, 37, 34, 0.55) 22%,
		rgba(8, 37, 34, 0.22) 45%,
		rgba(8, 37, 34, 0) 65%
	);
	pointer-events: none;
}
.hero .container {
	position: relative;
	z-index: 2;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: var(--space-10);
	align-items: end;
}
.hero-copy h1 {
	font-size: var(--text-3xl);
	max-width: 13ch;
	margin: 0.8rem 0 1rem;
	color: #fff;
	font-weight: 500;
}
.hero-copy .lede {
	font-size: var(--text-lg);
	max-width: 50ch;
	color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
}
.hero-card {
	justify-self: end;
	width: min(100%, 420px);
	padding: var(--space-6);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-lg);
	color: #fff;
}
.hero-card h3 {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	line-height: 1.05;
	margin-top: 0.5rem;
	color: #fff;
	font-weight: 500;
}
.hero-card p {
	color: rgba(255, 255, 255, 0.78);
	margin-top: 0.8rem;
}

/* Inner page hero */
.page-hero {
	background: linear-gradient(180deg, var(--forest-deep), var(--forest));
	color: var(--inverse);
	padding: clamp(var(--space-16), 12vw, var(--space-24)) 0 var(--space-16);
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 80% 20%,
		rgba(212, 168, 114, 0.18),
		transparent 50%
	);
	pointer-events: none;
}
.page-hero .container {
	position: relative;
	z-index: 2;
}
.page-hero h1 {
	font-size: var(--text-2xl);
	max-width: 18ch;
	margin: 0.6rem 0 1rem;
	color: #fff;
	font-weight: 500;
}
.page-hero .lede {
	color: rgba(255, 255, 255, 0.82);
	max-width: 56ch;
}

/* KPI / trust strip */
.kpi-strip {
	background: var(--forest);
	color: var(--inverse);
	padding: var(--space-5) 0;
}
.kpi-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5);
}
.kpi-row > div {
	padding: 0 var(--space-5);
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.kpi-row > div:first-child {
	border-left: none;
	padding-left: 0;
}
.kpi-row strong {
	display: block;
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--gold-light);
	margin-bottom: 0.25rem;
}
.kpi-row span {
	color: rgba(255, 255, 255, 0.74);
	font-size: var(--text-sm);
}

/* Service cards */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
	margin-top: var(--space-10);
}
.service-grid.service-grid-4 {
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5);
}
@media (max-width: 1024px) {
	.service-grid.service-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.service-grid.service-grid-4 {
		grid-template-columns: 1fr;
	}
}
.service-card {
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.service-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid;
	place-items: center;
	margin-bottom: var(--space-4);
}
.service-card h3 {
	margin-bottom: 0.6rem;
	color: var(--forest);
}
.service-card p {
	color: var(--ink-muted);
	margin-bottom: var(--space-4);
}
.service-link {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--forest);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-wrap: balance;
}
.service-link:hover {
	color: var(--gold);
	gap: 0.65rem;
}

/* Care-class section */
.careclass-band {
	background: linear-gradient(
		135deg,
		var(--forest) 0%,
		var(--forest-mist) 100%
	);
	color: var(--inverse);
	border-radius: var(--radius-xl);
	padding: clamp(var(--space-8), 5vw, var(--space-16));
	position: relative;
	overflow: hidden;
	margin-top: var(--space-12);
}
.careclass-band::before {
	content: "";
	position: absolute;
	right: -10%;
	top: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(212, 168, 114, 0.22),
		transparent 65%
	);
	pointer-events: none;
}
.careclass-band .grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--space-10);
	align-items: center;
}
.careclass-band h2 {
	color: #fff;
	margin-bottom: var(--space-4);
}
.careclass-band p {
	color: rgba(255, 255, 255, 0.86);
	margin-bottom: var(--space-4);
}
.careclass-list {
	list-style: none;
	display: grid;
	gap: var(--space-3);
}
.careclass-list li {
	position: relative;
	padding-left: 1.8rem;
	color: rgba(255, 255, 255, 0.82);
}
.careclass-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 1.1rem;
	height: 1px;
	background: var(--gold-light);
}

/* Destination cards */
.destination-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	margin-top: var(--space-10);
}
.destination-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--forest-deep);
	cursor: pointer;
	transition: all var(--transition);
}
.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}
.destination-card:hover img {
	transform: scale(1.05);
}
.destination-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 40%,
		rgba(8, 37, 34, 0.85) 100%
	);
	pointer-events: none;
}
.destination-meta {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-5);
	color: #fff;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.destination-meta .eyebrow {
	color: var(--gold-light);
	font-size: 10px;
	/* Anchor eyebrow above the title with a consistent baseline */
	display: block;
	margin-bottom: 0.35rem;
}
.destination-meta .eyebrow::before {
	background: var(--gold-light);
}
.destination-meta h3 {
	font-size: var(--text-xl);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 500;
	margin-top: 0;
	/* Reserve room for up to 2 lines so cards with longer titles don't
     push surrounding cards out of alignment. */
	line-height: 1.18;
	min-height: calc(var(--text-xl) * 1.18 * 2);
	display: flex;
	align-items: flex-end;
}
.destination-meta p {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.82);
	margin-top: 0.55rem;
	max-width: none;
	/* Cap description to 3 lines so very-long copy doesn't push the title up */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* Standard property for compatibility */
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Journey cards — premium product grid surfacing the actual offers */
.journeys-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
	margin-top: var(--space-10);
}
.journey-card {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: var(--forest-deep);
	text-decoration: none;
	color: #fff;
	box-shadow: 0 8px 24px rgba(8, 37, 34, 0.12);
	transition:
		transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 380ms ease;
}
.journey-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(8, 37, 34, 0.22);
}
.journey-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.journey-card:hover .journey-image {
	transform: scale(1.06);
}
.journey-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(8, 37, 34, 0.05) 0%,
		rgba(8, 37, 34, 0.2) 45%,
		rgba(8, 37, 34, 0.78) 85%,
		rgba(8, 37, 34, 0.92) 100%
	);
	pointer-events: none;
}
.journey-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--gold) 30%,
		var(--gold-light) 70%,
		transparent 100%
	);
	opacity: 0;
	transform: translateY(-3px);
	transition:
		opacity 380ms ease,
		transform 380ms ease;
	z-index: 3;
}
.journey-card:hover::before {
	opacity: 1;
	transform: translateY(0);
}
.journey-meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: var(--space-4) var(--space-4) var(--space-4);
	z-index: 2;
}
.journey-meta h3 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.25rem;
	color: #fff;
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.journey-meta p {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.82);
	margin-top: 0.4rem;
	max-width: none;
	line-height: 1.45;
}
.journey-cta {
	display: inline-block;
	margin-top: 0.65rem;
	color: var(--gold-light);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(187, 141, 88, 0.35);
	padding-bottom: 2px;
	transition:
		color 280ms ease,
		border-color 280ms ease,
		letter-spacing 280ms ease;
}
.journey-card:hover .journey-cta {
	color: #fff;
	border-color: var(--gold-light);
	letter-spacing: 0.06em;
}
@media (max-width: 980px) {
	.journeys-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-3);
	}
	.journey-card {
		aspect-ratio: 4 / 5;
	}
}
@media (max-width: 560px) {
	.journeys-grid {
		grid-template-columns: 1fr;
	}
	.journey-card {
		aspect-ratio: 5 / 4;
	}
	.journey-meta {
		padding: var(--space-4);
	}
}

/* Specialties — two-up spotlight cards (Medical Tourism, Investor Journeys) */
.specialties-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	margin-top: var(--space-10);
}
.specialty-card {
	display: flex;
	flex-direction: column;
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: var(--ink);
	box-shadow: 0 8px 24px rgba(8, 37, 34, 0.06);
	transition:
		transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 380ms ease;
	position: relative;
}
.specialty-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 380ms ease;
	z-index: 3;
}
.specialty-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(8, 37, 34, 0.14);
}
.specialty-card:hover::before {
	transform: scaleX(1);
}
.specialty-photo {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--forest-deep);
}
.specialty-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.specialty-card:hover .specialty-photo img {
	transform: scale(1.05);
}
.specialty-body {
	padding: var(--space-6) var(--space-6) var(--space-6);
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.specialty-body h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--forest);
	margin: 0.1rem 0 0.25rem;
	line-height: 1.1;
	letter-spacing: -0.01em;
}
.specialty-body p {
	color: var(--ink-muted);
	font-size: 0.98rem;
	line-height: 1.55;
	margin: 0 0 0.35rem;
}
.specialty-list {
	list-style: none;
	padding: 0;
	margin: 0.25rem 0 0.6rem;
}
.specialty-list li {
	position: relative;
	padding-left: 1.4rem;
	margin: 0.35rem 0;
	font-size: 0.92rem;
	color: var(--ink);
	line-height: 1.5;
}
.specialty-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 0.85rem;
	height: 1px;
	background: var(--gold);
}
.specialty-cta {
	display: inline-block;
	margin-top: 0.35rem;
	color: var(--forest);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(187, 141, 88, 0.35);
	padding-bottom: 2px;
	align-self: flex-start;
	transition:
		color 280ms ease,
		border-color 280ms ease,
		letter-spacing 280ms ease;
}
.specialty-card:hover .specialty-cta {
	color: var(--gold);
	border-color: var(--gold);
	letter-spacing: 0.06em;
}
@media (max-width: 900px) {
	.specialties-grid {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
	.specialty-photo {
		aspect-ratio: 16 / 9;
	}
}

/* Process — boxed cards matching .service-card aesthetic */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5);
	margin-top: var(--space-10);
	position: relative;
}
.process-step {
	position: relative;
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	overflow: hidden;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.process-step::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.process-step:hover::before {
	transform: scaleX(1);
}
.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.process-num {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--gold);
	font-weight: 500;
	letter-spacing: 0.04em;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--gold-soft);
	margin-bottom: 0.9rem;
}
.process-step h3 {
	margin: 0.2rem 0 0.55rem;
	color: var(--forest);
	font-size: 1.15rem;
}
.process-step p {
	color: var(--ink-muted);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}
@media (max-width: 980px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.process-grid {
		grid-template-columns: 1fr;
	}
}

/* Pull-quote */
.pullquote {
	background: var(--ivory-warm);
	border-left: 3px solid var(--gold);
	padding: var(--space-8) var(--space-10);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	margin-top: var(--space-10);
}
.pullquote blockquote {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	line-height: 1.25;
	color: var(--forest);
	max-width: 38ch;
	font-weight: 500;
}
.pullquote cite {
	display: block;
	margin-top: var(--space-4);
	font-style: normal;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: var(--space-10);
	margin-top: var(--space-8);
}
.faq-item {
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	padding: var(--space-5) var(--space-6);
	margin-bottom: var(--space-3);
}
.faq-item summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--forest);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary::after {
	content: "+";
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--gold);
	line-height: 1;
}
.faq-item[open] summary::after {
	content: "−";
}
.faq-item p {
	margin-top: var(--space-3);
	color: var(--ink-muted);
}

/* CTA band */
.cta-band {
	background: var(--forest);
	color: var(--inverse);
	border-radius: var(--radius-xl);
	padding: clamp(var(--space-10), 5vw, var(--space-16));
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-band::before {
	content: "";
	position: absolute;
	bottom: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(212, 168, 114, 0.16),
		transparent 65%
	);
	pointer-events: none;
}
.cta-band > * {
	position: relative;
	z-index: 2;
}
.cta-band h2 {
	color: #fff;
	max-width: 22ch;
	margin: 0 auto var(--space-5);
}
.cta-band p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 48ch;
	margin: 0 auto var(--space-6);
}
.cta-band .btn-primary {
	background: var(--gold);
}

/* Footer */
footer {
	background: var(--forest-deep);
	color: rgba(255, 255, 255, 0.78);
	padding: var(--space-16) 0 var(--space-8);
	margin-top: var(--space-16);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
	gap: var(--space-8);
}
.footer-brand .brand-name {
	color: #fff;
	font-size: 1.6rem;
}
.footer-brand p {
	margin-top: var(--space-3);
	color: rgba(255, 255, 255, 0.66);
	font-size: var(--text-sm);
}
.footer-col h4 {
	color: var(--gold-light);
	font-size: var(--text-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: var(--space-4);
}
.footer-col ul {
	list-style: none;
	display: grid;
	gap: var(--space-2);
}
.footer-col a {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--text-sm);
}
.footer-col a:hover {
	color: var(--gold-light);
}
.footer-bottom {
	margin-top: var(--space-10);
	padding-top: var(--space-5);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-4);
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.55);
}

/* WhatsApp FAB */
.whatsapp-fab {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	box-shadow:
		0 8px 22px rgba(37, 211, 102, 0.35),
		0 2px 6px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
	animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
	background: #128c7e;
	transform: translateY(-2px) scale(1.05);
	box-shadow:
		0 12px 28px rgba(37, 211, 102, 0.45),
		0 4px 10px rgba(0, 0, 0, 0.22);
	animation: none;
	outline: none;
}
.whatsapp-fab svg {
	width: 30px;
	height: 30px;
	display: block;
}
.whatsapp-fab-tooltip {
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%);
	background: #1a1a1a;
	color: #fff;
	padding: 0.55rem 0.9rem;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.whatsapp-fab-tooltip::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: #1a1a1a;
}
.whatsapp-fab:hover .whatsapp-fab-tooltip,
.whatsapp-fab:focus-visible .whatsapp-fab-tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(-3px);
}
@keyframes whatsappPulse {
	0%,
	100% {
		box-shadow:
			0 8px 22px rgba(37, 211, 102, 0.35),
			0 2px 6px rgba(0, 0, 0, 0.18),
			0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	50% {
		box-shadow:
			0 8px 22px rgba(37, 211, 102, 0.35),
			0 2px 6px rgba(0, 0, 0, 0.18),
			0 0 0 14px rgba(37, 211, 102, 0);
	}
}
@media (max-width: 600px) {
	.whatsapp-fab {
		bottom: 1rem;
		right: 1rem;
		width: 54px;
		height: 54px;
	}
	.whatsapp-fab svg {
		width: 26px;
		height: 26px;
	}
	.whatsapp-fab-tooltip {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.whatsapp-fab {
		animation: none;
	}
}

/* Form */
.form-grid {
	display: grid;
	gap: var(--space-4);
	margin-top: var(--space-6);
}
label {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--forest);
	display: block;
	margin-bottom: 0.35rem;
}
input,
select,
textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 var(--space-4);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	transition: all var(--transition);
}
textarea {
	min-height: 130px;
	padding: var(--space-3) var(--space-4);
	resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--forest);
	outline: none;
	box-shadow: 0 0 0 3px rgba(15, 52, 49, 0.1);
}

/* Two-col split */
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-10);
	align-items: center;
}
.split-grid .visual {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--sand);
}
.split-grid .visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Article body */
.prose {
	max-width: 70ch;
	margin: 0 auto;
}
.prose h2 {
	font-size: var(--text-xl);
	margin-top: var(--space-10);
	color: var(--forest);
}
.prose h3 {
	margin-top: var(--space-6);
	color: var(--forest);
}
.prose p {
	color: var(--ink);
	margin-bottom: var(--space-4);
}
.prose ul {
	margin: var(--space-4) 0 var(--space-4) var(--space-5);
}
.prose ul li {
	margin-bottom: var(--space-2);
	color: var(--ink);
}
.prose blockquote {
	border-left: 3px solid var(--gold);
	padding-left: var(--space-5);
	margin: var(--space-8) 0;
	font-family: var(--font-display);
	font-size: var(--text-lg);
	color: var(--forest);
	font-style: italic;
}

/* Card list */
.feature-list {
	list-style: none;
	display: grid;
	gap: var(--space-4);
	margin-top: var(--space-5);
}
.feature-list li {
	padding-left: 2rem;
	position: relative;
	color: var(--ink);
	line-height: 1.6;
}
.feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 0.75rem;
	font-weight: 800;
}

/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
	.hero {
		min-height: auto;
		padding-top: 7rem;
	}
	.hero-grid,
	.service-grid,
	.destination-grid,
	.process-grid,
	.careclass-band .grid,
	.split-grid,
	.faq-grid,
	.footer-grid,
	.kpi-row {
		grid-template-columns: 1fr;
	}
	.hero-card {
		justify-self: stretch;
		width: 100%;
	}
	.kpi-row > div {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		padding: var(--space-4) 0 0;
	}
	.kpi-row > div:first-child {
		border-top: none;
		padding-top: 0;
	}
}
@media (max-width: 900px) {
	.nav {
		display: none;
		position: fixed;
		left: 1rem;
		right: 1rem;
		top: 90px;
		flex-direction: column;
		align-items: flex-start;
		padding: var(--space-5);
		background: var(--cream);
		border-radius: var(--radius-lg);
		border: 1px solid var(--hairline);
		box-shadow: var(--shadow-lg);
	}
	.nav.open {
		display: flex;
	}
	.menu-toggle {
		display: grid;
	}
	.service-grid,
	.destination-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 1.25rem), var(--content));
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.btn {
		width: 100%;
	}
	.top-ribbon {
		font-size: 10px;
	}
	.top-ribbon .dot {
		margin: 0 0.5rem;
	}
	.btn-forest {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ============================================================
   THEME TOGGLE — Day / Night
   ============================================================ */
.theme-toggle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--cream);
	border: 1px solid var(--hairline);
	color: var(--ink);
	cursor: pointer;
	transition:
		background var(--transition),
		border-color var(--transition),
		color var(--transition),
		transform var(--transition);
	flex-shrink: 0;
}
.theme-toggle:hover {
	background: var(--sand);
	transform: rotate(-12deg);
}
.theme-toggle svg {
	width: 20px;
	height: 20px;
	display: block;
}
.theme-toggle .icon-sun {
	display: none;
}
.theme-toggle .icon-moon {
	display: block;
}
[data-theme="dark"] .theme-toggle .icon-sun {
	display: block;
}
[data-theme="dark"] .theme-toggle .icon-moon {
	display: none;
}

/* Smooth theme transitions on key surfaces */
html,
body,
.site-header,
.service-card,
.faq-item,
.pullquote,
.icon-btn,
.theme-toggle,
.btn-secondary,
input,
select,
textarea {
	transition:
		background-color var(--transition),
		color var(--transition),
		border-color var(--transition);
}

/* ----------- DARK MODE ----------- */
[data-theme="dark"] {
	--ivory: #0d1f1d;
	--ivory-warm: #112725;
	--cream: #142e2b;
	--sand: #1a3633;
	--border: #2a4744;
	--hairline: #234240;
	--ink: #ece7da;
	--ink-muted: #a8a095;
	--ink-faint: #6f6b62;
	--inverse: #fcf8f3;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
	--shadow-md: 0 10px 28px rgba(0, 0, 0, 0.45);
	--shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
}
[data-theme="dark"] body {
	background: var(--ivory);
	color: var(--ink);
}
[data-theme="dark"] .site-header {
	background: color-mix(in srgb, #0d1f1d 88%, transparent);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .brand-name {
	color: var(--ink);
}
[data-theme="dark"] .nav a {
	color: var(--ink-muted);
}
[data-theme="dark"] .nav a:hover {
	color: var(--ink);
}
[data-theme="dark"] .nav a.active {
	color: var(--gold-light);
}
[data-theme="dark"] .nav a.active::after {
	background: var(--gold);
}
[data-theme="dark"] .icon-btn {
	background: var(--cream);
	border-color: var(--border);
	color: var(--ink);
}
[data-theme="dark"] .icon-btn:hover {
	background: var(--sand);
}
[data-theme="dark"] .theme-toggle {
	background: var(--cream);
	border-color: var(--border);
	color: var(--gold-light);
}
[data-theme="dark"] .theme-toggle:hover {
	background: var(--sand);
}

/* Cards & surfaces */
[data-theme="dark"] .service-card,
[data-theme="dark"] .faq-item {
	background: var(--cream);
	border-color: var(--border);
}
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .service-link,
[data-theme="dark"] .faq-item summary,
[data-theme="dark"] .process-step h3,
[data-theme="dark"] .prose h2,
[data-theme="dark"] .prose h3 {
	color: var(--gold-light);
}
[data-theme="dark"] .service-card p,
[data-theme="dark"] .faq-item p,
[data-theme="dark"] .process-step p,
[data-theme="dark"] .prose p,
[data-theme="dark"] .feature-list li,
[data-theme="dark"] .lede,
[data-theme="dark"] .muted {
	color: var(--ink-muted);
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
	color: var(--ink);
}
[data-theme="dark"] .service-icon {
	background: rgba(212, 168, 114, 0.15);
	color: var(--gold-light);
}
[data-theme="dark"] .feature-list li::before {
	background: rgba(212, 168, 114, 0.18);
	color: var(--gold-light);
}

/* Pull-quotes */
[data-theme="dark"] .pullquote {
	background: var(--ivory-warm);
	border-left-color: var(--gold);
}
[data-theme="dark"] .pullquote blockquote {
	color: var(--gold-light);
}
[data-theme="dark"] .prose blockquote {
	color: var(--gold-light);
}
[data-theme="dark"] .pullquote cite {
	color: var(--ink-muted);
}
[data-theme="dark"] .prose blockquote {
	border-left-color: var(--gold);
}

/* Form fields */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
	background: var(--cream);
	border-color: var(--border);
	color: var(--ink);
}
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(187, 141, 88, 0.2);
}
[data-theme="dark"] label {
	color: var(--gold-light);
}

/* Buttons */
[data-theme="dark"] .btn-secondary {
	border-color: var(--border);
	color: var(--ink);
}
[data-theme="dark"] .btn-secondary:hover {
	background: var(--cream);
	border-color: var(--gold);
}

/* Mobile nav panel */
[data-theme="dark"] .nav {
	background: var(--cream);
	border-color: var(--border);
}

/* Eyebrows on light surfaces */
[data-theme="dark"] .eyebrow {
	color: var(--ink-muted);
}

/* Top-ribbon stays the same (already dark forest) */

/* Insights / blog cards if present */
[data-theme="dark"] .destination-card {
	background: var(--forest-deep);
}
[data-theme="dark"] hr {
	border-color: var(--border);
}

/* Section dividers/horizontal lines */
[data-theme="dark"] .section {
	border-color: var(--border);
}

/* ============================================================
   REVAMP ADDITIONS — split bands, e-book card, check-lists,
   contact grid, article body, image band
   ============================================================ */

/* Split band — image left/right + copy */
.split-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-10);
	align-items: center;
}
.split-band .split-image img {
	width: 100%;
	height: auto;
	max-height: 540px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 60px -30px rgba(8, 37, 34, 0.35);
}
.split-band .split-copy h2 {
	margin-top: 0.35rem;
}
.split-band .split-copy p {
	margin-bottom: 0.9rem;
}
@media (max-width: 860px) {
	.split-band {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}
	.split-band .split-image {
		order: -1;
	}
}

/* Check list — gold tick prefixes */
.check-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.check-list li {
	position: relative;
	padding-left: 1.85rem;
	line-height: 1.55;
	color: var(--ink, #1f2a28);
	font-size: 1rem;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 1.2rem;
	height: 1.2rem;
	background: var(--gold, #bb8d58);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70% 70%;
}
.check-list li strong {
	color: var(--forest, #0f3431);
}

/* Two-column grid utility */
.grid.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-10);
}
@media (max-width: 860px) {
	.grid.two-col {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}
}

/* E-book lead magnet band */
.ebook-band {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--space-10);
	align-items: center;
	background: linear-gradient(
		135deg,
		var(--forest, #0f3431),
		var(--forest-deep, #082522)
	);
	color: #fff;
	padding: var(--space-10);
	border-radius: var(--radius-lg, 16px);
	position: relative;
	overflow: hidden;
}
.ebook-band::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 60%;
	height: 180%;
	background: radial-gradient(
		ellipse at center,
		rgba(212, 168, 114, 0.18),
		transparent 60%
	);
	pointer-events: none;
}
.ebook-band .ebook-copy {
	position: relative;
	z-index: 2;
}
.ebook-band h2 {
	color: #fff;
	margin-top: 0.4rem;
}
.ebook-band p {
	color: rgba(255, 255, 255, 0.85);
}
.ebook-band p.muted {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.92rem;
}
.ebook-band .eyebrow {
	color: var(--gold-light, #d4a872);
}

.ebook-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.ebook-cover {
	width: 100%;
	max-width: 320px;
	aspect-ratio: 3 / 4;
	background: linear-gradient(160deg, #0a2422 0%, #143a36 70%, #0f3431 100%);
	border: 1px solid rgba(212, 168, 114, 0.4);
	border-radius: 6px;
	padding: 2rem 1.6rem;
	display: flex;
	flex-direction: column;
	text-align: center;
	box-shadow:
		0 40px 70px -20px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(212, 168, 114, 0.18) inset;
	transform: rotate(-3deg);
	transition: transform 0.4s ease;
	position: relative;
}
.ebook-cover:hover {
	transform: rotate(-2deg) translateY(-4px);
}

/* Real ebook cover image variant (used on blog page) */
.ebook-visual-link {
	text-decoration: none;
	cursor: pointer;
}
.ebook-cover-img {
	width: 100%;
	max-width: 320px;
	height: auto;
	display: block;
	border-radius: 6px;
	box-shadow:
		0 40px 70px -20px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(212, 168, 114, 0.22),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	transform: rotate(-3deg);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}
.ebook-visual-link:hover .ebook-cover-img {
	transform: rotate(-2deg) translateY(-4px);
	box-shadow:
		0 50px 80px -20px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(212, 168, 114, 0.35);
}
.ebook-cover::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(212, 168, 114, 0.28);
	border-radius: 3px;
	pointer-events: none;
}
.ebook-eyebrow {
	font-family: "Inter", sans-serif;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light, #d4a872);
	font-weight: 600;
	margin-bottom: 1.4rem;
}
.ebook-cover h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	line-height: 1.18;
	color: #fff;
	font-weight: 500;
	margin: 0 0 1rem;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ebook-tagline {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	color: var(--gold-light, #d4a872);
	font-size: 1rem;
	margin-bottom: 0.9rem;
}
.ebook-rule {
	width: 50px;
	height: 1px;
	background: var(--gold-light, #d4a872);
	margin: 0 auto 0.8rem;
	opacity: 0.8;
}
.ebook-meta {
	font-family: "Inter", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}

@media (max-width: 860px) {
	.ebook-band {
		grid-template-columns: 1fr;
		padding: var(--space-8);
		gap: var(--space-8);
	}
	.ebook-visual {
		order: -1;
	}
	.ebook-cover {
		transform: rotate(-2deg);
		max-width: 260px;
	}
}

/* Image band (full-bleed dark hero band on home) */
.image-band .eyebrow {
	color: var(--gold-light, #d4a872);
}
.image-band h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* Contact grid (form + sidebar) */
.contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--space-8);
	align-items: start;
}
@media (max-width: 860px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}
}
.form-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.4rem;
}
.form-grid label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-family: "Inter", sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--forest, #0f3431);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	color: var(--ink, #1f2a28);
	background: #fff;
	border: 1px solid var(--hairline, #d8d3c4);
	border-radius: 8px;
	padding: 0.75rem 0.9rem;
	width: 100%;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
	outline: none;
	border-color: var(--gold, #bb8d58);
	box-shadow: 0 0 0 3px rgba(187, 141, 88, 0.15);
}
.form-grid textarea {
	resize: vertical;
	min-height: 120px;
}
.form-grid button[type="submit"] {
	align-self: flex-start;
	margin-top: 0.5rem;
}

/* Article body (blog posts) */
.article-body h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.9rem;
	font-weight: 600;
	margin: 2.4rem 0 0.9rem;
	color: var(--forest, #0f3431);
	letter-spacing: -0.01em;
	line-height: 1.18;
}
.article-body h2:first-child {
	margin-top: 0;
}
.article-body h3 {
	font-family: "Inter", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 1.8rem 0 0.6rem;
	color: var(--forest, #0f3431);
}
.article-body p {
	font-size: 1.06rem;
	line-height: 1.72;
	color: var(--ink, #1f2a28);
	margin: 0 0 1.1rem;
}
.article-body .check-list {
	margin: 1rem 0 1.4rem;
}

/* Dark mode adjustments for new components */
[data-theme="dark"] .check-list li {
	color: var(--text, #ece7da);
}
[data-theme="dark"] .check-list li strong {
	color: var(--gold-light, #d4a872);
}
[data-theme="dark"] .form-grid input,
[data-theme="dark"] .form-grid select,
[data-theme="dark"] .form-grid textarea {
	background: var(--sand, #1a3633);
	border-color: var(--border, #2a4744);
	color: var(--text, #ece7da);
}
[data-theme="dark"] .form-grid label {
	color: var(--text, #ece7da);
}
[data-theme="dark"] .article-body h2,
[data-theme="dark"] .article-body h3 {
	color: var(--gold-light, #d4a872);
}
[data-theme="dark"] .article-body p {
	color: var(--text, #ece7da);
}
[data-theme="dark"] .split-band .split-copy h2 {
	color: var(--gold-light, #d4a872);
}

/* =============================================================================
   JOURNEYS — Collection nav, sub-page hero, two-col panels, tier band
   ========================================================================== */

/* Collection nav tiles on services.html */
.collection-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
	margin-top: var(--space-6);
}
.collection-nav-tile {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: var(--space-5) var(--space-5);
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--forest);
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}
.collection-nav-tile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.collection-nav-tile:hover::before {
	transform: scaleX(1);
}
.collection-nav-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.collection-nav-label {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.005em;
}
.collection-nav-count {
	font-size: var(--text-sm);
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Collection header (each section on services.html) */
.collection-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--space-6);
}
.collection-header h2 {
	margin: 0.35rem 0 0.6rem;
}
.collection-header .lede {
	color: var(--ink-muted);
}

/* Service card with photo (on services.html collection sections) */
.service-card-photo {
	margin: calc(var(--space-6) * -1) calc(var(--space-6) * -1) var(--space-5);
	aspect-ratio: 3 / 2;
	overflow: hidden;
	position: relative;
	background: var(--forest);
}
.service-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
	display: block;
	transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.service-card-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 52, 49, 0) 55%,
		rgba(15, 52, 49, 0.18) 100%
	);
	pointer-events: none;
}
.service-card:hover .service-card-photo img {
	transform: scale(1.06);
}

/* Service card itself gets a bit more polish on the services landing */
.service-grid .service-card {
	display: flex;
	flex-direction: column;
	padding: var(--space-6);
}
.service-grid .service-card h3 {
	font-size: 1.55rem;
	margin-bottom: 0.55rem;
	letter-spacing: -0.003em;
}
.service-grid .service-card p {
	font-size: 0.97rem;
	line-height: 1.6;
	margin-bottom: var(--space-5);
	flex: 1;
}
.service-grid .service-link {
	margin-top: auto;
}

/* Sub-page hero (16 sub-pages) — full photo, no crop */
.subpage-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	margin-bottom: 0;
	background: var(--forest);
}
.subpage-hero-photo {
	position: relative;
	width: 100%;
	line-height: 0;
}
.subpage-hero-photo img {
	width: 100%;
	height: auto;
	display: block;
}
.subpage-hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 55%;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(15, 52, 49, 0) 0%,
		rgba(15, 52, 49, 0.55) 45%,
		rgba(15, 52, 49, 0.92) 100%
	);
	pointer-events: none;
}
.subpage-hero-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: var(--space-12) var(--space-4) var(--space-10);
	color: #fff;
	max-width: 880px;
}
.subpage-hero-content h1 {
	color: #fff;
	margin: 0.35rem 0 0.65rem;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.subpage-hero-content .lede {
	color: rgba(255, 255, 255, 0.92);
	max-width: 680px;
}

/* Sub-page prose intro */
.subpage-prose {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--ink);
}
.subpage-prose p {
	margin: 0;
}

/* Two-column panels — Perfect for + What's included */
.subpage-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
}
.subpage-panel {
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
}
.subpage-panel .eyebrow {
	display: block;
	margin-bottom: 0.4rem;
}
.subpage-panel h3 {
	margin: 0 0 var(--space-4);
	color: var(--forest);
	font-size: 1.55rem;
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.check-list li {
	position: relative;
	padding-left: 1.65rem;
	color: var(--ink);
	line-height: 1.55;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 4px rgba(187, 141, 88, 0.15);
}

/* Tier band — Essential / Elevated / Elite */
.tier-band {
	background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-xl);
	padding: clamp(var(--space-8), 5vw, var(--space-12));
}
.tier-band-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--space-8);
}
.tier-band-header h2 {
	margin: 0.35rem 0 0.55rem;
}
.tier-band-sub {
	color: var(--ink-muted);
}
.tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}
.tier-card {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	position: relative;
	transition: all var(--transition);
}
.tier-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.tier-badge {
	display: inline-block;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--forest);
	letter-spacing: 0.005em;
	margin-bottom: 0.85rem;
	padding-bottom: 0.55rem;
	border-bottom: 2px solid var(--gold);
}
.tier-card p {
	color: var(--ink);
	line-height: 1.65;
	margin: 0;
}
.tier-card.tier-elevated {
	background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
	border-color: rgba(187, 141, 88, 0.35);
}
.tier-card.tier-elite {
	background: linear-gradient(
		135deg,
		var(--forest) 0%,
		var(--forest-mist) 100%
	);
	color: #fff;
	border-color: transparent;
}
.tier-card.tier-elite .tier-badge {
	color: var(--gold-light);
	border-bottom-color: var(--gold-light);
}
.tier-card.tier-elite p {
	color: rgba(255, 255, 255, 0.92);
}

/* Dark mode adjustments */
[data-theme="dark"] .collection-nav-tile,
[data-theme="dark"] .subpage-panel,
[data-theme="dark"] .tier-card {
	background: var(--surface-2, #1a3531);
	border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .tier-band {
	background: linear-gradient(
		135deg,
		var(--surface-1, #122a28) 0%,
		var(--surface-2, #1a3531) 100%
	);
	border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .tier-card.tier-elevated {
	background: linear-gradient(
		180deg,
		var(--surface-2, #1a3531) 0%,
		var(--surface-1, #122a28) 100%
	);
}
[data-theme="dark"] .subpage-prose {
	color: var(--ink-on-dark, #e7e4dc);
}
[data-theme="dark"] .subpage-panel h3 {
	color: var(--gold-light);
}
[data-theme="dark"] .collection-header h2 {
	color: var(--ink-on-dark, #e7e4dc);
}
[data-theme="dark"] .tier-band-header h2 {
	color: var(--ink-on-dark, #e7e4dc);
}
[data-theme="dark"] .tier-badge {
	color: var(--gold-light);
}
[data-theme="dark"] .tier-card p {
	color: var(--ink-on-dark, #e7e4dc);
}
[data-theme="dark"] .check-list li {
	color: var(--ink-on-dark, #e7e4dc);
}

/* Responsive */
@media (max-width: 960px) {
	.collection-nav {
		grid-template-columns: repeat(2, 1fr);
	}
	.subpage-twocol {
		grid-template-columns: 1fr;
	}
	.tier-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.collection-nav {
		grid-template-columns: 1fr;
	}
	.subpage-hero-content h1 {
		font-size: 1.85rem;
	}
	.service-card-photo {
		height: 150px;
	}
}

/* =============================================================================
   SUB-PAGE SPACING REFINEMENT — premium vertical rhythm
   ========================================================================== */

/* Standardized section spacing (overrides .section / .section-tight when present alongside) */
.section-prose,
.section-panels,
.section-tiers,
.section-cta {
	padding-block: clamp(var(--space-10), 7vw, var(--space-16));
}
.section-prose {
	padding-block: clamp(var(--space-10), 6vw, var(--space-12));
}
.section-cta {
	padding-block: clamp(var(--space-8), 6vw, var(--space-12));
	padding-bottom: clamp(var(--space-12), 8vw, var(--space-20));
}

/* Tighten the positioning paragraph */
.subpage-prose {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.78;
	color: var(--ink);
	text-align: center;
	letter-spacing: -0.005em;
}
.subpage-prose p {
	margin: 0;
}

/* Two-column panels — refined */
.subpage-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(var(--space-5), 3vw, var(--space-8));
	max-width: 1080px;
	margin: 0 auto;
}
.subpage-panel {
	background: var(--cream);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: clamp(var(--space-6), 3vw, var(--space-8));
	position: relative;
	transition: all var(--transition);
}
.subpage-panel:hover {
	border-color: rgba(187, 141, 88, 0.35);
	box-shadow: var(--shadow-sm);
}

/* Premium panel heading — eyebrow stacked above title */
.panel-heading {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0 0 var(--space-5);
	color: var(--forest);
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	font-size: clamp(1.45rem, 2.2vw, 1.75rem);
	line-height: 1.2;
	letter-spacing: -0.003em;
	padding-bottom: var(--space-4);
	border-bottom: 1px solid rgba(187, 141, 88, 0.2);
}
.panel-eyebrow {
	font-family: "Inter", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

/* Check list — tighter, more polished */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.check-list li {
	position: relative;
	padding-left: 1.85rem;
	color: var(--ink);
	line-height: 1.6;
	font-size: 1rem;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0.15rem;
	top: 0.65em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 4px rgba(187, 141, 88, 0.12);
}

/* Tier band — improved breathing */
.tier-band {
	background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-xl);
	padding: clamp(var(--space-8), 5vw, var(--space-12));
}
.tier-band-header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto clamp(var(--space-8), 4vw, var(--space-10));
}
.tier-band-header .eyebrow {
	display: block;
	margin-bottom: 0.55rem;
}
.tier-band-header h2 {
	margin: 0 0 var(--space-3);
	font-size: clamp(1.85rem, 3.5vw, 2.6rem);
	letter-spacing: -0.005em;
}
.tier-band-sub {
	color: var(--ink-muted);
	font-size: 1.02rem;
	line-height: 1.6;
	margin: 0;
}
.tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(var(--space-4), 2.5vw, var(--space-6));
}
.tier-card {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: clamp(var(--space-5), 3vw, var(--space-8));
	position: relative;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.tier-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.tier-badge {
	display: inline-block;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--forest);
	letter-spacing: -0.003em;
	margin: 0;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid var(--gold);
	align-self: flex-start;
}
.tier-card p {
	color: var(--ink);
	line-height: 1.65;
	margin: 0;
	font-size: 0.97rem;
}

/* Sub-page hero — slightly more breathing at bottom of overlay */
.subpage-hero-content {
	padding: clamp(var(--space-12), 8vw, var(--space-16)) var(--space-4)
		clamp(var(--space-10), 6vw, var(--space-12));
}
.subpage-hero-content .eyebrow {
	margin-bottom: 0.6rem;
	display: inline-block;
}
.subpage-hero-content h1 {
	margin: 0 0 0.85rem;
}

/* Dark mode */
[data-theme="dark"] .panel-heading {
	color: var(--gold-light);
	border-bottom-color: rgba(212, 168, 114, 0.25);
}
[data-theme="dark"] .panel-eyebrow {
	color: var(--gold-light);
}
[data-theme="dark"] .tier-badge {
	color: var(--gold-light);
}
[data-theme="dark"] .tier-card {
	background: var(--surface-2, #1a3531);
	border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .tier-card p {
	color: var(--ink-on-dark, #e7e4dc);
}
[data-theme="dark"] .check-list li {
	color: var(--ink-on-dark, #e7e4dc);
}

/* Responsive */
@media (max-width: 960px) {
	.subpage-twocol {
		grid-template-columns: 1fr;
		max-width: 640px;
	}
	.tier-grid {
		grid-template-columns: 1fr;
		max-width: 540px;
		margin: 0 auto;
	}
}
@media (max-width: 640px) {
	.subpage-prose {
		font-size: 1.04rem;
	}
	.panel-heading {
		font-size: 1.35rem;
	}
	.tier-band-header h2 {
		font-size: 1.65rem;
	}
}

/* Per-photo focal tuning on landing cards */
.service-card-photo img[src*="svc-bespoke"] {
	object-position: center 60%;
}
.service-card-photo img[src*="svc-explorer"] {
	object-position: center 30%;
}
.service-card-photo img[src*="svc-immersion"] {
	object-position: center 40%;
}
.service-card-photo img[src*="svc-executive-reset"] {
	object-position: center 35%;
}
.service-card-photo img[src*="svc-care"] {
	object-position: center 45%;
}
.service-card-photo img[src*="svc-premier-care"] {
	object-position: center 50%;
}
.service-card-photo img[src*="svc-fertility-life"] {
	object-position: center 50%;
}
.service-card-photo img[src*="svc-aesthetic-dental"] {
	object-position: center 55%;
}
.service-card-photo img[src*="svc-heritage"] {
	object-position: center 40%;
}
.service-card-photo img[src*="svc-investor"] {
	object-position: center 35%;
}
.service-card-photo img[src*="svc-education"] {
	object-position: center 30%;
}
.service-card-photo img[src*="svc-lifestyle-concierge"] {
	object-position: center 40%;
}
.service-card-photo img[src*="svc-corporate-travel"] {
	object-position: center 40%;
}
.service-card-photo img[src*="svc-visa"] {
	object-position: center 55%;
}
.service-card-photo img[src*="svc-emergency"] {
	object-position: center 45%;
}

/* =============================================================================
   CONTACT PAGE — premium aside (Direct line / Where to find us / Follow along)
   ========================================================================== */
.contact-aside {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}
.contact-card {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: clamp(var(--space-6), 3vw, var(--space-8));
	box-shadow:
		0 1px 0 rgba(15, 52, 49, 0.02),
		0 8px 28px -16px rgba(15, 52, 49, 0.08);
}
.contact-card h3 {
	margin: 0.55rem 0 0.6rem;
	font-size: clamp(1.25rem, 2.2vw, 1.45rem);
	line-height: 1.25;
}
.contact-card .contact-lede {
	color: var(--ink-muted);
	margin: 0;
	line-height: 1.6;
	font-size: 0.98rem;
}
.contact-card-dark {
	background: var(--forest);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.04),
		0 14px 36px -18px rgba(15, 52, 49, 0.45);
}
.contact-card-dark h3 {
	color: #fff;
}
.contact-card-dark .contact-lede {
	color: rgba(255, 255, 255, 0.78);
}

/* Channel rows (WhatsApp / Call / Email) */
.contact-channels {
	list-style: none;
	margin: var(--space-5) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.contact-channels li {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-channels li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-channels a {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	padding: var(--space-4) 2px;
	color: #fff;
	text-decoration: none;
	transition:
		background 0.2s ease,
		padding 0.2s ease;
	border-radius: 6px;
}
.contact-channels a:hover {
	background: rgba(255, 255, 255, 0.04);
	padding-left: var(--space-3);
	padding-right: var(--space-3);
}
.contact-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: var(--gold-light);
}
.contact-channel-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.contact-channel-label {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}
.contact-channel-value {
	font-family: var(--font-serif);
	font-size: 1.08rem;
	color: #fff;
	letter-spacing: 0.005em;
}

/* Meta list (hours) */
.contact-meta {
	margin: var(--space-5) 0 0;
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: var(--space-5);
	row-gap: 0.55rem;
	font-size: 0.95rem;
}
.contact-meta dt {
	font-family: var(--font-sans);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-muted);
	font-weight: 500;
	padding-top: 0.12rem;
}
.contact-meta dd {
	margin: 0;
	color: var(--ink);
	font-family: var(--font-serif);
}

/* Socials */
.contact-socials {
	display: flex;
	gap: 0.55rem;
	margin-top: var(--space-5);
	flex-wrap: wrap;
}
.contact-socials a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--hairline);
	border-radius: 999px;
	color: var(--ink);
	text-decoration: none;
	font-size: 0.92rem;
	font-family: var(--font-sans);
	letter-spacing: 0.01em;
	transition:
		border-color 0.2s ease,
		color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}
.contact-socials a svg {
	width: 16px;
	height: 16px;
	color: var(--forest);
	transition: color 0.2s ease;
}
.contact-socials a:hover {
	border-color: var(--gold);
	color: var(--forest);
	background: rgba(187, 141, 88, 0.06);
	transform: translateY(-1px);
}
.contact-socials a:hover svg {
	color: var(--gold);
}

@media (max-width: 640px) {
	.contact-channel-value {
		font-size: 1rem;
	}
	.contact-meta {
		grid-template-columns: 1fr;
		row-gap: 0.15rem;
	}
	.contact-meta dt {
		padding-top: 0.6rem;
	}
	.contact-meta dt:first-child {
		padding-top: 0;
	}
}

/* =============================================================================
   FULL-BLEED IMAGE BAND — atelier statement
   ========================================================================== */
.image-band-full {
	min-height: 92vh;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	color: #fff;
	padding: clamp(var(--space-10), 8vw, var(--space-14)) 0;
	background-attachment: scroll;
	position: relative;
}
.image-band-full .image-band-content {
	text-align: left;
	max-width: 560px;
	margin-right: auto;
	margin-left: 0;
	padding-left: clamp(var(--space-4), 4vw, var(--space-8));
}
.image-band-full .eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.26em;
}
.image-band-full h2 {
	color: #fff;
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: -0.012em;
	margin: 0.55rem 0 0;
	max-width: 16ch;
	text-shadow:
		0 2px 30px rgba(0, 0, 0, 0.45),
		0 1px 4px rgba(0, 0, 0, 0.35);
}
@media (max-width: 760px) {
	.image-band-full {
		min-height: 78vh;
		align-items: flex-end;
		justify-content: flex-start;
	}
	.image-band-full .image-band-content {
		margin-left: 0;
		margin-right: auto;
		max-width: 100%;
		padding-right: 0;
	}
	.image-band-full h2 {
		font-size: clamp(1.9rem, 7.5vw, 2.4rem);
	}
}

/* =============================================================================
   ABOUT PAGE — 4-collection breakdown (premium)
   ========================================================================== */
.about-collections {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(var(--space-5), 2.4vw, var(--space-7));
	margin-top: var(--space-8);
	counter-reset: ncoll;
}
.about-collection {
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #fbf9f3 100%);
	border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
	border-radius: 18px;
	padding: clamp(var(--space-6), 3vw, var(--space-8));
	padding-top: calc(clamp(var(--space-6), 3vw, var(--space-8)) + 8px);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	box-shadow:
		0 1px 0 rgba(15, 52, 49, 0.03),
		0 22px 48px -32px rgba(15, 52, 49, 0.22);
	overflow: hidden;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
	counter-increment: ncoll;
}
.about-collection::before {
	/* slim gold top rule */
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--gold) 0%,
		color-mix(in srgb, var(--gold) 40%, transparent) 100%
	);
}
.about-collection::after {
	/* large outlined numeral in the top-right corner */
	content: counter(ncoll, decimal-leading-zero);
	position: absolute;
	top: clamp(var(--space-4), 2vw, var(--space-5));
	right: clamp(var(--space-5), 2.4vw, var(--space-6));
	font-family: var(
		--font-display,
		"Cormorant Garamond",
		"Playfair Display",
		serif
	);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(2.6rem, 4.6vw, 3.4rem);
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px color-mix(in srgb, var(--gold) 65%, transparent);
	letter-spacing: 0.02em;
	pointer-events: none;
	user-select: none;
}
.about-collection:hover {
	border-color: color-mix(in srgb, var(--gold) 55%, transparent);
	box-shadow:
		0 1px 0 rgba(15, 52, 49, 0.03),
		0 30px 60px -28px rgba(15, 52, 49, 0.3);
	transform: translateY(-4px);
}
.about-collection .eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
}
.about-collection h3 {
	margin: 0.15rem 0 0.6rem;
	font-size: clamp(1.22rem, 2.1vw, 1.42rem);
	line-height: 1.22;
	font-weight: 500;
	letter-spacing: -0.005em;
	color: var(--forest, #0f3431);
	max-width: 22ch;
}
.about-collection ul {
	list-style: none;
	margin: 0.2rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.about-collection ul li {
	position: relative;
	padding: 0.7rem 0 0.7rem 1.6rem;
	color: var(--ink-muted);
	font-size: 0.96rem;
	line-height: 1.5;
	border-top: 1px solid color-mix(in srgb, var(--ink) 7%, transparent);
}
.about-collection ul li:first-child {
	border-top: 0;
	padding-top: 0.35rem;
}
.about-collection ul li::before {
	/* refined gold tick mark */
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 1px;
	background: var(--gold);
	transform: translateY(-0.5px);
}
.about-collection ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	transform: translate(-2px, -2.5px);
}
@media (max-width: 760px) {
	.about-collections {
		grid-template-columns: 1fr;
	}
	.about-collection::after {
		font-size: 2.4rem;
	}
}

/* ============== TESTIMONIALS ============== */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}
.testimonial {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
	border-radius: 14px;
	padding: var(--space-6);
	margin: 0;
	box-shadow:
		0 1px 0 rgba(15, 52, 49, 0.03),
		0 18px 40px -28px rgba(15, 52, 49, 0.18);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}
.testimonial blockquote {
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 1.125rem;
	line-height: 1.55;
	color: var(--ink);
	margin: 0;
	font-style: italic;
	position: relative;
	padding-top: 0.5rem;
}
.testimonial blockquote::before {
	content: "\201C";
	position: absolute;
	top: -1.2rem;
	left: -0.4rem;
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 4rem;
	color: var(--gold);
	line-height: 1;
	opacity: 0.55;
}
.testimonial figcaption {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: var(--space-3);
	border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.testimonial figcaption strong {
	font-weight: 600;
	color: var(--ink);
}
.testimonial figcaption span {
	color: color-mix(in srgb, var(--ink) 60%, transparent);
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

/* ============== PRESS STRIP ============== */
.press-strip {
	padding: var(--space-10) 0;
	background: var(--cream, #fbf9f3);
	border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}
.press-label {
	text-align: center;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--ink) 55%, transparent);
	margin-bottom: var(--space-5);
}
.press-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--space-6) var(--space-10);
}
.press-logo {
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: color-mix(in srgb, var(--ink) 50%, transparent);
	filter: grayscale(1);
	transition:
		opacity 0.2s ease,
		color 0.2s ease;
	white-space: nowrap;
}
.press-logo:hover {
	color: var(--ink);
}

/* ============== FOOTER NEWSLETTER ============== */
.footer-newsletter {
	border-top: 1px solid color-mix(in srgb, #fff 12%, transparent);
	padding: var(--space-8) 0;
	margin-top: var(--space-6);
}
.footer-newsletter-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-8);
	align-items: center;
}
.footer-newsletter h4 {
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 1.6rem;
	margin: 0 0 0.35rem;
	color: #fff;
}
.footer-newsletter p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
}
.newsletter-form {
	display: flex;
	gap: var(--space-2);
	flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
	flex: 1 1 220px;
	min-width: 0;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font: inherit;
}
.newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
	outline: 2px solid var(--gold);
	outline-offset: 1px;
}
.newsletter-form button {
	padding: 0.85rem 1.3rem;
	border-radius: 10px;
	border: 0;
	background: var(--gold);
	color: #0f3431;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease;
}
.newsletter-form button:hover {
	background: var(--gold-light, #d4a872);
}
@media (max-width: 720px) {
	.footer-newsletter-grid {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
}

/* ============== STARTING PRICES ============== */
.price-badge {
	display: inline-block;
	margin-top: 0.6rem;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 600;
}
.price-badge::before {
	content: "\2014\00a0";
	opacity: 0.65;
}

/* ============== FOUNDER'S NOTE ============== */
.founder-note {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	padding: var(--space-6) 0;
}
.founder-note-eyebrow {
	margin-bottom: var(--space-5);
}
.founder-quote {
	margin: 0;
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 1.35rem;
	line-height: 1.55;
	color: var(--ink);
	font-style: italic;
	position: relative;
	padding: 0 var(--space-4);
}
.founder-quote p {
	margin: 0 0 var(--space-4);
}
.founder-quote p:last-child {
	margin-bottom: 0;
}
.founder-sign {
	margin-top: var(--space-8);
}
.founder-sign-name {
	font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
	font-size: 1.5rem;
	color: var(--ink);
	font-weight: 500;
}
.founder-sign-title {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--ink) 55%, transparent);
	margin-top: 0.3rem;
}
@media (max-width: 640px) {
	.founder-quote {
		font-size: 1.1rem;
		padding: 0;
	}
}

/* ============================================================
   LEAD-MAGNET FORM (handbook gating)
   ============================================================ */
.lead-form {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(212, 168, 114, 0.28);
	border-radius: 14px;
	padding: 1.4rem 1.4rem 1.2rem;
	position: relative;
	z-index: 2;
}
.lead-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.7rem;
}
.lead-form .field {
	margin-bottom: 0.7rem;
}
.lead-form .field label {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-light, #d4a872);
	font-weight: 600;
	margin-bottom: 0.3rem;
}
.lead-form .field input,
.lead-form .field select {
	width: 100%;
	padding: 0.7rem 0.8rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(212, 168, 114, 0.35);
	border-radius: 6px;
	font-family: "Inter", sans-serif;
	font-size: 0.95rem;
	color: var(--ink, #1f2a28);
	transition:
		background 0.18s,
		border-color 0.18s;
}
.lead-form .field input::placeholder {
	color: rgba(31, 42, 40, 0.45);
}
.lead-form .field input:focus,
.lead-form .field select:focus {
	outline: none;
	background: #fff;
	border-color: var(--gold, #bb8d58);
}
.lead-form .honeypot {
	position: absolute;
	left: -10000px;
	height: 0;
	overflow: hidden;
}
.lead-form button[type="submit"] {
	width: 100%;
	margin-top: 0.5rem;
	background: var(--gold, #bb8d58);
	color: var(--forest-deep, #082522);
	border: 0;
	padding: 0.85rem 1.2rem;
	border-radius: 6px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition:
		filter 0.18s,
		transform 0.18s;
}
.lead-form button[type="submit"]:hover {
	filter: brightness(1.07);
	transform: translateY(-1px);
}
.lead-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: wait;
}
.lead-form .privacy-note {
	font-family: "Inter", sans-serif;
	font-size: 0.74rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0.75rem;
	line-height: 1.5;
}
.lead-form .form-error {
	margin-top: 0.6rem;
	padding: 0.6rem 0.8rem;
	background: rgba(220, 90, 80, 0.16);
	border: 1px solid rgba(220, 90, 80, 0.4);
	color: #ffd6d1;
	border-radius: 6px;
	font-size: 0.85rem;
}
.form-success {
	background: rgba(187, 141, 88, 0.12);
	border: 1px solid rgba(212, 168, 114, 0.4);
	border-radius: 14px;
	padding: 1.6rem 1.4rem;
	position: relative;
	z-index: 2;
	text-align: center;
}
.form-success h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	color: var(--gold-light, #d4a872);
	margin: 0 0 0.5rem;
}
.form-success p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 0.8rem;
	font-size: 0.95rem;
}
.form-success .small-fallback {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
}
.form-success .small-fallback a {
	color: var(--gold-light, #d4a872);
	text-decoration: underline;
	text-underline-offset: 3px;
}
@media (max-width: 860px) {
	.lead-form .form-row {
		grid-template-columns: 1fr;
	}
}
