/**
 * Ekhaya Hotels — frontend design system.
 * Coastal-luxury palette: deep ocean teal + warm Durban gold on soft sand.
 */

:root {
	--eh-primary: #23572E;
	--eh-primary-d: #173A1E;
	--eh-accent: #BE9B58;
	--eh-coral: #A8632F;
	--eh-ink: #1B2A1E;
	--eh-muted: #5E6B60;
	--eh-sand: #F1EEE4;
	--eh-sand-2: #F8F6EF;
	--eh-line: #E4DECF;
	--eh-white: #ffffff;
	--eh-radius: 16px;
	--eh-radius-lg: 22px;
	--eh-shadow: 0 18px 50px rgba(14, 92, 99, .12);
	--eh-shadow-sm: 0 8px 24px rgba(14, 92, 99, .10);
	--eh-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--eh-serif: "Fraunces", Georgia, "Times New Roman", serif;
	--eh-maxw: 1200px;
}

/* ---------- Base scope ---------- */
.eh, .eh * { box-sizing: border-box; }
.eh {
	font-family: var(--eh-font);
	color: var(--eh-ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.eh img { max-width: 100%; height: auto; display: block; }
.eh a { color: inherit; text-decoration: none; }
.eh-container { max-width: var(--eh-maxw); margin: 0 auto; padding: 0 24px; }

.eh-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--eh-primary);
}
.eh-hero .eh-eyebrow, .eh-footer .eh-eyebrow { color: var(--eh-accent); }

.eh-section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eh-section-head--left { text-align: left; margin-left: 0; }
.eh-section-head h2, .eh-about h2, .eh-contact h2, .eh-verify h2 {
	font-family: var(--eh-serif);
	font-weight: 600;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.1;
	margin: 10px 0 12px;
	letter-spacing: -.5px;
}

/* ---------- Buttons ---------- */
.eh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--eh-font);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	padding: 14px 24px;
	border-radius: 99px;
	border: 0;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s;
	white-space: nowrap;
}
.eh-btn:active { transform: translateY(1px) scale(.99); }
.eh-btn--primary { background: var(--eh-primary); color: #fff; box-shadow: 0 10px 24px rgba(14, 92, 99, .28); }
.eh-btn--primary:hover { background: var(--eh-primary-d); box-shadow: 0 14px 30px rgba(14, 92, 99, .34); transform: translateY(-1px); }
.eh-btn--accent { background: var(--eh-accent); color: #3a2a06; }
.eh-btn--accent:hover { filter: brightness(1.04); transform: translateY(-1px); }
.eh-btn--sm { padding: 10px 18px; font-size: 14px; }
.eh-btn--block { width: 100%; }
.eh-btn[disabled] { opacity: .5; cursor: not-allowed; box-shadow: none; }

/* ---------- Header ---------- */
/* Floating, centered glass header that overlaps the content on every page. */
.eh-header { position: fixed; top: 16px; left: 0; right: 0; z-index: 1000; pointer-events: none; }
.eh-header__inner {
	pointer-events: auto;
	max-width: 1140px; margin: 0 auto; padding: 0 14px 0 22px;
	display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px;
	background: rgba(255, 255, 255, .74);
	backdrop-filter: saturate(160%) blur(20px);
	-webkit-backdrop-filter: saturate(160%) blur(20px);
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 999px;
	box-shadow: 0 14px 46px rgba(20, 40, 25, .20);
	transition: background .25s ease, box-shadow .25s ease;
}
.eh-header.is-stuck .eh-header__inner { background: rgba(255, 255, 255, .92); box-shadow: 0 10px 34px rgba(20, 40, 25, .16); }
.eh-brand { display: inline-flex; align-items: center; gap: 12px; }
.eh-brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--eh-primary); color: var(--eh-accent); }
.eh-brand__logo { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; background: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.eh-brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.eh-brand--light .eh-brand__logo { background: #fff; }

/* Estate gallery (About) */
.eh-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 44px; }
.eh-gallery__item { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: 14px; transition: transform .25s ease; }
.eh-gallery__item:hover { transform: scale(1.03); }
.eh-contact__nearby { color: var(--eh-muted); font-size: 14px; margin: 4px 0 10px; }
.eh-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.eh-brand__text strong { font-family: var(--eh-serif); font-size: 19px; font-weight: 600; }
.eh-brand__text em { font-style: normal; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--eh-muted); }
.eh-brand--light { color: #fff; }
.eh-brand--light .eh-brand__mark { background: rgba(255,255,255,.1); }
.eh-brand--light .eh-brand__text em { color: rgba(255,255,255,.6); }

.eh-nav { display: flex; gap: 30px; margin-left: auto; }
.eh-nav a { font-weight: 600; font-size: 15px; color: var(--eh-ink); position: relative; padding: 6px 0; text-decoration: none; }
.eh-nav a:hover { color: var(--eh-primary); }

.eh-header__actions { display: flex; align-items: center; gap: 14px; }
.eh-cart-link { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--eh-primary); background: rgba(14,92,99,.07); }
.eh-cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 99px; background: var(--eh-coral); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.eh-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; }
.eh-burger span { height: 2px; background: var(--eh-ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.eh-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: #fff; padding: 150px 0 88px; }
.eh-hero__slides { position: absolute; inset: 0; z-index: 0; background: var(--eh-primary-d); }
.eh-hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.4s ease; will-change: opacity, transform; }
.eh-hero__slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1.4s ease, transform 8s ease-out; }
.eh-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9,22,13,.34) 0%, rgba(9,22,13,.12) 42%, rgba(9,22,13,.66) 100%); }
.eh-hero__inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.eh-hero__dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.eh-hero__dot { width: 9px; height: 9px; border-radius: 99px; border: 0; padding: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: width .3s ease, background .3s ease; }
.eh-hero__dot.is-active { background: var(--eh-accent); width: 28px; }

/* The first section after the floating header clears it via its OWN top
   padding (background colour of that section — never a white spacer band).
   The hero is exempt: the header floats directly over the hero image. */
.eh-header + section.eh:not(.eh-hero) { padding-top: 134px; }
@media (max-width: 620px) { .eh-header + section.eh:not(.eh-hero) { padding-top: 106px; } }

/* Sections sit flush — no white gap between skins. */
section.eh { margin: 0 !important; }

/* Respect reduced-motion: no Ken Burns drift. */
@media (prefers-reduced-motion: reduce) {
	.eh-hero__slide, .eh-hero__slide.is-active { transition: opacity .3s ease; transform: none; }
}

/* Green buttons ALWAYS have white text (primary + all WooCommerce buttons). */
.eh-btn--primary, .eh-btn--primary:hover, .eh-btn--primary:focus,
.eh-woo .button, .eh-woo button.button, .eh-woo #place_order,
.eh-woo .button:hover, .eh-woo #place_order:hover { color: #fff !important; }
.eh-btn--accent { color: #2a1e05; }
.eh-hero__title { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(34px, 5.5vw, 66px); line-height: 1.03; letter-spacing: -1px; margin: 14px auto 16px; max-width: 900px; }
.eh-hero__subtitle { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 34px; }
.eh-hero__search { max-width: 940px; margin: 0 auto; }
.eh-hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; list-style: none; margin: 34px 0 0; padding: 0; }
.eh-hero__badges li { color: rgba(255,255,255,.85); font-size: 14px; }
.eh-hero__badges span { display: block; font-family: var(--eh-serif); font-size: 24px; font-weight: 600; color: var(--eh-accent); }
.eh-hero__offerings { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; margin: 22px 0 0; padding: 0; }
.eh-hero__offerings li { color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .01em; padding: 7px 15px; border-radius: 99px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
@media (max-width: 560px) { .eh-hero__offerings { gap: 7px; } .eh-hero__offerings li { font-size: 12px; padding: 6px 12px; } }

/* ---------- Search bar ---------- */
.eh-searchbar { padding: 40px 0; }
.eh-searchbar__card { max-width: 980px; margin: 0 auto; }
.eh-search {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 10px;
	background: #fff;
	padding: 12px;
	border-radius: var(--eh-radius-lg);
	box-shadow: var(--eh-shadow);
	align-items: end;
}
.eh-search__field { display: flex; flex-direction: column; gap: 6px; text-align: left; padding: 6px 8px; }
.eh-search__field label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--eh-muted); }
.eh-search__control { display: flex; align-items: center; gap: 8px; color: var(--eh-primary); border-radius: 12px; }
.eh-search__control input, .eh-search__control select {
	width: 100%; border: 0; background: transparent; font-family: var(--eh-font); font-size: 15px; font-weight: 600; color: var(--eh-ink); padding: 4px 0; outline: none;
}
.eh-search__submit { height: 100%; min-height: 58px; }

/* ---------- Rooms grid ---------- */
.eh-rooms, .eh-about, .eh-contact, .eh-verify { padding: 72px 0; background: var(--eh-sand-2); }
.eh-rooms__dates { color: var(--eh-muted); margin: 6px 0 0; }
.eh-rooms__filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.eh-chip { padding: 9px 18px; border-radius: 99px; background: #fff; border: 1px solid var(--eh-line); font-weight: 600; font-size: 14px; color: var(--eh-muted); transition: .18s; }
.eh-chip:hover { border-color: var(--eh-primary); color: var(--eh-primary); }
.eh-chip.is-active { background: var(--eh-primary); border-color: var(--eh-primary); color: #fff; }

.eh-grid { display: grid; gap: 26px; }
.eh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.eh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.eh-grid--4 { grid-template-columns: repeat(4, 1fr); }

.eh-card { background: #fff; border-radius: var(--eh-radius-lg); overflow: hidden; box-shadow: var(--eh-shadow-sm); transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; }
.eh-card:hover { transform: translateY(-6px); box-shadow: var(--eh-shadow); }
.eh-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.eh-badge { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 99px; font-size: 12px; font-weight: 700; background: #fff; color: var(--eh-primary); box-shadow: var(--eh-shadow-sm); }
.eh-badge.is-sold { background: var(--eh-ink); color: #fff; }
.eh-badge.is-available { background: var(--eh-accent); color: #3a2a06; }
.eh-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.eh-card__hotel { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--eh-coral); }
.eh-card__title { font-family: var(--eh-serif); font-weight: 600; font-size: 21px; line-height: 1.15; margin: 0; }
.eh-card__specs { display: flex; flex-wrap: wrap; gap: 8px 16px; list-style: none; padding: 0; margin: 0; color: var(--eh-muted); font-size: 13.5px; }
.eh-card__specs li { position: relative; }
.eh-card__specs li + li::before { content: "·"; position: absolute; left: -10px; }
.eh-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--eh-line); }
.eh-price { font-family: var(--eh-serif); font-weight: 600; font-size: 22px; color: var(--eh-primary); }
.eh-price span { font-family: var(--eh-font); font-size: 12px; font-weight: 600; color: var(--eh-muted); margin-left: 2px; }
.eh-price del { color: var(--eh-muted); font-size: 15px; margin-right: 4px; }
.eh-empty { text-align: center; color: var(--eh-muted); grid-column: 1 / -1; padding: 40px; }

/* ---------- Single room ---------- */
.eh-room { padding: 0 0 80px; background: var(--eh-sand-2); }
/* Full-bleed product hero */
.eh-room__hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.eh-room__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,12,.28) 0%, transparent 30%, rgba(9,20,12,.78) 100%); }
.eh-room__hero-inner { position: relative; z-index: 1; width: 100%; padding: 44px 24px 46px; }
.eh-breadcrumb--light, .eh-breadcrumb--light a, .eh-breadcrumb--light strong, .eh-breadcrumb--light span { color: rgba(255,255,255,.86); }
.eh-breadcrumb--light a:hover { color: #fff; }
.eh-room__hotel--light { color: var(--eh-accent); }
.eh-room__hero-inner .eh-room__title { color: #fff; margin: 10px 0 16px; }
.eh-room__herospecs { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.eh-room__herospecs li { display: inline-flex; align-items: baseline; gap: 6px; padding: 9px 15px; border-radius: 99px; color: #fff; font-size: 13px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.eh-room__herospecs strong { font-family: var(--eh-serif); font-size: 17px; color: #fff; }
.eh-room__layout { margin-top: 34px; }
.eh-room__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 26px; }
.eh-room__shot { aspect-ratio: 1/1; background-size: cover; background-position: center; border-radius: 14px; box-shadow: var(--eh-shadow-sm); }
@media (max-width: 560px) { .eh-room__hero { min-height: 380px; } .eh-room__strip { grid-template-columns: repeat(4, 1fr); gap: 6px; } }
.eh-breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--eh-muted); font-size: 13px; margin-bottom: 20px; flex-wrap: wrap; }
.eh-breadcrumb a:hover { color: var(--eh-primary); }
.eh-room__gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; border-radius: var(--eh-radius-lg); overflow: hidden; margin-bottom: 34px; }
.eh-room__main { aspect-ratio: 16 / 10; background-size: cover; background-position: center; border-radius: var(--eh-radius); }
.eh-room__thumbs { display: grid; grid-template-rows: repeat(2, 1fr); gap: 12px; }
.eh-room__thumb { background-size: cover; background-position: center; border-radius: var(--eh-radius); min-height: 120px; }
.eh-room__layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.eh-room__hotel { display: inline-flex; align-items: center; gap: 6px; color: var(--eh-coral); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.eh-room__title { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(28px, 3.5vw, 40px); line-height: 1.08; margin: 8px 0 16px; }
.eh-room__specs { display: flex; gap: 22px; list-style: none; padding: 18px 0; margin: 0 0 20px; border-top: 1px solid var(--eh-line); border-bottom: 1px solid var(--eh-line); }
.eh-room__specs strong { font-family: var(--eh-serif); font-size: 22px; color: var(--eh-primary); display: block; }
.eh-room__specs li { color: var(--eh-muted); font-size: 13px; }
.eh-room__desc { color: #35474d; }
.eh-room__subhead { font-family: var(--eh-serif); font-weight: 600; font-size: 22px; margin: 30px 0 14px; }
.eh-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.eh-amenities li { display: flex; align-items: center; gap: 10px; color: #35474d; }
.eh-amenities svg { color: var(--eh-primary); flex: none; }

/* Calendar */
.eh-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; background: #fff; padding: 16px; border-radius: var(--eh-radius); box-shadow: var(--eh-shadow-sm); }
.eh-cal__head { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.eh-cal__title { font-weight: 700; }
.eh-cal__nav { display: flex; gap: 6px; }
.eh-cal__nav button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--eh-line); background: #fff; cursor: pointer; color: var(--eh-primary); font-size: 16px; }
.eh-cal__dow { text-align: center; font-size: 11px; font-weight: 700; color: var(--eh-muted); text-transform: uppercase; padding: 4px 0; }
.eh-cal__day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 9px; font-size: 13px; font-weight: 600; cursor: pointer; transition: .12s; }
.eh-cal__day:hover:not(.is-disabled):not(.is-empty) { background: rgba(14,92,99,.08); }
.eh-cal__day.is-empty { cursor: default; }
.eh-cal__day.is-disabled { color: #c3cccf; text-decoration: line-through; cursor: not-allowed; }
.eh-cal__day.is-in, .eh-cal__day.is-out { background: var(--eh-primary); color: #fff; }
.eh-cal__day.is-between { background: rgba(14,92,99,.12); border-radius: 0; }

/* Booking card */
.eh-room__booking { position: sticky; top: 96px; }
.eh-booking-card { background: #fff; border-radius: var(--eh-radius-lg); padding: 24px; box-shadow: var(--eh-shadow); border: 1px solid var(--eh-line); }
.eh-booking-card__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.eh-booking-card__price strong { font-family: var(--eh-serif); font-size: 30px; color: var(--eh-ink); }
.eh-booking-card__price span { color: var(--eh-muted); font-size: 14px; }
.eh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.eh-field { display: flex; flex-direction: column; gap: 6px; }
.eh-field--full { grid-column: 1 / -1; }
.eh-field > span { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--eh-muted); }
.eh-field input, .eh-field select, .eh-field textarea {
	font-family: var(--eh-font); font-size: 15px; font-weight: 600; color: var(--eh-ink);
	padding: 12px 14px; border: 1px solid var(--eh-line); border-radius: 12px; background-color: #fff; outline: none; transition: border-color .15s, box-shadow .15s; width: 100%; line-height: 1.3; box-sizing: border-box;
}
.eh-field input:focus, .eh-field select:focus, .eh-field textarea:focus { border-color: var(--eh-primary); background-color: #fff; box-shadow: 0 0 0 4px rgba(14,92,99,.08); }
/* Normalise native dropdowns so text aligns and the arrow is consistent. */
.eh-field select {
	-webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer;
	padding-right: 38px; text-overflow: ellipsis;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%235E6B60' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 12px;
}
.eh-field select::-ms-expand { display: none; }
/* Date inputs: keep the native picker indicator tidy and tappable. */
.eh-field input[type="date"] { min-height: 46px; }
.eh-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .6; }
.eh-booking-card__status { margin: 6px 0 12px; padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 600; }
.eh-booking-card__status.is-ok { background: rgba(14,92,99,.08); color: var(--eh-primary); }
.eh-booking-card__status.is-bad { background: rgba(232,115,74,.12); color: #b8461f; }
.eh-booking-card__status.is-load { background: var(--eh-sand); color: var(--eh-muted); }
.eh-booking-card__summary { margin: 4px 0 14px; padding: 14px; border-radius: 12px; background: var(--eh-sand-2); }
.eh-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--eh-muted); padding: 3px 0; }
.eh-row--total { border-top: 1px solid var(--eh-line); margin-top: 6px; padding-top: 10px; font-size: 17px; font-weight: 800; color: var(--eh-ink); }
.eh-booking-card__note { font-size: 12px; color: var(--eh-muted); text-align: center; margin: 12px 0 0; }

/* ---------- About ---------- */
.eh-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.eh-about__media { aspect-ratio: 4 / 5; background-size: cover; background-position: center; border-radius: var(--eh-radius-lg); box-shadow: var(--eh-shadow); }
.eh-about__content p { color: #35474d; margin: 0 0 16px; }
.eh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.eh-stat strong { display: block; font-family: var(--eh-serif); font-size: 30px; color: var(--eh-primary); }
.eh-stat span { font-size: 12.5px; color: var(--eh-muted); }

/* ---------- Contact ---------- */
.eh-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.eh-contact__list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.eh-contact__list li { display: flex; align-items: center; gap: 12px; color: #35474d; font-weight: 600; }
.eh-contact__list svg { color: var(--eh-primary); flex: none; }
.eh-contact__map { border-radius: var(--eh-radius-lg); overflow: hidden; box-shadow: var(--eh-shadow-sm); margin-top: 10px; }
.eh-contact__map iframe { width: 100%; height: 260px; border: 0; display: block; }
.eh-form { background: #fff; padding: 28px; border-radius: var(--eh-radius-lg); box-shadow: var(--eh-shadow-sm); display: grid; gap: 14px; }
.eh-alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; font-weight: 600; }
.eh-alert--success { background: rgba(14,92,99,.1); color: var(--eh-primary); }

/* ---------- Verify ---------- */
.eh-verify__inner { max-width: 620px; margin: 0 auto; }
.eh-verify__card { background: #fff; padding: 40px; border-radius: var(--eh-radius-lg); box-shadow: var(--eh-shadow); text-align: center; }
.eh-verify__card p { color: var(--eh-muted); }
.eh-verify__form { display: flex; gap: 10px; margin: 22px 0 0; }
.eh-verify__form input { flex: 1; text-align: center; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; padding: 16px; border: 2px solid var(--eh-line); border-radius: 14px; font-size: 18px; font-family: var(--eh-font); outline: none; }
.eh-verify__form input:focus { border-color: var(--eh-primary); }
.eh-verify__result { margin-top: 22px; text-align: left; }
.eh-verify__ticket { border: 1px solid var(--eh-line); border-radius: var(--eh-radius); overflow: hidden; }
.eh-verify__ticket-top { background: var(--eh-primary); color: #fff; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.eh-verify__ticket-top .code { font-family: monospace; font-weight: 700; letter-spacing: 1px; }
.eh-verify__ticket-body { padding: 20px 22px; display: grid; gap: 10px; }
.eh-verify__ticket-body .r { display: flex; justify-content: space-between; font-size: 14px; }
.eh-verify__ticket-body .r span:first-child { color: var(--eh-muted); }
.eh-verify__ticket-body .r span:last-child { font-weight: 700; }
.eh-status-pill { padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 700; text-transform: capitalize; }
.eh-status-pill.confirmed { background: var(--eh-accent); color: #3a2a06; }
.eh-status-pill.pending { background: #fff3d6; color: #8a6d16; }
.eh-status-pill.cancelled { background: #f4d4c8; color: #b8461f; }
.eh-verify__note { padding: 14px 22px; font-size: 13.5px; line-height: 1.6; border-top: 1px dashed var(--eh-line); }
.eh-verify__note--pending { background: #fff8ea; color: #8a6d16; }
.eh-verify__note--confirmed { background: rgba(35,87,46,.06); color: var(--eh-primary); }
.eh-verify__note--cancelled { background: #fbeee9; color: #b8461f; }

/* ---------- WooCommerce wrappers ---------- */
.eh-woo { padding: 60px 0; background: var(--eh-sand-2); }
.eh-woo__inner { background: #fff; padding: 32px; border-radius: var(--eh-radius-lg); box-shadow: var(--eh-shadow-sm); }
.eh-checkout__trust { display: inline-flex; align-items: center; gap: 8px; color: var(--eh-primary); font-weight: 600; font-size: 14px; background: rgba(14,92,99,.07); padding: 10px 16px; border-radius: 99px; }
.eh-woo .button, .eh-woo button.button, .eh-woo #place_order { background: var(--eh-primary) !important; color: #fff !important; border-radius: 99px !important; font-weight: 700 !important; padding: 14px 26px !important; }
.eh-woo .button:hover { background: var(--eh-primary-d) !important; }

/* ---------- Footer ---------- */
.eh-footer { background: #0B2027; color: rgba(255,255,255,.75); padding: 64px 0 0; }
.eh-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.eh-footer__brand p { margin: 16px 0 0; font-size: 14px; max-width: 280px; }
.eh-footer__col h4 { color: #fff; font-family: var(--eh-serif); font-weight: 600; font-size: 17px; margin: 0 0 16px; }
.eh-footer__col a, .eh-footer__col span { display: block; color: rgba(255,255,255,.7); margin-bottom: 10px; font-size: 14px; transition: .15s; }
.eh-footer__col a:hover { color: var(--eh-accent); }
.eh-footer__subscribe { display: flex; gap: 8px; margin-top: 12px; }
.eh-footer__subscribe input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: 12px 14px; border-radius: 99px; outline: none; }
.eh-footer__subscribe input::placeholder { color: rgba(255,255,255,.5); }
.eh-footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.eh-footer__bar .eh-container { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.eh-search { grid-template-columns: 1fr 1fr; }
	.eh-search__submit { grid-column: 1 / -1; }
	.eh-room__layout { grid-template-columns: 1fr; }
	.eh-room__booking { position: static; }
	.eh-grid--3, .eh-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.eh-about__grid, .eh-contact__grid { grid-template-columns: 1fr; }
	.eh-footer__grid { grid-template-columns: 1fr 1fr; }
	.eh-nav { display: none; }
	.eh-burger { display: flex; }
	.eh-header__actions .eh-btn--primary { display: none; }
	.eh-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
	.eh-search { grid-template-columns: 1fr; }
	.eh-grid--2, .eh-grid--3, .eh-grid--4 { grid-template-columns: 1fr; }
	.eh-room__gallery { grid-template-columns: 1fr; }
	.eh-room__thumbs { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
	.eh-stats { grid-template-columns: repeat(2, 1fr); }
	.eh-amenities { grid-template-columns: 1fr; }
	.eh-footer__grid { grid-template-columns: 1fr; }
	.eh-footer__bar .eh-container { flex-direction: column; gap: 6px; text-align: center; }
	.eh-verify__form { flex-direction: column; }
	.eh-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal-on-scroll */
.eh [data-eh-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.eh [data-eh-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Rooms explorer
   ============================================================ */
.eh-explorer { padding: 40px 0 80px; background: var(--eh-sand-2); }
.eh-explorer__hint { color: var(--eh-muted); margin: 6px 0 0; }

.eh-explorer__filters { display: flex; flex-wrap: wrap; align-items: end; gap: 14px; margin: 22px 0 18px; }
.eh-filter { display: flex; flex-direction: column; gap: 5px; }
.eh-filter > span { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--eh-muted); }
.eh-filter select { font-family: var(--eh-font); font-weight: 600; font-size: 15px; color: var(--eh-ink); padding: 11px 14px; border: 1px solid var(--eh-line); border-radius: 12px; background: #fff; outline: none; min-width: 90px; }
.eh-filter select:focus { border-color: var(--eh-primary); box-shadow: 0 0 0 4px rgba(35,87,46,.08); }
.eh-explorer__legend { display: flex; gap: 16px; margin-left: auto; align-items: center; color: var(--eh-muted); font-size: 13px; font-weight: 600; }
.eh-explorer__legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 99px; margin-right: 6px; vertical-align: middle; }
.dot--ok { background: #2f8f4e; } .dot--low { background: #C99A3B; } .dot--no { background: #b9302b; }

/* Date rail */
.eh-daterail { display: flex; gap: 8px; overflow-x: auto; padding: 6px 2px 14px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.eh-daterail__day { flex: 0 0 auto; width: 66px; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 6px; border: 1px solid var(--eh-line); border-radius: 14px; background: #fff; cursor: pointer; transition: .18s; }
.eh-daterail__day:hover { border-color: var(--eh-primary); transform: translateY(-2px); }
.eh-daterail__day .dow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--eh-muted); }
.eh-daterail__day .dnum { font-family: var(--eh-serif); font-size: 22px; font-weight: 600; color: var(--eh-ink); line-height: 1; }
.eh-daterail__day .mon { font-size: 11px; color: var(--eh-muted); }
.eh-daterail__day.is-active { background: var(--eh-primary); border-color: var(--eh-primary); }
.eh-daterail__day.is-active .dow, .eh-daterail__day.is-active .dnum, .eh-daterail__day.is-active .mon { color: #fff; }

/* Rooms grid */
.eh-explorer__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; margin-top: 20px; transition: opacity .2s; }
.eh-explorer__grid.is-loading { opacity: .5; pointer-events: none; }
.eh-rcard { position: relative; background: #fff; border: 1px solid var(--eh-line); border-radius: var(--eh-radius-lg); overflow: hidden; box-shadow: var(--eh-shadow-sm); transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, opacity .2s; display: flex; flex-direction: column; }
.eh-rcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--eh-accent), transparent); opacity: 0; transition: opacity .3s ease; z-index: 4; }
.eh-rcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(9,20,12,.5); }
.eh-rcard:hover::before { opacity: 1; }
.eh-rcard.is-dim { opacity: .62; }
.eh-rcard.is-fit { border-color: var(--eh-accent); }
.eh-rcard__media { position: relative; display: block; width: 100%; border: 0; padding: 0; margin: 0; aspect-ratio: 1 / 1; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; }
.eh-rcard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,12,.04) 0%, transparent 32%, rgba(9,20,12,.30)); }
.eh-rcard__status { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 5px 11px; border-radius: 99px; font-size: 11.5px; font-weight: 700; color: #fff; letter-spacing: .02em; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.eh-rcard__status--available { background: rgba(47,143,78,.92); }
.eh-rcard__status--low { background: rgba(201,154,59,.95); }
.eh-rcard__status--booked { background: rgba(109,114,107,.92); }
.eh-rcard__fit { position: absolute; top: 12px; right: 12px; z-index: 2; padding: 5px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; background: var(--eh-accent); color: #2a1e05; }
.eh-rcard__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.eh-rcard__body h3 { font-family: var(--eh-serif); font-weight: 600; font-size: 21px; margin: 0; color: var(--eh-ink); }
.eh-rcard__specs { display: flex; flex-wrap: wrap; gap: 6px 14px; list-style: none; padding: 0; margin: 0; color: var(--eh-muted); font-size: 13px; }
.eh-rcard__specs li { position: relative; }
.eh-rcard__specs li + li::before { content: "·"; position: absolute; left: -9px; }
.eh-rcard__free { margin: 0; font-size: 13px; color: var(--eh-coral); font-weight: 600; }
.eh-rcard__blurb { margin: 2px 0 0; font-size: 13px; line-height: 1.5; color: var(--eh-muted); }

/* Clickable per-night rate list */
.eh-rcard__rates { margin: 8px 0 6px; border-top: 1px solid var(--eh-line); }
.eh-rate { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; width: 100%; border: 0; background: none; text-align: left; padding: 11px 8px 11px 6px; border-bottom: 1px solid var(--eh-line); cursor: pointer; border-radius: 8px; transition: background .2s ease, padding .2s ease; }
.eh-rate:hover, .eh-rate:focus-visible { background: rgba(190,155,88,.1); padding-left: 12px; outline: none; }
.eh-rate__label { font-size: 13px; font-weight: 600; color: var(--eh-ink); }
.eh-rate__price { font-family: var(--eh-serif); font-weight: 600; font-size: 17px; color: var(--eh-primary); white-space: nowrap; }
.eh-rate__price small { font-family: var(--eh-font); font-size: 10px; font-weight: 600; color: var(--eh-muted); text-transform: uppercase; letter-spacing: .06em; margin-right: 3px; }
.eh-rate__price em { font-family: var(--eh-font); font-style: normal; font-size: 11px; font-weight: 600; color: var(--eh-muted); margin-left: 3px; }
.eh-rate:hover .eh-rate__price { color: var(--eh-primary-d); }
.eh-rcard__more { margin-top: auto; }

/* ============================================================
   GLASSMORPHIC SQUARE BOOKING CARDS
   Full-bleed image with a frosted-glass content panel + clickable
   price chips. (Design: ui-ux-pro-max Glassmorphism.)
   ============================================================ */
.eh-gcard { position: relative; aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden; box-shadow: 0 22px 50px -26px rgba(9,20,12,.55); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, opacity .2s; isolation: isolate; }
.eh-gcard:hover { transform: translateY(-6px) scale(1.008); box-shadow: 0 40px 72px -32px rgba(9,20,12,.6); }
.eh-gcard.is-dim { opacity: .6; }
.eh-gcard.is-fit { box-shadow: 0 0 0 2px var(--eh-accent), 0 24px 55px -28px rgba(9,20,12,.55); }
.eh-gcard__bg { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; background-size: cover; background-position: center; cursor: pointer; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); z-index: 0; }
.eh-gcard:hover .eh-gcard__bg { transform: scale(1.07); }
.eh-gcard__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(9,20,12,.16) 0%, rgba(9,20,12,.04) 28%, rgba(9,20,12,.55) 100%); }
.eh-gcard__status, .eh-gcard__fit { position: absolute; top: 14px; z-index: 3; padding: 6px 12px; border-radius: 99px; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.eh-gcard__status { left: 14px; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); }
.eh-gcard__status--booked { background: rgba(109,114,107,.5); }
.eh-gcard__fit { right: 14px; background: rgba(190,155,88,.9); color: #2a1e05; border: 1px solid rgba(255,255,255,.3); }
.eh-gcard__glass {
	position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; padding: 16px 16px 15px; border-radius: 18px;
	background: rgba(20,32,22,.34); -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
	border: 1px solid rgba(255,255,255,.22); box-shadow: 0 8px 32px rgba(0,0,0,.2); color: #fff;
}
.eh-gcard__title { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(18px, 2.4vw, 22px); margin: 0; color: #fff; line-height: 1.1; }
.eh-gcard__specs { margin: 4px 0 12px; font-size: 12px; color: rgba(255,255,255,.82); }
.eh-gcard__rates { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.eh-gchip { display: flex; flex-direction: column; gap: 1px; align-items: flex-start; text-align: left; padding: 8px 11px; border-radius: 12px; cursor: pointer; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; transition: background .2s ease, transform .2s ease, border-color .2s ease; }
.eh-gchip:hover, .eh-gchip:focus-visible { background: rgba(190,155,88,.3); border-color: rgba(190,155,88,.7); transform: translateY(-1px); outline: none; }
.eh-gchip__label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.78); }
.eh-gchip__price { font-family: var(--eh-serif); font-weight: 600; font-size: 15px; color: #fff; white-space: nowrap; }
.eh-gchip__price small { font-family: var(--eh-font); font-size: 9px; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,.7); margin-right: 2px; }
.eh-gcard__more { width: 100%; margin-top: 11px; padding: 11px; font-size: 13.5px; font-weight: 700; border: 0; cursor: pointer; background: rgba(255,255,255,.94); color: var(--eh-primary-d); border-radius: 12px; transition: background .2s ease, transform .2s ease; }
.eh-gcard__more:hover { background: #fff; transform: translateY(-1px); }
@media (max-width: 480px) { .eh-gcard { aspect-ratio: 4 / 5; } .eh-gcard__glass { left: 10px; right: 10px; bottom: 10px; padding: 13px; } }
@media (prefers-reduced-motion: reduce) { .eh-gcard, .eh-gcard__bg { transition: none; } .eh-gcard:hover .eh-gcard__bg { transform: none; } }

/* Slide-in booking panel */
.eh-panel { position: fixed; inset: 0; z-index: 2000; }
.eh-panel__scrim { position: absolute; inset: 0; background: rgba(11,26,15,.5); opacity: 0; transition: opacity .3s; }
.eh-panel.is-open .eh-panel__scrim { opacity: 1; }
.eh-panel__body { position: absolute; top: 0; right: 0; height: 100%; width: min(560px, 96vw); background: var(--eh-sand-2); box-shadow: -24px 0 70px rgba(0,0,0,.32); overflow-y: auto; transform: translateX(100%); transition: transform .34s cubic-bezier(.22,.61,.36,1); }
.eh-panel.is-open .eh-panel__body { transform: translateX(0); }
.eh-panel__close { position: absolute; top: 16px; right: 16px; z-index: 4; width: 42px; height: 42px; border-radius: 99px; border: 1px solid rgba(255,255,255,.4); background: rgba(20,32,22,.35); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: 24px; line-height: 1; cursor: pointer; color: #fff; }
.eh-panel__close:hover { background: rgba(20,32,22,.55); }
/* Product hero with the name/specs overlaid on glass. */
.eh-panel__hero { position: relative; height: 340px; background-size: cover; background-position: center; transition: background-image .3s ease; }
.eh-panel__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,20,12,.15) 0%, transparent 35%, rgba(9,20,12,.72) 100%); }
.eh-panel__herobar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px 26px; }
.eh-panel__herobar .eh-panel__title { color: #fff; margin: 0 0 8px; }
.eh-panel__specs, .eh-panel__specs span, .eh-panel__specs strong { color: rgba(255,255,255,.94); }
.eh-panel__title { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(24px, 4vw, 30px); margin: 0 0 10px; line-height: 1.1; }
/* Content: a floating glass booking card lifted over the hero. */
.eh-panel__content { padding: 0 22px 40px; }
.eh-panel__desc { color: var(--eh-muted); margin: 18px 4px 0; line-height: 1.6; }
.eh-panel__book { margin: -26px 0 0; position: relative; z-index: 2; padding: 22px 20px; border-radius: 20px; background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 20px 45px -26px rgba(9,20,12,.4); }
.eh-panel__book .eh-field > span { color: var(--eh-ink); opacity: .72; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .eh-panel__book { background: rgba(30,40,32,.7); border-color: rgba(255,255,255,.14); } }
:root[data-theme="dark"] .eh-panel__book { background: rgba(30,40,32,.7); border-color: rgba(255,255,255,.14); }
.eh-panel__full { display: block; text-align: center; margin-top: 14px; padding: 11px; border-radius: 12px; border: 1px solid var(--eh-line); color: var(--eh-primary); font-weight: 700; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.eh-panel__full:hover { color: var(--eh-primary-d); background: rgba(190,155,88,.12); border-color: var(--eh-accent); }

@media (max-width: 620px) {
	.eh-explorer__legend { margin-left: 0; width: 100%; }
	.eh-panel__hero { height: 260px; }
}

/* ============================================================
   Cart + Checkout — styled to match the site (WooCommerce)
   ============================================================ */
.eh-woo__inner { background: #fff; padding: 30px; border-radius: var(--eh-radius-lg); box-shadow: var(--eh-shadow-sm); }
.eh-woo a { color: var(--eh-primary); }
.eh-woo h2, .eh-woo h3 { font-family: var(--eh-serif); font-weight: 600; color: var(--eh-ink); }

/* Notices */
.eh-woo .woocommerce-message, .eh-woo .woocommerce-info, .eh-woo .woocommerce-error, .eh-woo .cart-empty {
	border: 0; border-radius: 12px; padding: 14px 18px; background: var(--eh-sand); color: var(--eh-ink); font-weight: 600; box-shadow: none;
}
.eh-woo .woocommerce-error { background: #f7ded3; color: #9a3521; }
.eh-woo .woocommerce-message::before, .eh-woo .woocommerce-info::before { color: var(--eh-primary); }

/* Tables (cart + order review) */
.eh-woo table.shop_table { border: 1px solid var(--eh-line); border-radius: 14px; border-collapse: separate; border-spacing: 0; overflow: hidden; }
.eh-woo table.shop_table th { background: var(--eh-sand-2); font-family: var(--eh-font); font-weight: 700; font-size: 12px; letter-spacing: .4px; text-transform: uppercase; color: var(--eh-muted); padding: 14px 16px; }
.eh-woo table.shop_table td { padding: 16px; border-top: 1px solid var(--eh-line); vertical-align: middle; }
.eh-woo table.shop_table img { width: 64px; border-radius: 10px; }
.eh-woo .product-name a { font-weight: 700; }
.eh-woo .cart_item .variation, .eh-woo dl.variation { font-size: 13px; color: var(--eh-muted); margin: 4px 0 0; }

/* Form fields */
.eh-woo .form-row { margin: 0 0 14px; }
.eh-woo label { font-size: 13px; font-weight: 600; color: var(--eh-ink); }
.eh-woo input.input-text, .eh-woo textarea, .eh-woo select, .eh-woo .select2-selection {
	font-family: var(--eh-font); font-size: 15px; color: var(--eh-ink);
	padding: 12px 14px; border: 1px solid var(--eh-line); border-radius: 12px; background: var(--eh-sand-2); outline: none; width: 100%; box-shadow: none;
}
.eh-woo input.input-text:focus, .eh-woo textarea:focus, .eh-woo select:focus { border-color: var(--eh-primary); background: #fff; box-shadow: 0 0 0 4px rgba(35,87,46,.08); }

/* Two-column checkout — details span both rows on the left; the "Your stay"
   heading + review stack together on the right, aligned to the top. */
@media (min-width: 901px) {
	.eh-woo form.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 384px; column-gap: 40px; row-gap: 0; align-items: start; }
	.eh-woo #customer_details { grid-column: 1; grid-row: 1 / 3; min-width: 0; }
	.eh-woo #order_review_heading { grid-column: 2; grid-row: 1; margin: 0 0 14px; }
	.eh-woo #order_review { grid-column: 2; grid-row: 2; position: sticky; top: 100px; }
	/* Stack the billing + additional-info columns instead of side by side. */
	.eh-woo .col2-set .col-1, .eh-woo .col2-set .col-2 { width: 100%; float: none; margin: 0 0 4px; padding: 0; }
}
/* Order review table sits full-width and comfortable (no cramped wrapping). */
.eh-woo #order_review table.shop_table { width: 100%; }
.eh-woo #order_review td, .eh-woo #order_review th { padding: 11px 12px; }
.eh-woo #order_review .product-name { word-break: normal; font-weight: 700; }
.eh-woo #order_review dl.variation { margin: 6px 0 0; font-size: 12.5px; color: var(--eh-muted); }
.eh-woo #order_review dl.variation dt { font-weight: 700; float: none; clear: none; margin: 0; display: inline; }
.eh-woo #order_review dl.variation dd { margin: 0 0 3px; display: inline; }
.eh-woo #order_review dl.variation dd p { display: inline; margin: 0; }

/* Order review + totals card */
.eh-woo #order_review, .eh-woo .cart_totals { background: var(--eh-sand-2); border: 1px solid var(--eh-line); border-radius: 16px; padding: 22px; }
.eh-woo .cart_totals table, .eh-woo #order_review table.shop_table { border: 0; background: transparent; }
.eh-woo #order_review table.shop_table th, .eh-woo .cart_totals th { background: transparent; }
.eh-woo .order-total .amount { color: var(--eh-primary); font-size: 20px; }

/* Payment box */
.eh-woo #payment { background: #fff; border-radius: 14px; border: 1px solid var(--eh-line); margin-top: 16px; }
.eh-woo #payment ul.payment_methods { border-bottom: 1px solid var(--eh-line); padding: 14px 18px; }
.eh-woo #payment ul.payment_methods li { margin: 6px 0; font-weight: 600; }
.eh-woo #payment div.payment_box { background: var(--eh-sand); border-radius: 10px; color: var(--eh-muted); font-size: 14px; }
.eh-woo #payment div.payment_box::before { border-bottom-color: var(--eh-sand); }
.eh-woo #payment .place-order { padding: 18px; }

/* Buttons (green, white text already enforced globally) */
.eh-woo .button, .eh-woo button.button, .eh-woo input.button, .eh-woo #place_order, .eh-woo a.checkout-button {
	background: var(--eh-primary) !important; color: #fff !important; border: 0 !important; border-radius: 99px !important;
	font-family: var(--eh-font) !important; font-weight: 700 !important; padding: 14px 28px !important; box-shadow: 0 10px 24px rgba(35,87,46,.25) !important;
	transition: background .18s, transform .18s !important;
}
.eh-woo .button:hover, .eh-woo #place_order:hover, .eh-woo a.checkout-button:hover { background: var(--eh-primary-d) !important; transform: translateY(-1px); }
.eh-woo a.checkout-button { display: inline-block; text-align: center; }
.eh-woo .coupon .button { background: var(--eh-ink) !important; }
.eh-woo .return-to-shop .button, .eh-woo .wc-backward { background: var(--eh-accent) !important; color: #2a1e05 !important; }

/* Quantity */
.eh-woo .quantity input.qty { width: 68px; text-align: center; padding: 10px; }

/* Dormant placeholder container (trial ended) */
.tvch-container--dormant { min-height: 1px; }

/* ============================================================
   Squared reservation card (custom request)
   ============================================================ */
/* Glassmorphic booking card on the single product page */
.eh-booking-card {
	border-radius: 20px;
	background: rgba(255,255,255,.86);
	-webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
	border: 1px solid rgba(255,255,255,.7);
	box-shadow: 0 24px 55px -28px rgba(9,20,12,.45);
}
/* Keep the booking-card labels/price/note high-contrast on the glass. */
.eh-booking-card .eh-field > span { color: var(--eh-ink); opacity: .72; }
.eh-booking-card__price strong, .eh-booking-card__price span { color: var(--eh-ink); }
.eh-booking-card .eh-field input,
.eh-booking-card .eh-field select,
.eh-booking-card__status,
.eh-booking-card__summary,
.eh-booking-card .eh-btn { border-radius: 12px; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .eh-booking-card { background: rgba(30,40,32,.72); border-color: rgba(255,255,255,.14); } }
:root[data-theme="dark"] .eh-booking-card { background: rgba(30,40,32,.72); border-color: rgba(255,255,255,.14); }
/* Match the checkout "Your stay" + totals cards to the squared look. */
.eh-woo #order_review,
.eh-woo .cart_totals { border-radius: 2px; }

/* ============================================================
   Override WooCommerce/Astra default float + %-width on the
   checkout columns, which fight our CSS grid (they shrink the
   grid items and leave a gap). Force each to fill its track.
   ============================================================ */
.eh-woo form.checkout #customer_details,
.eh-woo form.checkout #order_review,
.eh-woo form.checkout .col2-set,
.eh-woo form.checkout .col2-set .col-1,
.eh-woo form.checkout .col2-set .col-2 {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	clear: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.eh-woo form.checkout .col2-set .col-1,
.eh-woo form.checkout .col2-set .col-2 { padding: 0 !important; }
.eh-woo #order_review table.shop_table,
.eh-woo #order_review .woocommerce-checkout-review-order-table,
.eh-woo .cart_totals table { width: 100% !important; }
/* Give the review a touch more room and keep meta tidy. */
@media (min-width: 901px) {
	.eh-woo form.checkout { grid-template-columns: minmax(0, 1fr) 400px !important; }
}
.eh-woo #order_review .product-name,
.eh-woo #order_review td.product-total { white-space: normal; }

/* ============================================================
   Rooms explorer — big square cards: 1 per row on phones, 2 on
   tablets, 3 on desktop (so the three booking cards read large).
   ============================================================ */
.eh-explorer__grid { grid-template-columns: 1fr !important; gap: 24px; }
@media (min-width: 640px) { .eh-explorer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (min-width: 1000px) { .eh-explorer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (max-width: 520px) {
	.eh-explorer__grid { gap: 10px; }
	.eh-rcard__body { padding: 14px; gap: 8px; }
	.eh-rcard__body h3 { font-size: 17px; line-height: 1.2; }
	.eh-rcard__specs { font-size: 12px; }
	.eh-rcard__status, .eh-rcard__fit { font-size: 10px; padding: 4px 8px; }
	.eh-rate { padding: 10px 6px; }
	.eh-rate__price { font-size: 16px; }
}

/* ============================================================
   Mobile polish (phones)
   ============================================================ */
.eh { overflow-wrap: break-word; }
@media (max-width: 620px) {
	.eh-container { padding: 0 16px; }
	.eh-header { top: 10px; }
	.eh-header__inner { height: 60px; padding: 0 10px 0 16px; }
	.eh-brand__logo { width: 38px; height: 38px; }
	.eh-brand__text strong { font-size: 16px; }
	.eh-brand__text em { font-size: 10px; }
	.eh-hero { min-height: 88vh; padding: 118px 0 68px; }
	.eh-hero__badges { gap: 18px; }
	.eh-explorer { padding: 30px 0 60px; }
	.eh-explorer__filters { gap: 10px; }
	.eh-filter { flex: 1 1 28%; }
	.eh-filter select { min-width: 0; width: 100%; padding: 10px; }
	.eh-explorer__legend { font-size: 12px; gap: 12px; flex-wrap: wrap; width: 100%; margin-left: 0; }
	.eh-daterail__day { width: 56px; padding: 10px 5px; }
	.eh-daterail__day .dnum { font-size: 19px; }
	.eh-room__specs { flex-wrap: wrap; gap: 12px 20px; }
	.eh-amenities { grid-template-columns: 1fr; }
	.eh-stats { grid-template-columns: repeat(2, 1fr); }
	.eh-panel__body { width: 100vw; }
	.eh-panel__hero { height: 190px; }
	.eh-woo__inner { padding: 18px; }
	.eh-section-head h2, .eh-about h2, .eh-contact h2, .eh-verify h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* ============================================================
   Dark mode — when the device prefers a dark colour scheme.
   Redefine the design tokens + flip the surfaces that were
   hard-coded white, and lift any dark body text to light.
   ============================================================ */
@media (prefers-color-scheme: dark) {
	.eh, .eh-woo { color-scheme: dark; }
	:root {
		--eh-primary: #59A971;
		--eh-primary-d: #498C5C;
		--eh-accent: #D6B56C;
		--eh-coral: #DC9060;
		--eh-ink: #E8EEE6;
		--eh-muted: #A4B3A7;
		--eh-sand: #1a211b;
		--eh-sand-2: #141a15;
		--eh-line: #2b332c;
		--eh-white: #1e2620;
	}
	/* White surfaces -> dark card colour */
	.eh-card, .eh-rcard, .eh-booking-card, .eh-verify__card, .eh-form,
	.eh-woo__inner, .eh-daterail__day, .eh-panel__body, .eh-calendar,
	.eh-search, .eh-searchbar__card, .eh-filter select, .eh-woo #payment,
	.eh-woo table.shop_table { background: var(--eh-white); }
	.eh-woo #order_review, .eh-woo .cart_totals { background: #10150f; }
	.eh-badge { background: var(--eh-white); color: var(--eh-ink); }
	.eh-panel__close { background: rgba(30,38,32,.9); color: var(--eh-ink); }
	/* Floating glass header goes dark */
	.eh-header__inner { background: rgba(24,30,25,.82); border-color: rgba(255,255,255,.08); }
	.eh-header.is-stuck .eh-header__inner { background: rgba(18,24,19,.95); }
	.eh-cart-link { background: rgba(255,255,255,.08); }
	/* Inputs */
	.eh-field input, .eh-field select, .eh-field textarea,
	.eh-search__control input, .eh-search__control select,
	.eh-verify__form input,
	.eh-woo input.input-text, .eh-woo textarea, .eh-woo select { background: #0f140f; color: var(--eh-ink); border-color: var(--eh-line); }
	.eh-booking-card__summary { background: #0f140f; }
	/* Hard-coded dark text -> light */
	.eh-nav a, .eh-about__content p, .eh-room__desc, .eh-room__desc *,
	.eh-amenities li, .eh-panel__desc, .eh-contact__list li,
	.eh-woo, .eh-woo p, .eh-woo label, .eh-woo td, .eh-woo th { color: var(--eh-ink); }
	.eh-woo a { color: var(--eh-accent); }
	.eh-woo .woocommerce-info, .eh-woo .woocommerce-message { background: #0f140f; color: var(--eh-ink); }
	.eh-woo .woocommerce-error { background: #3a1613; color: #f2c4b6; }
	/* Section headings + eyebrows keep contrast */
	.eh-daterail__day .dow, .eh-daterail__day .mon { color: var(--eh-muted); }
}

/* ============================================================
   Full-width desktop scaling — use more of large screens
   ============================================================ */
@media (min-width: 1440px) { :root { --eh-maxw: 1340px; } .eh-header__inner { max-width: 1300px; } }
@media (min-width: 1720px) { :root { --eh-maxw: 1500px; } .eh-header__inner { max-width: 1440px; } }

/* ============================================================
   Interactive estate gallery + lightbox (zoom + slide)
   ============================================================ */
.eh-gallery-head { text-align: center; max-width: 620px; margin: 64px auto 22px; }
.eh-gallery-head h3 { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(24px, 3vw, 34px); margin: 8px 0 8px; color: var(--eh-ink); }
.eh-gallery-head p { color: var(--eh-muted); margin: 0; }

.eh-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; margin-top: 22px; }
.eh-gallery__item { position: relative; height: 100%; aspect-ratio: auto; border: 0; padding: 0; cursor: zoom-in; background-size: cover; background-position: center; border-radius: 16px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.eh-gallery__item--wide { grid-column: span 2; }
.eh-gallery__item:hover { transform: translateY(-3px); box-shadow: var(--eh-shadow); }
.eh-gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,20,12,.4)); opacity: 0; transition: opacity .3s; }
.eh-gallery__item:hover::after { opacity: 1; }
.eh-gallery__zoom { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 99px; display: grid; place-items: center; background: rgba(255,255,255,.9); color: var(--eh-primary); opacity: 0; transform: scale(.8); transition: .25s; z-index: 2; }
.eh-gallery__item:hover .eh-gallery__zoom { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .eh-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
@media (max-width: 520px) { .eh-gallery { grid-auto-rows: 128px; gap: 8px; } .eh-gallery__item { border-radius: 12px; } }

.eh-lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(8,12,8,.95); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .26s ease; }
.eh-lightbox.is-open { opacity: 1; }
.eh-lightbox__stage { max-width: 92vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.eh-lightbox__stage img { max-width: 92vw; max-height: 82vh; border-radius: 6px; opacity: 1; transition: transform .25s ease, opacity .5s ease-in-out; cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
.eh-lightbox__stage img.is-zoomed { cursor: grab; transition: none; }
.eh-lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border: 0; border-radius: 99px; background: rgba(255,255,255,.12); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; z-index: 2; }
.eh-lightbox__close:hover { background: rgba(255,255,255,.22); }
.eh-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 99px; background: rgba(255,255,255,.12); color: #fff; font-size: 30px; cursor: pointer; display: grid; place-items: center; z-index: 2; }
.eh-lightbox__nav:hover { background: rgba(255,255,255,.22); }
.eh-lightbox__nav--prev { left: 20px; } .eh-lightbox__nav--next { right: 20px; }
.eh-lightbox__bar { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 18px; color: rgba(255,255,255,.72); font-size: 13px; }
@media (max-width: 620px) { .eh-lightbox__nav { width: 42px; height: 42px; font-size: 24px; } .eh-lightbox__hint { display: none; } }

/* ============================================================
   Corner "stay longer?" popup
   ============================================================ */
.eh-popup { position: fixed; bottom: 22px; right: 22px; z-index: 1500; width: 328px; max-width: calc(100vw - 32px);
	background: rgba(20,26,21,.95); color: #fff; border-radius: 16px; padding: 20px 22px 18px;
	box-shadow: 0 22px 55px rgba(0,0,0,.38); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.08);
	transform: translateY(24px) scale(.96); opacity: 0; pointer-events: none;
	transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .4s ease; }
.eh-popup.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.eh-popup__close { position: absolute; top: 9px; right: 12px; border: 0; background: transparent; color: rgba(255,255,255,.6); font-size: 22px; line-height: 1; cursor: pointer; }
.eh-popup__close:hover { color: #fff; }
.eh-popup__title { display: block; font-family: var(--eh-serif); font-weight: 600; font-size: 17px; line-height: 1.25; margin-bottom: 8px; padding-right: 16px; color: #fff; }
.eh-popup__text { font-size: 13.5px; color: rgba(255,255,255,.82); margin: 0 0 15px; line-height: 1.5; }
.eh-popup__actions { display: flex; gap: 10px; }
.eh-popup__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 99px; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .18s ease, filter .18s ease; }
.eh-popup__btn--call { background: var(--eh-accent); color: #2a1e05; }
.eh-popup__btn--email { background: rgba(255,255,255,.13); color: #fff; }
.eh-popup__btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
@media (max-width: 520px) { .eh-popup { bottom: 12px; right: 12px; left: 12px; width: auto; } }

/* ============================================================
   FIX: overlays must truly hide when [hidden] — otherwise their
   full-screen invisible layer blocks all clicks (page "freezes").
   A class selector's display beats the UA [hidden] rule, so force it.
   ============================================================ */
.eh-lightbox[hidden],
.eh-panel[hidden] { display: none !important; }

/* ============================================================
   THE VIEW — "Experience" page (sectioned, media-driven galleries)
   ============================================================ */
.eh-experience { padding: 56px 0 72px; }
.eh-experience__intro { text-align: center; max-width: 780px; margin: 0 auto; }
.eh-experience__intro--hero { max-width: none; margin: 0; padding: clamp(56px, 12vw, 128px) 24px; border-radius: 22px; background-size: cover; background-position: center; color: #fff; }
.eh-experience__intro--hero .eh-eyebrow { color: rgba(255,255,255,.85); }
.eh-experience__title { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.05; margin: 10px 0 14px; color: var(--eh-ink); }
.eh-experience__intro--hero .eh-experience__title { color: #fff; }
.eh-experience__lead { color: var(--eh-muted); font-size: clamp(15px, 1.6vw, 18px); margin: 0 auto; max-width: 640px; }
.eh-experience__intro--hero .eh-experience__lead { color: rgba(255,255,255,.9); }
.eh-experience__empty { text-align: center; border: 1px dashed var(--eh-line, #d8d2c4); border-radius: 18px; padding: 32px 20px; margin-top: 20px; background: rgba(190,155,88,.05); }
.eh-experience__empty p { margin: 0 0 14px; color: var(--eh-muted); }
.eh-experience__empty-note { display: block; margin-top: 12px; font-size: 12px; color: var(--eh-muted); opacity: .8; }
.eh-btn--ghost { background: transparent; color: var(--eh-primary); box-shadow: none; border: 1px solid var(--eh-primary); }
.eh-btn--ghost:hover { background: var(--eh-primary); color: #fff; }

/* --- About: "Book Direct with Us" --- */
.eh-bookdirect { margin-top: 56px; }
.eh-bookdirect__head { text-align: center; max-width: 620px; margin: 0 auto 22px; }
.eh-bookdirect__head h3 { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(22px, 3vw, 32px); margin: 8px 0 0; color: var(--eh-ink); }
.eh-bookdirect__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.eh-bookdirect__item { background: var(--eh-surface, #fff); border: 1px solid var(--eh-line, #e4decf); border-radius: 18px; padding: 28px 26px; text-align: center; box-shadow: var(--eh-shadow, 0 20px 45px -30px rgba(9,20,12,.4)); }
.eh-bookdirect__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 99px; background: rgba(190,155,88,.14); color: var(--eh-primary); margin-bottom: 14px; }
.eh-bookdirect__item h4 { font-family: var(--eh-serif); font-weight: 600; font-size: 20px; margin: 0 0 8px; color: var(--eh-ink); }
.eh-bookdirect__item p { color: var(--eh-muted); margin: 0; line-height: 1.6; }
@media (max-width: 620px) { .eh-bookdirect__grid { grid-template-columns: 1fr; } }

/* ============================================================
   LUXURY EDITORIAL GALLERY (Experience page)
   Sticky category filter · editorial section headers · masonry
   grid with a gold hairline frame and glass zoom affordance.
   ============================================================ */

/* Sticky category filter */
.eh-xnav {
	position: sticky; top: 0; z-index: 20; margin: 30px 0 6px; padding: 12px 0;
	background: var(--eh-sand-2);
	background: color-mix(in srgb, var(--eh-sand-2) 85%, transparent);
	backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
	border-top: 1px solid var(--eh-line); border-bottom: 1px solid var(--eh-line);
}
.eh-xnav__track { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; max-width: var(--eh-maxw, 1200px); margin: 0 auto; padding: 0 24px; }
.eh-xnav a {
	flex: 0 0 auto; font-family: var(--eh-font); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
	font-weight: 600; color: var(--eh-muted); text-decoration: none; padding: 8px 15px; border-radius: 99px;
	transition: color .35s ease, background .35s ease; white-space: nowrap;
}
.eh-xnav a:hover { color: var(--eh-ink); }
.eh-xnav a.is-active { color: var(--eh-primary); background: rgba(190,155,88,.16); }
@media (max-width: 720px) {
	.eh-xnav__track { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
	.eh-xnav__track::-webkit-scrollbar { display: none; }
}

/* Editorial section header */
.eh-xsection { margin-top: 66px; }
.eh-xsection:first-of-type { margin-top: 44px; }
.eh-xsection__head { display: grid; grid-template-columns: auto minmax(0,1fr) minmax(40px,0.5fr); align-items: center; gap: 22px; margin-bottom: 26px; }
.eh-xsection__index { font-family: var(--eh-serif); font-size: clamp(30px, 5vw, 54px); font-weight: 500; color: var(--eh-accent); line-height: 1; }
.eh-xsection__heading h2 { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(22px, 3vw, 34px); margin: 0; color: var(--eh-ink); }
.eh-xsection__heading p { margin: 5px 0 0; color: var(--eh-muted); font-size: 14.5px; line-height: 1.5; }
.eh-xsection__rule { height: 1px; background: linear-gradient(90deg, var(--eh-accent), transparent); }
@media (max-width: 640px) { .eh-xsection__head { grid-template-columns: auto minmax(0,1fr); gap: 16px; } .eh-xsection__rule { display: none; } }

/* Masonry grid */
.eh-xgrid { column-count: 3; column-gap: 16px; }
@media (max-width: 900px) { .eh-xgrid { column-count: 2; } }
@media (max-width: 560px) { .eh-xgrid { column-count: 1; } }
.eh-xgrid__item {
	position: relative; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; background: none;
	border-radius: 16px; overflow: hidden; cursor: zoom-in;
	break-inside: avoid; -webkit-column-break-inside: avoid;
	box-shadow: 0 22px 55px -34px rgba(9,20,12,.55);
}
.eh-xgrid__item img { display: block; width: 100%; height: auto; border-radius: 16px; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.eh-xgrid__item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.eh-xgrid__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(9,20,12,.45)); opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.eh-xgrid__item:hover::after { opacity: 1; }
.eh-xgrid__frame { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 10px; opacity: 0; transition: opacity .5s ease, inset .5s ease; pointer-events: none; z-index: 2; }
.eh-xgrid__item:hover .eh-xgrid__frame { opacity: 1; inset: 13px; }
.eh-xgrid__zoom {
	position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 99px;
	display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.18);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.4);
	opacity: 0; transform: translateY(-6px) scale(.9); transition: opacity .45s ease, transform .45s ease;
}
.eh-xgrid__item:hover .eh-xgrid__zoom { opacity: 1; transform: translateY(0) scale(1); }
.eh-xgrid__item:focus-visible { outline: 2px solid var(--eh-accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
	.eh-xgrid__item img, .eh-xgrid__item:hover img { transition: none; transform: none; }
}

/* ============================================================
   About: Activities & facilities + Attractions nearby
   ============================================================ */
.eh-nearby { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 60px; }
.eh-nearby__col h3 { font-family: var(--eh-serif); font-weight: 600; font-size: clamp(20px, 2.6vw, 28px); margin: 8px 0 18px; color: var(--eh-ink); }
.eh-nearby__acts { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.eh-nearby__acts li { display: flex; align-items: center; gap: 8px; color: var(--eh-ink); font-size: 14px; }
.eh-nearby__acts svg { color: var(--eh-primary); flex: 0 0 auto; }
.eh-nearby__list { list-style: none; padding: 0; margin: 0; }
.eh-nearby__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--eh-line); }
.eh-nearby__list li span { color: var(--eh-ink); font-weight: 500; }
.eh-nearby__list li em { color: var(--eh-primary); font-style: normal; font-weight: 700; font-size: 13px; white-space: nowrap; }
@media (max-width: 760px) { .eh-nearby { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 420px) { .eh-nearby__acts { grid-template-columns: 1fr; } }

/* ============================================================
   Contact: social links + attractions list
   ============================================================ */
.eh-contact__social { display: flex; align-items: center; gap: 10px; margin: 18px 0 6px; flex-wrap: wrap; }
.eh-social { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 99px; background: var(--eh-primary); color: #fff; transition: transform .18s ease, filter .18s ease; }
.eh-social:hover { transform: translateY(-2px); filter: brightness(1.08); }
.eh-contact__socialtext { color: var(--eh-muted); font-size: 13px; }
.eh-contact__subhead { font-family: var(--eh-serif); font-weight: 600; font-size: 20px; margin: 26px 0 12px; color: var(--eh-ink); }
.eh-contact__attractions { list-style: none; padding: 0; margin: 0 0 24px; }
.eh-contact__attractions li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--eh-line); }
.eh-contact__attractions li span { color: var(--eh-ink); }
.eh-contact__attractions li em { color: var(--eh-primary); font-style: normal; font-weight: 700; font-size: 13px; white-space: nowrap; }
