/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.revealed { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── NAV ─── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease;
}
.nav-scrolled .nav-bg {
  background: rgba(8, 26, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #f9ddd3;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.btn-cta-nav {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: #d94f1e;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-cta-nav:hover { background: #b83c12; transform: translateY(-1px); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 26, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-link { text-decoration: none; border-color: rgba(255,255,255,0.1) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/7746071/pexels-photo-7746071.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 26, 15, 0.55) 0%,
    rgba(8, 26, 15, 0.45) 40%,
    rgba(8, 26, 15, 0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 6rem;
  width: 100%;
}
.hero-inner { padding-top: 6rem; max-width: 820px; }
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-tag-line {
  width: 48px;
  height: 2px;
  background: #d94f1e;
  flex-shrink: 0;
}
.hero-tag-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5e9cc;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.02;
  color: #fdfbf7;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-accent {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #f9ddd3;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: #e3efe7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #d94f1e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(217, 79, 30, 0.35);
}
.btn-primary:hover { background: #b83c12; box-shadow: 0 6px 28px rgba(217, 79, 30, 0.45); }
.btn-outline-light {
  background: transparent;
  color: #fdfbf7;
  border: 1.5px solid rgba(253, 251, 247, 0.4);
}
.btn-outline-light:hover { background: rgba(253, 251, 247, 0.1); border-color: rgba(253, 251, 247, 0.7); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253,251,247,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.5);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTIONS ─── */
section { padding: 7rem 0; }
.section-intro { background: #fdfbf7; }
.section-sites { background: #f5e9cc; }
.section-store { background: transparent; padding: 0; }
.section-area { background: #fdfbf7; }
.section-testimonial {
  background: #081a0f;
  padding: 6rem 0;
}
.section-contact { background: #fdfbf7; }
.section-map { background: #e3efe7; padding: 0 0 7rem; }
.footer {
  background: #081a0f;
  padding: 0 0 2rem;
}

/* ─── LABELS ─── */
.label-terracotta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d94f1e;
  margin-bottom: 0.75rem;
}
.label-sand {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e6c77e;
  margin-bottom: 0.75rem;
}

/* ─── CARD SITE ─── */
.card-site {
  background: #fdfbf7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(24, 49, 34, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-site:hover { transform: translateY(-6px); box-shadow: 0 12px 56px rgba(24, 49, 34, 0.14); }
.card-site-img { position: relative; overflow: hidden; }
.card-site-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s ease; }
.card-site:hover .card-site-img img { transform: scale(1.05); }
.card-site-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #d94f1e;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
}
.card-site-badge-rv { background: #2d6140; }
.card-site-body { padding: 2rem; }

/* ─── STORE ─── */
.store-img-wrap { overflow: hidden; border-radius: 0; }
.store-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }

/* ─── CARD ATTRACTION ─── */
.card-attraction {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(24, 49, 34, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-attraction:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(24, 49, 34, 0.12); }
.card-attraction-img img { width: 100%; height: 220px; object-fit: cover; }
.card-attraction-body { padding: 1.5rem; }

/* ─── CONTACT FORM ─── */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(24, 49, 34, 0.08);
}
.contact-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e3dfcc;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #183122;
  background: #fdfbf7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.contact-input:focus {
  border-color: #d94f1e;
  box-shadow: 0 0 0 3px rgba(217, 79, 30, 0.12);
}
.contact-input::placeholder { color: #9f762c; }
.contact-select { appearance: none; cursor: pointer; }
.contact-success {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .hero-inner { padding-top: 4rem; }
  .card-site-body { padding: 1.5rem; }
  .store-body { padding: 2rem !important; }
  .contact-form { padding: 1.5rem; }
}
