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

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

/* ── Scroll Reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ─────────────────────────────────── */
#site-header {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
  background: rgba(16, 26, 14, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ────────────────────────────────── */
.mobile-link { transition: opacity 0.3s ease; }
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu.closed { opacity: 0; pointer-events: none; }

/* ── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #f5f3ed;
  color: #1f311c;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #ebe7db;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #f5f3ed;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid rgba(245,243,237,0.3);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(245,243,237,0.1);
  border-color: rgba(245,243,237,0.6);
  transform: translateY(-1px);
}
.btn-nav {
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-nav:hover {
  transform: translateY(-1px);
}

/* ── Section Labels & Titles ────────────────────── */
.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a7a44;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: #1f311c;
}

/* ── Fishing Cards ──────────────────────────────── */
.fish-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.fish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

/* ── Lodge Features ─────────────────────────────── */
.lodge-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2d4a28;
  padding: 8px 0;
}

/* ── Testimonial Cards ──────────────────────────── */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* ── Form Inputs ────────────────────────────────── */
.input-field {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  color: #f5f3ed;
  font-size: 0.9375rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.input-field::placeholder { color: rgba(245,243,237,0.3); }
.input-field:focus {
  border-color: rgba(149,190,143,0.6);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(149,190,143,0.15);
}
select.input-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,243,237,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  appearance: none;
}
select.input-field option { background: #1f311c; color: #f5f3ed; }
.input-field option { background: #1f311c; color: #f5f3ed; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767px) {
  .hero-headline { font-size: 2.75rem; }
  .section-title { font-size: 2rem; }
}
