/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2e2a;
  background: #faf8f4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── COLORS ─── */
:root {
  --emerald-900: #042f26;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-100: #faf8f4;
  --cream-200: #f3efe6;
  --cream-300: #e8e0d0;
  --gold-500: #d4a843;
  --gold-600: #b8922e;
  --text-dark: #1a2e2a;
  --text-muted: #4a5e5a;
  --text-light: #f5f0e8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(6,78,59,0.08);
  --shadow-md: 0 4px 20px rgba(6,78,59,0.10);
  --shadow-lg: 0 8px 40px rgba(6,78,59,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary {
  background: var(--emerald-700);
  color: #fff;
  border-color: var(--emerald-700);
}
.btn--primary:hover { background: var(--emerald-800); border-color: var(--emerald-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--emerald-800); border-color: #fff; }
.btn--light:hover { background: var(--cream-200); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--outline { background: transparent; color: var(--emerald-700); border-color: var(--emerald-700); }
.btn--outline:hover { background: var(--emerald-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--emerald-700); border: 2px solid var(--emerald-700); }
.btn--ghost:hover { background: var(--emerald-700); color: #fff; }
.btn--nav { background: var(--emerald-700); color: #fff; padding: 10px 22px; font-size: 0.88rem; }
.btn--nav:hover { background: var(--emerald-800); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--emerald-800);
}
.nav-logo-icon { color: var(--emerald-600); }
.nav-menu { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a:not(.btn):hover { color: var(--emerald-600); }
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald-600);
  transition: width var(--transition);
}
.nav-menu a:not(.btn):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(6,78,59,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,47,38,0.82) 0%, rgba(6,78,59,0.65) 50%, rgba(4,47,38,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  color: #fff;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
}
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── VALUE BAR ─── */
.value-bar {
  background: var(--emerald-800);
  padding: 0;
}
.value-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  transition: background var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(255,255,255,0.06); }
.value-icon { color: var(--gold-500); }
.value-item span { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 768px) {
  .value-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .value-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .value-bar-inner { grid-template-columns: 1fr; }
  .value-item { border-right: none; }
}

/* ─── ROOMS ─── */
.rooms { padding: 100px 0; background: var(--cream-100); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { height: 220px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.room-card-title { font-size: 1.4rem; color: var(--text-dark); }
.room-card-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; }
.room-features li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-700);
  background: rgba(6,78,59,0.07);
  padding: 6px 12px;
  border-radius: 50px;
}
.room-card-body .btn { margin-top: 4px; align-self: flex-start; }
@media (max-width: 900px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ─── AMENITIES ─── */
.amenities { padding: 100px 0; background: #fff; }
.amenities-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.amenities-text .section-desc { margin-bottom: 32px; }
.amenities-list { display: flex; flex-direction: column; gap: 16px; }
.amenity-item { display: flex; align-items: center; gap: 14px; font-size: 1rem; font-weight: 500; color: var(--text-dark); }
.amenity-icon { color: var(--emerald-600); flex-shrink: 0; }
.amenities-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.amenities-img-grid img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .amenities-layout { grid-template-columns: 1fr; gap: 48px; }
  .amenities-img-grid { max-width: 480px; }
}

/* ─── LOCATION ─── */
.location { padding: 100px 0; background: var(--cream-200); }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.location-info .section-desc { margin-bottom: 32px; }
.location-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.location-detail { display: flex; gap: 16px; align-items: flex-start; }
.location-icon { color: var(--emerald-600); flex-shrink: 0; margin-top: 2px; }
.location-detail strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 2px; }
.location-detail span, .location-detail a { font-size: 0.9rem; color: var(--text-muted); }
.location-detail a:hover { color: var(--emerald-600); text-decoration: underline; }
.nearby { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.nearby strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 12px; }
.nearby ul { display: flex; flex-direction: column; gap: 8px; }
.nearby li { font-size: 0.9rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.nearby li::before { content: '·'; position: absolute; left: 0; color: var(--emerald-600); font-weight: 700; }
@media (max-width: 900px) { .location-layout { grid-template-columns: 1fr; } .location-map { min-height: 300px; } }

/* ─── REVIEWS ─── */
.reviews { padding: 100px 0; background: var(--cream-100); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { display: flex; gap: 4px; color: var(--gold-500); }
.review-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.review-card footer { font-size: 0.85rem; color: var(--emerald-700); font-weight: 600; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── CTA ─── */
.cta { position: relative; padding: 80px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,47,38,0.88) 0%, rgba(6,78,59,0.80) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 680px; margin: 0 auto; }
.cta-title { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { color: var(--emerald-600); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 2px; }
.contact-detail span { font-size: 0.9rem; color: var(--text-muted); }
.contact-detail a:hover { color: var(--emerald-600); text-decoration: underline; }

/* Form */
.contact-form-wrap { background: var(--cream-100); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-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: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--emerald-600); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.form-success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px; color: var(--emerald-700); }
.form-success svg { color: var(--emerald-600); }
.form-success h3 { font-size: 1.5rem; color: var(--text-dark); }
.form-success p { color: var(--text-muted); }
.form-success .btn { margin-top: 8px; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.footer { background: var(--emerald-900); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 16px; }
.footer-logo-icon { color: var(--gold-500); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col strong { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 24px 0; font-size: 0.82rem; }
.footer-bottom a { color: var(--gold-500); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* If JS is disabled, everything stays at opacity:1 by default since we don't set .reveal initially */
