@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600&family=Jost:wght@200;300;400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #8B6F3A;
  --cream:      #F5EFE0;
  --dark:       #0D0B08;
  --dark-mid:   #1A1610;
  --charcoal:   #2C2520;
  --text-muted: rgba(245,239,224,0.55);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--transition), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { transform: translate(-50%, -50%) scale(2.5); background: var(--gold-light); }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.3; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ─── Navigation ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--transition);
  /* Subtle dark veil so links always visible */
  background: linear-gradient(to bottom, rgba(13,11,8,0.72) 0%, transparent 100%);
}
nav.scrolled {
  padding: 18px 60px;
  background: rgba(13,11,8,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.nav-logo span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  /* Critical fix: text shadow for visibility on any background */
  text-shadow:
    0 1px 8px rgba(0,0,0,0.95),
    0 2px 20px rgba(0,0,0,0.8),
    0 0 40px rgba(0,0,0,0.6);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  text-shadow:
    0 1px 8px rgba(0,0,0,0.9),
    0 0 20px rgba(201,169,110,0.4);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none; cursor: none;
  padding: 11px 28px;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

/* 4K Ultra-realistic hillside resort hero — Unsplash high-res */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2560&q=95&fit=crop&crop=center');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  /* Sharpen rendering for 4K quality */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.05) contrast(1.08) saturate(1.12);
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Main bottom-heavy cinematic overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(13,11,8,0.0) 0%,
    rgba(13,11,8,0.05) 35%,
    rgba(13,11,8,0.55) 65%,
    rgba(13,11,8,0.92) 88%,
    rgba(13,11,8,0.98) 100%
  );
  /* Subtle side vignette for cinematic depth */
  box-shadow: inset 80px 0 120px rgba(13,11,8,0.35), inset -80px 0 120px rgba(13,11,8,0.35);
}

/* Top gradient veil — ensures nav text always legible */
.hero-top-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,8,0.65) 0%,
    rgba(13,11,8,0.25) 18%,
    transparent 36%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.0;
  color: var(--cream);
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.9);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 4px 32px rgba(201,169,110,0.3), 0 2px 8px rgba(0,0,0,0.9);
}
.hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 28px;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-desc {
  font-weight: 200; font-size: 0.85rem;
  line-height: 1.85; letter-spacing: 0.04em;
  color: rgba(245,239,224,0.88);
  max-width: 340px; text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.hero-actions { display: flex; gap: 18px; }
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--dark);
  background: var(--gold);
  padding: 14px 34px;
  border: none; cursor: none;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,0.25); }
.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: transparent;
  padding: 14px 34px;
  border: 1px solid rgba(201,169,110,0.5);
  cursor: none;
  transition: all 0.35s var(--transition);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.hero-scroll {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted); writing-mode: vertical-rl;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.6); } }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--dark-mid);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 32px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border-right: 1px solid rgba(201,169,110,0.12);
  padding: 0 20px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ─── Section Commons ─── */
section { padding: 120px 60px; }
.section-tag {
  font-size: 0.6rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.12;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ─── About ─── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-img-wrap {
  position: relative; height: 640px;
}
.about-img-main {
  width: 75%; height: 85%;
  object-fit: cover;
  position: absolute; bottom: 0; left: 0;
}
.about-img-accent {
  width: 52%; height: 50%;
  object-fit: cover;
  position: absolute; top: 0; right: 0;
  border: 6px solid var(--dark);
  filter: brightness(0.88) saturate(1.1);
}
.about-badge {
  position: absolute; bottom: 40px; right: -20px;
  width: 130px; height: 130px;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 2;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.about-badge-text {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark);
  text-align: center; line-height: 1.5;
}
.about-text { display: flex; flex-direction: column; gap: 28px; }
.about-desc {
  font-size: 0.9rem; font-weight: 200;
  line-height: 1.9; color: var(--text-muted);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 8px;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border: 1px solid rgba(201,169,110,0.12);
  transition: border-color 0.3s, background 0.3s;
}
.feature-item:hover { border-color: rgba(201,169,110,0.35); background: rgba(201,169,110,0.03); }
.feature-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.feature-name {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream);
  font-weight: 400;
}
.feature-desc {
  font-size: 0.72rem; color: var(--text-muted);
  font-weight: 200; margin-top: 3px; line-height: 1.5;
}

/* ─── Suites ─── */
.suites-section { background: var(--dark-mid); }
.suites-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.suites-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3px;
}
.suite-card {
  position: relative; overflow: hidden;
  height: 520px; cursor: none;
}
.suite-card:first-child { height: 520px; }
.suite-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: brightness(0.95) saturate(1.05);
}
.suite-card:hover .suite-img {
  transform: scale(1.07);
  filter: brightness(1.05) saturate(1.12);
}
.suite-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.92) 0%, rgba(13,11,8,0.25) 50%, rgba(13,11,8,0.05) 100%);
  transition: opacity 0.4s;
}
.suite-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(12px);
  transition: transform 0.4s var(--transition);
}
.suite-card:hover .suite-info { transform: translateY(0); }
.suite-tag {
  font-size: 0.58rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.suite-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: var(--cream); line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.suite-detail {
  display: flex; gap: 16px; margin-top: 12px;
  font-size: 0.68rem; color: var(--text-muted);
  letter-spacing: 0.1em; font-weight: 200;
  opacity: 0; transition: opacity 0.4s 0.1s;
}
.suite-card:hover .suite-detail { opacity: 1; }
.suite-price {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--gold);
  opacity: 0; transition: opacity 0.4s 0.15s;
}
.suite-price span { font-size: 0.65rem; color: var(--text-muted); font-family: 'Jost'; font-weight: 200; }
.suite-card:hover .suite-price { opacity: 1; }

/* ─── Divider ─── */
.gold-divider {
  display: flex; align-items: center; gap: 24px;
  padding: 0 60px 0;
  margin: 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.3), transparent);
}
.gold-divider-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  transform: rotate(45deg);
}
.gold-divider-icon span { transform: rotate(-45deg); display: block; }

/* ─── Amenities ─── */
.amenities-section { padding: 120px 60px; }
.amenities-intro { max-width: 600px; margin-bottom: 80px; }
.amenities-intro .about-desc { max-width: 480px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.1);
}
.amenity-card {
  background: var(--dark);
  padding: 48px 40px;
  transition: background 0.4s;
  position: relative; overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--transition);
}
.amenity-card:hover { background: var(--dark-mid); }
.amenity-card:hover::before { width: 100%; }
.amenity-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(201,169,110,0.08);
  line-height: 1; margin-bottom: -16px;
}
.amenity-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin-bottom: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.amenity-card:hover .amenity-icon-wrap { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.amenity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
}
.amenity-desc {
  font-size: 0.78rem; font-weight: 200;
  line-height: 1.8; color: var(--text-muted);
}

/* ─── Gallery ─── */
.gallery-section { padding: 0 0 120px; }
.gallery-header { padding: 120px 60px 60px; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr;
  gap: 3px; height: 480px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: none;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--transition);
  filter: brightness(0.88) saturate(1.0);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.15);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,11,8,0.38);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom { color: var(--gold); font-size: 1.6rem; }

/* ─── Experience / Quote ─── */
.experience-section {
  background: var(--charcoal);
  padding: 100px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.experience-section::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem; font-weight: 300;
  color: rgba(201,169,110,0.04);
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  line-height: 1; pointer-events: none;
}
.experience-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300; font-style: italic;
  line-height: 1.4; color: var(--cream);
  max-width: 860px; margin: 0 auto 28px;
  position: relative; z-index: 1;
}
.experience-author {
  font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  position: relative; z-index: 1;
}
.experience-author::before, .experience-author::after {
  content: '—'; margin: 0 8px;
}

/* ─── Contact / Booking ─── */
.booking-section { padding: 120px 60px; }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 200;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-select option { background: var(--dark); }
.form-textarea { height: 110px; resize: none; }
.booking-info { display: flex; flex-direction: column; gap: 40px; }
.info-block { padding-left: 28px; border-left: 1px solid rgba(201,169,110,0.25); }
.info-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--cream); margin-bottom: 10px;
}
.info-block-text {
  font-size: 0.78rem; font-weight: 200;
  line-height: 1.8; color: var(--text-muted);
}
.info-block-link {
  color: var(--gold); text-decoration: none;
  font-size: 0.78rem; display: inline-block;
  margin-top: 6px; letter-spacing: 0.05em;
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 60px 60px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 50px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 16px;
}
.footer-logo-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 200; font-size: 0.6rem;
  letter-spacing: 0.4em; color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.78rem; font-weight: 200;
  line-height: 1.8; color: var(--text-muted);
  max-width: 240px;
}
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.78rem; font-weight: 200;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.78rem; font-weight: 200;
  color: var(--text-muted); line-height: 1.6;
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.68rem; font-weight: 200;
  color: var(--text-muted); letter-spacing: 0.08em;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Keyframes ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Reveal on Scroll ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── Mobile ─── */
@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  nav.scrolled { padding: 16px 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 32px; }
  .hero-content { grid-template-columns: 1fr; padding: 0 32px 80px; }
  .hero-right { align-items: flex-start; }
  .hero-desc { text-align: left; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 380px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 28px 32px; gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(201,169,110,0.12); border-top: 1px solid rgba(201,169,110,0.12); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(201,169,110,0.12); }
  .suites-grid { grid-template-columns: 1fr; }
  .suite-card { height: 340px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { height: 220px; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .suites-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gold-divider { padding: 0 32px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.8rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
