/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3D2B1F;
  background: #FDF8F4;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ── Colors ── */
:root {
  --terracotta: #C4785A;
  --terracotta-dark: #A85E42;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --cream: #FDF8F4;
  --warm-white: #FFF9F5;
  --brown-dark: #3D2B1F;
  --brown-mid: #6B4C3B;
  --brown-light: #9C7A68;
  --overlay: rgba(61, 43, 31, 0.45);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 500; line-height: 1.2; color: var(--brown-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--brown-mid); }

/* ── Eyebrow ── */
.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-lead { font-size: 1.1rem; max-width: 640px; margin-bottom: 40px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,120,90,0.3); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--sand);
}
.btn-outline-light:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(61,43,31,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.4s ease;
}
.nav.scrolled .logo { color: var(--brown-dark); }
.logo-icon { width: 32px; height: 32px; color: rgba(255,255,255,0.9); transition: color 0.4s ease; }
.nav.scrolled .logo-icon { color: var(--terracotta); }
.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--brown-mid); }
.nav.scrolled .nav-links a:hover { color: var(--terracotta); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  transition: color 0.4s ease;
}
.nav.scrolled .nav-toggle { color: var(--brown-dark); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: 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(
    to bottom,
    rgba(61,43,31,0.35) 0%,
    rgba(61,43,31,0.2) 50%,
    rgba(61,43,31,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero-headline {
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bobble 2.4s ease-in-out infinite;
  color: rgba(255,255,255,0.6);
}
.hero-scroll svg { width: 24px; height: 24px; }
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── INTRO STRIP ── */
.intro {
  background: var(--warm-white);
  padding: 0;
  border-bottom: 1px solid var(--sand);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--sand);
  transition: background 0.3s ease;
}
.intro-item:last-child { border-right: none; }
.intro-item:hover { background: var(--sand-light); }
.intro-item svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.intro-item span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}

/* ── LODGING ── */
.lodging {
  padding: 100px 0;
  background: var(--cream);
}
.lodging .container { display: flex; flex-direction: column; align-items: flex-start; }
.lodging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  margin-bottom: 28px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61,43,31,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(61,43,31,0.12); }
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body {
  padding: 28px;
}
.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.card-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--brown-mid);
}
.lodging-note {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 24px;
  font-style: italic;
}
.lodging .btn { align-self: flex-start; }

/* ── LOCATION ── */
.location {
  padding: 100px 0;
  background: var(--warm-white);
}
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--brown-mid);
}
.location-list svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-list a {
  color: var(--terracotta);
  transition: color 0.3s ease;
}
.location-list a:hover { color: var(--terracotta-dark); text-decoration: underline; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,43,31,0.1);
  aspect-ratio: 4/3.3;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── ACTIVITIES ── */
.activities {
  padding: 100px 0;
  background: var(--cream);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.activity {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--sand-light);
}
.activity:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(61,43,31,0.08); }
.activity-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.activity-icon svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}
.activity h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.activity p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brown-mid);
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0 80px;
  background: var(--warm-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── TESTIMONIAL STRIP ── */
.testimonial-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
}
.testimonial-strip blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-strip svg {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.4);
  margin: 0 auto 24px;
}
.testimonial-strip p {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-strip footer {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 0;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--brown-mid);
}
.contact-info svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info a {
  color: var(--terracotta);
  transition: color 0.3s ease;
}
.contact-info a:hover { color: var(--terracotta-dark); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(61,43,31,0.07);
}
.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-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--brown-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,120,90,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--brown-light);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: #2e7d32;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  color: var(--sand);
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--sand); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lodging-grid,
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-split,
  .contact-split { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -8px 0 32px rgba(61,43,31,0.15);
    transition: right 0.4s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--brown-dark) !important;
    font-size: 1.05rem;
  }
  .nav-toggle { display: block; z-index: 101; }
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-item { border-right: none; border-bottom: 1px solid var(--sand); }
  .intro-item:nth-child(odd) { border-right: 1px solid var(--sand); }
  .intro-item:last-child { border-bottom: none; }
  .hero-content { padding-top: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .lodging-grid { grid-template-columns: 1fr; }
  .location-split,
  .contact-split { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none !important; border-bottom: 1px solid var(--sand); }
  .intro-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}

/* ── Mobile overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
