/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #fff;
  color: #0f1c2e;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────── */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ── Section ──────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-header { max-width: 640px; margin-bottom: 72px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #0f1c2e;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  max-width: 520px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn--gold {
  background: #c9a84c;
  color: #0f1c2e;
}
.btn--gold:hover { background: #d4af5a; transform: translateY(-1px); }
.btn--light {
  background: #fff;
  color: #0f1c2e;
}
.btn--light:hover { background: #f7f5f0; transform: translateY(-1px); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(15,28,46,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #c9a84c;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9a84c;
  border-radius: 2px;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav.scrolled .nav-logo-text { color: #0f1c2e; }
.nav:not(.scrolled) .nav-logo-text { color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav.scrolled .nav-links a:not(.btn) { color: #4a5568; }
.nav-links a:not(.btn):hover { color: #c9a84c; }
.nav.scrolled .nav-links a:not(.btn):hover { color: #c9a84c; }
.nav-toggle { display: none; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/271619/pexels-photo-271619.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,18,32,0.82) 0%, rgba(15,28,46,0.65) 50%, rgba(15,28,46,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  padding-left: calc((100vw - 1200px) / 2 + 24px);
  margin-left: auto;
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Stat Cards ───────────────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 80px;
  right: 80px;
  display: flex;
  gap: 16px;
  z-index: 2;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 28px 24px;
  min-width: 170px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.11);
}
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ── Rooms ────────────────────────────────────────────── */
.rooms { background: #faf9f7; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15,28,46,0.1);
}
.room-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 32px 28px; }
.room-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.room-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: #0f1c2e;
}
.room-desc {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-features li {
  font-size: 0.85rem;
  color: #6b7280;
  padding-left: 16px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: #c9a84c;
}

/* ── Experience ───────────────────────────────────────── */
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-text .section-desc { max-width: none; }
.features-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
}
.feature-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
}
.experience-images {
  position: relative;
  height: 700px;
}
.exp-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(15,28,46,0.15);
}
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-img--main {
  width: 75%;
  height: 75%;
  top: 0;
  right: 0;
}
.exp-img--accent {
  width: 55%;
  height: 42%;
  bottom: 0;
  left: 0;
  border: 4px solid #fff;
}

/* ── Location ─────────────────────────────────────────── */
.location { background: #faf9f7; }
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-landmarks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.landmark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15,28,46,0.08);
}
.landmark:first-child { border-top: 1px solid rgba(15,28,46,0.08); }
.landmark-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.landmark-dist {
  font-size: 0.85rem;
  color: #c9a84c;
  font-weight: 500;
}
.location-address {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,28,46,0.08);
  font-size: 0.95rem;
  color: #4a5568;
}
.location-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,28,46,0.1);
}
.map-placeholder {
  background: #e8e6e1;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #0f1c2e;
}
.map-pin { color: #c9a84c; }
.map-placeholder p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.map-link {
  font-size: 13px;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.3s;
}
.map-link:hover { background: #c9a84c; color: #0f1c2e; }

/* ── Contact ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
}
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem;
  color: #0f1c2e;
  transition: color 0.3s;
}
.contact-value:hover { color: #c9a84c; }
.contact-form-wrap {
  background: #faf9f7;
  border-radius: 4px;
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #0f1c2e;
  background: #fff;
  border: 1px solid rgba(15,28,46,0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  color: #0f1c2e;
  font-size: 0.9rem;
}
.form-success svg { color: #c9a84c; flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #0f1c2e;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .nav-logo-mark {
  width: 44px;
  height: 44px;
  font-size: 24px;
}
.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #c9a84c; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact a:hover { color: #c9a84c; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ── Mobile Menu ──────────────────────────────────────── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 32px 24px;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(15,28,46,0.1);
}
.nav-links.open a:not(.btn) {
  color: #0f1c2e !important;
  font-size: 15px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 0 24px;
    margin-top: 48px;
    flex-wrap: wrap;
  }
  .hero-content { padding-left: 24px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-layout { grid-template-columns: 1fr; gap: 48px; }
  .experience-images { height: 500px; order: -1; }
  .location-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav:not(.scrolled) .nav-toggle svg { stroke: #fff; }
  .nav.scrolled .nav-toggle svg { stroke: #0f1c2e; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: auto; }
  .rooms-grid { grid-template-columns: 1fr; }
  .experience-images { height: 400px; }
  .exp-img--main { width: 80%; height: 80%; }
  .exp-img--accent { width: 60%; height: 50%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Scroll Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
