/* ============================================================
   TaraEcoStay — modern eco-mountain theme
   Palette: deep forest, warm sand, antique brass, fresh leaf
   ============================================================ */

:root {
	--c-bg:        #0f1c14;
	--c-bg-2:      #14271c;
	--c-surface:   #1a2f23;
	--c-surface-2: #233d2d;
	--c-ink:       #f5f1e8;
	--c-ink-2:     #d8d2c2;
	--c-muted:     #9aa899;
	--c-accent:    #c9a96a;   /* antique brass */
	--c-accent-2:  #e6cf94;
	--c-leaf:      #7ea882;
	--c-line:      rgba(245, 241, 232, 0.12);
	--c-line-2:    rgba(245, 241, 232, 0.06);

	--font-serif: "Cormorant Garamond", "Times New Roman", serif;
	--font-sans:  "Inter", -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;

	--radius-s: 6px;
	--radius-m: 14px;
	--radius-l: 28px;

	--container: 1240px;
	--gutter: clamp(20px, 4vw, 48px);

	--shadow-sm: 0 4px 20px rgba(0,0,0,.18);
	--shadow-md: 0 18px 60px rgba(0,0,0,.32);

	--ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); font-weight: 500; }
p  { color: var(--c-ink-2); }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Container */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* ===== Page loader ===== */
.page-loader {
	position: fixed; inset: 0;
	background: var(--c-bg);
	display: flex; align-items: center; justify-content: center;
	z-index: 9999;
	transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader__inner {
	display: flex; flex-direction: column; align-items: center; gap: 18px;
	color: var(--c-accent);
	font-family: var(--font-serif);
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .9rem;
}
.page-loader__inner svg { animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.site-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 22px 0;
	transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
	border-bottom: 1px solid transparent;
}
/* Push the fixed header below the WP admin bar when logged in */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}
.site-header.is-scrolled {
	background: rgba(15, 28, 20, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 14px 0;
	border-bottom-color: var(--c-line);
}
.site-header__inner {
	display: flex; align-items: center; gap: 32px;
}
.site-header__brand {
	display: flex; align-items: center; gap: 12px;
	color: var(--c-accent);
}
.brand-mark { color: var(--c-accent); }
.brand-text {
	display: flex; flex-direction: column; line-height: 1;
	font-family: var(--font-serif);
	color: var(--c-ink);
}
.brand-text__top { font-size: 1.25rem; letter-spacing: .04em; }
.brand-text__bot { font-size: .7rem; letter-spacing: .35em; text-transform: uppercase; color: var(--c-accent); }

/* Custom logo (uploaded via Customizer → Site Identity) */
.site-header__brand .custom-logo-link {
	display: block;
}
.site-header__brand .custom-logo {
	height: 56px;
	width: auto;
	max-width: 220px;
	display: block;
	transition: height .35s var(--ease);
	/* logo is green → invert to cream so it reads on dark header */
	filter: brightness(0) invert(1) sepia(.15);
	opacity: .95;
}
.site-header.is-scrolled .site-header__brand .custom-logo {
	height: 44px;
}
.site-header__brand .custom-logo:hover { opacity: 1; }

.site-header__nav { margin-left: auto; }
.nav-list {
	display: flex; gap: 28px; list-style: none;
}
.nav-list a {
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--c-ink-2);
	position: relative;
	padding: 6px 0;
}
.nav-list a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 0; height: 1px; background: var(--c-accent);
	transition: width .35s var(--ease);
}
.nav-list a:hover { color: var(--c-ink); }
.nav-list a:hover::after { width: 100%; }

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

.lang-switch {
	display: flex; align-items: center; gap: 6px;
	font-size: .78rem; letter-spacing: .15em; color: var(--c-muted);
	text-transform: uppercase;
}
.lang-switch a { padding: 2px 4px; }
.lang-switch a.is-active { color: var(--c-accent); }

.menu-toggle {
	display: none;
	width: 40px; height: 40px;
	flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.menu-toggle span {
	display: block; width: 22px; height: 1.5px; background: var(--c-ink);
	transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
	position: fixed; inset: 0;
	background: var(--c-bg);
	display: flex; align-items: center; justify-content: center;
	transform: translateY(-100%);
	transition: transform .55s var(--ease);
	z-index: 90;
	visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 18px 0; }
.mobile-nav a {
	font-family: var(--font-serif);
	font-size: clamp(1.8rem, 5vw, 2.6rem);
	letter-spacing: -.01em;
	color: var(--c-ink);
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
	will-change: transform;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}
.btn--primary {
	background: var(--c-accent);
	color: #1b1606;
}
.btn--primary:hover {
	background: var(--c-accent-2);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(201, 169, 106, 0.28);
	color: #1b1606;
}
.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	border-color: var(--c-line);
}
.btn--ghost:hover {
	background: rgba(255,255,255,0.04);
	border-color: var(--c-ink-2);
	transform: translateY(-2px);
}
.btn--sm { padding: 10px 18px; font-size: .75rem; }
.btn--lg { padding: 18px 32px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ===== Hero ===== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 720px;
	max-height: 1100px;
	overflow: hidden;
	display: flex; align-items: center;
	padding: 120px 0 80px;
}
.hero__media {
	position: absolute; inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero__image {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center center;
	will-change: transform;
}
.hero__veil {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(15,28,20,.55) 0%, rgba(15,28,20,.25) 50%, rgba(15,28,20,.05) 100%),
		linear-gradient(180deg, rgba(15,28,20,.25) 0%, rgba(15,28,20,.05) 30%, rgba(15,28,20,.55) 80%, rgba(15,28,20,.95) 100%);
}
.hero__content {
	position: relative; z-index: 2;
	max-width: 920px;
}
.hero__kicker {
	display: inline-block;
	font-size: .8rem; letter-spacing: .35em; text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 24px;
	padding-left: 60px;
	position: relative;
}
.hero__kicker::before {
	content: ""; position: absolute; left: 0; top: 50%;
	width: 44px; height: 1px; background: var(--c-accent);
}
.hero__title {
	font-weight: 400;
	font-size: clamp(3rem, 8vw, 7rem);
	line-height: 1;
	margin-bottom: 28px;
	color: var(--c-ink);
	text-shadow: 0 4px 28px rgba(0,0,0,.45);
}
.hero__subtitle {
	font-size: clamp(1rem, 1.3vw, 1.18rem);
	max-width: 640px;
	color: #efe9d8;
	margin-bottom: 40px;
	text-shadow: 0 2px 16px rgba(0,0,0,.4);
	line-height: 1.6;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
	position: absolute; bottom: 28px; left: var(--gutter);
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	color: var(--c-muted);
	font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
	z-index: 2;
}
@media (max-width: 720px) { .hero__scroll { display: none; } }
.hero__scroll-line {
	display: block; width: 1px; height: 50px;
	background: linear-gradient(180deg, var(--c-accent), transparent);
	animation: scrollLine 2s ease-in-out infinite;
	transform-origin: top;
}
@keyframes scrollLine {
	0%, 100% { transform: scaleY(0); transform-origin: top; }
	50%      { transform: scaleY(1); transform-origin: top; }
	51%      { transform: scaleY(1); transform-origin: bottom; }
}

.hero__rating {
	position: absolute; right: var(--gutter); bottom: 12vh;
	background: rgba(15,28,20,0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(245,241,232,0.18);
	padding: 14px 20px;
	border-radius: var(--radius-m);
	z-index: 2;
	display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
	box-shadow: var(--shadow-sm);
}
.hero__rating-stars { color: var(--c-accent); font-size: .85rem; letter-spacing: .3em; }
.hero__rating-text { font-size: .72rem; color: var(--c-ink-2); letter-spacing: .04em; text-align: right; }
@media (max-width: 900px) { .hero__rating { display: none; } }

/* ===== Marquee ===== */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
	background: var(--c-bg-2);
	padding: 22px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 56px;
	width: max-content;
	white-space: nowrap;
	animation: marquee 50s linear infinite;
	font-family: var(--font-serif);
	font-size: 1.05rem;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-muted);
	opacity: .65;
	will-change: transform;
}
.marquee__track > span {
	display: inline-block;
	flex-shrink: 0;
	white-space: nowrap;
}
.marquee__track > span.dot { color: var(--c-accent); opacity: .7; font-size: .8rem; }
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
	padding: clamp(70px, 9vw, 120px) 0;
	position: relative;
}
.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__kicker {
	display: inline-block;
	font-size: .75rem; letter-spacing: .35em; text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 16px;
}
.section__title { margin-bottom: 16px; }
.section__note { color: var(--c-muted); }
.section__lede { font-size: 1.15rem; margin-bottom: 18px; color: var(--c-ink); }
.section__body { color: var(--c-ink-2); }

.section__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 100px);
	align-items: center;
}
.section--contact .section__split { align-items: start; }
.section--contact .section__split-text { padding-top: 12px; }
.section--about { background: var(--c-bg-2); }

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--c-line);
}
.stat__num {
	display: block;
	font-family: var(--font-serif);
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	color: var(--c-accent);
	line-height: 1;
}
.stat__lbl {
	display: block;
	font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
	color: var(--c-muted);
	margin-top: 8px;
}

/* Media stack (about) — clean two-card overlap */
.media-stack {
	position: relative;
	aspect-ratio: 5 / 6;
	min-height: 480px;
}
.media-stack__img {
	position: absolute;
	border-radius: var(--radius-m);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	object-fit: cover;
}
.media-stack__img--1 {
	width: 78%; height: 70%;
	top: 0; right: 0;
	z-index: 2;
}
.media-stack__img--2 {
	width: 56%; height: 48%;
	bottom: 0; left: 0;
	z-index: 3;
	border: 6px solid var(--c-bg-2);
}
.media-stack__deco {
	position: absolute;
	width: 60%; height: 60%;
	bottom: 4%; right: -4%;
	border: 1px solid var(--c-accent);
	border-radius: var(--radius-m);
	z-index: 0;
	opacity: .5;
}

/* Amenities — fixed 4 columns on desktop so 8 items = perfect 2 rows */
.amenities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--c-line);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	overflow: hidden;
}
@media (max-width: 980px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amenities-grid { grid-template-columns: 1fr; } }
.amenity {
	padding: 40px 32px;
	background: var(--c-bg);
	transition: background .3s var(--ease), transform .3s var(--ease);
}
.amenity:hover {
	background: var(--c-bg-2);
}
.amenity__icon {
	width: 56px; height: 56px;
	color: var(--c-accent);
	margin-bottom: 22px;
}
.amenity__icon svg { width: 100%; height: 100%; }
.amenity__title { margin-bottom: 10px; }
.amenity__desc { font-size: .92rem; color: var(--c-ink-2); }

/* Gallery — CSS-columns masonry (no gaps, perfect tiling) */
.section--gallery { background: var(--c-bg-2); }
.gallery-grid {
	column-count: 3;
	column-gap: 16px;
}
.gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-s);
	background: var(--c-surface);
	cursor: zoom-in;
	margin-bottom: 16px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
}
.gallery-item img {
	width: 100%; height: auto;
	display: block;
	object-fit: cover;
	transition: transform .8s var(--ease), filter .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.gallery-item__zoom {
	position: absolute;
	top: 16px; right: 16px;
	width: 36px; height: 36px;
	background: rgba(15,28,20,.7);
	color: var(--c-ink);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.2rem;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
	backdrop-filter: blur(6px);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }

/* Activities — fixed 4 columns on desktop, 2x2 on tablet */
.activities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .activities-grid { grid-template-columns: 1fr; } }
.activity-card {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	overflow: hidden;
	transition: transform .45s var(--ease), border-color .35s var(--ease), box-shadow .45s var(--ease);
}
.activity-card:hover {
	transform: translateY(-6px);
	border-color: var(--c-accent);
	box-shadow: var(--shadow-md);
}
.activity-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.activity-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .9s var(--ease);
}
.activity-card:hover .activity-card__media img { transform: scale(1.06); }
.activity-card__body { padding: 24px 26px 28px; }
.activity-card__body h3 { margin-bottom: 8px; color: var(--c-ink); }
.activity-card__body p { font-size: .9rem; color: var(--c-ink-2); }

/* Location / map */
.section--location { background: var(--c-bg-2); }
.map-wrap {
	border-radius: var(--radius-m);
	overflow: hidden;
	border: 1px solid var(--c-line);
	box-shadow: var(--shadow-md);
	filter: saturate(.85);
}
.map-wrap iframe { display: block; }

/* Contact section — form gets more space than text */
.section--contact {
	background:
		radial-gradient(ellipse at top right, rgba(201,169,106,.08), transparent 60%),
		var(--c-bg);
}
.section--contact .section__split {
	grid-template-columns: 0.85fr 1.15fr;
	align-items: start;
	gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 1024px) {
	.section--contact .section__split { grid-template-columns: 1fr; }
}

.contact-list {
	list-style: none; margin-top: 32px;
}
.contact-list li {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--c-line);
	color: var(--c-ink);
	font-size: .95rem;
}
.contact-list__icon {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--c-accent);
	border: 1px solid var(--c-line);
	border-radius: 50%;
}
.contact-list__icon svg { width: 18px; height: 18px; }

/* Booking form */
.booking-form {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	padding: clamp(28px, 4vw, 44px);
	box-shadow: var(--shadow-md);
}
.booking-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important; height: 1px !important;
}
.booking-form__row { margin-bottom: 18px; }
.booking-form__row--two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.booking-form__row--three {
	display: grid;
	grid-template-columns: 1fr 1fr 0.8fr;
	gap: 18px;
}
.booking-form label { display: block; }
.booking-form label > span {
	display: block;
	font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 8px;
}
.booking-form input,
.booking-form textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--c-bg);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-s);
	color: var(--c-ink);
	font-size: .95rem;
	transition: border-color .3s var(--ease), background .3s var(--ease);
}
.booking-form input:focus,
.booking-form textarea:focus {
	outline: none;
	border-color: var(--c-accent);
	background: var(--c-bg-2);
}
.booking-form textarea { resize: vertical; min-height: 100px; }
.booking-form__feedback {
	margin-top: 18px;
	min-height: 20px;
	font-size: .9rem;
	color: var(--c-leaf);
	text-align: center;
}
.booking-form__feedback.is-error { color: #f6a4a4; }
.booking-form.is-sending .btn__label::after {
	content: "..."; animation: dots 1s steps(4, end) infinite;
}
@keyframes dots {
	0%, 20% { content: ""; }
	40% { content: "."; }
	60% { content: ".."; }
	80%, 100% { content: "..."; }
}

/* ===== Footer ===== */
.site-footer {
	background: #0a130d;
	border-top: 1px solid var(--c-line);
	padding: 80px 0 30px;
	color: var(--c-ink-2);
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}
.footer-tagline { margin-top: 16px; color: var(--c-muted); font-size: .9rem; max-width: 280px; }
.footer-h {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	color: var(--c-ink);
	margin-bottom: 18px;
}
.footer-list { list-style: none; }
.footer-list li { padding: 6px 0; font-size: .92rem; }
.footer-list a:hover { color: var(--c-accent); }
.footer-small { font-size: .85rem; color: var(--c-muted); margin-bottom: 16px; }
.site-footer__bottom {
	padding-top: 24px;
	border-top: 1px solid var(--c-line-2);
	color: var(--c-muted);
	font-size: .8rem;
	display: flex; justify-content: space-between;
}

/* ===== Default index posts grid ===== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	margin-top: 32px;
}
.post-card {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-m);
	overflow: hidden;
}
.post-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.post-card__body { padding: 22px 24px 28px; }
.post-card__body h2 { font-size: 1.4rem; margin-bottom: 10px; }
.post-card__body h2 a { color: var(--c-ink); }
.post-card__body h2 a:hover { color: var(--c-accent); }
.post-card__excerpt { color: var(--c-ink-2); font-size: .92rem; margin-bottom: 14px; }
.link-arrow { color: var(--c-accent); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }

/* ===== Reveal animations (handled by JS via GSAP) ===== */
.js .reveal, .js .reveal-up { opacity: 0; }
.no-js .reveal, .no-js .reveal-up { opacity: 1; }
/* Always-visible hero text (GSAP will animate, but never hide as fallback) */
.no-js .hero__kicker,
.no-js .hero__title,
.no-js .hero__subtitle,
.no-js .hero__cta,
.no-js .hero__rating,
.no-js .hero__scroll { opacity: 1 !important; transform: none !important; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.site-header__nav { display: none; }
	.menu-toggle { display: flex; }

	.section__split { grid-template-columns: 1fr; }
	.media-stack { aspect-ratio: 4 / 4; max-width: 520px; margin-inline: auto; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.hero { min-height: 640px; }
	.hero__rating { display: none; }
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 180px;
	}
	.gallery-item--1, .gallery-item--3, .gallery-item--4 { grid-column: span 2; }
	.gallery-item--3 { grid-row: span 1; }
	.gallery-item--1 { grid-row: span 2; }
	.stats { grid-template-columns: 1fr; gap: 18px; text-align: center; }
	.booking-form__row--two,
	.booking-form__row--three { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
	.site-header__actions .btn { display: none; }
}

/* Selection */
::selection { background: var(--c-accent); color: #1b1606; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb { background: var(--c-surface-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }
