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

/* === CSS VARIABLES === */
:root {
  --deep:        #08142a;
  --forest:      #0e2845;
  --forest-mid:  #163560;
  --ivory:       #faf8f2;
  --sand:        #f0e8d5;
  --sand-dark:   #ddd0b5;
  --white:       #ffffff;
  --gold:        #3aaed8;
  --gold-light:  #ffffff;
  --gold-pale:   rgba(58,174,216,0.08);
  --teal:        #1a8bc4;
  --teal-light:  #3aaed8;
  --text:        #0d1e35;
  --muted:       #4d6070;
  --muted-light: #88a0b5;
  --border:      rgba(255,255,255,0.14);
  --border-dark: rgba(255,255,255,0.08);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Karla', system-ui, -apple-system, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* === TYPOGRAPHY UTILITIES === */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.2rem;
}
.section-h2 em { font-style: italic; color: var(--teal); }
.section-h2--light { color: var(--white); }
.section-h2--light em { color: var(--gold-light); }
.rule { width: 44px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.rule--center { margin-left: auto; margin-right: auto; }
.body-text { font-size: 0.94rem; line-height: 1.9; color: var(--muted); }
.center { text-align: center; }
.center .body-text { max-width: 560px; margin-left: auto; margin-right: auto; }

/* === SECTION BASE === */
section { padding: 6rem 5%; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--teal-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,174,216,0.35); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { border-color: var(--gold-light); background: rgba(58,174,216,0.12); transform: translateY(-2px); }
.btn-dark { background: var(--deep); color: var(--white); }
.btn-dark:hover { background: var(--forest); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); }

/* === BOOKING BAR === */
.booking-bar {
  position: fixed;
  top: -72px;
  left: 0;
  right: 0;
  z-index: 998;
  height: 56px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-bar.visible { top: 0; }
.bb-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.bb-text svg { color: var(--gold); flex-shrink: 0; }
.bb-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 1px;
  transition: background 0.2s;
}
.bb-cta:hover { background: var(--teal-light); }

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(8,20,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 4%;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo { display: block; flex-shrink: 0; }
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
nav.scrolled .nav-logo-img { height: 52px; }
.nav-logo:hover .nav-logo-img { opacity: 0.88; }
.foot-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(1.35) saturate(1.1) drop-shadow(0 1px 8px rgba(0,0,0,0.45));
  opacity: 0.88;
  transition: opacity 0.2s, filter 0.2s;
}
.foot-brand a:hover .foot-logo-img {
  opacity: 1;
  filter: brightness(1.45) saturate(1.15) drop-shadow(0 1px 8px rgba(0,0,0,0.45));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }
.nav-book {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 1px;
  font-weight: 700 !important;
}
.nav-book:hover { background: var(--teal-light) !important; color: var(--white) !important; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  padding: 4px;
}
.burger span { width: 24px; height: 2px; background: var(--white); display: block; transition: transform 0.3s, opacity 0.3s, background 0.3s; border-radius: 2px; }
nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  opacity: 0;
  transition: opacity 2s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,20,42,0.22) 0%,
    rgba(8,20,42,0.58) 50%,
    rgba(8,20,42,0.92) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-title em { font-style: italic; color: var(--teal-light); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 1.8rem;
  animation: fadeUp 0.9s 0.5s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.65rem 1.4rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.55s both;
}
.hero-badge .score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-badge .stars { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.05em; }
.hero-badge .label { font-size: 0.73rem; color: rgba(255,255,255,0.82); text-align: left; line-height: 1.5; }
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* === STATS BAR === */
.stats {
  background: var(--deep);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  border-top: 1px solid var(--border);
}
.stat { padding: 2rem 1rem; border-right: 1px solid var(--border-dark); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-l { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 0.4rem; }

/* === ABOUT === */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-imgs { position: relative; height: 540px; }
.about-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--border);
}
.about-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  box-shadow: 0 22px 65px rgba(0,0,0,0.12);
}
.about-sec {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 55%;
  object-fit: cover;
  box-shadow: 0 22px 65px rgba(0,0,0,0.12);
  border: 5px solid var(--white);
}
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 2rem; }
.feat { display: flex; align-items: center; gap: 0.7rem; font-size: 0.87rem; color: var(--muted); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.badge-black-owned {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  margin-top: 1.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === ROOMS === */
.rooms { background: var(--deep); }
.rooms .eyebrow { color: var(--gold-light); }
.rooms .section-h2 { color: var(--white); }
.rooms .section-h2 em { color: var(--gold-light); }
.rooms .body-text { color: rgba(255,255,255,0.6); }
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.room-img-wrap { position: relative; }
.room-img-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; }
.room-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--gold);
  color: var(--deep);
  padding: 1.5rem 2rem;
  text-align: center;
}
.room-badge .bn { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.room-badge .bl { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.2rem; font-weight: 600; }
.room-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 2rem 0; }
.spec { border-left: 2px solid var(--gold); padding-left: 1rem; }
.spec-l { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.spec-v { font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 0.2rem; }
.bedroom-list { margin-top: 1.8rem; }
.bedroom-list h4 { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-weight: 400; }
.bedroom-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
}
.bedroom-icon { color: var(--teal-light); flex-shrink: 0; }

/* === AMENITIES === */
.amenities { background: var(--ivory); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.amen-card {
  background: var(--white);
  padding: 2.2rem 1.6rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.amen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(8,20,42,0.08);
  border-bottom-color: var(--gold);
}
.amen-icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; color: var(--teal); }
.amen-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--deep); margin-bottom: 0.45rem; }
.amen-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* === SPACES === */
.spaces { background: var(--white); }
.spaces-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.space-tag {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.space-tag:hover { border-color: var(--gold); background: var(--sand); }
.space-tag svg { color: var(--teal); flex-shrink: 0; }

/* === GALLERY === */
.gallery-section { background: var(--forest); padding: 6rem 0 0; }
.gallery-header { text-align: center; padding: 0 5% 2.5rem; }
.gallery-header .body-text { color: rgba(255,255,255,0.45); }

/* Gallery filter tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  padding: 0 5% 2.8rem;
}
.gf-btn {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  padding: 0.6rem 1.35rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 1px;
}
.gf-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.32); }
.gf-btn.active { color: var(--white); background: var(--gold); border-color: var(--gold); }

/* Gallery grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 8px 8px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gal-item.wide { grid-column: span 2; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,20,42,0.9) 0%, transparent 100%);
  color: var(--white);
  padding: 2.5rem 1.2rem 1rem;
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-item.hidden { display: none; }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,20,42,0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 78vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lb-info { margin-top: 1.4rem; text-align: center; }
.lb-cap { color: rgba(255,255,255,0.85); font-size: 0.88rem; letter-spacing: 0.04em; }
.lb-counter { color: rgba(255,255,255,0.38); font-size: 0.72rem; margin-top: 0.35rem; letter-spacing: 0.1em; }
.lb-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
}
.lb-close:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(58,174,216,0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 1px;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); }

/* === REVIEW BAND === */
.review-band {
  background: var(--gold);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.review-left { display: flex; align-items: center; gap: 2rem; }
.rev-score { font-family: var(--font-display); font-size: 4.5rem; font-weight: 400; color: var(--deep); line-height: 1; }
.rev-label .rl-title { font-size: 1.25rem; font-weight: 700; color: var(--deep); letter-spacing: 0.02em; }
.rev-label .rl-sub { font-size: 0.78rem; color: rgba(8,20,42,0.7); margin-top: 0.2rem; }
.rev-quote {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--deep);
  max-width: 500px;
  line-height: 1.55;
}
.rev-cta {
  color: var(--white);
  border: 1px solid rgba(8,20,42,0.35);
  padding: 0.75rem 1.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.rev-cta:hover { background: rgba(8,20,42,0.08); }

/* === ACTIVITIES === */
.activities { background: var(--ivory); }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.act-card { position: relative; overflow: hidden; cursor: pointer; }
.act-card img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.act-card:hover img { transform: scale(1.07); }
.act-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(8,20,42,0.85), transparent);
  color: var(--white);
}
.act-label h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }

/* === AREAS === */
.areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; margin-top: 3rem; }
.area-card img { width: 100%; height: 310px; object-fit: cover; display: block; margin-bottom: 1.6rem; }
.area-card h3 { font-family: var(--font-display); font-size: 1.85rem; font-weight: 400; color: var(--deep); margin-bottom: 0.85rem; }
.area-card p { font-size: 0.87rem; line-height: 1.9; color: var(--muted); margin-bottom: 0.75rem; }
.link-arr { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--teal); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: gap 0.25s; }
.link-arr:hover { gap: 0.9rem; color: var(--teal-light); }

/* === TOURS === */
.tours { background: var(--ivory); }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tour-card {
  background: var(--white);
  padding: 1.6rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.3s, transform 0.3s;
}
.tour-card:hover { box-shadow: 0 14px 45px rgba(8,20,42,0.08); transform: translateY(-3px); }
.tour-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--deep); margin-bottom: 0.75rem; line-height: 1.4; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; }
.ttag { font-size: 0.65rem; background: var(--ivory); color: var(--teal); padding: 0.22rem 0.6rem; font-weight: 600; border: 1px solid rgba(26,139,196,0.2); }
.tour-price { font-size: 0.9rem; font-weight: 700; color: var(--deep); }
.tour-price small { font-weight: 400; color: var(--muted); }

/* === RESTAURANTS === */
.restaurants { background: var(--white); }
.resto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.resto-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s;
}
.resto-card:hover { border-color: var(--gold); }
.resto-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--deep); margin-bottom: 0.7rem; }
.resto-d { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.3rem; line-height: 1.55; }
.resto-d strong { color: var(--text); font-weight: 600; }

/* === REVIEWS === */
.reviews { background: var(--ivory); }
.reviews-layout { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.rev-big {
  text-align: center;
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(8,20,42,0.06);
}
.rev-big .score { font-family: var(--font-display); font-size: 5.5rem; font-weight: 400; color: var(--deep); line-height: 1; }
.rev-big .grade { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0.4rem 0; }
.rev-big .count { font-size: 0.82rem; color: var(--muted); }
.bar-row { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.7rem; }
.bar-label { font-size: 0.78rem; color: var(--muted); white-space: nowrap; width: 60px; text-align: right; }
.bar-track { flex: 1; height: 5px; background: var(--sand); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.bar-count { font-size: 0.74rem; color: var(--muted); width: 16px; }
.sub-scores { margin-top: 2rem; }
.sub-score-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.sub-score-row span { color: var(--muted); }
.sub-score-row strong { color: var(--deep); }
.review-quote {
  font-family: var(--font-accent);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.5;
  margin-top: 2.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.8rem;
}
.rev-note { font-size: 0.78rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.7; font-style: italic; }

/* === NEARBY === */
.nearby { background: var(--white); }
.nearby-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.nearby-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
}
.nearby-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.nearby-item span { color: var(--muted); }
.nearby-item strong { color: var(--deep); font-weight: 500; }

/* === HOUSE RULES === */
.rules { background: var(--forest); }
.rules .eyebrow { color: var(--gold-light); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.rule-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  padding: 2.2rem 1.8rem;
  transition: border-color 0.3s;
}
.rule-card:hover { border-color: rgba(58,174,216,0.3); }
.rule-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--gold-light); margin-bottom: 1.2rem; }
.rule-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.8rem; font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.55; }
.rule-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* === PHILANTHROPY === */
.philanthropy { background: var(--ivory); }
.phil-grid { columns: 4; column-gap: 4px; margin-top: 3rem; line-height: 0; }
.phil-item { break-inside: avoid; overflow: hidden; margin-bottom: 4px; }
.phil-item img { width: 100%; display: block; transition: transform 0.5s; }
.phil-item:hover img { transform: scale(1.05); }

/* === CONTACT === */
.contact { background: var(--deep); }
.contact .eyebrow { color: var(--gold-light); }
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.ci { display: flex; gap: 1.2rem; }
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(58,174,216,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  border: 1px solid var(--border);
}
.ci h4 { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 0.3rem; }
.ci p, .ci a { font-size: 0.92rem; color: rgba(255,255,255,0.68); line-height: 1.55; }
.ci a:hover { color: var(--gold-light); }

/* === MAP === */
.map-wrap { padding: 0; line-height: 0; }
.map-wrap iframe { width: 100%; height: 400px; border: none; filter: grayscale(20%) contrast(1.04) saturate(0.9); }

/* === CTA SECTION === */
.cta-section {
  background: var(--forest);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(58,174,216,0.06), transparent 65%);
  pointer-events: none;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--white); }

/* === FOOTER === */
footer {
  background: var(--deep);
  padding: 4.5rem 5% 2.5rem;
  border-top: 1px solid var(--border);
}
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--border-dark); }
.foot-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 240px; margin-top: 1rem; }
.foot-col h4 { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.foot-col ul li { margin-bottom: 0.65rem; }
.foot-col ul a, .foot-col a {
  color: rgba(255,255,255,0.38);
  font-size: 0.83rem;
  transition: color 0.2s;
  display: block;
  line-height: 1.5;
}
.foot-col ul a:hover, .foot-col a:hover { color: var(--gold-light); }
.foot-col p { color: rgba(255,255,255,0.38); font-size: 0.83rem; line-height: 1.75; margin-top: 0.5rem; }
.foot-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.foot-bottom p { color: rgba(255,255,255,0.24); font-size: 0.75rem; }

/* === FADE-IN ANIMATION UTILITY === */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi.in { opacity: 1; transform: translateY(0); }

/* === KEYFRAMES === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.85; }
}

/* === RESPONSIVE — TABLET === */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-imgs { height: 360px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .reviews-layout { grid-template-columns: 1fr; }
  .phil-grid { columns: 3; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,20,42,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    z-index: 999;
    animation: fadeIn 0.25s ease;
  }
  nav.open .nav-links a { font-size: 1.15rem; color: rgba(255,255,255,0.85); }
  nav.open .nav-links .nav-book { background: var(--teal) !important; color: var(--white) !important; padding: 0.75rem 2rem; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(5) { display: none; }
  .rooms-grid { grid-template-columns: 1fr; gap: 3rem; }
  .room-badge { left: 1.2rem; }
  .act-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nearby-cols { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .review-band { flex-direction: column; align-items: flex-start; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 2; }
  .gallery-filters { gap: 0.35rem; }
  .gf-btn { padding: 0.5rem 1rem; font-size: 0.62rem; }
  .resto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 4.5rem 5%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(4), .stat:nth-child(5) { display: none; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .act-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .phil-grid { columns: 2; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 2; }
  .nearby-cols { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .bb-text { font-size: 0.72rem; }
  .booking-bar { padding: 0 4%; }
  .feat-grid { grid-template-columns: 1fr; }
  .room-specs { grid-template-columns: 1fr; }
}
