/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2B1F;
  background: #FDF6EE;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR TOKENS ===== */
:root {
  --terra: #C0603A;
  --terra-dark: #A04E2E;
  --terra-light: #E8A87C;
  --sand: #FDF6EE;
  --sand-dark: #F5E6D3;
  --brown: #3D2B1F;
  --brown-light: #6B4F3D;
  --green: #4A7C59;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(61,43,31,0.08);
  --shadow-lg: 0 8px 40px rgba(61,43,31,0.12);
  --transition: 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--brown); }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--brown-light); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }
.section-header.light .section-eyebrow { color: var(--terra-light); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.8); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--terra); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,0.1);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.2;
}
.logo-text { display: flex; flex-direction: column; }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-icon circle { fill: var(--terra-light); }
.logo-light .logo-icon path { fill: var(--brown); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--terra); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 4px;
  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;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.72) 0%, rgba(61,43,31,0.45) 50%, rgba(192,96,58,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section.accommodations { background: var(--sand); }
.section.why-us { background: var(--white); }
.section.location { background: var(--sand-dark); }
.section.gallery { background: var(--sand); }
.section.contact { background: var(--white); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; color: var(--brown-light); margin-bottom: 16px; }
.card-features { display: flex; flex-wrap: wrap; gap: 8px; }
.card-features li {
  background: var(--sand);
  color: var(--brown-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ===== WHY US — SPLIT ===== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img-main img { width: 100%; height: 100%; object-fit: cover; }
.split-img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.split-img-float img { width: 100%; height: 100%; object-fit: cover; }
.split-content { padding: 16px 0; }
.features-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; font-family: 'Nunito', sans-serif; }
.feature-item p { font-size: 0.9rem; color: var(--brown-light); }

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.location-map { border-radius: var(--radius); overflow: hidden; min-height: 400px; box-shadow: var(--shadow); }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.location-icon { flex-shrink: 0; padding-top: 2px; }
.location-detail strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.location-detail p, .location-detail a { font-size: 0.9rem; color: var(--brown-light); }
.location-detail a:hover { color: var(--terra); text-decoration: underline; }
.nearby-attractions {
  background: var(--terra);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  margin-top: 8px;
}
.nearby-attractions h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; font-family: 'Nunito', sans-serif; }
.nearby-attractions ul { display: flex; flex-direction: column; gap: 8px; }
.nearby-attractions li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.nearby-attractions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--terra-light);
  border-radius: 50%;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.95rem; }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: var(--brown-light); }
.contact-detail a:hover { color: var(--terra); text-decoration: underline; }
.contact-form-wrap {
  background: var(--sand);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(192,96,58,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--brown-light); text-align: center; margin-top: 12px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--brown-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-links h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-light);
  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(--terra-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--terra-light); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split-layout { gap: 40px; }
  .location-grid { gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,238,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(192,96,58,0.1);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .section { padding: 64px 0; }
  .split-layout { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split-img-float { right: 16px; bottom: -20px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
