/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream:       #fefdf4;
  --cream-dark:  #f5f0e1;
  --sand:        #f0ebe0;
  --sand-dark:   #e5dfd3;
  --text:        #1a2e23;
  --text-light:  #4a6354;
  --text-muted:  #7a9484;
  --white:       #ffffff;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --shadow-sm:   0 2px 8px rgba(6, 78, 59, 0.06);
  --shadow-md:   0 8px 30px rgba(6, 78, 59, 0.10);
  --shadow-lg:   0 16px 50px rgba(6, 78, 59, 0.14);
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Nunito', system-ui, sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(254, 253, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--emerald-800);
  font-weight: 400;
}

.nav-logo-icon {
  color: var(--emerald-700);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--emerald-800);
  background: var(--emerald-50);
}

.nav-cta {
  background: var(--emerald-700) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--emerald-800) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    var(--emerald-900) 0%,
    var(--emerald-700) 35%,
    var(--emerald-600) 55%,
    var(--emerald-500) 75%,
    #34d399 100%
  );
  z-index: 0;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(6, 78, 59, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(16, 185, 129, 0.4) 0%, transparent 50%);
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-100);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--emerald-100);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(254, 253, 244, 0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(254, 253, 244, 0.8);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(254, 253, 244, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  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-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(254, 253, 244, 0.4);
}

.btn-ghost:hover {
  background: rgba(254, 253, 244, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--emerald-700);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== ROOMS ===== */
.rooms {
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.room-card {
  background: var(--white);
  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 {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.room-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-card-body {
  padding: 28px 28px 32px;
}

.room-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald-700);
  background: var(--emerald-50);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--sand);
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.exp-images {
  position: relative;
}

.exp-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exp-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.exp-img-stack {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-img-stack img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--sand);
}

.exp-text {
  padding-top: 40px;
}

.exp-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 40px;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.exp-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.exp-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--emerald-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
}

.exp-feature h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.exp-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== LOCATION ===== */
.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.location-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--emerald-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
}

.location-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.location-card p,
.location-card a {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.location-card a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

.location-distances {
  background: var(--emerald-800);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  color: var(--white);
}

.location-distances h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--emerald-100);
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(254, 253, 244, 0.15);
  font-size: 0.95rem;
}

.distance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.distance-val {
  font-weight: 700;
  color: var(--emerald-100);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card-quote {
  color: var(--emerald-300, #6ee7b7);
  margin-bottom: 16px;
  line-height: 1;
}

.review-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  background: var(--emerald-100);
  color: var(--emerald-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.review-author-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta {
  background: var(--cream);
  padding-bottom: 60px;
}

.cta-card {
  background: linear-gradient(145deg, var(--emerald-800), var(--emerald-700));
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254, 253, 244, 0.08), transparent 70%);
  border-radius: 50%;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text .section-eyebrow {
  color: var(--emerald-100);
}

.cta-text .section-title {
  color: var(--white);
}

.cta-text .section-title em {
  color: var(--emerald-100);
}

.cta-body {
  font-size: 1.05rem;
  color: rgba(254, 253, 244, 0.8);
  line-height: 1.8;
  margin-top: 16px;
}

.cta-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--emerald-100);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(254, 253, 244, 0.2);
  background: rgba(254, 253, 244, 0.1);
  color: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(254, 253, 244, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-100);
  background: rgba(254, 253, 244, 0.15);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--emerald-800);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(254, 253, 244, 0.6);
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(254, 253, 244, 0.15);
  border: 1px solid rgba(254, 253, 244, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--emerald-100);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--emerald-900);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(254, 253, 244, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  color: var(--white);
}

.footer-logo-icon {
  color: var(--emerald-100);
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-100);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 0.92rem;
  color: rgba(254, 253, 244, 0.7);
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(254, 253, 244, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 244, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(254, 253, 244, 0.5);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .exp-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-img-main img {
    height: 380px;
  }

  .exp-img-stack {
    right: 0;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 80px;
    min-height: 100svh;
  }

  .hero-trust {
    gap: 16px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .exp-img-stack {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .exp-img-stack img {
    width: 100%;
    height: 180px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 36px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 78, 59, 0.4);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
