/* ============================================
   ESTATE HEIGHTS — Premium Luxury CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500;1,600&family=Poppins:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --white: #F8F6F2;
  --off-white: #F2EEE8;
  --beige: #E8E1D6;
  --beige-dark: #DDD4C4;
  --champagne: #D8C090;
  --gold: #B8922E;
  --gold-light: #C9A84C;
  --gold-dark: #8A6C22;
  --charcoal: #111111;
  --charcoal-soft: #242424;
  --text: #1E1E1E;
  --text-muted: #5A5A52;
  --text-light: #888880;
  --border: rgba(17,17,17,0.15);
  --border-light: rgba(17,17,17,0.08);
  --shadow-sm: 0 2px 20px rgba(17,17,17,0.08);
  --shadow-md: 0 8px 40px rgba(17,17,17,0.14);
  --shadow-lg: 0 20px 80px rgba(17,17,17,0.22);
  --shadow-gold: 0 10px 40px rgba(184,146,46,0.25);
  --font-display: 'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-price: 'Poppins', 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Loading Screen ---- */
#loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 32px;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
  /* GPU-composited fade — no layout thrash */
  will-change: opacity;
}
/* Hero title line spans — display:block for the clip-reveal.
   opacity/transform are set by GSAP at runtime, not in CSS,
   so clearProps can hand back to a clean slate without snapping to 0. */
#hero .hero-title .line {
  display: block;
  will-change: transform, opacity;
}
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
}
.loader-logo-mark { color: var(--white); margin-bottom: 4px; }
.loader-logo-mark .hp-pin { display: block; }
.loader-logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 2.2vw, 0.7rem);
  letter-spacing: clamp(0.15em, 2vw, 0.4em);
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.loader-bar-wrap {
  width: min(200px, 60vw);
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  opacity: 0;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transform-origin: left;
}
.loader-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  opacity: 0;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 10px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--charcoal); }
.display-xl { font-size: clamp(3rem, 7vw, 6rem); }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.display-md { font-size: clamp(2rem, 4vw, 3.5rem); }
.display-sm { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.1; color: var(--charcoal); }
.lead { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-beige { background: var(--beige); }
.bg-charcoal { background: var(--charcoal); }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header .overline { margin-bottom: 16px; }
.section-header .section-title { margin-bottom: 20px; }
.section-header .lead { max-width: 560px; margin: 0 auto; }
.gold-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  display: block;
}

/* ---- Reveal animation classes ---- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.char { display: inline-block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.35s var(--ease-luxury), box-shadow 0.35s var(--ease-luxury), color 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-luxury);
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.btn-gold:hover { background: var(--charcoal-soft); border-color: var(--charcoal-soft); box-shadow: var(--shadow-md); }
.btn-gold-accent {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn-gold-accent:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--white);
}
.btn-white:hover { background: var(--beige); }
.btn-arrow { font-size: 1.1rem; }
.btn-icon { width: 20px; height: 20px; }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background-color 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury), border-color 0.45s var(--ease-luxury);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar.nav-scrolled {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
#navbar.nav-transparent { background: transparent; }
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  z-index: 101;
}
.nav-logo-textwrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* Pin mark — inherits text color so the teardrop + house flip white→charcoal
   on scroll, while the gold accents (set inline on the SVG) stay constant. */
.nav-logo-mark {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: color 0.4s;
  flex-shrink: 0;
}
.nav-logo-mark .hp-pin { display: block; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.4s;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
/* Brand tagline — elegant italic, sits between the wordmark and the gold
   locality line. Inherits the white→charcoal flip via the logo text color. */
.nav-logo-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(248,246,242,0.85);
  margin: 1px 0 2px;
  transition: color 0.4s;
  white-space: nowrap;
  line-height: 1.1;
}
#navbar.nav-scrolled .nav-logo-text,
#navbar.nav-scrolled .nav-logo-mark { color: var(--charcoal); }
#navbar.nav-scrolled .nav-logo-tagline { color: var(--gold-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
#navbar.nav-scrolled .nav-link { color: var(--text-muted); }
#navbar.nav-scrolled .nav-link:hover { color: var(--gold); }
/* Right-side nav group: Sign In + Book Now sit together with consistent gap */
.nav-right {
  display: flex; align-items: center; gap: 12px;
}

/* Account icon button in nav */
.nav-account {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  height: 38px; box-sizing: border-box;
}
.nav-account svg { flex-shrink: 0; }
.nav-account:hover, .nav-account.active { color: var(--gold); border-color: var(--gold); }
#navbar.nav-scrolled .nav-account { color: var(--charcoal); border-color: var(--beige-dark); }
#navbar.nav-scrolled .nav-account:hover { color: var(--gold); border-color: var(--gold); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 24px;
  height: 38px;
  display: flex; align-items: center;
  background: var(--gold);
  color: var(--charcoal);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
#navbar.nav-scrolled .nav-cta { background: var(--charcoal); color: var(--white); }
#navbar.nav-scrolled .nav-cta:hover { background: var(--charcoal-soft); }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
}
#navbar.nav-scrolled .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-expo);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu .nav-link {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--white);
}
#mobile-menu .nav-link::after { display: none; }
#mobile-menu .nav-link:hover { color: var(--gold); }

/* ---- Sticky CTAs ---- */
.sticky-cta {
  position: fixed;
  right: 32px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}
.sticky-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-luxury), background-color 0.3s;
  cursor: pointer;
  border: none;
}
.sticky-btn svg { width: 22px; height: 22px; }
.sticky-book { background: var(--gold); color: var(--charcoal); }
.sticky-book:hover { background: var(--gold-dark); transform: translateY(-3px) scale(1.05); }
.sticky-wa { background: #25D366; color: white; }
.sticky-wa:hover { background: #20BA59; transform: translateY(-3px) scale(1.05); }
.sticky-btn-label {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sticky-btn-wrap { position: relative; }
.sticky-btn-wrap:hover .sticky-btn-label { opacity: 1; }

/* ---- Hero Section ---- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0d0d0d 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://pub-dc22eed5da184357a71b9a8ed8ec62ee.r2.dev/Luxury%20Apartment%20Images/TOM9602-HDR.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.hero-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  will-change: transform, opacity;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  overflow: hidden;
}
.hero-title span { display: block; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
  will-change: transform, opacity;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  will-change: transform, opacity;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  will-change: opacity;
}
.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: opacity;
}
.hero-stat-item { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Hero search — horizontal bar on desktop, stacked on mobile ── */
.hero-search {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  margin: 48px auto 0;
  background: rgba(15,13,11,0.76);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  will-change: transform, opacity;
}

/* Each date/guest field — fills row evenly */
.hero-search-field-wrap {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  cursor: pointer;
  position: relative;
  border-bottom: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
  min-width: 0;
}
.hero-search-field-wrap:hover { background: rgba(255,255,255,0.05); }

/* Thin vertical divider shown as right-border above; keep element for legacy markup */
.hero-search-divider { display: none; }

.hero-search-guests {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  white-space: nowrap;
}

.hero-search-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  pointer-events: none;
  white-space: nowrap;
}

.hero-guest-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-guest-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.hero-guest-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
}
.hero-guest-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.hero-guest-val {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  min-width: 56px;
}
.hero-search-guest-val {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
}

/* Search button — right end of the bar, not full-width */
.hero-search .search-btn {
  flex: 0 0 auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 32px !important;
  border-radius: 0 16px 16px 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  align-self: stretch;
  white-space: nowrap;
}

/* Visible date display label */
.hero-date-display {
  font-size: 0.98rem;
  font-weight: 500;
  color: #ffffff;
  font-family: var(--font-body);
  cursor: pointer;
  line-height: 1.2;
  pointer-events: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Native input is invisible but positioned over the display so showPicker() works */
.search-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  color-scheme: dark;
}
.search-field::-webkit-calendar-picker-indicator { display: none; }

/* Entire date wrapper is clickable */
.booking-date-field,
.hero-search-field-wrap { cursor: pointer; user-select: none; }
.booking-date-field:focus-within { outline: 1px solid var(--gold, #C9A84C); outline-offset: -1px; }

.search-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  border: none;
  border-radius: 60px;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 4px 4px 4px 6px;
}
.search-btn:hover { background: #b8922e; color: white; }

/* ---- About Teaser Section ---- */
.about-teaser {
  padding: 140px 0;
  background: var(--white);
  overflow: hidden;
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  z-index: 2;
  will-change: transform;
}
.about-img-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  will-change: transform;
  height: 50%;
  object-fit: cover;
  z-index: 3;
  border: 6px solid var(--white);
}
.about-award {
  position: absolute;
  right: 20px;
  bottom: 60px;
  background: var(--gold);
  padding: 20px;
  text-align: center;
  z-index: 4;
}
.about-award-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.about-award-label { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); margin-top: 4px; }
.about-content { padding: 20px 0; }
.about-content .overline { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content .lead { margin-bottom: 40px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.about-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon { width: 36px; height: 36px; background: var(--charcoal); border-radius: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--gold); }
.about-feature-text h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Property Cards ---- */
.listings-section { padding: 120px 0; background: var(--off-white); }
.listings-carousel { position: relative; overflow: hidden; }
.listings-track { display: flex; gap: 28px; transition: transform 0.7s var(--ease-expo); }
a.property-card { display: block; color: inherit; text-decoration: none; }
.property-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  transition: box-shadow 0.4s var(--ease-luxury), border-color 0.4s;
  cursor: pointer;
  position: relative;
}
.property-card:hover { box-shadow: var(--shadow-lg); border-color: var(--beige-dark); }
.property-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.property-card-wish {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.property-card-wish:hover { background: white; transform: scale(1.1); }
.property-card-body { padding: 24px; }
.property-card-location {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.property-card-features {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.property-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.avail-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding: 6px 10px;
  background: var(--beige);
  border-left: 2px solid var(--gold);
  line-height: 1.4;
}
.avail-badge strong { color: var(--charcoal); font-weight: 600; }
.avail-panel-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--beige-dark);
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.avail-panel-note strong { color: var(--charcoal); font-weight: 600; }
.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--beige-dark);
}
/* Prices use Poppins for clear, legible figures (esp. the sale price
   with strikethrough that WooCommerce outputs as <del>/<ins>). */
.property-price { font-family: var(--font-price); display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.property-price-amount { font-size: 1.2rem; color: var(--charcoal); font-weight: 600; letter-spacing: -0.01em; }
.property-price-period { font-family: var(--font-price); font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* WooCommerce price markup inside the property card footer */
.property-price .woocommerce-Price-amount,
.property-price .amount { font-family: var(--font-price); letter-spacing: -0.01em; }
/* Original (struck-through) price — muted and smaller */
.property-price del { color: var(--text-light); font-weight: 400; opacity: 0.7; }
.property-price del .woocommerce-Price-amount,
.property-price del .amount { font-size: 0.8rem; }
/* Sale price — bold, dark, prominent */
.property-price ins { text-decoration: none; color: var(--charcoal); font-weight: 600; }
.property-price ins .woocommerce-Price-amount,
.property-price ins .amount { font-size: 1.2rem; }
/* Regular (non-sale) price */
.property-price > .woocommerce-Price-amount,
.property-price > .amount { font-size: 1.2rem; font-weight: 600; color: var(--charcoal); }
.property-rating { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-muted); }
.star { color: var(--gold); font-size: 0.85rem; }
.carousel-controls { display: flex; gap: 12px; margin-top: 48px; justify-content: center; }
.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ---- Amenities Section ---- */
.amenities-section { padding: 120px 0; background: var(--charcoal); }
.amenities-section .section-title { color: var(--white); }
.amenities-section .lead { color: rgba(255,255,255,0.55); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(255,255,255,0.05);
}
.amenity-card {
  background: var(--charcoal);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.amenity-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.2); }
.amenity-card:hover::before { opacity: 1; }
.amenity-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  transition: background-color 0.4s, border-color 0.4s;
  color: rgba(255,255,255,0.85);
}
.amenity-icon svg { width: 32px; height: 32px; }
.amenity-card:hover .amenity-icon { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.amenity-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.amenity-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ---- Why Choose Section ---- */
.why-section { padding: 140px 0; background: var(--beige); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image {
  position: relative;
  height: 650px;
}
.why-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--charcoal);
  color: var(--white);
  padding: 28px 36px;
  max-width: 260px;
}
.why-badge-num { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.why-badge-label { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.why-content { padding: 20px 0; }
.why-content .overline { margin-bottom: 16px; }
.why-content .section-title { margin-bottom: 24px; }
.why-content .lead { margin-bottom: 56px; }
.why-features { display: flex; flex-direction: column; gap: 32px; }
/* Breathing room between the feature list and the CTA button below it.
   .about-features already carries a 48px bottom margin, so only
   .why-features needs it (its button was sitting flush). Targets the
   button so it works on both the homepage and the About page reuse. */
.why-features + .btn { margin-top: 48px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--beige-dark);
}
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.why-feature-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.why-feature-content p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Stats Bar ---- */
.stats-bar { padding: 80px 0; background: var(--charcoal); }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ---- Testimonials ---- */
.testimonials-section { padding: 120px 0; background: var(--white); overflow: hidden; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.8s var(--ease-expo); }
.testimonial-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 80px;
}
.testimonial-image { position: relative; }
.testimonial-image img { width: 100%; height: 500px; object-fit: cover; }
.testimonial-image-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.testimonial-content { padding: 20px 0; }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 8rem; line-height: 0.5; color: var(--champagne); margin-bottom: 24px; }
.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.testimonial-author-name { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.testimonial-author-title { font-family: var(--font-body); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; margin-top: 4px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonials-nav { display: flex; gap: 12px; margin-top: 60px; justify-content: center; }
.testi-dot {
  width: 40px;
  height: 2px;
  background: var(--beige-dark);
  cursor: pointer;
  transition: width 0.3s, background-color 0.3s;
}
.testi-dot.active { background: var(--gold); width: 60px; }

/* ---- Houston Highlights ---- */
.houston-section { padding: 120px 0; background: var(--off-white); }
.houston-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.houston-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.houston-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.houston-card:hover img { transform: scale(1.06); }
.houston-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.houston-card-cat {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.houston-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.houston-card-dist { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.houston-card.houston-large { grid-column: span 2; }

/* ---- Gallery Section ---- */
.gallery-section { padding: 120px 0; background: var(--charcoal); overflow: hidden; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .lead { color: rgba(255,255,255,0.5); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 8px;
  margin-top: 60px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(201,168,76,0.15); }
.gallery-item-icon { color: white; font-size: 2rem; opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .gallery-item-icon { opacity: 1; }
.gallery-view-all { text-align: center; margin-top: 48px; }

/* ---- Lightbox ---- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---- Footer ---- */
#footer {
  background: #111111;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 280px; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 4px;
}
.footer-logo-mark { color: var(--white); display: flex; align-items: center; flex-shrink: 0; }
.footer-logo-mark .hp-pin { display: block; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-logo-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(248,246,242,0.78);
  margin: 4px 0 6px;
  line-height: 1.2;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 32px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-btn svg { width: 20px; height: 20px; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; display: flex; align-items: center; }
.footer-contact-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: color 0.3s; text-decoration: none; }
.footer-bottom-link:hover { color: var(--gold); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  height: 60vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 0.5s;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero .overline { color: var(--gold); margin-bottom: 12px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
}

/* ---- About Page ---- */
.story-section { padding: 120px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; height: 600px; object-fit: cover; }
.story-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.values-section { padding: 80px 0; background: var(--beige); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.value-card { text-align: center; padding: 48px 32px; background: var(--white); }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 12px; }
.value-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.team-section { padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 20px; }
.team-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 6px; }
.team-card span { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ---- Listings Page ---- */
.listings-filter {
  background: var(--white);
  border-bottom: 2px solid var(--beige-dark);
  padding: 24px 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 40;
}
.filter-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--beige-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  border-radius: 0;
  font-weight: 500;
}
.filter-btn:hover, .filter-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.filter-select {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text);
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.listings-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 60px 0 120px; }

/* ---- Property Detail & Gallery Mosaic ---- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 72vh;
  min-height: 500px;
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
/* Hero cell spans both rows on the left */
.gallery-mosaic .gm-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* Right column: 2×2 sub-grid */
.gallery-mosaic .gm-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.gallery-mosaic .gm-cell { overflow: hidden; cursor: pointer; position: relative; }
.gallery-mosaic .gm-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-mosaic .gm-cell:hover img { transform: scale(1.04); }
.gallery-mosaic .gm-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-mosaic .gm-main:hover img { transform: scale(1.03); }
.gallery-mosaic .gm-cell::after,
.gallery-mosaic .gm-main::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.3s; pointer-events: none; }
.gallery-mosaic .gm-cell:hover::after,
.gallery-mosaic .gm-main:hover::after { background: rgba(10,10,10,0.07); }
.gallery-all-btn-new {
  position: absolute; bottom: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid rgba(10,10,10,0.18);
  padding: 10px 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  color: var(--charcoal); font-family: var(--font-body);
  transition: background 0.22s, color 0.22s; z-index: 3; border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.gallery-all-btn-new:hover { background: var(--charcoal); color: var(--white); }

/* ---- Photo Modal (masonry all-photos popup) ---- */
.photo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.72);
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.photo-modal-overlay.open { display: flex; }
.photo-modal-inner {
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.photo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--beige);
  flex-shrink: 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 2;
}
.photo-modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.photo-modal-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  font-size: 1.4rem; color: var(--charcoal); cursor: pointer;
  border-radius: 50%; transition: background 0.2s;
  line-height: 1; flex-shrink: 0;
}
.photo-modal-close:hover { background: var(--beige); }
.photo-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 24px 32px 40px;
  -webkit-overflow-scrolling: touch;
}
.photo-masonry {
  columns: 3;
  column-gap: 12px;
}
.pm-item {
  break-inside: avoid;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}
.pm-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
  border-radius: 4px;
}
.pm-item:hover img { transform: scale(1.03); opacity: 0.93; }
@media (max-width: 900px) {
  .photo-masonry { columns: 2; }
  .photo-modal-inner { max-height: 100dvh; }
  .photo-modal-body { padding: 16px 16px 32px; }
  .photo-modal-header { padding: 16px 20px; }
}
@media (max-width: 540px) {
  .photo-masonry { columns: 1; }
}

.property-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  padding: 60px 0 120px;
  align-items: start;
}
.property-detail-main { min-width: 0; width: 100%; box-sizing: border-box; overflow-x: clip; }
.property-detail-main * { max-width: 100%; box-sizing: border-box; }
.property-detail-header { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--beige); }
.property-detail-title { font-family: var(--font-display); font-size: 2.5rem; color: var(--charcoal); margin-bottom: 16px; font-weight: 400; }
.property-detail-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.property-detail-rating { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.property-detail-info { display: flex; gap: 24px; font-size: 0.85rem; color: var(--text-muted); }
.property-detail-info span { display: flex; align-items: center; gap: 6px; }
.property-detail-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 48px; }
.property-amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.property-amenity-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text); }
.property-amenity-icon { font-size: 1.1rem; width: 24px; }

/* Booking Panel */
.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
  width: 100%;
  box-sizing: border-box;
  overflow: visible; /* must be visible so calendar dropdown isn't clipped */
}
.booking-panel * { box-sizing: border-box; max-width: 100%; }
.booking-panel-price { margin-bottom: 28px; }
.booking-panel-amount { font-family: var(--font-display); font-size: 2.2rem; color: var(--charcoal); }
.booking-panel-period { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); }
/* ═══════════════════════════════════════════════════════════════════
   Custom Date Picker  (replaces native <input type="date">)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Date Picker Trigger Row ──────────────────────────────────────── */
.eh-datepicker-wrap { display: block; position: relative; margin-bottom: 12px; width: 100%; }

.eh-datepicker-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border: 1.5px solid #DDD4C4;
  border-radius: 6px;
  background: #F8F6F2;
  overflow: hidden;
  transition: border-color 0.2s;
}
.eh-datepicker-row:focus-within { border-color: #B8922E; }

/* div[role=button] – no button reset to fight */
.eh-date-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px 13px;
  background: #F8F6F2;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  min-height: 64px;
  outline: none;
  transition: background 0.15s;
  user-select: none;
}
.eh-date-trigger:hover,
.eh-date-trigger.active {
  background: #F2EEE8;
}
.eh-date-trigger.has-value .eh-dt-val {
  color: #111111;
  font-weight: 600;
}

.eh-dt-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.eh-dt-val {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}

.eh-date-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 0.7rem;
  color: var(--text-light);
  background: var(--off-white);
  border-left: 1px solid var(--beige-dark);
  border-right: 1px solid var(--beige-dark);
  user-select: none;
  flex-shrink: 0;
}

/* Calendar dropdown */
.eh-cal-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 400;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(17,17,17,0.18);
  padding: 18px 16px 14px;
  animation: eh-cal-in 0.18s ease;
}
@keyframes eh-cal-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eh-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.eh-cal-nav {
  background: none;
  border: 1px solid var(--beige-dark);
  border-radius: 50%;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.eh-cal-nav:hover { border-color: var(--gold); color: var(--gold); }
.eh-cal-month-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.eh-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.eh-cal-weekday {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  padding: 4px 0;
}
.eh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.eh-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.12s, color 0.12s;
  position: relative;
}
.eh-cal-day:hover:not(.blocked):not(.past):not(.empty) {
  background: var(--beige);
}
/* Range highlight between checkin and checkout */
.eh-cal-day.in-range {
  background: rgba(184,146,46,0.12);
  border-radius: 0;
}
.eh-cal-day.range-start,
.eh-cal-day.range-end {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-weight: 700;
}
.eh-cal-day.range-start { border-radius: 50% 0 0 50% !important; }
.eh-cal-day.range-end   { border-radius: 0 50% 50% 0 !important; }
.eh-cal-day.range-start.range-end { border-radius: 50% !important; }
/* Blocked / booked dates */
.eh-cal-day.blocked {
  color: var(--text-light);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.45;
}
.eh-cal-day.blocked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(200,60,60,0.08);
}
/* Past dates */
.eh-cal-day.past {
  color: var(--beige-dark);
  cursor: not-allowed;
}
/* Too-soon dates (< 30-night minimum from check-in) */
.eh-cal-day.too-soon {
  color: var(--beige-dark);
  cursor: not-allowed;
  position: relative;
}
.eh-cal-day.too-soon::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--beige-dark);
}
/* Today marker */
.eh-cal-day.today:not(.blocked):not(.past) {
  border: 1.5px solid var(--gold);
}
.eh-cal-day.empty { cursor: default; }
/* Legend */
.eh-cal-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--beige);
  font-size: 0.68rem;
  color: var(--text-muted);
}
.eh-cal-legend-item { display: flex; align-items: center; gap: 5px; }
.eh-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.eh-legend-dot.available { background: var(--gold); }
.eh-legend-dot.blocked   { background: rgba(200,60,60,0.25); border: 1px solid rgba(200,60,60,0.4); }
/* Prompt text inside calendar */
.eh-cal-prompt {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ── Calendar cursor tooltip (night count) ──────────────────────────── */
.eh-cal-tooltip {
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  pointer-events: none;
  transition: opacity 0.1s;
}

/* ── Availability note ──────────────────────────────────────────────── */
.avail-panel-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 9px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Guest row ──────────────────────────────────────────────────────── */
.booking-guests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: var(--white);
}
.booking-guests-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
}
.booking-guests-controls { display: flex; align-items: center; gap: 14px; }
.guest-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--beige-dark);
  background: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.guest-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.guest-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.guest-count-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  min-width: 62px;
  text-align: center;
}
.booking-btn {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 16px;
}
.booking-btn:hover { background: var(--charcoal-soft); }
.booking-price-breakdown { border-top: 1px solid var(--beige); padding-top: 20px; margin-bottom: 20px; min-height: 24px; }
.booking-price-breakdown:empty::after { content: 'Select dates to see price breakdown'; font-size: 0.78rem; color: var(--text-light); font-style: italic; }
.booking-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.booking-line.total { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; padding-top: 12px; border-top: 1px solid var(--beige); margin-top: 8px; }

/* Reviews */
.reviews-section { margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--beige); }
.reviews-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.reviews-avg { font-family: var(--font-display); font-size: 3rem; color: var(--charcoal); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.review-card { padding: 28px; background: var(--white); border: 1px solid var(--beige); min-width: 0; overflow-x: clip; }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; overflow-x: clip; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
/* name+date wrapper — plain div after avatar */
.review-header > div:not([style]) { min-width: 0; flex: 1; overflow-x: clip; }
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); overflow-wrap: break-word; }
.review-date { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.review-text { font-size: 0.87rem; line-height: 1.7; color: var(--text); overflow-wrap: break-word; word-break: break-word; }

/* ---- PD Breadcrumb ---- */
.pd-breadcrumb { background: var(--white); border-bottom: 1.5px solid var(--beige-dark); padding: 12px 0; }
.pd-breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.pd-breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb-inner a:hover { color: var(--gold); }
.pd-breadcrumb-inner .current { color: var(--gold); }

/* ---- PD Header ---- */
.pd-header { padding: 48px 0 40px; border-bottom: 1px solid var(--beige); margin-bottom: 48px; }
.pd-badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; font-family: var(--font-body); }
.pd-badge-gold { background: var(--gold); color: var(--white); }
.pd-badge-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.pd-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--charcoal); font-weight: 400; margin-bottom: 20px; line-height: 1.15; }
.pd-meta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pd-rating { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; }
.pd-rating .stars { color: var(--gold); }
.pd-rating strong { color: var(--charcoal); }
.pd-rating .count { color: var(--text-muted); }
.pd-dot { width: 3px; height: 3px; background: var(--text-muted); border-radius: 50%; opacity: 0.5; }
.pd-stat-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-stat-pill { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); background: var(--off-white); border: 1px solid var(--beige); padding: 5px 12px; }

/* ---- PD Highlights ---- */
.pd-highlights { display: flex; border-top: 1.5px solid var(--beige-dark); border-bottom: 1.5px solid var(--beige-dark); margin-bottom: 52px; }
.pd-highlight { flex: 1; display: flex; align-items: flex-start; gap: 16px; padding: 26px 20px; border-right: 1.5px solid var(--beige-dark); min-width: 0; overflow-x: clip; }
.pd-highlight:last-child { border-right: none; }
.pd-highlight-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; }
/* text wrapper — plain div after icon */
.pd-highlight > div:not(.pd-highlight-icon) { min-width: 0; flex: 1; overflow-x: clip; }
.pd-highlight-title { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; overflow-wrap: break-word; }
.pd-highlight-sub { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; overflow-wrap: break-word; }

/* ---- PD Sections ---- */
.pd-section { padding-bottom: 52px; margin-bottom: 52px; border-bottom: 1px solid var(--beige); width: 100%; }
.pd-section-label { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.pd-section-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); font-weight: 400; margin-bottom: 20px; }

/* ---- Description ---- */
.desc-preview { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 8px; }
.show-more-btn { background: none; border: none; padding: 0; margin-top: 8px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--charcoal); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 6px; }
.show-more-btn:hover { color: var(--gold); }

/* ---- Description Modal ---- */
.desc-modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.65); z-index: 8500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.desc-modal-overlay.open { opacity: 1; pointer-events: all; }
.desc-modal-box { background: var(--white); max-width: 680px; width: 92vw; max-height: 85vh; overflow-y: auto; padding: 52px 48px; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.desc-modal-overlay.open .desc-modal-box { transform: translateY(0); }
.desc-modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); }
.desc-modal-close:hover { color: var(--charcoal); }
.desc-modal-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 28px; }
.desc-modal-section { margin-bottom: 28px; }
.desc-modal-section-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.desc-modal-text { font-size: 0.9rem; line-height: 1.8; color: var(--text); white-space: pre-line; }
.desc-modal-list { list-style: none; padding: 0; margin: 0; }
.desc-modal-list li { font-size: 0.88rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--beige); display: flex; align-items: center; gap: 8px; }
.desc-modal-list li:last-child { border-bottom: none; }
.desc-modal-list li::before { content: '✔'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.desc-reg { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); background: var(--off-white); border: 1px solid var(--beige); padding: 8px 16px; margin-top: 16px; }
.desc-reg strong { color: var(--charcoal); }

/* ---- Amenities Preview ---- */
.pd-amenities-preview { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--beige-dark); margin-bottom: 28px; }
.pd-amenity-prev { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-bottom: 1.5px solid var(--beige-dark); border-right: 1.5px solid var(--beige-dark); font-size: 0.85rem; color: var(--text); font-weight: 500; }
.pd-amenity-prev:nth-child(even) { border-right: none; }
.pd-amenity-prev:nth-last-child(-n+2) { border-bottom: none; }
.pd-amenity-prev-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.show-all-amenities-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border: 1.5px solid var(--charcoal); background: none; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--charcoal); cursor: pointer; transition: background 0.2s, color 0.2s; letter-spacing: 0.04em; }
.show-all-amenities-btn:hover { background: var(--charcoal); color: var(--white); }

/* ---- Amenities Modal ---- */
.amenities-modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.65); z-index: 8500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.amenities-modal-overlay.open { opacity: 1; pointer-events: all; }
.amenities-modal-box { background: var(--white); max-width: 780px; width: 94vw; max-height: 88vh; overflow-y: auto; padding: 52px 48px; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.amenities-modal-overlay.open .amenities-modal-box { transform: translateY(0); }
.amenities-modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.amenities-modal-close:hover { color: var(--charcoal); }
.amenities-modal-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--beige); }
.amenity-category { margin-bottom: 80px; }
.amenity-category:last-child { margin-bottom: 0; }
.amenity-category-header { margin-bottom: 0; }
.amenity-cat-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--beige); }
.amenity-cat-grid { display: grid; grid-template-columns: 1fr 1fr; }
.amenity-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--beige); }
.amenity-cat-grid .amenity-item:nth-last-child(-n+2) { border-bottom: none; }
.amenity-item-icon { font-size: 1rem; flex-shrink: 0; width: 26px; height: 26px; color: var(--charcoal); margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.amenity-item-icon svg { width: 22px; height: 22px; }
.amenity-item-name { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.amenity-item-sub { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }
.amenity-unavailable { opacity: 0.4; }
.amenity-unavailable .amenity-item-name { text-decoration: line-through; }

/* ---- PD Host ---- */
.pd-host { display: flex; align-items: center; gap: 24px; padding: 28px; background: var(--white); border: 1.5px solid var(--beige-dark); flex-wrap: wrap; width: 100%; box-sizing: border-box; }
.pd-host-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.pd-host-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); margin-bottom: 4px; }
.pd-host-meta { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.pd-host-info { flex: 1; min-width: 0; }
.pd-host-stats { display: flex; gap: 28px; flex-shrink: 0; }
.pd-host-stats > div { text-align: center; }
.pd-host-stat-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); }
.pd-host-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- PD Rules ---- */
.pd-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.pd-rules-group-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--beige); }
.pd-rule { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.pd-rule-check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---- PD Rating Breakdown ---- */
.pd-rating-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 48px; margin-bottom: 40px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-label { font-size: 0.8rem; color: var(--text-muted); flex: 1; }
.rating-bar-track { flex: 2; height: 3px; background: #ddd; border-radius: 2px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--charcoal); border-radius: 2px; }
.rating-bar-val { font-size: 0.8rem; color: var(--charcoal); font-weight: 600; width: 28px; text-align: right; }
.pd-reviews-header { display: flex; align-items: center; gap: 28px; margin-bottom: 44px; padding-bottom: 40px; border-bottom: 1px solid var(--beige); }
.pd-reviews-score { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--charcoal); }
.pd-reviews-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 6px; }
.pd-reviews-count { font-size: 0.82rem; color: var(--text-muted); }

/* ---- PD Location ---- */
.pd-location-intro { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.pd-location-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; width: 100%; }
.pd-location-tag { font-size: 0.78rem; color: var(--text); background: var(--beige); padding: 6px 14px; border: 1px solid #ddd; white-space: nowrap; }

/* ---- PD Trust & Similar ---- */
.pd-trust { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--off-white); border: 1px solid var(--beige); margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.similar-card { display: flex; gap: 14px; align-items: center; text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--beige); transition: opacity 0.2s; }
.similar-card:last-child { border-bottom: none; }
.similar-card:hover { opacity: 0.75; }
.similar-card-img { width: 80px; height: 64px; object-fit: cover; flex-shrink: 0; }
.similar-card-name { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.similar-card-meta { font-size: 0.76rem; color: var(--gold); }

/* ---- Amenities Page ---- */
.amenities-hero-section { padding: 100px 0; background: var(--charcoal); }
.amenities-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.amenity-full-card {
  padding: 60px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background-color 0.4s, border-color 0.4s;
  text-align: center;
}
.amenity-full-card:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.amenity-full-icon { font-size: 2.5rem; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.amenity-full-icon svg { width: 40px; height: 40px; }
.amenity-full-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.amenity-full-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── Amenities add-on cards ────────────────────────────────────────── */
.amenity-addon-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.amenity-addon-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,146,46,0.1);
}
.amenity-addon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.amenity-addon-icon svg { width: 36px; height: 36px; }
.amenity-addon-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.amenity-addon-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.amenity-addon-price {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---- Houston Page ---- */
.houston-intro { padding: 100px 0; }
.houston-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.houston-attraction-card { position: relative; background: var(--white); border: 1px solid var(--beige); overflow: hidden; }
.houston-attraction-img { height: 280px; overflow: hidden; }
.houston-attraction-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.houston-attraction-card:hover .houston-attraction-img img { transform: scale(1.06); }
.houston-attraction-body { padding: 28px; }
.houston-attraction-cat { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.houston-attraction-cat svg { width: 14px; height: 14px; flex-shrink: 0; }
.houston-attraction-distance svg { width: 14px; height: 14px; flex-shrink: 0; }
.houston-attraction-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 12px; }
.houston-attraction-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.houston-attraction-distance { font-size: 0.78rem; color: var(--gold); display: flex; align-items: center; gap: 6px; }

/* ---- Houston: Attraction category sub-headings ---- */
.houston-cat-heading {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;          /* up from the base .overline 0.7rem */
  letter-spacing: 0.32em;
  margin: 0 0 28px;            /* single, optimal gap to the cards below */
}
/* Grid that follows a category heading: cancel the base 60px top margin
   so the cards sit a clean 28px below the heading. */
.houston-cat-grid { margin-top: 0 !important; }

/* ---- Houston: Hospital image cards (dark section) ---- */
.houston-hospital-grid { gap: 24px; }
.houston-hospital-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.houston-hospital-card:hover { border-color: rgba(184,146,46,0.4); transform: translateY(-4px); }
.houston-hospital-img { position: relative; height: 200px; overflow: hidden; }
.houston-hospital-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-luxury); }
.houston-hospital-card:hover .houston-hospital-img img { transform: scale(1.07); }
.houston-hospital-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 55%);
  pointer-events: none;
}
.houston-hospital-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 5px 12px;
}
.houston-hospital-body { padding: 24px 26px; }
.houston-hospital-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.houston-hospital-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ---- Contact Page ---- */
.contact-section { padding: 100px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 40px; align-items: flex-start; }
.contact-info-icon { width: 50px; height: 50px; background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-title { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-info-text { font-size: 0.95rem; color: var(--charcoal); line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-input, .form-textarea, .form-select {
  padding: 14px 16px;
  border: 1px solid var(--beige-dark);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed { margin-top: 60px; }
.map-embed iframe { width: 100%; height: 400px; border: none; filter: grayscale(20%); }

/* ---- Parallax (disabled) ---- */

/* Cursor — handled natively by browser for best performance */

/* ---- Page Transition ---- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .property-detail-layout { grid-template-columns: 1fr 340px; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

/* Switch to the hamburger menu before the desktop nav gets cramped.
   Between ~1025–1100px the full nav (links + Sign In + Book Now) has
   too little room and wraps/overlaps, so collapse it earlier. */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 1024px) {
  /* Shrink hero search bar to fit tablet widths */
  .hero-search { max-width: 720px; }
  .hero-search-field-wrap { padding: 16px 18px; }
  .hero-search-guests { padding: 16px 16px; }
  .hero-search .search-btn { padding: 0 24px !important; font-size: 0.68rem !important; }
  .hero-date-display { font-size: 0.9rem; }

  .about-teaser-grid, .why-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image-stack, .why-image { height: 400px; }
  .about-teaser { padding: 80px 0; }
  .why-section { padding: 80px 0; }
  .listings-track .property-card { flex: 0 0 calc(50% - 14px); }
  .testimonial-card { grid-template-columns: 1fr; padding: 0 40px; gap: 40px; }
  .testimonial-image img { height: 360px; }
  .property-detail-layout { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
  .pd-highlights { flex-wrap: wrap; }
  .pd-highlight { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--beige); }
  .pd-highlight:nth-child(odd) { border-right: 1px solid var(--beige); }
  .pd-highlight:nth-last-child(-n+2) { border-bottom: none; }
  .pd-rules-grid { grid-template-columns: 1fr; }
  .pd-rating-breakdown { grid-template-columns: 1fr; }
  .amenities-modal-box { padding: 36px 24px; }
  .amenity-cat-grid { grid-template-columns: 1fr; }
  .desc-modal-box { padding: 36px 24px; }
  .page-hero { height: 50vh; min-height: 360px; padding-bottom: 48px; }
  .story-image img { height: 420px; }
  .story-image-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .houston-travel-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .houston-longterm-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }

  /* ---- Hero ---- */
  #hero {
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: var(--nav-height);
    padding-bottom: 0;
  }
  .hero-content {
    margin-bottom: 0;
    padding: 0 18px;
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 28px; max-width: 100%; }
  .hero-stats { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-actions { gap: 12px; justify-content: center; flex-wrap: wrap; }
  /* Stack hero search vertically on mobile */
  .hero-search {
    flex-direction: column;
    max-width: 96vw;
    border-radius: 16px;
    margin-top: 32px;
  }
  .hero-search-field-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px;
  }
  .hero-search-guests {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px;
    align-items: center;
    text-align: center;
  }
  .hero-search-guests .hero-guest-ctrl { justify-content: center; }
  .hero-search .search-btn {
    border-radius: 0 0 16px 16px !important;
    padding: 16px 20px !important;
    width: 100% !important;
    align-self: auto;
  }
  .search-field { font-size: 0.78rem; }

  /* ---- About Teaser ---- */
  .about-teaser { padding: 48px 0; overflow: visible; }
  .about-teaser-grid { grid-template-columns: 1fr !important; gap: 0; width: 100%; }
  .about-image-stack {
    position: relative;
    height: 240px;
    margin-bottom: 32px;
    overflow: hidden;
    width: 100%;
  }
  .about-img-main {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-img-secondary { display: none; }
  .about-award { right: 14px; bottom: 14px; padding: 10px 14px; }
  .about-award-num { font-size: 1.5rem; }
  .about-award-label { font-size: 0.48rem; }
  .about-content { padding: 0; width: 100%; }
  .about-content .section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); margin-bottom: 14px; }
  .about-content .lead { font-size: 0.88rem; margin-bottom: 24px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
  .about-feature-item { gap: 10px; }
  .about-feature-text h4 { font-size: 0.78rem; }
  .about-feature-text p { font-size: 0.72rem; }

  /* ---- Listings ---- */
  .listings-section { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .listings-track .property-card { flex: 0 0 82%; }
  .property-card-image { height: 200px; }
  .carousel-controls { margin-top: 24px; }

  /* ---- Amenities ---- */
  .amenities-section { padding: 52px 0; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
  .amenity-card { padding: 32px 20px; }
  .amenities-full-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
  .amenity-full-card { padding: 32px 16px; }

  /* ---- Why Section ---- */
  .why-section { padding: 52px 0; }
  .why-grid { gap: 0; }
  .why-image { height: 260px; margin-bottom: 36px; }
  .why-image-badge { left: 0; bottom: 16px; padding: 14px 18px; max-width: 200px; }
  .why-badge-num { font-size: 1.8rem; }
  .why-features { gap: 20px; }
  .why-feature { padding-bottom: 20px; gap: 14px; }
  .why-feature-num { font-size: 1.5rem; width: 36px; }

  /* ---- Stats ---- */
  .stats-bar { padding: 40px 0; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.62rem; }

  /* ---- Testimonials ---- */
  .testimonials-section { padding: 52px 0; }
  .testimonial-card { padding: 0 0; gap: 24px; }
  .testimonial-image img { height: 240px; }
  .testimonial-image-deco { display: none; }
  .testimonial-text { font-size: 1rem; }
  .testimonials-nav { margin-top: 32px; }

  /* ---- Houston ---- */
  .houston-section { padding: 52px 0; }
  .houston-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
  .houston-card { height: 220px; }
  .houston-card.houston-large { grid-column: span 2; height: 260px; }

  /* ---- Gallery section (homepage) ---- */
  .gallery-section { padding: 52px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 180px); gap: 3px; margin-top: 32px; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }

  /* ---- Gallery mosaic (listing pages) ---- */
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: 56vw 28vw; height: auto; min-height: 0; }
  .gallery-mosaic .gm-main { grid-column: 1; grid-row: 1; }
  .gallery-mosaic .gm-right { grid-column: 1; grid-row: 2; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .gallery-mosaic .gm-right .gm-cell:nth-child(n+3) { display: none; }
  .gallery-all-btn-new { bottom: 12px; right: 12px; padding: 8px 14px; font-size: 0.72rem; }

  /* ---- Property detail pages ---- */
  .property-detail-layout { width: 100%; max-width: 100%; overflow-x: clip; overflow-y: visible; gap: 32px; padding: 32px 0 64px; }
  .property-detail-main { width: 100%; max-width: 100%; min-width: 0; overflow-x: clip; overflow-y: visible; box-sizing: border-box; }
  .pd-header { padding: 28px 0 24px; margin-bottom: 24px; width: 100%; }
  .pd-title { font-size: clamp(1.4rem, 5vw, 1.9rem); max-width: 100%; }
  .pd-meta-row { gap: 8px; flex-wrap: wrap; width: 100%; }
  .pd-dot { display: none; }
  .pd-stat-pills { flex-wrap: wrap; gap: 6px; width: 100%; }
  .pd-stat-pill { font-size: 0.76rem; padding: 4px 10px; }
  .pd-highlights { flex-direction: column; width: 100%; }
  .pd-highlight { border-right: none; border-bottom: 1px solid var(--beige); flex: auto; padding: 18px 14px; width: 100%; box-sizing: border-box; }
  .pd-highlight:last-child { border-bottom: none; }
  .pd-section { padding-bottom: 32px; margin-bottom: 32px; width: 100%; box-sizing: border-box; overflow-x: clip; overflow-y: visible; }
  .pd-section-title { font-size: 1.2rem; max-width: 100%; }
  .desc-preview { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .pd-amenities-preview { grid-template-columns: 1fr; width: 100%; }
  .pd-amenity-prev { border-right: none; width: 100%; box-sizing: border-box; }
  .pd-amenity-prev:nth-last-child(-n+2) { border-bottom: 1px solid var(--beige); }
  .pd-amenity-prev:last-child { border-bottom: none; }
  .pd-host { flex-wrap: wrap; gap: 14px; padding: 20px; width: 100%; box-sizing: border-box; }
  .pd-host-info { flex: 1 1 160px; min-width: 0; overflow-x: clip; overflow-y: visible; }
  .pd-host-stats { width: 100%; justify-content: flex-start; gap: 32px; border-top: 1px solid var(--beige); padding-top: 14px; margin-top: 4px; }
  .pd-rules-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-location-intro { max-width: 100%; font-size: 0.85rem; overflow-wrap: break-word; word-break: break-word; }
  .pd-location-tags { gap: 6px; width: 100%; flex-wrap: wrap; }
  .pd-location-tag { font-size: 0.74rem; padding: 5px 10px; }
  .map-embed { margin-top: 28px; width: 100%; overflow: hidden; }
  .map-embed iframe { height: 260px; width: 100%; max-width: 100%; display: block; }
  #booking-panel { width: 100%; max-width: 100%; min-width: 0; }
  .booking-panel { width: 100%; max-width: 100%; margin: 0 auto; box-sizing: border-box; overflow-x: clip; overflow-y: visible; }
  .eh-datepicker-row { grid-template-columns: 1fr; }
  .eh-date-arrow { display: none; }
  .eh-date-trigger:first-child { border-bottom: 1px solid var(--border-light); }
  .eh-cal-dropdown { left: 0; right: 0; }
  .eh-dt-val { font-size: 0.84rem; }
  .booking-line { gap: 12px; align-items: flex-start; }
  .booking-line span:first-child { min-width: 0; overflow-wrap: anywhere; }
  .booking-line span:last-child { flex-shrink: 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-section { margin-top: 36px; padding-top: 36px; }
  .pd-reviews-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; padding-bottom: 24px; }
  .pd-rating-breakdown { grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
  .property-detail-layout { gap: 32px; padding: 32px 0 64px; }
  .booking-panel { padding: 20px; }
  .booking-panel-amount { font-size: 1.8rem; }

  /* ---- Page heroes (inner pages) ---- */
  .page-hero { height: 44vw; min-height: 240px; padding-bottom: 28px; }
  .page-hero-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* ---- Listings full grid page ---- */
  .listings-full-grid { grid-template-columns: 1fr; gap: 20px; padding: 36px 0 64px; }

  /* ---- Story / About page ---- */
  .story-section { padding: 52px 0; }
  .story-grid { gap: 36px; }
  .story-image img { height: 260px; }
  .story-image-accent { display: none; }
  .values-section { padding: 48px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .team-card img { height: 220px; }

  /* ---- Houston page ---- */
  .houston-grid-full { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .houston-attraction-img { height: 180px; }
  .houston-travel-grid  { grid-template-columns: 1fr 1fr !important; }
  .houston-longterm-grid { grid-template-columns: 1fr !important; }

  /* ---- Contact ---- */
  .contact-section { padding: 52px 0 64px; }
  .contact-grid { gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; max-width: 100%; }
  #footer { padding: 48px 0 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* ---- Misc ---- */
  .sticky-cta { right: 12px; bottom: 16px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.4rem); }
  .lead { font-size: 0.95rem; }
  .btn { padding: 13px 24px; font-size: 0.74rem; }
  .gold-line { margin: 16px auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  #navbar { padding: 0 14px; }

  /* Hero */
  .hero-content { padding: 24px 14px 20px; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-subtitle { font-size: 0.88rem; margin-bottom: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* About */
  .about-teaser { padding: 44px 0; }
  .about-image-stack { height: 220px; margin-bottom: 28px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }

  /* Listings carousel */
  .listings-section { padding: 44px 0; }
  .listings-track .property-card { flex: 0 0 88%; }
  .property-card-image { height: 190px; }
  .property-card-body { padding: 16px; }
  .property-card-title { font-size: 1rem; }
  .property-card-features { gap: 10px; }
  .property-feature { font-size: 0.72rem; }

  /* Amenities */
  .amenities-section { padding: 44px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { padding: 28px 16px; }
  .amenities-full-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-section { padding: 44px 0; }
  .why-image { height: 220px; }

  /* Houston */
  .houston-section { padding: 44px 0; }
  .houston-grid { grid-template-columns: 1fr; gap: 10px; }
  .houston-card { height: 200px; }
  .houston-card.houston-large { grid-column: 1; height: 200px; }

  /* Gallery */
  .gallery-section { padding: 44px 0; }
  .gallery-grid { grid-template-rows: repeat(2, 160px); }
  /* Gallery mosaic */
  .gallery-mosaic { grid-template-rows: 60vw 30vw; }

  /* Misc */
  .stats-bar { padding: 32px 0; }
  .stat-number { font-size: 1.8rem; }
  .testimonials-section { padding: 44px 0; }
  .testimonial-card { padding: 0; }
  .testimonial-image img { height: 200px; }
  .page-hero { min-height: 200px; height: 50vw; padding-bottom: 20px; }
  .page-hero-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .filter-row { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-btn { padding: 8px 12px; font-size: 0.7rem; white-space: nowrap; flex-shrink: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.8rem; }
  .footer-bottom-links { flex-direction: column; gap: 6px; }
  .booking-panel { padding: 16px; max-width: 100%; }
  .booking-panel-amount { font-size: 1.6rem; }
  .eh-datepicker-row { grid-template-columns: 1fr; }
  .pd-host { padding: 16px; gap: 12px; }
  .pd-host-stats { gap: 20px; }
  .pd-rules-grid { grid-template-columns: 1fr; gap: 16px; }
  .pd-location-tags { gap: 6px; }
  .pd-location-tag { font-size: 0.7rem; padding: 5px 9px; }
  .pd-reviews-score { font-size: 2.8rem; }
  .gallery-all-btn-new { bottom: 10px; right: 10px; padding: 7px 12px; font-size: 0.68rem; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .lead { font-size: 0.88rem; }
  .btn { padding: 12px 20px; font-size: 0.72rem; }
}

/* ============================================================
   BOOKING ENGINE MODAL  (#eh-booking-modal)
   ============================================================ */
#eh-booking-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#eh-booking-modal.eh-bm-open { opacity: 1; pointer-events: auto; }

.eh-bm-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.72); backdrop-filter: blur(4px);
}
.eh-bm-box {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 12px;
  width: min(540px, 95vw); max-height: 90vh; overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  transform: translateY(24px); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
#eh-booking-modal.eh-bm-open .eh-bm-box { transform: translateY(0); }

/* ============================================================
   BLOG — Journal / Articles
   ============================================================ */

/* ---- Blog Card (shared across carousel, archive, related) ---- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.35s var(--ease-luxury), border-color 0.35s var(--ease-luxury), transform 0.35s var(--ease-luxury);
  flex-shrink: 0;
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--beige-dark); transform: translateY(-3px); }

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--beige);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  position: relative;
}
.blog-card-image-placeholder::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--champagne);
  opacity: 0.5;
}

.blog-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
}
.blog-card-cat--light {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text-light);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-meta-dot { color: var(--champagne); }

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 400;
  transition: color 0.25s;
}
.blog-card:hover .blog-card-title { color: var(--gold-dark); }

.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-read-more {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.25s var(--ease-luxury);
}
.blog-card:hover .blog-card-read-more { gap: 10px; }

/* ---- Blog Carousel (homepage + listings page) ---- */
.blog-carousel-section {
  padding: 120px 0;
  background: var(--off-white);
}
.blog-carousel-section--alt {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.blog-carousel { position: relative; overflow: hidden; }
.blog-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.7s var(--ease-expo);
}
.blog-card--carousel {
  flex: 0 0 calc(33.333% - 19px);
}

.blog-carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}

/* ---- Blog Archive Page ---- */
.blog-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
}
.blog-filter-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-filter-btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.blog-filter-btn:hover { color: var(--charcoal); border-color: var(--beige-dark); }
.blog-filter-btn.active {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: transparent;
}

/* Also a .container — preserve its horizontal padding (40px). */
.blog-archive-wrap { padding: 80px 40px 120px; }

.blog-no-posts { text-align: center; padding: 80px 0; }

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  margin-bottom: 60px;
  overflow: hidden;
}
.blog-featured-image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
  position: absolute;
  inset: 0;
}
.blog-featured:hover .blog-featured-image img { transform: scale(1.04); }
.blog-featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(17,17,17,0.08));
  pointer-events: none;
}
.blog-featured-content {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-featured-date, .blog-featured-read { color: var(--text-light); }
.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 18px;
  font-weight: 400;
}
.blog-featured-title a { color: inherit; text-decoration: none; transition: color 0.25s; }
.blog-featured:hover .blog-featured-title a { color: var(--gold-dark); }
.blog-featured-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.blog-card--related { background: var(--white); }

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.blog-pag-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--beige-dark);
  transition: background 0.25s, color 0.25s;
}
.blog-pag-btn:hover { background: var(--charcoal); color: var(--white); }
.blog-pag-pages { display: flex; gap: 4px; }
.blog-pag-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.blog-pag-num:hover { border-color: var(--beige-dark); color: var(--charcoal); }
.blog-pag-num.active { border-color: var(--charcoal); color: var(--charcoal); font-weight: 700; }

/* ---- Blog Single Post ---- */
.blog-post-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.blog-post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.blog-post-hero-bg--plain {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
}
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 40%, rgba(10,10,10,0.42) 70%, rgba(10,10,10,0.18) 100%);
}
.blog-post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.blog-post-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-post-meta-sep { color: rgba(255,255,255,0.3); }
.blog-post-meta-date, .blog-post-meta-read { color: rgba(255,255,255,0.6); }
.blog-post-cat-pill {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-post-cat-pill:hover { background: var(--gold-light); }

.blog-post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}
.blog-post-hero-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 640px;
}
.blog-post-hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-post-author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.blog-post-author-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.blog-post-author-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* Breadcrumb */
.blog-post-breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}
.blog-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.blog-breadcrumb-nav a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.blog-breadcrumb-nav a:hover { color: var(--gold); }
.blog-breadcrumb-sep { color: var(--text-light); }

/* Post layout — it's also a .container, so keep the container's
   horizontal padding (40px) while adding vertical spacing. */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  padding: 72px 40px 120px;
  align-items: start;
}

/* Sidebar column — normal grid item, full height of the article row.
   The .blog-sidebar-sticky wrapper (TOC only) is pinned by JS
   (initBlogStickySidebar) using position:fixed, which is immune to
   the ancestor transform/overflow that breaks CSS position:sticky.
   JS sets `position:relative` on the column at runtime so the
   wrapper's "park at bottom" state is positioned correctly. */
.blog-post-sidebar {
  align-self: stretch;
}

/* Post body content styles */
.blog-post-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--charcoal);
  margin: 48px 0 20px;
  font-weight: 400;
  padding-top: 8px;
  border-top: 1px solid var(--beige);
}
.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--charcoal);
  margin: 36px 0 16px;
}
.blog-post-body p { margin-bottom: 22px; color: var(--text-muted); }
.blog-post-body p:first-child { font-size: 1.1rem; color: var(--text); font-weight: 400; }
.blog-post-body strong { color: var(--charcoal); font-weight: 600; }
.blog-post-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.blog-post-body a:hover { color: var(--gold); }
.blog-post-body ul, .blog-post-body ol {
  margin: 0 0 22px 24px;
  color: var(--text-muted);
}
.blog-post-body ul li, .blog-post-body ol li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-body ul { list-style: disc; }
.blog-post-body ol { list-style: decimal; }
.blog-post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--off-white);
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}
.blog-post-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
}
.blog-post-body figure { margin: 32px 0; }
.blog-post-body figcaption {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.blog-post-body hr {
  border: none;
  border-top: 1px solid var(--beige);
  margin: 40px 0;
}

/* Tags */
.blog-post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 40px;
  padding-top: 32px;
  border-top: 1px solid var(--beige);
}
.blog-post-tags-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.blog-post-tag {
  font-size: 0.7rem;
  color: var(--charcoal);
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  padding: 5px 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.blog-post-tag:hover { background: var(--champagne); border-color: var(--champagne); }

/* Share */
.blog-post-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 48px;
}
.blog-post-share-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-post-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--beige-dark);
  color: var(--charcoal);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.blog-share-btn--fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.blog-share-btn--tw:hover { background: #0f1419; color: #fff; border-color: #0f1419; }
.blog-share-btn--wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* Author bio */
.blog-post-author-bio {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  margin-bottom: 48px;
}
.blog-author-bio-avatar {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}
.blog-author-bio-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.blog-author-bio-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-author-bio-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Post nav */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--beige);
  padding-top: 40px;
}
.blog-post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: border-color 0.25s, background 0.25s;
}
.blog-post-nav-link:hover { border-color: var(--beige-dark); background: var(--off-white); }
.blog-post-nav-link--right { text-align: right; }
.blog-post-nav-dir {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-post-nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.35;
}

.blog-sidebar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.blog-sidebar-back:hover { color: var(--charcoal); }

.blog-sidebar-widget {
  border: 1px solid var(--border-light);
  padding: 24px;
  margin-bottom: 20px;
  background: var(--white);
}
/* TOC list caps at viewport height with internal scroll for long articles */
.blog-sidebar-widget--toc .blog-toc {
  max-height: calc(100vh - var(--nav-height) - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.blog-sidebar-widget-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--beige);
}

/* TOC */
.blog-toc { display: flex; flex-direction: column; gap: 6px; }
.blog-toc-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1.4;
}
.blog-toc-link:hover, .blog-toc-link.active { border-color: var(--gold); color: var(--charcoal); }
.blog-toc-link--h3 { padding-left: 22px; font-size: 0.75rem; }

.blog-sidebar-cat-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.blog-sidebar-cat-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* Sidebar CTA */
.blog-sidebar-cta {
  background: var(--charcoal);
  padding: 32px 24px;
  margin-bottom: 20px;
}
.blog-sidebar-cta-overline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.blog-sidebar-cta-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-sidebar-contact {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.blog-sidebar-contact-label { margin-bottom: 4px; }
.blog-sidebar-contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.blog-sidebar-contact-link:hover { color: var(--gold-dark); }

/* Related posts */
.blog-related-section {
  background: var(--off-white);
  padding: 80px 0;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Bottom CTA (shared: archive + single) */
.blog-bottom-cta {
  background: var(--charcoal);
  padding: 80px 0;
}
.blog-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.blog-bottom-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}
.blog-bottom-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Hero page blog variant ---- */
.page-hero--blog .page-hero-bg { background-position: center 30%; }
.blog-hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   BLOG — Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .blog-post-layout { grid-template-columns: 1fr 280px; gap: 48px; padding: 72px 32px 120px; }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .blog-card--carousel { flex: 0 0 calc(50% - 14px); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 280px; }
  .blog-featured-content { padding: 36px 32px; }
  .blog-post-layout { grid-template-columns: 1fr; gap: 48px; }
  .blog-sidebar-sticky { position: static; }
  .blog-sidebar-widget--toc .blog-toc { max-height: none; overflow: visible; }
  .blog-post-hero { height: 55vh; min-height: 400px; }
}

@media (max-width: 768px) {
  .blog-carousel-section { padding: 56px 0; }
  .blog-card--carousel { flex: 0 0 82%; }
  .blog-card-image { height: 180px; }
  .blog-card-body { padding: 18px; }
  .blog-card-title { font-size: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-post-layout { padding: 48px 18px 80px; gap: 40px; }
  .blog-post-hero { height: auto; min-height: 0; padding: calc(var(--nav-height) + 48px) 0 56px; }
  .blog-post-hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .blog-post-nav { grid-template-columns: 1fr; }
  .blog-post-author-bio { flex-direction: column; gap: 16px; }
  .blog-archive-wrap { padding: 48px 18px 80px; }
  .blog-bottom-cta-inner { flex-direction: column; align-items: flex-start; }
  .blog-bottom-cta { padding: 56px 0; }
}

@media (max-width: 480px) {
  .blog-card--carousel { flex: 0 0 88%; }
  .blog-filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .blog-filter-btn { flex-shrink: 0; }
  .blog-featured-content { padding: 24px 18px; }
  .blog-featured-title { font-size: 1.4rem; }
  .blog-post-layout { padding: 40px 14px 80px; }
  .blog-archive-wrap { padding: 40px 14px 80px; }
  .blog-post-body h2 { font-size: 1.3rem; }
  .blog-share-btn { padding: 7px 12px; font-size: 0.67rem; }
  .blog-carousel-section { padding: 44px 0; }
}

.eh-bm-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: none; cursor: pointer;
  font-size: 0.9rem; color: var(--charcoal); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.eh-bm-close:hover { background: var(--beige); }

.eh-bm-logo {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.eh-bm-title {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal);
  margin-bottom: 4px; line-height: 1.2;
}
.eh-bm-prop {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px;
}
.eh-bm-dates-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding: 16px; background: var(--beige); border-radius: 8px;
}
.eh-bm-date-block { flex: 1; }
.eh-bm-date-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.eh-bm-date-val   { font-family: var(--font-display); font-size: 0.95rem; color: var(--charcoal); font-weight: 600; }
.eh-bm-date-sep   { color: var(--gold); font-size: 1.2rem; }

.eh-bm-breakdown {
  border: 1px solid var(--border); border-radius: 8px; padding: 16px;
  margin-bottom: 16px;
}
.eh-bm-line {
  display: flex; justify-content: space-between;
  font-size: 0.84rem; color: var(--text-muted); margin-bottom: 10px;
}
.eh-bm-line:last-child { margin-bottom: 0; }
.eh-bm-total {
  font-weight: 700; color: var(--charcoal); font-size: 0.95rem;
  padding-top: 12px; border-top: 1px solid var(--beige); margin-top: 4px;
}

.eh-bm-notice {
  font-size: 0.72rem; color: var(--text-muted); text-align: center;
  margin-bottom: 20px; padding: 8px; background: #fffbf0;
  border-radius: 6px; border: 1px solid rgba(201,168,76,.25);
}

.eh-bm-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.eh-bm-field-group { display: flex; flex-direction: column; gap: 5px; }
.eh-bm-label { font-size: 0.78rem; font-weight: 600; color: var(--charcoal); }
.eh-bm-input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--font-body); font-size: 0.88rem;
  color: var(--charcoal); background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.eh-bm-input:focus { border-color: var(--gold); }

.eh-bm-err {
  background: #fef2f2; border: 1px solid #fca5a5; border-radius: 6px;
  padding: 10px 14px; font-size: 0.82rem; color: #dc2626; margin-bottom: 12px;
}

.eh-bm-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--charcoal);
  border: none; border-radius: 8px; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; letter-spacing: .04em; cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-bottom: 10px;
}
.eh-bm-submit:hover:not(:disabled) { background: #b8922e; color: white; }
.eh-bm-submit:disabled { opacity: .6; cursor: not-allowed; }

.eh-bm-fine {
  font-size: 0.72rem; color: var(--text-muted); text-align: center; margin: 0;
}

/* Success step */
.eh-bm-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.eh-bm-success-msg { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; text-align: center; }
.eh-bm-confirm-box {
  background: var(--beige); border-radius: 8px; padding: 16px;
  margin-bottom: 20px;
}
.eh-bm-close-done {
  width: 100%; padding: 12px; background: none; border: 1px solid var(--border);
  border-radius: 8px; font-family: var(--font-body); font-size: 0.88rem;
  cursor: pointer; color: var(--charcoal); margin-top: 10px; transition: background .2s;
}
.eh-bm-close-done:hover { background: var(--beige); }

@media (max-width: 480px) {
  .eh-bm-box { padding: 28px 20px 24px; }
  .eh-bm-dates-row { flex-direction: column; gap: 8px; }
  .eh-bm-date-sep { transform: rotate(90deg); }
}

/* ============================================================
   SEARCH RESULTS MODAL  (#eh-search-modal)
   ============================================================ */
#eh-search-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 640px) {
  #eh-search-modal { align-items: center; }
}
#eh-search-modal.eh-sr-open { opacity: 1; pointer-events: auto; }

.eh-sr-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.72); backdrop-filter: blur(4px);
}
.eh-sr-box {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 16px 16px 0 0;
  width: 100%; max-width: 720px; max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 -8px 40px rgba(0,0,0,.2);
  transform: translateY(40px); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) {
  .eh-sr-box { border-radius: 16px; transform: translateY(30px) scale(0.97); }
}
#eh-search-modal.eh-sr-open .eh-sr-box { transform: translateY(0) scale(1); }

.eh-sr-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 24px 28px 16px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.eh-sr-title {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--charcoal);
  margin-bottom: 4px;
}
.eh-sr-subtitle { font-size: 0.8rem; color: var(--text-muted); }
.eh-sr-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: none; cursor: pointer;
  font-size: 0.9rem; color: var(--charcoal); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.eh-sr-close:hover { background: var(--beige); }

.eh-sr-body {
  overflow-y: auto; padding: 20px 28px 28px; flex: 1;
}

.eh-sr-section-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.eh-sr-section-label--dim { color: var(--text-muted); }

.eh-sr-grid { display: flex; flex-direction: column; gap: 12px; }

.eh-sr-card {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
}
.eh-sr-card:hover:not(.eh-sr-card--unavail) {
  border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,.15);
  transform: translateY(-1px);
}
.eh-sr-card--unavail { opacity: .55; cursor: default; }

.eh-sr-img-wrap {
  width: 88px; height: 68px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.eh-sr-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.eh-sr-info { flex: 1; min-width: 0; }
.eh-sr-name  { font-family: var(--font-display); font-size: 0.92rem; color: var(--charcoal); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eh-sr-meta  { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 5px; }
.eh-sr-price { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.eh-sr-unavail-note { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }

/* Badge sits inline at the end of the flex row — no absolute positioning */
.eh-sr-badge {
  flex-shrink: 0; align-self: center;
  padding: 3px 9px; border-radius: 20px; font-size: 0.65rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.3);
}
.eh-sr-badge--no {
  background: rgba(0,0,0,.05); color: var(--text-muted);
  border-color: var(--border);
}

.eh-sr-empty {
  text-align: center; padding: 40px 20px;
  font-size: 0.9rem; color: var(--text-muted);
}

/* Loading state */
.eh-sr-loading {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding-top: 32px;
}
.eh-sr-spinner {
  display: flex; align-items: center; justify-content: center;
}
.eh-sr-spinner-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--beige);
  border-top-color: var(--gold);
  animation: eh-spin 0.75s linear infinite;
}
@keyframes eh-spin { to { transform: rotate(360deg); } }

/* Skeleton cards */
.eh-sr-skeleton-list { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.eh-sr-skeleton-card {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border: 1px solid var(--border); border-radius: 10px;
}
.eh-sk {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--beige) 25%, #e8e2d8 50%, var(--beige) 75%);
  background-size: 200% 100%;
  animation: eh-shimmer 1.2s infinite;
}
@keyframes eh-shimmer { to { background-position: -200% 0; } }
.eh-sk-img  { width: 88px; height: 68px; border-radius: 8px; flex-shrink: 0; }
.eh-sk-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.eh-sk-line  { height: 12px; }
.eh-sk-line--wide  { width: 75%; }
.eh-sk-line--mid   { width: 50%; }
.eh-sk-line--short { width: 35%; }

@media (max-width: 480px) {
  .eh-sr-header, .eh-sr-body { padding-left: 18px; padding-right: 18px; }
  .eh-sr-img-wrap { width: 70px; height: 56px; }
  .eh-sr-name { font-size: 0.82rem; }
}
