/* ── 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: 300;
  color: #1a2e28;
  background: #fefdf8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }

/* ── Navigation ── */
.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, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(254, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(6, 95, 70, 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;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fefdf8;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #065f46; }
.nav-logo-icon { color: inherit; }
.nav-logo-text { letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.8);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-link { color: #1a2e28; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
  padding: 8px 20px;
  border: 1px solid rgba(254, 253, 248, 0.4);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav.scrolled .nav-link--cta {
  border-color: #065f46;
  color: #065f46;
}
.nav-link--cta:hover {
  background: #065f46;
  color: #fefdf8;
  border-color: #065f46;
}
.nav.scrolled .nav-link--cta:hover { background: #065f46; color: #fefdf8; }

/* Nav toggle */
.nav-toggle {
  display: none;
  color: #fefdf8;
  padding: 4px;
  transition: color 0.3s;
}
.nav.scrolled .nav-toggle { color: #065f46; }
.nav-toggle-top, .nav-toggle-mid, .nav-toggle-bot { transition: all 0.3s; }
.nav-toggle.active .nav-toggle-top { transform: translateY(4px) rotate(45deg); }
.nav-toggle.active .nav-toggle-mid { opacity: 0; }
.nav-toggle.active .nav-toggle-bot { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #1a2e28;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mobile-menu-link:hover { color: #065f46; }
.mobile-menu-link--cta {
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid #065f46;
  border-radius: 100px;
  color: #065f46;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/14025911/pexels-photo-14025911.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.82) 0%, rgba(6, 95, 70, 0.65) 50%, rgba(4, 60, 44, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.65);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fefdf8;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-headline-accent {
  font-style: italic;
  font-weight: 300;
  color: #a7f3d0;
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(254, 253, 248, 0.78);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.btn--primary {
  background: #fefdf8;
  color: #065f46;
}
.btn--primary:hover { background: #d1fae5; transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid rgba(254, 253, 248, 0.35);
  color: #fefdf8;
}
.btn--ghost:hover { border-color: rgba(254, 253, 248, 0.7); background: rgba(254, 253, 248, 0.08); }
.btn--outline {
  border: 1px solid #065f46;
  color: #065f46;
}
.btn--outline:hover { background: #065f46; color: #fefdf8; }
.btn--full { width: 100%; justify-content: center; }

/* Stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background: rgba(254, 253, 248, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 253, 248, 0.15);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s, transform 0.3s;
}
.stat-card:hover { background: rgba(254, 253, 248, 0.16); transform: translateY(-2px); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #a7f3d0;
  line-height: 1;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(254, 253, 248, 0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { max-width: 320px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; max-width: none; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ── Section Divider ── */
.section-divider {
  color: #fefdf8;
  display: block;
}
.section-divider-dark { color: #faf3e0; }

/* ── Section Shared ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #1a2e28;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a6358;
  font-weight: 300;
}

/* ── Rooms ── */
.rooms { background: #fefdf8; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: #fdf9ef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(6, 95, 70, 0.1); }
.room-card-img { overflow: hidden; aspect-ratio: 3/2; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-card-img img { transform: scale(1.04); }
.room-card-body { padding: 28px; }
.room-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #1a2e28;
  margin-bottom: 8px;
}
.room-card-desc {
  font-size: 0.875rem;
  color: #4a6358;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.room-card-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.room-card-amenities li {
  font-size: 0.75rem;
  color: #065f46;
  letter-spacing: 0.04em;
  padding: 4px 0;
  position: relative;
  padding-left: 12px;
}
.room-card-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #34d399;
}

@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* ── Dining ── */
.dining { background: #faf3e0; }
.dining-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dining-text .section-eyebrow { text-align: left; }
.dining-text .section-title { text-align: left; }
.dining-text .section-desc { text-align: left; margin-bottom: 32px; }
.dining-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.dining-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #1a2e28;
  font-weight: 300;
}
.dining-highlight svg { color: #065f46; flex-shrink: 0; }
.dining-images { position: relative; }
.dining-img-main { border-radius: 12px; overflow: hidden; }
.dining-img-main img { width: 100%; height: 100%; object-fit: cover; }
.dining-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6, 95, 70, 0.15);
  border: 4px solid #faf3e0;
}
.dining-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .dining-layout { grid-template-columns: 1fr; gap: 48px; }
  .dining-img-secondary { right: 0; }
}

/* ── About ── */
.about { background: #fefdf8; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image { border-radius: 12px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #4a6358;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 95, 70, 0.12);
}
.about-signature-line {
  width: 48px;
  height: 1px;
  background: #065f46;
  flex-shrink: 0;
}
.about-signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: #065f46;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Location ── */
.location { background: #fdf9ef; }
.location-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.location-detail svg { color: #065f46; flex-shrink: 0; margin-top: 2px; }
.location-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 4px;
}
.location-detail-value {
  font-size: 0.9375rem;
  color: #1a2e28;
  font-weight: 300;
  line-height: 1.6;
}
.location-detail-value a { color: #065f46; text-decoration: none; border-bottom: 1px solid rgba(6, 95, 70, 0.2); transition: border-color 0.3s; }
.location-detail-value a:hover { border-color: #065f46; }
.location-map { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(6, 95, 70, 0.08); }

@media (max-width: 768px) {
  .location-layout { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.contact { background: #fefdf8; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-eyebrow { text-align: left; }
.contact-text .section-title { text-align: left; margin-bottom: 16px; }
.contact-text .section-desc { text-align: left; margin-bottom: 32px; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #065f46;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 95, 70, 0.1);
  transition: border-color 0.3s, padding-left 0.3s;
}
.contact-direct-link:hover { border-color: #065f46; padding-left: 8px; }
.contact-direct-link svg { color: #065f46; flex-shrink: 0; }

/* Form */
.contact-form-wrap { background: #fdf9ef; border-radius: 16px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(6, 95, 70, 0.2);
  border-radius: 8px;
  background: #fefdf8;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #1a2e28;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #a0b8ae; }
.form-input:focus, .form-textarea:focus { border-color: #065f46; box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}
.form-success-text {
  font-size: 0.9375rem;
  color: #065f46;
  font-weight: 400;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
}

/* ── Footer ── */
.footer {
  background: #064e3b;
  color: rgba(254, 253, 248, 0.7);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(254, 253, 248, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fefdf8;
}
.footer-logo svg { color: #a7f3d0; }
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.45);
  margin-top: 4px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #a7f3d0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  font-size: 0.8125rem;
  color: rgba(254, 253, 248, 0.4);
}
.footer-bottom a { color: rgba(254, 253, 248, 0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: #a7f3d0; }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
