/* ===== 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;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f7f3eb;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #064e3b;
  margin-bottom: 1rem;
}
.section-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.125rem;
  color: #4a4a4a;
  max-width: 560px;
  line-height: 1.7;
}
.text-accent { color: #064e3b; }
.text-accent-light { color: #f5f0e8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #064e3b;
  color: #f5f0e8;
  border-color: #064e3b;
}
.btn-primary:hover { background: #043828; border-color: #043828; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.3); }
.btn-outline {
  background: transparent;
  color: #064e3b;
  border-color: #064e3b;
}
.btn-outline:hover { background: #064e3b; color: #f5f0e8; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-light { background: #f5f0e8; color: #064e3b; border-color: #f5f0e8; }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-light { background: transparent; color: #f5f0e8; border-color: rgba(245,240,232,0.5); }
.btn-outline-light:hover { background: rgba(245,240,232,0.1); border-color: #f5f0e8; transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(247,243,235,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1a1a1a;
}
.nav.scrolled .nav-brand { color: #1a1a1a; }
.nav-brand-icon { width: 36px; height: 36px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a4a4a;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #064e3b; }
.nav-cta {
  background: #064e3b;
  color: #f5f0e8 !important;
  padding: 0.625rem 1.375rem;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: #043828; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(6,78,59,0.3); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1a1a1a;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f7f3eb;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(6,78,59,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(6,78,59,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 64px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
}
.hero-card-accent {
  height: 6px;
  background: linear-gradient(90deg, #064e3b, #1a8a5c, #064e3b);
}
.hero-card-content {
  padding: 3rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #064e3b;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-accent { color: #064e3b; font-style: italic; }
.hero-desc {
  font-size: 1.0625rem;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(6,78,59,0.1); }
.stat-icon { margin-bottom: 0.75rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #064e3b;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8125rem; color: #6b6b6b; font-weight: 500; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #064e3b;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== INTRO ===== */
.intro { padding: 7rem 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-image { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-content .section-desc { margin-bottom: 1.5rem; }
.intro-content p { color: #4a4a4a; line-height: 1.8; margin-bottom: 1rem; font-size: 1.0625rem; }
.intro-features { margin-top: 2rem; display: grid; gap: 0.875rem; }
.intro-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}

/* ===== ROOMS ===== */
.rooms {
  padding: 7rem 0;
  background: #fff;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: #f7f3eb;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.room-card-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #064e3b;
  color: #f5f0e8;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}
.room-card-body { padding: 1.75rem; }
.room-card-title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.room-card-desc { font-size: 0.9375rem; color: #4a4a4a; line-height: 1.7; margin-bottom: 1.25rem; }
.room-card-features { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; }
.room-card-features li {
  font-size: 0.875rem;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-card-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #064e3b;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== AMENITIES ===== */
.amenities { padding: 7rem 0; }
.amenities-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.amenities-list { display: grid; gap: 1.5rem; }
.amenity-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity-item:hover { transform: translateX(6px); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.amenity-icon {
  width: 52px;
  height: 52px;
  background: #064e3b;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f5f0e8;
}
.amenity-text strong { display: block; font-size: 1rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.amenity-text span { font-size: 0.875rem; color: #6b6b6b; line-height: 1.6; }
.amenities-image-stack { position: relative; }
.amenity-img { border-radius: 20px; overflow: hidden; }
.amenity-img img { width: 100%; height: 100%; object-fit: cover; }
.amenity-img-1 { aspect-ratio: 4/5; margin-bottom: 1rem; }
.amenity-img-2 { aspect-ratio: 4/3; }

/* ===== LOCATION ===== */
.location {
  padding: 7rem 0;
  background: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.location-details { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.location-detail { display: flex; gap: 1rem; align-items: flex-start; }
.location-detail svg { flex-shrink: 0; margin-top: 0.125rem; }
.location-detail strong { display: block; font-size: 0.875rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.location-detail span { font-size: 0.9375rem; color: #4a4a4a; line-height: 1.6; }
.location-detail a { color: #064e3b; text-decoration: underline; text-underline-offset: 3px; }
.location-detail a:hover { color: #043828; }
.location-map { border-radius: 20px; overflow: hidden; min-height: 400px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

/* ===== CTA ===== */
.cta { padding: 7rem 0; }
.cta-card {
  background: #064e3b;
  border-radius: 32px;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(245,240,232,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 90% 10%, rgba(245,240,232,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-eyebrow { color: rgba(245,240,232,0.6); }
.cta-headline { color: #f5f0e8; margin-bottom: 1.25rem; }
.cta-desc { font-size: 1.125rem; color: rgba(245,240,232,0.75); line-height: 1.75; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #0a2e20;
  color: #f5f0e8;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #f5f0e8;
}
.footer-logo-icon { width: 36px; height: 36px; }
.footer-tagline { font-size: 0.9375rem; color: rgba(245,240,232,0.6); line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}
.footer-links ul, .footer-contact ul { display: grid; gap: 0.625rem; }
.footer-links a, .footer-contact a {
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #f5f0e8; }
.footer-contact li { font-size: 0.9375rem; color: rgba(245,240,232,0.7); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.35);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #f7f3eb;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { order: -1; }
  .hero { padding: 7rem 0 3rem; }
  .hero-card-content { padding: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-image { aspect-ratio: 16/10; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .amenities-layout { grid-template-columns: 1fr; }
  .amenities-image-stack { order: -1; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .cta-card { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 1.25rem 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
