/* =========================================
   ASPIRE HOTEL — LUXURY STYLESHEET
   ========================================= */

:root {
  --navy:    #0a1628;
  --navy-mid:#122040;
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --gold-dk: #a07c2e;
  --cream:   #f8f4ec;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --text-lt: #5a5a72;
  --border:  rgba(201,168,76,0.25);
  --shadow:  0 20px 60px rgba(10,22,40,0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll causing zoom-out */
}

body {
  font-family: 'Raleway', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  overflow-x: hidden;
  color: var(--text);
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-lt); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-dk); }

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-lt);
  max-width: 580px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 64px; }

.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0 28px;
}
.gold-rule.center { margin: 20px auto 28px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  box-shadow: 0 6px 28px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}
.btn-sm { padding: 10px 24px; font-size: 0.76rem; }
.btn-full { width: 100%; text-align: center; }

/* ---- ANIMATIONS ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-symbol {
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: center;
}
.logo-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo:hover .logo-main { color: var(--gold-lt); }
.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links--left  { justify-content: flex-end; }
.nav-links--right { justify-content: flex-start; }

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy) !important;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #0a1628 0%, #1a3a6b 40%, #0e2244 70%, #060f1e 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(26,58,107,0.4) 0%, transparent 50%);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 30, 0.50);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

/* Hero brand block — prominent hotel name */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 100%;
}
/* Inner wrapper stacks name + subtitle vertically */
.hero-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-brand-symbol {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
  line-height: 1;
}
/* CTA buttons below about/dining sections */
.about-cta  { display: inline-block; margin-top: 32px; }
.dining-cta { display: inline-block; margin-top: 28px; }
.hero-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 0 80px rgba(201,168,76,0.15);
}
.hero-brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.6rem, 1.4vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 6px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hero-tagline em { color: var(--gold-lt); font-style: italic; }

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.hero-divider span:not(.diamond) {
  display: block;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.diamond { color: var(--gold); font-size: 0.7rem; }

.hero-motto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; }
}

/* =========================================
   WELCOME STRIP
   ========================================= */
.welcome-strip {
  background: var(--navy);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strip-icon { font-size: 1.15rem; }
.strip-divider { color: var(--gold); font-size: 0.55rem; opacity: 0.6; }

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.img-card { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.img-card--large { width: 78%; height: 78%; top: 0; left: 0; }
.img-card--small { width: 50%; height: 44%; bottom: 0; right: 0; }

.img-placeholder {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}

.img-hotel-main {
  background: linear-gradient(145deg, #122040 0%, #1a3a6b 40%, #0e2244 100%);
}
.img-hotel-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.8));
}
.img-overlay-text {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  color: var(--gold-lt);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.img-hotel-small {
  background: linear-gradient(145deg, #c9a84c 0%, #a07c2e 100%);
}

.about-badge {
  position: absolute;
  bottom: 44%;
  right: -20px;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  z-index: 10;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-lt);
  margin-bottom: 18px;
}
.about-text strong { color: var(--navy); font-weight: 600; }

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-dk);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* =========================================
   ROOMS
   ========================================= */
.rooms {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.rooms-bg-accent {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.rooms .section-title { color: var(--white); }
.rooms .section-eyebrow { color: var(--gold); }
.rooms .section-desc { color: rgba(255,255,255,0.65); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.room-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.18);
}

.room-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-img--deluxe {
  background: linear-gradient(145deg, #1a3566 0%, #2a4a82 100%);
}
.room-img--suite {
  background: linear-gradient(145deg, #2a1a4e 0%, #4a2a7a 100%);
}
.room-img--presidential {
  background: linear-gradient(145deg, #1a2e1a 0%, #2a4a2a 100%);
}
.room-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,22,40,0.88);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.room-badge--gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--navy);
  border: none;
}

.featured-label {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.room-info { padding: 28px; }

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.room-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-features li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
}

/* =========================================
   DINING
   ========================================= */
.dining { background: var(--cream); padding: 0; overflow: hidden; }

.dining-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.dining-visual {
  background: linear-gradient(145deg, #122040 0%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dining-img-wrapper { position: relative; width: 100%; height: 100%; }

.dining-img {
  width: 100%; height: 100%;
  min-height: 500px;
  background: linear-gradient(145deg, #0e1e3c 0%, #1a3a6b 50%, #0a1628 100%);
  position: relative;
}
.dining-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.85));
}

.dining-quote {
  position: absolute;
  bottom: 48px; left: 48px; right: 48px;
  z-index: 2;
  color: var(--white);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}
.dining-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.dining-content {
  padding: 80px 64px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dining-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-lt);
  margin-bottom: 36px;
}

.dining-venues { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.venue-item { display: flex; gap: 18px; align-items: flex-start; }
.venue-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.venue-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.venue-info p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.6; }

.coming-soon-badge {
  display: flex;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 18px 22px;
}
.cs-icon { font-size: 1.8rem; flex-shrink: 0; }
.coming-soon-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.coming-soon-badge p { font-size: 0.82rem; color: var(--text-lt); }

/* =========================================
   AMENITIES
   ========================================= */
.amenities { background: var(--white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.amenity-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.12);
}
.amenity-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.amenity-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.amenity-card p { font-size: 0.85rem; color: var(--text-lt); line-height: 1.65; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.testimonial-author span { font-size: 0.76rem; color: var(--gold); }

/* =========================================
   LOCATION
   ========================================= */
.location { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-lt);
  margin-bottom: 32px;
}

.location-details { display: flex; flex-direction: column; gap: 20px; }
.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.location-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 4px;
}
.location-item p {
  font-size: 0.92rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.location-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  background: linear-gradient(145deg, #0a1628 0%, #122040 100%);
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  gap: 16px;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.map-pin-animation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.map-pin { font-size: 3rem; animation: mapPinBounce 2s ease-in-out infinite; position: relative; z-index: 2; }
.map-pin-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulsate 2s ease-out infinite;
  opacity: 0;
}
@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulsate {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.map-label {
  text-align: center;
  color: var(--white);
  z-index: 2;
}
.map-label strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.map-label span { font-size: 0.8rem; color: var(--gold); }

.map-route {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin-top: 16px;
  z-index: 2;
}
.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.route-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: routeDotPulse 1.5s ease-in-out infinite;
}
@keyframes routeDotPulse {
  0%, 100% { box-shadow: 0 0 5px var(--gold); }
  50% { box-shadow: 0 0 18px var(--gold), 0 0 30px rgba(201,168,76,0.5); }
}
.map-note {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  z-index: 2;
}

/* =========================================
   CONTACT CTA
   ========================================= */
.contact-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 50%, #0a1628 100%);
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-desc { color: rgba(255,255,255,0.65); font-size: 1.02rem; margin-bottom: 48px; line-height: 1.75; }

.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.contact-form select option { background: var(--navy); color: var(--white); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px;
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}
.form-success span { font-size: 2rem; animation: spinIn 0.5s ease; }
@keyframes spinIn {
  from { transform: rotate(-180deg) scale(0); opacity: 0; }
  to   { transform: rotate(0) scale(1); opacity: 1; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #060f1e; }

.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(201,168,76,0.15); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--gold-lt); }

.footer-contact-list li {
  display: flex;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-coming-soon {
  font-size: 0.78rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(201,168,76,0.55); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0a1628 0%, #1a3a6b 50%, #060f1e 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
}
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb .bc-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   ROOMS PAGE — extra styles
   ========================================= */
.rooms-full { background: var(--navy); }
.rooms-full .section-title { color: var(--white); }
.rooms-full .section-eyebrow { color: var(--gold); }

.room-detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.room-detail-card.reverse { direction: rtl; }
.room-detail-card.reverse > * { direction: ltr; }
.room-detail-img {
  min-height: 360px;
  position: relative;
}
.room-detail-img.deluxe { background: linear-gradient(145deg,#1a3566,#2a4a82); }
.room-detail-img.suite   { background: linear-gradient(145deg,#2a1a4e,#4a2a7a); }
.room-detail-img.pres    { background: linear-gradient(145deg,#1a2e1a,#2a4a2a); }
.room-detail-content { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.room-detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.room-detail-price span { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.room-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.room-detail-desc { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.room-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.room-detail-features li {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-detail-features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; }

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
/* When only 4 items — centre them with a max width so they don't stretch too wide */
.inclusions-grid--four {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.inclusion-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 18px;
  text-align: center;
}
.inclusion-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.inclusion-item h5 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.inclusion-item p { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; }

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.policy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.policy-icon { font-size: 1.5rem; flex-shrink: 0; }
.policy-item strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 4px; }
.policy-item p { font-size: 0.83rem; color: var(--text-lt); line-height: 1.55; }

/* =========================================
   DINING PAGE — extra styles
   ========================================= */
.venue-full-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 400px 1fr;
}
.venue-full-card.reverse { direction: rtl; }
.venue-full-card.reverse > * { direction: ltr; }
.venue-img {
  min-height: 340px;
  position: relative;
}
.venue-img.horizon { background: linear-gradient(145deg,#0e2244,#1a3a6b); }
.venue-img.amber   { background: linear-gradient(145deg,#3d1c00,#6b3a1a); }
.venue-img.garden  { background: linear-gradient(145deg,#0a2a0a,#1a4a1a); }
.venue-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dk));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.venue-full-content { padding: 44px 48px; }
.venue-full-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.venue-hours { font-size: 0.76rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dk); font-weight: 600; margin-bottom: 16px; }
.venue-full-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-lt); margin-bottom: 24px; }

.menu-sample { border-top: 1px solid var(--border); padding-top: 24px; }
.menu-sample h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: 16px;
}
.menu-items { display: flex; flex-direction: column; gap: 12px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.menu-item-desc { font-size: 0.8rem; color: var(--text-lt); }
.menu-item-price { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; color: var(--gold-dk); font-weight: 600; white-space: nowrap; }

/* =========================================
   ABOUT PAGE — extra styles
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.value-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-6px); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.7; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mv-card {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); }
.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.mv-card.mission h3 { color: var(--gold-lt); }
.mv-card.vision h3  { color: var(--navy); }
.mv-card p { font-size: 0.95rem; line-height: 1.8; }
.mv-card.mission p { color: rgba(255,255,255,0.7); }
.mv-card.vision p  { color: var(--navy); opacity: 0.85; }

/* =========================================
   CONTACT PAGE — extra styles
   ========================================= */
.contact-page { background: var(--cream); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-panel { padding: 0; }
.contact-info-panel .section-title { font-size: 2.4rem; }

.faq-list { margin-top: 16px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-q {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.2rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.88rem;
  color: var(--text-lt);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }

.contact-form-panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 52px 48px;
}
.contact-form-panel .section-eyebrow { color: var(--gold); }
.contact-form-panel .cta-title { font-size: 2.2rem; margin-bottom: 12px; }
.contact-form-panel .cta-desc { margin-bottom: 32px; }

/* =========================================
   GALLERY
   ========================================= */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item--wide { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(145deg, #122040 0%, #1a3a6b 100%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-zoom {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 30, 0.96);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 80px;
  max-width: 100vw;
}

.lightbox-content img {
  max-width: calc(90vw - 160px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

.lightbox-caption {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}

.lightbox-counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-family: 'Raleway', sans-serif;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(10,22,40,0.75);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--white);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =========================================
   RESPONSIVE
   ========================================= */
/* =========================================
   LARGE SCREENS (1440px+)
   ========================================= */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-brand-name { font-size: 8.5rem; }
  .section { padding: 120px 0; }
}

/* =========================================
   TABLET LANDSCAPE (1024px)
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 360px; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .dining-split { grid-template-columns: 1fr; }
  .dining-content { padding: 60px 40px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Inner pages */
  .room-detail-card { grid-template-columns: 1fr; }
  .room-detail-card.reverse { direction: ltr; }
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: 1fr 1fr; }
  .venue-full-card { grid-template-columns: 1fr; }
  .venue-full-card.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 40px 36px; }
  .navbar { padding: 18px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
  .nav-links { gap: 20px; }
  .logo-main { font-size: 1.4rem; }
  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
  /* Lightbox */
  .lightbox-content { padding: 0 60px; }
  .lightbox-content img { max-width: calc(90vw - 120px); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* =========================================
   TABLET PORTRAIT — nav collapses (900px)
   ========================================= */
@media (max-width: 900px) {
  .nav-links--left,
  .nav-links--right {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 60px 40px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -4px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border);
  }
  .nav-links--left  { display: none; }
  .nav-links--right.open { right: 0; display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.12em; }
  .nav-cta { padding: 12px 24px !important; display: inline-block; margin-top: 8px; }

  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .logo-main { font-size: 1.5rem; }

  .rooms-grid { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* =========================================
   MOBILE (768px)
   ========================================= */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Hero */
  .hero-brand { gap: 12px; }
  .hero-brand-symbol { font-size: 1rem; }
  .hero-brand-name { font-size: clamp(2.8rem, 12vw, 5rem); letter-spacing: 0.18em; }
  .hero-brand-sub { font-size: clamp(0.5rem, 2vw, 0.72rem); letter-spacing: 0.3em; }
  .hero-tagline { font-size: clamp(1.1rem, 3.5vw, 1.6rem); }
  .hero-motto { font-size: 1.05rem; }
  .hero-scroll-indicator { display: none; }

  /* About */
  .about-images { height: 280px; }
  .about-badge { right: 0; width: 95px; height: 95px; }
  .badge-num { font-size: 1.6rem; }

  /* Rooms — single column on phones */
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Dining */
  .dining-content { padding: 48px 24px; }
  .dining-quote { left: 24px; right: 24px; bottom: 24px; }

  /* Amenities */
  .amenities-grid { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Location map */
  .map-placeholder { height: 340px; padding: 28px; }

  /* Contact CTA */
  .contact-form-panel { padding: 36px 24px; border-radius: 8px; }
  .cta-title { font-size: 1.9rem; }

  /* Page hero */
  .page-hero { height: 320px; }
  .page-hero-title { font-size: clamp(2rem, 7vw, 3rem); }

  /* Inner page cards */
  .room-detail-content { padding: 32px 28px; }
  .room-detail-features { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: 1fr; }
  .venue-full-content { padding: 32px 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 32px 28px; }
  .contact-page-grid { gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

/* =========================================
   SMALL MOBILE (480px)
   ========================================= */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-brand { flex-direction: column; gap: 6px; }
  .hero-brand-symbol { display: none; }
  .hero-brand-text { align-items: center; }
  .hero-brand-name { font-size: clamp(2.6rem, 15vw, 4rem); letter-spacing: 0.12em; }
  .hero-brand-sub { font-size: 0.56rem; letter-spacing: 0.28em; }
  .hero-tagline { font-size: 1rem; }
  .hero-motto { font-size: 0.95rem; letter-spacing: 0.04em; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-divider span:not(.diamond) { width: 50px; }

  /* Welcome strip */
  .strip-inner { flex-direction: column; gap: 12px; }
  .strip-divider { display: none; }

  /* About */
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .about-images { height: 240px; }
  .about-badge { display: none; }

  /* Amenities */
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { padding: 24px 20px; }

  /* Section headers */
  .section-title { font-size: 2rem; }
  .section-desc { font-size: 0.95rem; }

  /* Page hero */
  .page-hero { height: 260px; }
  .page-hero-title { font-size: 2rem; }

  /* Inclusions */
  .inclusions-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; }

  /* Contact form panel */
  .contact-form-panel { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }

  /* Location */
  .map-route { flex-direction: column; align-items: center; gap: 8px; }
  .route-line { width: 2px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}
