/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2D1F14;
  background: #FDF6EE;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --sand-dark: #C4A882;
  --cream: #FDF6EE;
  --charcoal: #2D1F14;
  --warm-gray: #6B5B4E;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(45,31,20,0.08);
  --shadow-lg: 0 12px 48px rgba(45,31,20,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--warm-gray); }

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

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--terracotta);
  background: rgba(192,96,58,0.1); border: 1px solid rgba(192,96,58,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 100px;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 16px rgba(192,96,58,0.35);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.4); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 2px solid rgba(45,31,20,0.2);
}
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-white {
  background: var(--white); color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,246,238,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,31,20,0.06);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(253,246,238,0.95); box-shadow: var(--shadow); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--charcoal); }
.logo--light { color: var(--white); }
.logo-icon { color: var(--terracotta); }
.logo--light .logo-icon { color: var(--sand); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: var(--warm-gray); transition: var(--transition); }
.nav-links a:hover { color: var(--terracotta); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle { position: absolute; border-radius: 50%; }
.geo-circle--1 { width: 600px; height: 600px; background: rgba(192,96,58,0.06); top: -150px; right: -100px; }
.geo-circle--2 { width: 350px; height: 350px; background: rgba(232,213,192,0.5); bottom: -80px; left: -60px; }
.geo-tri { position: absolute; }
.geo-tri--1 { width: 0; height: 0; border-left: 120px solid transparent; border-right: 120px solid transparent; border-bottom: 200px solid rgba(192,96,58,0.07); top: 20%; left: 5%; transform: rotate(-15deg); }
.geo-tri--2 { width: 0; height: 0; border-left: 80px solid transparent; border-right: 80px solid transparent; border-bottom: 140px solid rgba(232,213,192,0.6); bottom: 15%; right: 10%; transform: rotate(20deg); }
.geo-dots {
  position: absolute; bottom: 20%; left: 8%;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--sand-dark) 2px, transparent 2px);
  background-size: 16px 16px; opacity: 0.5;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--terracotta);
  background: rgba(192,96,58,0.1); border: 1px solid rgba(192,96,58,0.2);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title { margin-bottom: 20px; }
.text-accent { color: var(--terracotta); }
.hero-subtitle { font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Floating Stat Cards */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.stat-card--1 .stat-card-accent { background: var(--terracotta); }
.stat-card--2 .stat-card-accent { background: var(--sand-dark); }
.stat-card--3 .stat-card-accent { background: var(--terracotta-light); }
.stat-card--4 .stat-card-accent { background: var(--charcoal); }
.stat-number { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 6px; }
.stat-unit { font-size: 1rem; font-weight: 500; color: var(--warm-gray); }
.stat-label { font-size: 0.85rem; color: var(--warm-gray); }

/* ─── LODGING ─── */
.lodging { background: var(--cream); }
.lodging-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lodging-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.lodging-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.lodging-card-img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.lodging-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lodging-card:hover .lodging-card-img img { transform: scale(1.05); }
.lodging-card-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--white);
  background: var(--terracotta); padding: 5px 12px; border-radius: 100px;
}
.lodging-card-tag--alt { background: var(--charcoal); }
.lodging-card-content { padding: 28px; }
.lodging-card-content h3 { margin-bottom: 12px; }
.lodging-card-content p { font-size: 0.95rem; margin-bottom: 20px; }
.amenities-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.amenities-list li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--warm-gray);
  background: var(--sand-light); padding: 6px 12px; border-radius: 100px;
}
.amenities-list li svg { color: var(--terracotta); flex-shrink: 0; }

/* ─── EXPERIENCE ─── */
.experience { background: var(--sand-light); }
.experience-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.experience-text .section-desc { margin-bottom: 36px; }
.experience-features { display: flex; flex-direction: column; gap: 28px; }
.exp-feature { display: flex; gap: 20px; }
.exp-feature-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: var(--radius-sm);
  color: var(--terracotta); box-shadow: var(--shadow);
}
.exp-feature h4 { margin-bottom: 4px; }
.exp-feature p { font-size: 0.9rem; }

/* Visual Stack */
.visual-stack { position: relative; height: 100%; min-height: 520px; }
.visual-stack-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.visual-stack-img--1 { position: absolute; top: 0; left: 0; width: 70%; }
.visual-stack-img--1 img { width: 100%; height: 100%; object-fit: cover; }
.visual-stack-img--2 { position: absolute; bottom: 0; right: 0; width: 65%; }
.visual-stack-img--2 img { width: 100%; height: 100%; object-fit: cover; }
.visual-stack-accent {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--terracotta); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(192,96,58,0.4); z-index: 2;
}
.visual-stack-accent svg { color: var(--white); width: 48px; height: 48px; }

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -30px; right: -20px;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -20px; left: -10px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terracotta); color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.85rem;
  padding: 10px 18px; border-radius: 100px; box-shadow: 0 4px 16px rgba(192,96,58,0.4);
}
.about-body { margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin-top: 36px; }
.about-stat { text-align: left; }
.about-stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); }
.about-stat-val { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.about-stat-desc { font-size: 0.85rem; color: var(--warm-gray); }

/* ─── GALLERY ─── */
.gallery { background: var(--sand-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,31,20,0.6), transparent);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.gallery-item--wide { grid-column: span 8; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 4; }
.gallery-item { aspect-ratio: 4/3; }

/* ─── CTA ─── */
.cta {
  position: relative; padding: 120px 0; overflow: hidden;
  background: var(--terracotta);
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape--1 { width: 400px; height: 400px; background: rgba(255,255,255,0.05); top: -100px; right: -100px; }
.cta-shape--2 { width: 250px; height: 250px; background: rgba(255,255,255,0.04); bottom: -60px; left: -40px; }
.cta-shape--3 { width: 100px; height: 100px; background: rgba(232,213,192,0.15); top: 30%; left: 15%; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.cta-text { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ─── CONTACT ─── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-desc { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand-light); border-radius: var(--radius-sm);
  color: var(--terracotta);
}
.contact-detail strong { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 0.95rem; color: var(--warm-gray); }
.contact-detail a:hover { color: var(--terracotta); }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--sand);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--charcoal); background: var(--cream);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terracotta); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center; padding: 40px 20px;
  color: var(--terracotta);
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 { color: var(--charcoal); margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }

/* ─── FOOTER ─── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-links h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--sand); }
.footer-links span { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ─── ANIMATIONS ─── */
.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: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { max-width: 480px; }
  .lodging-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-layout { grid-template-columns: 1fr; gap: 40px; }
  .visual-stack { min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,246,238,0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 32px 24px; gap: 20px;
    transform: translateY(-120%); transition: var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .lodging-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .about-img-float { right: 10px; bottom: -20px; }
  .about-stats { flex-wrap: wrap; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .contact-form-wrap { padding: 24px; }
}
