/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3B1F4D;
  background: #FFFAF8;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D1535;
}

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9B59B0;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section__desc {
  font-size: 1.1rem;
  color: #5D3A6B;
  max-width: 600px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #8E44AD 0%, #7B3F8E 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 63, 142, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 63, 142, 0.45);
}
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 63, 142, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(123, 63, 142, 0.1); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2D1535;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5D3A6B;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav__link:hover { color: #7B3F8E; background: rgba(123, 63, 142, 0.06); }
.nav__link--cta {
  background: linear-gradient(135deg, #8E44AD 0%, #7B3F8E 100%);
  color: #fff;
  margin-left: 8px;
}
.nav__link--cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle-line {
  display: block;
  height: 2px;
  background: #3B1F4D;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) 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(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FDF2FF 50%, #FFFAF0 100%);
  overflow: hidden;
}
.hero__split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9B59B0;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #2D1535;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__desc {
  font-size: 1.15rem;
  color: #5D3A6B;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5D3A6B;
}
.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: #B45309;
  flex-shrink: 0;
}
.hero__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 640/720;
  box-shadow: 0 32px 80px rgba(123, 63, 142, 0.15);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-accent {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

/* ===== LODGING CARDS ===== */
.lodging {
  background: #FFFAF8;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__desc { margin: 0 auto; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(123, 63, 142, 0.07);
  transition: all 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123, 63, 142, 0.14);
}
.card__img-wrap {
  overflow: hidden;
  aspect-ratio: 480/320;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.05); }
.card__body { padding: 28px; }
.card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2D1535;
}
.card__body-text {
  font-size: 0.95rem;
  color: #5D3A6B;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card__features li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: #FDF2FF;
  color: #7B3F8E;
}

/* ===== CAMPING HIGHLIGHT ===== */
.camping-highlight {
  background: linear-gradient(135deg, #2D1535 0%, #4A1F5C 100%);
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 640/560;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D8B4E2;
  margin-bottom: 16px;
}
.split__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
}
.split__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}
.camping__list { display: flex; flex-direction: column; gap: 14px; }
.camping__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.camping__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #FDE68A;
}

/* ===== AMENITIES ===== */
.amenities {
  background: linear-gradient(180deg, #FFFAF8 0%, #FFF5F7 100%);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.amenity {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(123, 63, 142, 0.06);
  transition: all 0.35s ease;
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 63, 142, 0.12);
}
.amenity__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.amenity__icon svg { width: 28px; height: 28px; }
.amenity__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #2D1535;
}
.amenity__body {
  font-size: 0.92rem;
  color: #5D3A6B;
  line-height: 1.7;
}

/* ===== LOCATION ===== */
.location {
  background: #FFFAF8;
}
.location__info {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #5D3A6B;
}
.location__row svg { width: 20px; height: 20px; flex-shrink: 0; }
.location__row a {
  color: #7B3F8E;
  font-weight: 600;
  transition: color 0.2s;
}
.location__row a:hover { color: #9B59B0; }
.location__map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(123, 63, 142, 0.1); }

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #FDF2FF 0%, #FFF5F7 50%, #FFFAF0 100%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__text { max-width: 440px; }
.contact__form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(123, 63, 142, 0.08);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group--full { grid-column: 1 / -1; }
.form__group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2D1535;
  letter-spacing: 0.03em;
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #3B1F4D;
  background: #FFFAF8;
  border: 1.5px solid #E9D5FF;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: #9B59B0;
  box-shadow: 0 0 0 3px rgba(155, 89, 176, 0.12);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #166534;
}
.form__success svg { width: 48px; height: 48px; }
.form__success p { font-size: 1.05rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: #2D1535;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer__logo-icon { width: 28px; height: 28px; }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer__contact a {
  color: #D8B4E2;
  transition: color 0.2s;
}
.footer__contact a:hover { color: #fff; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: #D8B4E2; }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__split,
  .split,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image { max-width: 500px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(123, 63, 142, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { width: 100%; text-align: center; padding: 12px; }
  .nav__link--cta { margin-left: 0; margin-top: 8px; }
  .nav__toggle { display: flex; }
  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero__title { font-size: 2.2rem; }
  .hero__trust { gap: 16px; }
  .cards { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
