/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Geometric Blobs (background decoration) ── */
.geometric-blob {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}
.blob-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: #1B4332;
  border-radius: 50%;
}
.blob-2 {
  top: 40%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: #C1694F;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.blob-3 {
  bottom: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: #D4A373;
  border-radius: 50%;
}

/* ── Navigation ── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
.nav-header.scrolled {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.nav-logo-icon:hover { transform: rotate(-5deg) scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1B4332;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-link:hover { background: rgba(27, 67, 50, 0.08); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #1B4332;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta:hover { background: #2D6A4F; transform: translateY(-1px); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1B4332;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 252, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav { text-align: center; }
.mobile-nav-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B4332;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s ease;
}
.mobile-nav-link:hover { background: rgba(27, 67, 50, 0.06); }
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #1B4332;
  padding: 14px 28px;
  border-radius: 100px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 35%, #40916C 60%, #52B788 80%, #74C69D 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27, 67, 50, 0.6) 0%, transparent 70%);
}
.hero-shape {
  position: absolute;
  opacity: 0.12;
}
.hero-shape-1 {
  top: 8%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: #D4A373;
  border-radius: 50%;
  animation: float-slow 8s ease-in-out infinite;
}
.hero-shape-2 {
  top: 15%;
  right: -3%;
  width: 200px;
  height: 200px;
  background: #C1694F;
  transform: rotate(45deg);
  animation: float-slow 6s ease-in-out infinite reverse;
}
.hero-shape-3 {
  bottom: 12%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  animation: float-slow 7s ease-in-out infinite;
}
.hero-shape-4 {
  bottom: 25%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: #D4A373;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float-slow 5s ease-in-out infinite reverse;
}
.hero-shape-5 {
  top: 40%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: #fff;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: float-slow 9s ease-in-out infinite;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: #D4A373;
  position: relative;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #D4A373;
  color: #1B4332;
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.4);
}
.btn-primary:hover {
  background: #c49565;
  box-shadow: 0 8px 30px rgba(212, 163, 115, 0.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-dark {
  background: #1B4332;
  color: #fff;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
}
.btn-dark:hover {
  background: #2D6A4F;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.max-w-7xl { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C1694F;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #C1694F;
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #1B4332;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.1rem;
  color: #40916C;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Rooms ── */
.rooms { background: #FEFCF8; }
.rooms .section-desc { margin-bottom: 56px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.room-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 67, 50, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.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.06); }
.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #C1694F;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.room-card-tag-secondary { background: #1B4332; }
.room-card-body { padding: 28px; }
.room-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C1694F;
  margin-bottom: 8px;
}
.room-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1B4332;
  line-height: 1.3;
  margin-bottom: 12px;
}
.room-card-desc {
  font-size: 0.92rem;
  color: #40916C;
  line-height: 1.65;
  margin-bottom: 20px;
}
.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-card-amenities li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1B4332;
  background: #E8F5E9;
  padding: 6px 12px;
  border-radius: 100px;
}
.room-card-amenities li svg { stroke: #1B4332; }
.room-card-body .btn { width: 100%; justify-content: center; }

/* ── Experience ── */
.experience { background: #F5EDDE; }
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.experience-text .section-desc { margin-bottom: 40px; }
.experience-features { display: flex; flex-direction: column; gap: 24px; }
.exp-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.exp-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
}
.exp-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1B4332;
  margin-bottom: 4px;
}
.exp-feature-desc {
  font-size: 0.9rem;
  color: #40916C;
  line-height: 1.6;
}
.experience-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.exp-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: auto;
}
.exp-img-1 { grid-row: span 2; aspect-ratio: auto; }
.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-img-wrap:hover img { transform: scale(1.04); }

/* ── Location ── */
.location { background: #fff; }
.location-content { margin-bottom: 56px; }
.location-content .section-desc { margin-bottom: 40px; }
.location-details { display: flex; flex-direction: column; gap: 24px; }
.loc-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #F5EDDE;
  border-radius: 16px;
  transition: transform 0.25s ease;
}
.loc-detail:hover { transform: translateX(6px); }
.loc-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #1B4332;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A373;
}
.loc-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C1694F;
  margin-bottom: 4px;
}
.loc-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1B4332;
  line-height: 1.6;
}
.loc-detail-value a {
  color: #1B4332;
  border-bottom: 1px solid rgba(27, 67, 50, 0.2);
  transition: border-color 0.2s ease;
}
.loc-detail-value a:hover { border-color: #1B4332; }
.location-map { }
.map-placeholder {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.map-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(27, 67, 50, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(193, 105, 79, 0.08) 0%, transparent 50%);
}
.map-placeholder-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-pin-icon { margin-bottom: 8px; }
.map-address {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1B4332;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 60%, #40916C 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-shape {
  position: absolute;
  opacity: 0.08;
}
.cta-shape-1 {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: #D4A373;
  border-radius: 50%;
}
.cta-shape-2 {
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: #C1694F;
  transform: rotate(30deg);
}
.cta-shape-3 {
  top: 50%;
  left: 60%;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
}
.cta-section .section-desc { margin-bottom: 48px; }
.cta-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.form-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus {
  border-color: #D4A373;
  background: rgba(255,255,255,0.15);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: #1B4332; color: #fff; }
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.cta-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.success-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.success-text a {
  color: #D4A373;
  font-weight: 700;
  border-bottom: 1px solid rgba(212, 163, 115, 0.4);
}

/* ── Footer ── */
.footer {
  background: #0F2B1F;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A373;
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  line-height: 1.6;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations ── */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-image-grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp-img-1 { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 24px; }
  .experience-image-grid { grid-template-columns: 1fr; }
  .exp-img-1 { grid-row: span 1; }
  .location-details { gap: 16px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-placeholder { padding: 40px 24px; min-height: 240px; }
}
