/*
Theme Name: Uniquecations Luxe
Theme URI: https://uniquecations.com
Author: Uniquecations
Description: A refined hospitality theme for Uniquecations — a curated collection of villas, resorts and unique stays. Each property gets its own microsite-style page with rooms, dining, experiences, gallery and location. Inspired by Janu and Design Hotels. Requires the Uniquecations Core plugin.
Version: 1.2.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: uniquecations-luxe
*/

/* =========================================================================
   Design tokens
   ====================================================================== */

:root {
	--bg: #ffffff;
	--bg-alt: #f4f4f4;
	--ink: #0a0a0a;
	--ink-soft: #6a6a6a;
	--accent: #0a0a0a;
	--accent-dark: #000000;
	--line: #e8e8e8;
	--white: #ffffff;
	--dark: #0a0a0a;
	--serif: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
	--sans: "Inter", "Helvetica Neue", Arial, sans-serif;
	--container: 1240px;
	--radius: 0;
	--shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	--trans: 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* =========================================================================
   Base
   ====================================================================== */

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	color: var(--ink);
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: 8px 16px;
	z-index: 999;
}
.skip-link:focus { left: 0; color: var(--white); }

/* =========================================================================
   Layout helpers
   ====================================================================== */

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}
.container.narrow { max-width: 820px; }
.center { text-align: center; }

.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-flush-top { padding-top: 40px; }

.section-dark {
	background: var(--dark);
	color: #bdbdbd;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 56px;
	border-top: 1px solid var(--ink);
	padding-top: 28px;
}
.section-head .section-title { margin-bottom: 0; }

.eyebrow {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 14px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.72); }
.eyebrow a { color: inherit; }

.section-title {
	font-size: clamp(36px, 5.5vw, 84px);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 28px;
	max-width: 14em;
}
.center .section-title { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
	display: inline-block;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 16px 36px;
	border: 1px solid var(--ink);
	border-radius: var(--radius);
	cursor: pointer;
	transition: all var(--trans);
	text-align: center;
}
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-small { padding: 10px 22px; font-size: 11px; }
.btn-block { display: block; width: 100%; margin-bottom: 10px; }

.section-dark .btn-outline,
.is-overlay:not(.is-scrolled) .btn-outline { border-color: var(--white); color: var(--white); }
.section-dark .btn-outline:hover { background: var(--white); color: var(--ink); }

.text-link {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid var(--accent);
	padding-bottom: 4px;
	white-space: nowrap;
}
.text-link:hover { color: var(--accent-dark); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* =========================================================================
   Header
   ====================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	transition: background var(--trans), border-color var(--trans);
}
.site-header.is-overlay {
	position: fixed;
	width: 100%;
	background: transparent;
	border-bottom-color: transparent;
}
.site-header.is-overlay.is-scrolled {
	background: rgba(29, 28, 25, 0.92);
	backdrop-filter: blur(8px);
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 20px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-brand img, .custom-logo { max-height: 44px; width: auto; }
.site-brand-text {
	font-family: var(--serif);
	font-size: 26px;
	letter-spacing: 0.04em;
	color: var(--ink);
}
.is-overlay .site-brand-text { color: var(--white); }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; }
.site-nav ul a {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink);
}
.site-nav ul a:hover { color: var(--accent-dark); }
.is-overlay .site-nav ul a { color: var(--white); }
.is-overlay .site-nav ul a:hover { color: rgba(255, 255, 255, 0.65); }

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 26px;
	height: 1.5px;
	background: var(--ink);
	margin: 6px 0;
	transition: transform var(--trans);
}
.is-overlay .nav-toggle span { background: var(--white); }
.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* =========================================================================
   Heroes
   ====================================================================== */

.home-hero, .property-hero {
	position: relative;
	min-height: 94vh;
	display: flex;
	align-items: flex-end;
	text-align: left;
	background: var(--dark) center/cover no-repeat;
	color: var(--white);
	padding: 140px 0 0;
}
.hero-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.6));
}
.hero-content {
	position: relative;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px 56px;
}
.hero-title {
	font-size: clamp(46px, 8vw, 128px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 0.98;
	color: var(--white);
	margin: 0 0 24px;
	max-width: 14em;
}
.hero-sub {
	font-size: 17px;
	font-weight: 400;
	max-width: 480px;
	margin: 0 0 44px;
	color: rgba(255, 255, 255, 0.85);
}
.hero-scroll {
	position: absolute;
	bottom: 56px;
	right: 32px;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	writing-mode: vertical-rl;
}
.hero-scroll::after {
	content: "";
	display: block;
	width: 1px;
	height: 34px;
	background: rgba(255, 255, 255, 0.5);
	margin: 10px auto 0;
}

/* Marquee strip */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	padding: 22px 0;
	white-space: nowrap;
}
.marquee-inner {
	display: inline-flex;
	animation: ucx-marquee 40s linear infinite;
}
.marquee-inner span {
	font-family: var(--serif);
	font-size: clamp(26px, 3.6vw, 52px);
	font-weight: 500;
	letter-spacing: -0.02em;
	padding-right: 0.6em;
}
@keyframes ucx-marquee {
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.marquee-inner { animation: none; }
}

/* Hero search */
.hero-search {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	max-width: 720px;
	margin: 0;
	text-align: left;
}
.hero-search-field {
	flex: 1;
	padding: 14px 24px;
	border-right: 1px solid var(--line);
}
.hero-search-field label,
.filter-field label {
	display: block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 2px;
}
.hero-search-field select,
.filter-field select {
	width: 100%;
	border: 0;
	background: transparent;
	font-family: var(--sans);
	font-size: 15px;
	color: var(--ink);
	padding: 4px 0;
	cursor: pointer;
}
.hero-search .btn { border: 0; border-radius: 0; }

/* Page hero (inner pages) */
.page-hero { padding: 130px 0 56px; }
.page-hero .center { text-align: left; }
.page-title {
	font-size: clamp(44px, 7vw, 110px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 0.95;
	margin: 0 0 16px;
}
.page-intro { color: var(--ink-soft); max-width: 560px; margin: 0; }

/* =========================================================================
   Destination + type tiles
   ====================================================================== */

.destination-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 40px;
}
.destination-tile {
	position: relative;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
	background: var(--dark) center/cover no-repeat;
	border-radius: var(--radius);
	overflow: hidden;
	color: var(--white);
}
.destination-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 19, 16, 0.7), rgba(20, 19, 16, 0.05) 55%);
	transition: background var(--trans);
}
.destination-tile:hover::before { background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15) 60%); }
.destination-tile-name {
	position: relative;
	font-family: var(--serif);
	font-size: 34px;
}
.destination-tile-count {
	position: relative;
	font-size: 11px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(255, 253, 249, 0.85);
}

.type-grid {
	display: block;
	margin-top: 40px;
	border-bottom: 1px solid var(--ink);
}
.type-tile {
	display: flex;
	align-items: baseline;
	gap: 32px;
	border-top: 1px solid var(--ink);
	padding: 30px 0;
	transition: padding var(--trans);
}
.type-tile:hover { padding-left: 20px; }
.type-tile-name {
	font-family: var(--serif);
	font-size: clamp(32px, 4.5vw, 68px);
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ink);
	flex: 0 0 auto;
	min-width: 40%;
}
.type-tile-desc { color: var(--ink-soft); flex: 1; font-size: 15px; }
.type-tile .text-link { margin-left: auto; }

/* =========================================================================
   Property cards
   ====================================================================== */

.property-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 32px;
	counter-reset: ucx-card;
	padding-bottom: 48px;
}
.property-grid .property-card:nth-child(3n + 2),
.property-grid .property-card:nth-child(3n + 2).is-visible { transform: translateY(48px); }
@media (max-width: 1024px) {
	.property-grid { padding-bottom: 0; }
	.property-grid .property-card:nth-child(3n + 2),
	.property-grid .property-card:nth-child(3n + 2).is-visible { transform: none; }
}

.property-card { display: flex; flex-direction: column; }
.property-card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-alt);
}
.property-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.25, 0.6, 0.3, 1);
}
.property-card:hover .property-card-media img { transform: scale(1.06); }
.property-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 240px;
	background: linear-gradient(135deg, var(--bg-alt), var(--line));
}
.property-card-type {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(255, 253, 249, 0.92);
	color: var(--ink);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: var(--radius);
}
.property-card-body {
	position: relative;
	border-top: 1px solid var(--ink);
	margin-top: 20px;
	padding: 16px 4px 0;
}
.property-card-body::after {
	counter-increment: ucx-card;
	content: "(" counter(ucx-card, decimal-leading-zero) ")";
	position: absolute;
	top: 18px;
	right: 4px;
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--ink-soft);
}
.property-card-body .eyebrow { margin-bottom: 6px; }
.property-card-title { font-size: 27px; margin: 0 0 6px; }
.property-card-title a { color: var(--ink); }
.property-card-title a:hover { color: var(--accent-dark); }
.property-card-facts { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; }
.property-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid var(--line);
	padding-top: 14px;
}
.property-card-price { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); }

/* =========================================================================
   Stays filter bar
   ====================================================================== */

.filter-bar {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}
.filter-field { flex: 1; min-width: 170px; }
.filter-field select {
	border-bottom: 1px solid var(--line);
	padding: 6px 0;
}
.filter-clear { align-self: center; }

.pagination { margin-top: 64px; text-align: center; }
.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.pagination .page-numbers {
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: 13px;
	letter-spacing: 0.1em;
	color: var(--ink);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.empty-state { padding: 60px 0; }

/* =========================================================================
   Single property — microsite
   ====================================================================== */

.property-nav {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(246, 243, 237, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}
.property-nav-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 62px;
}
.property-nav-name {
	font-family: var(--serif);
	font-size: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}
.property-nav ul {
	list-style: none;
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.property-nav ul a {
	display: inline-block;
	padding: 20px 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-soft);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.property-nav ul a:hover,
.property-nav ul a.is-active { color: var(--ink); border-bottom-color: var(--accent); }

/* Overview */
.overview-layout {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 64px;
	align-items: start;
}
.prose { max-width: 640px; }
.prose p { margin: 0 0 1.4em; }
.prose img { border-radius: var(--radius); margin: 2em 0; }
.prose h2, .prose h3 { margin-top: 1.6em; }

.fact-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	margin-bottom: 24px;
}
.fact-card h3 {
	font-size: 22px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.fact-list { list-style: none; margin: 0 0 22px; padding: 0; }
.fact-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	font-size: 14px;
	border-bottom: 1px solid var(--bg-alt);
}
.fact-list span { color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; padding-top: 3px; }
.fact-note { font-size: 12.5px; color: var(--ink-soft); margin: 10px 0 0; text-align: center; }

.amenity-list { list-style: none; margin: 0; padding: 0; columns: 1; }
.amenity-list li {
	padding: 7px 0 7px 22px;
	position: relative;
	font-size: 15px;
}
.amenity-list li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* Feature rows (rooms / dining / experiences) */
.feature-list { display: flex; flex-direction: column; gap: 72px; margin-top: 48px; }
.feature-row {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
}
.feature-row.is-flipped .feature-media { order: 2; }
.feature-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-alt);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.feature-row:hover .feature-media img { transform: scale(1.04); }
.feature-body h3 { font-size: 32px; margin-bottom: 8px; }
.feature-sub {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 16px;
}

/* Feature slider (horizontal scroll when a section has 3+ items) */
.feature-slider { margin-top: 56px; }
.feature-slider-track {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}
.feature-slider-track::-webkit-scrollbar { display: none; }
.feature-slider .feature-card {
	flex: 0 0 44%;
	scroll-snap-align: start;
}
.slider-nav {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 28px;
}
.slider-btn {
	width: 52px;
	height: 52px;
	border: 1px solid var(--ink);
	background: transparent;
	color: var(--ink);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	border-radius: var(--radius);
	transition: all var(--trans);
}
.slider-btn:hover { background: var(--ink); color: var(--white); }
.feature-card-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-alt);
	margin-bottom: 18px;
}
.feature-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s ease;
}
.feature-card:hover .feature-card-media img { transform: scale(1.05); }
.feature-card h3 { font-size: 24px; margin: 0 0 4px; }
.feature-card .feature-sub { margin-bottom: 10px; }
.feature-card p:not(.feature-sub) { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 40px;
}
.gallery-item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid .gallery-item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(20, 19, 16, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; width: auto; border-radius: var(--radius); }
.lightbox-close {
	position: absolute;
	top: 18px;
	right: 26px;
	background: none;
	border: 0;
	color: var(--white);
	font-size: 40px;
	cursor: pointer;
	line-height: 1;
}

/* Location */
.location-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	margin-top: 40px;
	align-items: start;
}
.location-map iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: var(--radius);
	filter: grayscale(1);
}
.location-details h3 { font-size: 22px; margin: 0 0 8px; }
.location-details p { margin: 0 0 24px; }

/* =========================================================================
   Pillars, journal, misc
   ====================================================================== */

.pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 72px;
}
.pillar {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 20px;
}
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 14.5px; margin: 0; }

.journal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.journal-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--bg-alt);
	margin-bottom: 18px;
}
.journal-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.journal-card:hover .journal-card-media img { transform: scale(1.05); }
.journal-card h3 { font-size: 25px; margin: 0 0 8px; }
.journal-card h3 a { color: var(--ink); }
.journal-card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }

.page-featured { margin-bottom: 48px; border-radius: var(--radius); overflow: hidden; }
.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 64px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	font-family: var(--serif);
	font-size: 19px;
}

/* =========================================================================
   Footer
   ====================================================================== */

.site-footer {
	background: var(--dark);
	color: #9a9a9a;
	padding: 90px 0 36px;
	font-size: 14.5px;
}
.site-footer a { color: #d4d4d4; }
.site-footer a:hover { color: var(--white); }
.site-footer h4 {
	color: var(--white);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: 48px;
	margin-bottom: 64px;
}
.footer-brand .site-brand-text { color: var(--white); }
.footer-brand img { max-height: 44px; width: auto; margin-bottom: 16px; filter: brightness(4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-wordmark {
	font-family: var(--serif);
	font-size: clamp(52px, 12.5vw, 196px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.9;
	color: var(--white);
	margin: 40px 0 24px;
	user-select: none;
	white-space: nowrap;
	overflow: hidden;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 28px;
	font-size: 12.5px;
	letter-spacing: 0.06em;
}

/* =========================================================================
   Responsive
   ====================================================================== */

@media (max-width: 1024px) {
	.property-grid, .journal-grid, .destination-grid, .type-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-slider .feature-card { flex-basis: 60%; }
	.pillars { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.overview-layout, .location-layout { grid-template-columns: 1fr; }
	.feature-row { grid-template-columns: 1fr; gap: 24px; }
	.feature-row.is-flipped .feature-media { order: 0; }
	.property-nav-name { display: none; }
}

@media (max-width: 720px) {
	.section { padding: 72px 0; }
	.container { padding: 0 20px; }
	.property-grid, .journal-grid, .destination-grid, .type-grid, .gallery-grid { grid-template-columns: 1fr; }
	.feature-slider .feature-card { flex-basis: 86%; }
	.gallery-grid .gallery-item:nth-child(6n + 1) { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
	.pillars { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.section-head { flex-direction: column; align-items: flex-start; }

	.hero-search { flex-direction: column; }
	.hero-search-field { border-right: 0; border-bottom: 1px solid var(--line); }

	/* Mobile nav */
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed;
		inset: 0;
		background: var(--dark);
		flex-direction: column;
		justify-content: center;
		gap: 28px;
		transform: translateX(100%);
		transition: transform 0.45s cubic-bezier(0.25, 0.6, 0.3, 1);
		z-index: 95;
	}
	.nav-open .site-nav { transform: none; }
	.site-nav ul { flex-direction: column; text-align: center; gap: 22px; }
	.site-nav ul a { color: var(--white) !important; font-size: 16px; }
	.nav-contact { border-color: var(--white); color: var(--white); }
	.nav-open .nav-toggle { position: relative; z-index: 96; }
	.nav-open .nav-toggle span { background: var(--white); }
}
