/* Tanova — black / white luxury + warm white accent (no cyan/blue) */

:root {
	--tn-black: #0a0a0a;
	--tn-black-2: #121212;
	--tn-black-3: #1a1a1a;
	--tn-white: #ffffff;
	--tn-muted: #a8a29a;
	--tn-muted-2: #6b6560;
	--tn-line: rgba(255, 255, 255, 0.12);
	/* Warm white — client request Aug 2026 */
	--tn-accent: #f5f0e6;
	--tn-accent-soft: rgba(245, 240, 230, 0.16);
	--tn-warm: #e8c9a8;
	--tn-link: var(--tn-accent);
	/* Button tokens — overridable via Tanova Studio → Theme settings */
	--tn-btn-primary-bg: #ffffff;
	--tn-btn-primary-text: #0a0a0a;
	--tn-btn-ghost-bg: transparent;
	--tn-btn-ghost-text: #ffffff;
	--tn-btn-ghost-border: var(--tn-line);
	--tn-btn-accent-bg: var(--tn-accent);
	--tn-btn-accent-text: #0a0a0a;
	--tn-font: "Outfit", system-ui, -apple-system, sans-serif;
	--tn-display: "Outfit", system-ui, sans-serif;
	--tn-radius: 12px;
	--tn-radius-sm: 8px;
	--tn-max: 1120px;
	--tn-pad: clamp(1.25rem, 4vw, 2rem);
	--tn-space: clamp(3rem, 8vw, 6rem);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	font-family: var(--tn-font);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--tn-white);
	background: var(--tn-black);
	-webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
	font-family: var(--tn-display);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: 0.08em; }

p { margin: 0 0 1rem; color: var(--tn-muted); }
p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 38rem; }

.tn-container {
	width: min(100% - 2 * var(--tn-pad), var(--tn-max));
	max-width: 100%;
	margin-inline: auto;
	/* Allow nested grids/flex to shrink on small screens (prevents image overflow) */
	min-width: 0;
}

.tn-section {
	padding: var(--tn-space) 0;
}

.tn-section--tight {
	padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.tn-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--tn-accent);
	margin-bottom: 0.75rem;
}

/* Buttons — colours from CSS vars (Theme settings + per-scheme).
 * !important on fill/text beats .tn-prose a / footer a / scheme colour inheritance
 * (was cream text on white primary buttons in Image + text).
 */
.tn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.tn-btn:hover {
	transform: translateY(-1px);
	text-decoration: none !important;
}

a.tn-btn--primary,
.tn-btn--primary {
	background: var(--tn-btn-primary-bg, #ffffff) !important;
	color: var(--tn-btn-primary-text, #0a0a0a) !important;
}
a.tn-btn--primary:hover,
.tn-btn--primary:hover,
a.tn-btn--primary:focus,
.tn-btn--primary:focus {
	background: var(--tn-btn-accent-bg, var(--tn-accent)) !important;
	color: var(--tn-btn-accent-text, #0a0a0a) !important;
}

a.tn-btn--ghost,
.tn-btn--ghost {
	background: var(--tn-btn-ghost-bg, transparent) !important;
	border-color: var(--tn-btn-ghost-border, var(--tn-line)) !important;
	color: var(--tn-btn-ghost-text, #ffffff) !important;
}
a.tn-btn--ghost:hover,
.tn-btn--ghost:hover {
	border-color: var(--tn-accent) !important;
	color: var(--tn-accent) !important;
}

a.tn-btn--accent,
.tn-btn--accent {
	background: var(--tn-btn-accent-bg, var(--tn-accent)) !important;
	color: var(--tn-btn-accent-text, #0a0a0a) !important;
}
a.tn-btn--accent:hover,
.tn-btn--accent:hover {
	background: var(--tn-btn-primary-bg, #ffffff) !important;
	color: var(--tn-btn-primary-text, #0a0a0a) !important;
}

.tn-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Header */
.tn-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--tn-line);
}

.tn-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
	padding: 0.65rem 0;
}

.tn-logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
	text-decoration: none;
	line-height: 0;
}

.tn-logo img,
.tn-logo .custom-logo,
.tn-logo__custom {
	height: 40px;
	width: auto;
	max-width: min(220px, 42vw);
	object-fit: contain;
	display: block;
}

.tn-logo .custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
}

.tn-logo__palm {
	width: 28px;
	height: 28px;
	opacity: 0.95;
}

.tn-nav {
	display: none;
}

.tn-nav .tn-menu,
.tn-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 1.1rem;
	align-items: center;
}

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

.tn-nav a {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tn-muted);
	white-space: nowrap;
}

.tn-nav a:hover,
.tn-nav .current-menu-item > a,
.tn-nav .current-menu-ancestor > a {
	color: var(--tn-white);
}

/* Parent with children: show caret */
.tn-nav .menu-item-has-children > a {
	padding-right: 0.85em;
	position: relative;
}

.tn-nav .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.35em;
	height: 0.35em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	opacity: 0.75;
}

/* Desktop dropdown — colours via Customizer CSS vars */
.tn-nav .sub-menu {
	display: none;
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	transform: translateX(-50%);
	min-width: 13.5rem;
	padding: 0.55rem 0;
	margin: 0;
	list-style: none;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	background: var(--tn-dropdown-bg, #141414);
	color: var(--tn-dropdown-text, #f5f0e6);
	border: 1px solid var(--tn-dropdown-border, rgba(245, 240, 230, 0.18));
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
	z-index: 120;
}

.tn-nav .sub-menu::before {
	/* hover bridge so menu doesn’t close in the gap */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}

.tn-nav .sub-menu a {
	display: block;
	padding: 0.85rem 1.15rem;
	font-size: 0.78rem;
	line-height: 1.45;
	white-space: nowrap;
	color: var(--tn-dropdown-text, #f5f0e6);
}

.tn-nav .sub-menu a:hover {
	background: var(--tn-dropdown-hover, rgba(245, 240, 230, 0.1));
	color: var(--tn-dropdown-text, #ffffff);
}

.tn-nav .menu-item-has-children:hover > .sub-menu,
.tn-nav .menu-item-has-children:focus-within > .sub-menu,
.tn-nav .menu-item-has-children.is-open > .sub-menu {
	display: flex;
}

/* Nested level 3 */
.tn-nav .sub-menu .sub-menu {
	left: calc(100% + 4px);
	top: 0;
	transform: none;
}

/* Room for per-bed tabs + red light in the primary nav */
@media (min-width: 960px) {
	.tn-nav .tn-menu,
	.tn-nav ul.tn-menu {
		gap: 0.1rem 0.75rem;
		justify-content: center;
		max-width: min(52vw, 720px);
	}
}

@media (min-width: 1200px) {
	.tn-nav a {
		font-size: 0.78rem;
		letter-spacing: 0.07em;
	}
	.tn-nav .tn-menu,
	.tn-nav ul.tn-menu {
		gap: 0.15rem 1rem;
		max-width: none;
	}
}

.tn-header__cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.tn-header__phone {
	display: none;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--tn-muted);
}

.tn-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--tn-line);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
}

.tn-burger span {
	display: block;
	height: 2px;
	background: var(--tn-white);
	border-radius: 1px;
}

@media (min-width: 960px) {
	.tn-nav { display: block; }
	.tn-burger { display: none; }
	.tn-header__phone { display: inline; }
	.tn-mobile-nav { display: none !important; }
}

/* —— Mobile nav: full-height drawer + full-panel drill-down —— */
body.tn-menu-open {
	overflow: hidden;
}

.tn-mobile-nav {
	--tn-mnav-bg: var(--tn-mobile-menu-bg, #0c0c0c);
	--tn-mnav-text: var(--tn-mobile-menu-text, #ffffff);
	--tn-mnav-muted: var(--tn-mobile-menu-muted, rgba(245, 240, 230, 0.55));
	--tn-mnav-line: var(--tn-mobile-menu-border, rgba(245, 240, 230, 0.14));
	--tn-mnav-accent: var(--tn-mobile-menu-accent, #f5f0e6);

	display: none;
	position: fixed;
	left: 0;
	right: 0;
	/* top set in JS from header height */
	top: 72px;
	bottom: 0;
	z-index: 90;
	flex-direction: column;
	padding: 0;
	background: var(--tn-mnav-bg);
	color: var(--tn-mnav-text);
	border-top: 1px solid var(--tn-mnav-line);
	overflow: hidden;
}

.tn-mobile-nav.is-open {
	display: flex;
}

.tn-mobile-nav__panels {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

/* Root level list */
.tn-mobile-nav .tn-menu--root,
.tn-mobile-nav .tn-menu {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0 1rem;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.tn-mobile-nav .tn-menu--root > li {
	border-bottom: 1px solid var(--tn-mnav-line);
	margin: 0;
	padding: 0;
}

.tn-mobile-nav .tn-menu-row {
	display: flex;
	align-items: stretch;
	min-height: 3.5rem;
}

.tn-mobile-nav .tn-menu--root > li > a,
.tn-mobile-nav .tn-menu-row > a {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	padding: 1.15rem var(--tn-pad);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.45;
	text-transform: uppercase;
	color: var(--tn-mnav-text);
	text-decoration: none;
}

.tn-mobile-nav .tn-submenu-toggle {
	flex: 0 0 3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-left: 1px solid var(--tn-mnav-line);
	background: transparent;
	color: var(--tn-mnav-accent);
	cursor: pointer;
	padding: 0;
	min-height: 3.5rem;
}

.tn-mobile-nav .tn-submenu-toggle svg {
	width: 20px;
	height: 20px;
	display: block;
}

/* Full-panel stack — covers entire drawer, never sits “behind” root items */
.tn-mobile-nav__stack {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
}

.tn-mobile-nav .tn-mobile-panel {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: none;
	flex-direction: column;
	margin: 0;
	padding: 0;
	background: var(--tn-mnav-bg);
	color: var(--tn-mnav-text);
	overflow: hidden;
	pointer-events: auto;
}

.tn-mobile-nav .tn-mobile-panel.is-active {
	display: flex;
	animation: tn-panel-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* The WP sub-menu list inside the full panel */
.tn-mobile-nav .tn-mobile-panel__list,
.tn-mobile-nav .tn-mobile-panel > .sub-menu {
	position: static !important;
	inset: auto !important;
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0;
	padding: 0 0 1.5rem;
	list-style: none;
	display: block !important;
	transform: none !important;
	background: transparent;
	border: 0;
	box-shadow: none;
}

@keyframes tn-panel-in {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

.tn-mobile-nav .tn-mobile-panel__head {
	flex: 0 0 auto;
	padding: 0.35rem var(--tn-pad) 0.75rem;
	border-bottom: 1px solid var(--tn-mnav-line);
	background: var(--tn-mnav-bg);
	position: sticky;
	top: 0;
	z-index: 2;
}

.tn-mobile-nav .tn-submenu-back {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	width: auto;
	padding: 1rem 0 0.35rem;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--tn-mnav-accent);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.tn-mobile-nav .tn-submenu-back svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.tn-mobile-nav .tn-submenu-title {
	display: block;
	padding: 0.35rem 0 0.65rem;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tn-mnav-text);
	line-height: 1.35;
}

.tn-mobile-nav .tn-mobile-panel__list > li,
.tn-mobile-nav .tn-mobile-panel > .sub-menu > li {
	border-bottom: 1px solid var(--tn-mnav-line);
	margin: 0;
	list-style: none;
}

.tn-mobile-nav .tn-mobile-panel__list > li > a,
.tn-mobile-nav .tn-mobile-panel > .sub-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 3.65rem;
	padding: 1.2rem var(--tn-pad);
	font-size: 1.02rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--tn-mnav-text);
	text-decoration: none;
}

.tn-mobile-nav .tn-mobile-panel__parent-link {
	border-bottom: 1px solid var(--tn-mnav-line);
	padding: 0;
}

.tn-mobile-nav .tn-mobile-panel__parent-link a {
	display: flex;
	align-items: center;
	min-height: 3.25rem;
	padding: 1rem var(--tn-pad);
	color: var(--tn-mnav-muted);
	font-size: 0.88rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}

.tn-mobile-nav__actions {
	flex: 0 0 auto;
	margin: 0;
	padding: 1.1rem var(--tn-pad) calc(1.25rem + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--tn-mnav-line);
	background: var(--tn-mnav-bg);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

/* Hide root + actions while viewing a full sub-panel */
.tn-mobile-nav.is-drilled .tn-menu--root {
	visibility: hidden;
	pointer-events: none;
}

.tn-mobile-nav.is-drilled .tn-mobile-nav__actions {
	display: none;
}

/* Promo strip */
.tn-promo {
	background: linear-gradient(90deg, #0d1a22, #0a0a0a 40%, #1a120c);
	border-bottom: 1px solid var(--tn-line);
	padding: 0.55rem var(--tn-pad);
	text-align: center;
	font-size: 0.85rem;
	color: var(--tn-warm);
}

.tn-promo small {
	display: block;
	color: var(--tn-muted-2);
	margin-top: 0.15rem;
	font-size: 0.7rem;
}

/* Hero */
.tn-hero {
	position: relative;
	min-height: min(88vh, 820px);
	display: flex;
	align-items: flex-end;
	padding: calc(var(--tn-space) + 1rem) 0 var(--tn-space);
	overflow: hidden;
}

.tn-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.tn-hero__bg img,
.tn-hero__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: 0.55;
}

.tn-hero__bg video {
	/* Avoid flash of black before first frame */
	background: #0a0a0a;
}

/* Decorative ambient clips — never show native play chrome */
.tns-media-video,
.tn-hero__bg video,
.tn-split__media video {
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.tns-media-video::-webkit-media-controls,
.tns-media-video::-webkit-media-controls-enclosure,
.tns-media-video::-webkit-media-controls-panel,
.tns-media-video::-webkit-media-controls-start-playback-button,
.tns-media-video::-webkit-media-controls-play-button,
.tn-hero__bg video::-webkit-media-controls,
.tn-hero__bg video::-webkit-media-controls-start-playback-button,
.tn-split__media video::-webkit-media-controls,
.tn-split__media video::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

.tn-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.96) 100%);
}

.tn-hero__content {
	position: relative;
	z-index: 1;
	max-width: 40rem;
}

.tn-hero h1 span {
	color: var(--tn-accent);
}

/* Cards / grid */
.tn-grid {
	display: grid;
	gap: 1.25rem;
	width: 100%;
	/* minmax(0,1fr) stops grid tracks expanding past the viewport from large images */
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 720px) {
	.tn-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.tn-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.tn-card {
	background: var(--tn-black-2);
	border: 1px solid var(--tn-line);
	border-radius: var(--tn-radius);
	overflow: hidden;
	height: 100%;
	min-width: 0;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s, transform 0.2s;
}

.tn-card:hover {
	border-color: rgba(245, 240, 230, 0.35);
	transform: translateY(-2px);
}

.tn-card__media {
	aspect-ratio: 1;
	background: #000;
	overflow: hidden;
	min-width: 0;
	width: 100%;
}

.tn-card__media img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tn-card__body {
	padding: 1.25rem 1.35rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tn-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
}

.tn-pill {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	border: 1px solid var(--tn-line);
	color: var(--tn-muted);
	background: rgba(255,255,255,0.04);
}

.tn-pill--accent {
	border-color: var(--tn-accent-soft);
	color: var(--tn-accent);
	background: var(--tn-accent-soft);
}

.tn-price {
	margin: 1rem 0 0.5rem;
}

.tn-price__min {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--tn-white);
}

.tn-price__min small {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--tn-muted);
	margin-left: 0.15rem;
}

.tn-packs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin: 0.75rem 0 1rem;
}

.tn-pack {
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--tn-line);
	border-radius: var(--tn-radius-sm);
	padding: 0.65rem 0.75rem;
	text-align: center;
}

.tn-pack strong {
	display: block;
	font-size: 1.15rem;
	color: var(--tn-white);
}

.tn-pack span {
	font-size: 0.75rem;
	color: var(--tn-muted);
}

.tn-pack em {
	display: block;
	font-style: normal;
	font-size: 0.7rem;
	color: var(--tn-accent);
	margin-top: 0.2rem;
}

.tn-card__body .tn-actions {
	margin-top: auto;
}

.tn-badge-soon {
	display: inline-block;
	background: var(--tn-warm);
	color: #111;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

/* Feature row */
.tn-features {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 720px) {
	.tn-features { grid-template-columns: repeat(3, 1fr); }
}

.tn-feature {
	padding: 1.5rem;
	border: 1px solid var(--tn-line);
	border-radius: var(--tn-radius);
	background: linear-gradient(160deg, #141414, #0c0c0c);
}

.tn-feature h3 {
	margin-bottom: 0.5rem;
}

/* Split */
.tn-split {
	display: grid;
	gap: 2rem;
	align-items: center;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
}

.tn-split > * {
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 860px) {
	.tn-split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3rem; }
	.tn-split--reverse { direction: rtl; }
	.tn-split--reverse > * { direction: ltr; }
}

.tn-split__media {
	border-radius: var(--tn-radius);
	overflow: hidden;
	border: 1px solid var(--tn-line);
	background: #000;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

.tn-split__media img,
.tn-split__media video {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.tn-split__media video {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 10;
	background: #000;
}

/* FAQ */
.tn-faq details {
	border-bottom: 1px solid var(--tn-line);
	padding: 1rem 0;
}

.tn-faq summary {
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.04em;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--tn-white);
}

.tn-faq summary::-webkit-details-marker { display: none; }

.tn-faq summary::after {
	content: "+";
	color: var(--tn-accent);
	font-size: 1.25rem;
	line-height: 1;
}

.tn-faq details[open] summary::after { content: "–"; }

.tn-faq details p {
	margin: 0.75rem 0 0.25rem;
	max-width: 40rem;
}

/* Page hero simple */
.tn-page-hero {
	padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid var(--tn-line);
	background:
		radial-gradient(ellipse 80% 60% at 80% 0%, rgba(245,240,230,0.08), transparent 55%),
		var(--tn-black);
}

/* Footer */
.tn-footer {
	border-top: 1px solid var(--tn-line);
	padding: 3rem 0 2rem;
	background: #050505;
	margin-top: 2rem;
}

.tn-footer__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 720px) {
	.tn-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

.tn-footer h4 {
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	color: var(--tn-muted);
	margin-bottom: 1rem;
}

.tn-footer a:not(.tn-btn) { color: rgba(255,255,255,0.85); }
/* Footer buttons use same tokens as site (Theme settings). */
.tn-footer a.tn-btn--primary {
	background: var(--tn-btn-primary-bg, #fff) !important;
	color: var(--tn-btn-primary-text, #0a0a0a) !important;
}
.tn-footer a.tn-btn--accent {
	background: var(--tn-btn-accent-bg, var(--tn-accent)) !important;
	color: var(--tn-btn-accent-text, #0a0a0a) !important;
}
.tn-footer a.tn-btn--ghost {
	color: var(--tn-btn-ghost-text, #fff) !important;
}
.tn-footer p, .tn-footer li { color: var(--tn-muted); font-size: 0.95rem; }

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

.tn-footer li { margin-bottom: 0.4rem; }

.tn-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--tn-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--tn-muted-2);
}

/* Content / blog */
.tn-prose {
	max-width: 42rem;
}

.tn-prose p { color: var(--tn-muted, rgba(255,255,255,0.75)); }
/* Body/inline links only — never restyle .tn-btn CTAs (was cream-on-white). */
.tn-prose a:not(.tn-btn) { color: var(--tn-link, var(--tn-accent)); text-decoration: underline; }
.tn-prose a.tn-btn { text-decoration: none !important; }
.tn-prose strong,
.tn-prose b { color: var(--tn-scheme-text, #fff); font-weight: 600; }
.tn-prose em,
.tn-prose i { font-style: italic; }
.tn-prose ul,
.tn-prose ol {
	margin: 0.85rem 0 1.1rem;
	padding-left: 1.25rem;
	color: var(--tn-muted);
}
.tn-prose ul { list-style: disc; }
.tn-prose ol { list-style: decimal; }
.tn-prose li {
	margin: 0.35rem 0;
	padding-left: 0.15rem;
	line-height: 1.5;
}
.tn-prose .lead { color: rgba(255,255,255,0.82); }

.tn-post-card {
	border: 1px solid var(--tn-line);
	border-radius: var(--tn-radius);
	padding: 1.5rem;
	background: var(--tn-black-2);
}

.tn-post-card h3 {
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: 1.25rem;
}

/* Feature list */
.tn-checklist {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.tn-checklist li {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.4rem;
	color: var(--tn-muted);
	border-bottom: 1px solid var(--tn-line);
}

.tn-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--tn-accent);
}

/* Map placeholder */
.tn-map {
	border-radius: var(--tn-radius);
	border: 1px solid var(--tn-line);
	overflow: hidden;
	min-height: 280px;
	background: var(--tn-black-3);
}

.tn-map iframe {
	width: 100%;
	height: 320px;
	border: 0;
	filter: grayscale(0.3) contrast(1.05);
}

/* Gallery — responsive tiles that never spill past the viewport */
.tn-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 720px) {
	.tn-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.tn-gallery__item {
	aspect-ratio: 1;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: var(--tn-radius-sm);
	border: 1px dashed var(--tn-line);
	background: var(--tn-black-2);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	color: var(--tn-muted-2);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tn-gallery__item img {
	/* Fill the tile completely; ignore parent padding so photos don’t look inset */
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
	display: block;
	border: 0;
}

/* Single-column on very small phones if 2-up still feels tight */
@media (max-width: 380px) {
	.tn-gallery {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Notice plugin */
.tn-admin-banner {
	background: #3a1f00;
	color: #ffd7a8;
	padding: 0.75rem 1rem;
	text-align: center;
	font-size: 0.9rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
