/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terra: #C2704E;
  --terra-dark: #A85A3A;
  --terra-light: #D4916F;
  --sand: #F5E6D3;
  --sand-light: #FBF5EE;
  --sand-dark: #E8D5C0;
  --cream: #FFF9F4;
  --brown: #5C3D2E;
  --brown-light: #7A5644;
  --text: #3D2B1F;
  --text-light: #6B5344;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(92, 61, 46, 0.08);
  --shadow-md: 0 4px 20px rgba(92, 61, 46, 0.12);
  --shadow-lg: 0 8px 40px rgba(92, 61, 46, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--brown); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(194, 112, 78, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(194, 112, 78, 0.35);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(194, 112, 78, 0.45);
}

.btn-outline-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--terra);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .logo { color: var(--brown); }

.logo-icon { color: currentColor; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav.scrolled .nav-links a { color: var(--text-light); }

.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.nav.scrolled .nav-links a:hover { background: var(--sand); color: var(--terra); }

.nav-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav.scrolled .nav-toggle { color: var(--brown); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(194, 112, 78, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245, 230, 211, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(168, 90, 58, 0.4) 0%, transparent 60%),
    linear-gradient(160deg, #8B4513 0%, #C2704E 35%, #E8A87C 60%, #F5D5C0 80%, #F5E6D3 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(194, 112, 78, 0.4);
}

.about-text .section-title { margin-top: 8px; }

.about-text > p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── Lodging ── */
.lodging {
  padding: 100px 0;
  background: var(--sand-light);
}

.lodging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.lodging-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.lodging-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.lodging-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.lodging-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lodging-card:hover .lodging-img img { transform: scale(1.05); }

.lodging-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lodging-body {
  padding: 28px;
}

.lodging-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.lodging-body > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.lodging-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.lodging-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.lodging-amenities li svg { color: var(--terra); flex-shrink: 0; }

/* ── Fishing ── */
.fishing {
  padding: 100px 0;
  background: var(--cream);
}

.fishing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fishing-content .section-title { margin-top: 8px; }

.fishing-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.fish-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.fish-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fish-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.fish-icon {
  flex-shrink: 0;
  color: var(--terra);
}

.fish-item strong {
  display: block;
  font-size: 1rem;
  color: var(--brown);
}

.fish-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.fishing-cta {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fishing-cta p {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.fishing-images {
  position: relative;
}

.fi-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fi-main img { width: 100%; height: 100%; object-fit: cover; }

.fi-secondary {
  position: absolute;
  bottom: -24px;
  left: -20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

/* ── Area ── */
.area {
  padding: 100px 0;
  background: var(--sand-light);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-card-img {
  height: 180px;
  overflow: hidden;
}

.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.area-card:hover .area-card-img img { transform: scale(1.05); }

.area-card h3 {
  font-size: 1.15rem;
  padding: 20px 20px 8px;
}

.area-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* ── Testimonial ── */
.testimonial {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--terra-dark) 100%);
}

.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-intro {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 4px;
}

.contact-item span, .contact-item a {
  font-size: 1rem;
  color: var(--text);
}

.contact-item a:hover { color: var(--terra); }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Form */
.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.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 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--sand-light);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(194, 112, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--terra);
}

.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p { color: var(--text-light); }

/* ── Footer ── */
.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 .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 280px; }

.footer-links strong,
.footer-contact strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--terra-light); }

.footer-contact p { font-size: 0.95rem; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--terra-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover { background: var(--sand) !important; color: var(--terra) !important; }

  .nav-toggle { display: flex; align-items: center; justify-content: center; z-index: 1001; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-overlay.show { opacity: 1; pointer-events: all; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .fishing-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lodging-grid { grid-template-columns: 1fr; max-width: 500px; margin-top: 40px; }
  .area-grid { grid-template-columns: 1fr 1fr; }

  .about-img-secondary { right: 16px; bottom: -20px; }
  .fi-secondary { left: 16px; bottom: -16px; }

  .fishing-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .about, .lodging, .fishing, .area, .contact { padding: 64px 0; }

  .area-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
