

/* ═══ RESET & ROOT ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --gold: #B89A28;
  --gold-light: #D4BC70;
  --gold-pale: #E8D898;
  --black: #080808;
  --black-2: #0D0D0D;
  --black-3: #111111;
  --hunter: #1A3826;
  --hunter-deep: #0E2418;
  --white: #FFFFFF;
  --off-white: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.6);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sc: 'Cormorant SC', serif;
  --sans: 'Jost', sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ═══ PAGES ═══ */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0 5rem;
  height: 80px;
  background: rgba(8,8,8,0);
  transition: background 0.4s ease, height 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  height: 64px;
  border-bottom: 0.5px solid rgba(184,154,40,0.15);
  backdrop-filter: blur(12px);
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5rem; right: 5rem;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(184,154,40,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
nav.scrolled::after { opacity: 1; }

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo-c {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-c { transform: scale(1.05); }
.nav-logo-name {
  font-family: var(--sc);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a { white-space: nowrap; }
.nav-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 0.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  justify-self: end; white-space: nowrap;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-book:hover {
  background: var(--gold);
  color: var(--black);
}

/* ═══ HERO ═══ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-exterior.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.75);
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(184,154,40,0.6) 35px, rgba(184,154,40,0.6) 36px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(184,154,40,0.6) 35px, rgba(184,154,40,0.6) 36px);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.2) 30%, rgba(8,8,8,0.75) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-c {
  font-family: var(--serif);
  font-size: clamp(140px, 20vw, 260px);
  font-style: italic;
  color: var(--gold);
  line-height: 0.85;
  display: block;
  text-shadow: 0 0 80px rgba(184,154,40,0.15);
}
.hero-rule {
  width: 80px;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
}
.hero-name {
  font-family: var(--sc);
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(14px, 1.6vw, 18px);
  font-style: italic;
  color: var(--gold-light);
  margin-top: 0.6rem;
  letter-spacing: 0.1em;
}
.hero-logo {
  width: min(68vw, 560px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.5));
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.gold-accent {
  color: var(--gold);
}
.hero-ornament {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-ornament span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 0.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ═══ HOME INTRO — SPLIT PANELS ═══ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro-panel {
  padding: 3.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.intro-panel-left {
  background: var(--black-2);
  border-right: 0.5px solid rgba(184,154,40,0.2);
}
.intro-panel-right {
  background: var(--black-2);
}
.intro-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.intro-title em { font-style: italic; color: var(--gold); }
.intro-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}

/* ═══ WIDOW'S PEAK CALLOUT ═══ */
.widows-peak {
  padding: 5rem 8rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.widows-peak::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,154,40,0.4), transparent);
}
.widows-peak::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,154,40,0.4), transparent);
}
.widows-peak-text {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.widows-peak-text em { color: var(--gold); }
.peak-ornament {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(184,154,40,0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 3rem;
}

/* ═══ ROOMS PREVIEW — HORIZONTAL SCROLL ═══ */
.rooms-preview {
  padding: 4rem 0 4rem 8rem;
  background: var(--black-2);
  overflow: hidden;
}
.rooms-preview-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-right: 8rem;
}
.rooms-preview-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
}
.rooms-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 8rem;
}
.rooms-scroll-track::-webkit-scrollbar { display: none; }
.room-card {
  flex-shrink: 0;
  width: 220px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.room-card:hover { transform: translateY(-4px); }
.room-card-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.room-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.room-card:hover .room-card-visual::after { opacity: 0.7; }
.room-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-bg { transform: scale(1.04); }
.room-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
}
.room-card-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.room-card-name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
.room-card-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.rooms-scroll-hint {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 1.5rem;
  padding-right: 8rem;
}

/* ═══ COMMON SPACES ═══ */
.common-spaces {
  padding: 4rem 8rem;
  background: var(--black);
  position: relative;
}
.common-spaces::before {
  content: '';
  position: absolute;
  top: 0; left: 8rem; right: 8rem;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(184,154,40,0.3), transparent);
}
.common-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  margin-top: 2.5rem;
}
.common-item {
  border-top: 0.5px solid rgba(184,154,40,0.3);
  padding-top: 2rem;
}
.common-floor {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.common-name {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.common-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--black);
  padding: 0;
  position: relative;
}
.footer-logo-c {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.footer-logo-name {
  font-family: var(--sc);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}
.footer-bottom {
  padding: 1.25rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ═══ ROOMS PAGE ═══ */
.rooms-hero {
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 80px 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.rooms-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(26,56,38,0.8) 0%, rgba(8,8,8,0.9) 70%);
}
.rooms-hero-content { position: relative; z-index: 1; }
.rooms-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 0.9;
}
.rooms-hero-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
}

.rooms-nav {
  display: flex;
  gap: 2.5rem;
  padding: 1.5rem 8rem;
  background: var(--black-2);
  border-bottom: 0.5px solid rgba(184,154,40,0.12);
  position: sticky;
  top: 64px;
  z-index: 10;
}
.floor-tab {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.floor-tab:hover { color: rgba(255,255,255,0.85); }
.floor-tab.active { color: #fff; border-bottom-color: var(--gold); }

.rooms-list { background: var(--black-2); }

.room-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid rgba(184,154,40,0.1);
  transition: background 0.3s;
}
.room-entry:nth-child(even) .room-entry-visual { order: 2; }
.room-entry:nth-child(even) .room-entry-content { order: 1; }

.room-entry-visual {
  position: relative;
  overflow: hidden;
}
.room-entry-visual-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.room-entry:hover .room-entry-visual-bg { transform: scale(1.04); }
.room-entry-visual::after { content: none; }

.room-entry-content {
  background: var(--black-2);
  padding: 1.75rem clamp(1.25rem,3rem,3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.room-entry-content::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.room-entry-num {
  display: none;
}
.room-entry-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.room-entry-primary {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.room-entry-story {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.room-palette {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.palette-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.btn-outline {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 0.5px solid rgba(184,154,40,0.5);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184,154,40,0.08);
}

/* ═══ ROOM COLOR PALETTES ═══ */
.room-glen .room-entry-visual-bg, .room-card-bg.room-glen { background: transparent; }
.room-maple .room-entry-visual-bg, .room-card-bg.room-maple { background: transparent; }
.room-fulton .room-entry-visual-bg, .room-card-bg.room-fulton { background: transparent; }
.room-mohawk .room-entry-visual-bg, .room-card-bg.room-mohawk { background: transparent; }
.room-erie .room-entry-visual-bg, .room-card-bg.room-erie { background: transparent; }
.room-willow .room-entry-visual-bg, .room-card-bg.room-willow { background: transparent; }
.room-elm .room-entry-visual-bg, .room-card-bg.room-elm { background: transparent; }
.room-kateri .room-entry-visual-bg, .room-card-bg.room-kateri { background: transparent; }
.room-andagaron .room-entry-visual-bg, .room-card-bg.room-andagaron { background: transparent; }

/* ═══ ABOUT PAGE ═══ */
.about-page { background: var(--black); }
.about-hero-section {
  padding: 6rem 8rem 3rem;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,56,38,0.6), rgba(8,8,8,0.85));
}
.about-hero-section::after {
  content: 'C';
  position: absolute;
  right: 6rem;
  bottom: -2rem;
  font-family: var(--serif);
  font-size: 280px;
  font-style: italic;
  color: rgba(184,154,40,0.06);
  line-height: 1;
  pointer-events: none;
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 0.95;
}

.about-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 8rem;
}
.about-text-block {
  max-width: 760px;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(184,154,40,0.12);
}
.about-text-block:last-child { border-bottom: none; margin-bottom: 0; }
.about-pull {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  padding-top: 6px;
  letter-spacing: 0.04em;
}
.about-text-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.about-text-block p:last-child { margin-bottom: 0; }

/* ═══ CONTACT PAGE ═══ */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: calc(34px + 80px);
}
.contact-left {
  background: var(--black);
  padding: clamp(2rem,5vw,5rem) clamp(1.5rem,6vw,6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.contact-left::after {
  content: '❧';
  position: absolute;
  bottom: 3rem; right: 3rem;
  font-size: 28px;
  color: rgba(184,154,40,0.15);
}
.contact-left h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-left p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 3.5rem;
  max-width: 380px;
}
.contact-detail {
  margin-bottom: 1.25rem;
}
.contact-detail-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.contact-right {
  background: var(--black-2);
  padding: clamp(2rem,5vw,5rem) clamp(1.5rem,6vw,6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 3rem;
}
.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.form-group select option { background: #111; color: #fff; }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.date-range {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s;
}
.date-range:focus-within { border-bottom-color: var(--gold); }
.date-range input[type="date"] {
  flex: 1;
  min-width: 0;
  border: none !important;
  padding: 0 !important;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  color-scheme: dark;
  outline: none;
  cursor: pointer;
}
.date-range input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(15deg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.date-range input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.date-range input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit-text,
.date-range input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit-month-field,
.date-range input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit-day-field,
.date-range input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit-year-field {
  color: rgba(255,255,255,0.3);
}
.date-sep {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  flex-shrink: 0;
}
.btn-gold {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 0.5rem;
}
.btn-gold:hover { background: var(--gold-light); }

/* ═══ BOOK PAGE ═══ */
.book-page {
  min-height: calc(100vh);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem;
}
.book-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.book-eyebrow { margin-bottom: 1rem; }
.book-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.book-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 3.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.book-form {
  background: var(--black-3);
  border: 0.5px solid rgba(184,154,40,0.15);
  margin-bottom: 1.5rem;
  text-align: left;
}
.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid rgba(184,154,40,0.1);
}
.book-row:last-child { border-bottom: none; }
.book-field {
  padding: 1.75rem 2rem;
  border-right: 0.5px solid rgba(184,154,40,0.1);
}
.book-field:last-child { border-right: none; }
.book-field.full {
  grid-column: 1 / -1;
  border-right: none;
}
.book-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.book-field input, .book-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  outline: none;
  padding: 4px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
.book-field input:focus, .book-field select:focus { border-bottom-color: var(--gold); }
.book-field select option { background: #111; }
.book-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.btn-gold-lg {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 64px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--sans);
  font-weight: 500;
}
.btn-gold-lg:hover { background: var(--gold-light); }
.book-alt {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2rem;
  line-height: 1.7;
}
.book-alt a { color: var(--gold); cursor: pointer; }

/* ═══ ANIMATIONS FOR SECTIONS ═══ */
.stagger-1 { transition-delay: 0s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.24s !important; }

.room-entry-visual img.room-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.room-entry:hover .room-photo { transform: scale(1.04); }

/* ═══ MOBILE & TABLET RESPONSIVE ═══ */

@media (max-width: 768px) {
  /* Book page */
  .book-page { padding: 0 !important; }
  .book-inner { padding: 5rem 1.5rem 3rem !important; max-width: 100% !important; }
  .book-row { flex-direction: column !important; }
  .book-field { width: 100% !important; }

  /* Home welcome section - stack vertically */
  div[style*="grid-template-columns:1fr 1.6fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  /* Rooms/Grounds section headers */
  div[style*="clamp(1.5rem,8vw,8rem)"] {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Book page inner */
  .book-inner { padding: 0 1.5rem 3rem; }
  .book-row { flex-direction: column; gap: 0; }

  /* Common spaces page section headers */
  div[style*="padding:calc(96px"] {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* ═══ THINGS TO DO — MOBILE ═══ */
@media (max-width: 768px) {
  /* Collapse 3-col listing grid to single column */
  div[style*="grid-template-columns:5rem 1fr 1.3fr"] {
    display: block !important;
    padding: 1.25rem 0 !important;
  }
  div[style*="grid-template-columns:5rem 1fr 1.3fr"] > div:first-child {
    margin-bottom: 0.4rem;
  }
  div[style*="grid-template-columns:5rem 1fr 1.3fr"] > div:last-child {
    margin-top: 0.75rem;
    font-size: 12px !important;
  }

  /* Section headers */
  div[style*="grid-template-columns:5rem 1fr 1.3fr"] ~ div[style*="display:flex;align-items:baseline"] {
    padding: 2rem 0 1rem !important;
  }
}

@media (max-width: 1024px) {
  nav { padding: 0 2.5rem; }
  .nav-links { gap: 2rem; }
  .hero-content { padding: 0 1.5rem; }
  .rooms-hero { padding: 80px 3rem 2rem; }
  .about-hero-section { padding: 5rem 3rem 2rem; }
  .room-entry { grid-template-columns: 1fr; min-height: unset; }
  .room-entry:nth-child(even) .room-entry-visual { order: 0; }
  .room-entry:nth-child(even) .room-entry-content { order: 1; }
  .room-entry-content { padding: 1.5rem 2rem; }
  .about-hero-section > * { max-width: 100%; }
  footer .footer-bottom { padding: 1.25rem 2.5rem; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
    height: 64px;
  }
  .nav-links { display: none; }
  .nav-book { display: none; }
  .nav-logo-name { font-size: 11px; }

  .hero-logo { width: min(58vw, 240px); }

  section.hero { min-height: 100svh; }

  .rooms-hero { padding: 80px 1.5rem 1.5rem; }
  .rooms-hero-content h1 { font-size: 36px; }

  .about-hero-section { padding: 5rem 1.5rem 2rem; flex-direction: column; }

  .room-entry { grid-template-columns: 1fr; }
  .room-entry-content { padding: 1.25rem 1.5rem; }
  .room-entry-name { font-size: 28px; }

  /* About page grid */
  div[style*="grid-template-columns:1fr 1.6fr"] {
    display: block !important;
    padding: 3rem 1.5rem !important;
  }
  div[style*="grid-template-columns:1fr 1.6fr"] > div {
    margin-bottom: 2rem;
  }

  /* Grounds & common spaces */
  .common-grid { grid-template-columns: 1fr !important; }

  /* Book page */
  .book-inner { padding: 0 1.5rem; }
  .book-row { flex-direction: column; }

  footer .footer-bottom {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ═══ HAMBURGER + MOBILE MENU ═══ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.mobile-nav-links a {
  font-family: 'Cormorant SC', serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-links .mobile-book {
  margin-top: 1rem;
  padding: 14px 40px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
}

@media (max-width: 768px) {
  nav {
    background: rgba(8,8,8,0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(184,154,40,0.12);
  }
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-book { display: none !important; }
}

/* ═══ RENOVATION BANNER ═══ */
.reno-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 8px 2rem;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav { top: 34px; }
@media (max-width: 768px) {
  .reno-banner { font-size: 9px; padding: 7px 1rem; letter-spacing: 0.1em; }
  nav { top: 30px; }
}

/* ═══ CONTACT PAGE — MOBILE ═══ */
@media (max-width: 768px) {
  #page-contact {
    overflow-x: hidden;
  }

  .contact-page {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 94px 1.5rem 3rem !important;
    overflow: visible !important;
  }

  .contact-left,
  .contact-right {
    width: 100% !important;
    max-width: 100% !important;
    min-height: unset !important;
    padding: 0 !important;
    justify-content: flex-start !important;
  }

  .contact-left::after {
    display: none !important;
  }

  .contact-left h2,
  .contact-right h2 {
    margin-top: 0;
  }

  .contact-page form {
    width: 100%;
  }

  .contact-page .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-page form input,
  .contact-page form select,
  .contact-page form textarea {
    font-size: 16px !important;
  }
}

.form-success,
.form-error {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 0.5px solid rgba(184,154,40,0.25);
  background: rgba(184,154,40,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.7;
}
.form-error {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}
.form-success strong,
.form-error strong {
  color: var(--gold);
  font-weight: 400;
}

/* ═══ NEWSLETTER ═══ */
.newsletter-section {
  background: var(--black);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 8vw, 8rem);
  border-top: 0.5px solid rgba(184,154,40,0.15);
  text-align: center;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-rule {
  width: 48px;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1.25rem;
}
.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.newsletter-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 0 1.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}
.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover {
  background: var(--gold);
  color: var(--black);
}
.newsletter-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 0.5px solid rgba(184,154,40,0.25);
  background: rgba(184,154,40,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .newsletter-form input[type="email"] { font-size: 16px; width: 100%; flex: none; }
  .newsletter-form button { width: 100%; }
}

/* Production accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

/* ═══ CONVERSION / GUEST-CONFIDENCE SECTIONS ═══ */
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 1rem;
}
.section-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  max-width: 680px;
  margin: 0 0 2rem;
}
.guest-confidence-section,
.room-selection-guide,
.policy-overview {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--black);
  border-top: 0.5px solid rgba(184,154,40,0.14);
}
.guest-confidence-section {
  background:
    radial-gradient(ellipse at 10% 10%, rgba(26,56,38,0.28), transparent 46%),
    var(--black);
}
.feature-grid {
  display: grid;
  gap: 1rem;
}
.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card,
.trip-planner-grid article,
.booking-steps div {
  border: 0.5px solid rgba(184,154,40,0.18);
  background: rgba(255,255,255,0.025);
}
.feature-card {
  padding: 1.35rem;
  min-height: 172px;
}
.feature-card h3,
.trip-planner-grid article h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.feature-card p,
.trip-planner-grid article p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}
.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.amenity-list li {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(184,154,40,0.25);
  background: rgba(184,154,40,0.045);
  padding: 0.45rem 0.65rem;
}
.room-selection-guide {
  text-align: center;
  background: var(--black);
  border-bottom: 0.5px solid rgba(184,154,40,0.14);
}
.room-selection-guide .section-intro,
.room-selection-guide .section-title {
  margin-left: auto;
  margin-right: auto;
}
.mini-guide-grid,
.policy-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1040px;
  margin: 1.75rem auto 0;
}
.mini-guide-grid div,
.policy-chip-grid div {
  border: 0.5px solid rgba(184,154,40,0.18);
  background: rgba(255,255,255,0.025);
  padding: 1.1rem;
  text-align: left;
}
.mini-guide-grid strong,
.policy-chip-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.mini-guide-grid span,
.policy-chip-grid span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}
/* ═══ ROOMS INTRO + LEVEL PREVIEW (merged) ═══ */
.rooms-intro-guide {
  padding: calc(34px + 80px + 2rem) clamp(1.5rem, 8vw, 8rem) 2.5rem;
  background: var(--black);
  text-align: center;
  border-bottom: 0.5px solid rgba(184,154,40,0.14);
}
.rooms-intro-copy {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.rooms-intro-copy a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(184,154,40,0.4);
  cursor: pointer;
}
.rooms-intro-copy a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  
  
  
  .rooms-intro-guide {
    padding-left: clamp(1.5rem, 6vw, 3rem);
    padding-right: clamp(1.5rem, 6vw, 3rem);
  }
}

.trip-planner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1.5rem, 8vw, 8rem) 2rem;
}
.trip-planner-grid article {
  padding: 1.25rem;
}
.booking-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2rem;
  max-width: 620px;
  text-align: left;
}
.booking-steps div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}
.booking-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0.5px solid rgba(184,154,40,0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.booking-steps span {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.newsletter-form select {
  flex: 1 1 100%;
  min-width: 200px;
  padding: 0.85rem 1rem;
  background: #0d0d0d;
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
}
.newsletter-form select:focus {
  border-color: var(--gold);
}
@media (max-width: 1100px) {
  .feature-grid.four,
  .trip-planner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .finder-section,
  }
@media (max-width: 700px) {
  .feature-grid.four,
  .trip-planner-grid,
  .mini-guide-grid,
  .policy-chip-grid {
    grid-template-columns: 1fr;
  }
    .guest-confidence-section,
  .room-selection-guide,
  .policy-overview {
    padding: 2.5rem 1.5rem;
  }
  .booking-steps div {
    grid-template-columns: 2.5rem 1fr;
  }
}

/* ═══ ROOM FILTER ═══ */
.room-filter {
  background: var(--black);
  padding: 1.75rem clamp(1.5rem, 8vw, 8rem) 1.5rem;
  border-bottom: 0.5px solid rgba(184,154,40,0.12);
}
.room-filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.filter-group {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 1rem;
}
.filter-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.filter-chip {
  padding: 0.4rem 0.85rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: 0.5px solid rgba(184,154,40,0.22);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.filter-chip:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(184,154,40,0.55);
}
.filter-chip:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}
.filter-chip.active {
  background: rgba(184,154,40,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.filter-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.35rem;
}
.filter-count {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.filter-clear {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  border-bottom: 0.5px solid rgba(184,154,40,0.35);
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.filter-clear:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.filter-empty {
  text-align: center;
  padding: 3rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 768px) {
  .filter-group {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .filter-label {
    font-size: 9px;
  }
  .filter-meta {
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 0.5px solid rgba(255,255,255,0.05);
  }
}

/* ── Every Room Includes grid ── */
.every-room-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 1.75rem 0 0;
}
.every-room-grid .amenity-cell {
  padding: 0.9rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.every-room-grid .amenity-cell:first-child {
  border-top: none;
  padding-top: 0.4rem;
}
.amenity-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.amenity-text {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
@media (min-width: 640px) {
  .every-room-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
  .every-room-grid .amenity-cell:nth-child(-n+2) {
    border-top: none;
    padding-top: 0.4rem;
  }
}

/* ── Hero CTA buttons ── */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 15px 34px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.hero-cta-primary {
  background: var(--gold);
  color: #0A0A0A;
  border: 0.5px solid var(--gold);
}
.hero-cta-primary:hover {
  background: #D4B33C;
  border-color: #D4B33C;
  transform: translateY(-1px);
}
.hero-cta-outline {
  background: transparent;
  color: var(--gold);
  border: 0.5px solid rgba(184,154,40,0.55);
}
.hero-cta-outline:hover {
  border-color: var(--gold);
  background: rgba(184,154,40,0.08);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta { text-align: center; }
}

/* ── Every Room Includes grid ── */
.every-room-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 1.75rem 0 0;
}
.every-room-grid .amenity-cell {
  padding: 0.9rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.every-room-grid .amenity-cell:first-child {
  border-top: none;
  padding-top: 0.4rem;
}
.amenity-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.amenity-text {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
@media (min-width: 640px) {
  .every-room-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
  .every-room-grid .amenity-cell:nth-child(-n+2) {
    border-top: none;
    padding-top: 0.4rem;
  }
}
