/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,252,250,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,90,61,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(45,90,61,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Crimson Pro', serif; font-size: 1.15rem; font-weight: 600; color: #2D5A3D; letter-spacing: -0.01em; }
.nav-logo { width: 22px; height: 22px; color: #2D5A3D; }
.nav-brand-text { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.8125rem; font-weight: 400; color: #4a5a4c; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: #2D5A3D; }
.nav-cta {
  font-size: 0.8125rem; font-weight: 500; color: #2D5A3D !important;
  border: 1px solid rgba(45,90,61,0.25); border-radius: 100px;
  padding: 7px 16px; transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover { background: #2D5A3D; color: #FDFCFA !important; border-color: #2D5A3D; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-line { display: block; width: 20px; height: 1.5px; background: #2D5A3D; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active .nav-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active .nav-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 100px 24px 64px;
  background: #FDFCFA;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,90,61,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6a9e6a; margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300; line-height: 1.2;
  color: #1c3a26; letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 540px;
}
.hero-sub {
  font-size: 1rem; line-height: 1.75; color: #5a6b5c;
  max-width: 440px; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 400;
  padding: 13px 28px; border-radius: 100px;
  transition: all 0.25s ease; letter-spacing: 0.01em;
}
.btn-primary {
  background: #2D5A3D; color: #FDFCFA;
  border: 1px solid #2D5A3D;
}
.btn-primary:hover { background: #244a31; border-color: #244a31; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(45,90,61,0.2); }
.btn-outline {
  background: transparent; color: #2D5A3D;
  border: 1px solid rgba(45,90,61,0.25);
}
.btn-outline:hover { border-color: #2D5A3D; background: rgba(45,90,61,0.04); }
.btn-full { width: 100%; justify-content: center; }

/* Hero visual */
.hero-visual { position: relative; height: 520px; }
.hero-card-main {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(45,90,61,0.12);
  width: 100%; height: 420px;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute; background: #FDFCFA;
  border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(45,90,61,0.1);
  border: 1px solid rgba(45,90,61,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-card-1 { bottom: 20px; left: -24px; }
.hero-card-2 { top: 0; right: -16px; }
.fc-number { font-family: 'Crimson Pro', serif; font-size: 1.5rem; font-weight: 600; color: #2D5A3D; line-height: 1; }
.fc-label { font-size: 0.75rem; color: #6b7c6d; line-height: 1.4; }

/* ── Section shared ── */
.section { padding: 112px 24px; }
.section-dark { background: #1c3a26; }
.section-accent { background: #2D5A3D; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6a9e6a; margin-bottom: 16px;
}
.section-eyebrow-light { color: rgba(253,252,250,0.5); }
.section-title {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300; line-height: 1.2;
  color: #1c3a26; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title-light { color: #FDFCFA; }
.section-desc {
  font-size: 1rem; line-height: 1.8; color: #5a6b5c;
  max-width: 520px; font-weight: 300;
}
.section-desc-light { color: rgba(253,252,250,0.65); }

/* ── Rooms ── */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.room-card {
  background: #F2EDE4; border-radius: 16px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(45,90,61,0.1); }
.room-img { height: 240px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.04); }
.room-body { padding: 28px; }
.room-name {
  font-family: 'Crimson Pro', serif;
  font-size: 1.375rem; font-weight: 600; color: #1c3a26;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.room-desc { font-size: 0.875rem; line-height: 1.7; color: #5a6b5c; margin-bottom: 20px; font-weight: 300; }
.room-amenities { display: flex; flex-direction: column; gap: 6px; }
.room-amenities li {
  font-size: 0.8125rem; color: #6a9e6a;
  padding-left: 16px; position: relative;
}
.room-amenities li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: #6a9e6a;
}

/* ── Location ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-visual { border-radius: 16px; overflow: hidden; height: 520px; }
.location-visual img { width: 100%; height: 100%; object-fit: cover; }
.location-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.loc-feat { display: flex; align-items: flex-start; gap: 16px; }
.loc-feat svg { width: 20px; height: 20px; color: #6a9e6a; flex-shrink: 0; margin-top: 2px; }
.loc-feat span { font-size: 0.9375rem; color: rgba(253,252,250,0.8); line-height: 1.5; font-weight: 300; }

/* ── Experience ── */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.exp-card {
  background: #F2EDE4; border-radius: 16px; padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45,90,61,0.08); border-color: rgba(45,90,61,0.1); }
.exp-icon { width: 40px; height: 40px; margin-bottom: 20px; color: #2D5A3D; }
.exp-icon svg { width: 100%; height: 100%; }
.exp-name {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1875rem; font-weight: 600; color: #1c3a26;
  margin-bottom: 10px;
}
.exp-desc { font-size: 0.8125rem; line-height: 1.75; color: #5a6b5c; font-weight: 300; }

/* ── Why ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-stats { display: flex; flex-direction: column; gap: 24px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item {
  background: rgba(253,252,250,0.08);
  border: 1px solid rgba(253,252,250,0.12);
  border-radius: 16px; padding: 28px 24px;
}
.stat-num {
  display: block; font-family: 'Crimson Pro', serif;
  font-size: 1.75rem; font-weight: 600; color: #FDFCFA;
  line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.8125rem; color: rgba(253,252,250,0.55); line-height: 1.4; font-weight: 300; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row svg { width: 20px; height: 20px; color: #6a9e6a; flex-shrink: 0; margin-top: 3px; }
.contact-row-label { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #8a9a8c; margin-bottom: 4px; }
.contact-row-value { font-size: 0.9375rem; color: #2D5A3D; font-weight: 400; }
.contact-row-link { font-size: 0.9375rem; color: #2D5A3D; font-weight: 400; border-bottom: 1px solid rgba(45,90,61,0.2); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-row-link:hover { border-color: #2D5A3D; }

/* Form */
.contact-form-wrap { background: #F2EDE4; border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7c6d; margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(45,90,61,0.15); border-radius: 10px;
  background: #FDFCFA; font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; color: #1c3a26;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; resize: vertical;
}
.form-input::placeholder, .form-textarea::placeholder { color: #a0b0a2; }
.form-input:focus, .form-textarea:focus { border-color: #2D5A3D; box-shadow: 0 0 0 3px rgba(45,90,61,0.08); }
.form-textarea { min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px; border-radius: 10px;
  background: rgba(45,90,61,0.06); color: #2D5A3D;
  font-size: 0.875rem;
}
.form-success svg { width: 20px; height: 20px; color: #2D5A3D; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: #142a1c; padding: 64px 24px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem; font-weight: 600; color: #FDFCFA;
  display: block; margin-bottom: 12px;
}
.footer-tagline { font-size: 0.875rem; color: rgba(253,252,250,0.4); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-label {
  display: block; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(253,252,250,0.3); margin-bottom: 16px;
}
.footer-links-group { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.875rem; color: rgba(253,252,250,0.55); font-weight: 300; transition: color 0.2s; }
.footer-links-group a:hover { color: #FDFCFA; }
.footer-links-group span { font-size: 0.875rem; color: rgba(253,252,250,0.4); line-height: 1.7; font-weight: 300; }
.footer-bottom {
  border-top: 1px solid rgba(253,252,250,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(253,252,250,0.25); font-weight: 300;
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 400px; order: -1; }
  .hero-headline { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-visual { height: 360px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(253,252,250,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 28px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.125rem; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 24px 64px; }
  .hero-visual { height: 300px; }
  .hero-card-float { display: none; }
  .room-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .section { padding: 72px 20px; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
