/* ═══════════════════════════════════════════════════════════════
   FREECAST PATAGONIA — FULL-SERVICE PATAGONIA HUNTING OUTFITTER
   Senior Full-Stack Senior Architecture CSS (Large Prominent Logo)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Color Palette - Patagonia Hunting Luxury */
  --bg-dark: #070907;
  --bg-card: #0f1410;
  --bg-card-hover: #151c16;
  --bg-elevated: #18221a;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(194, 155, 98, 0.35);
  
  --text-primary: #f4f7f4;
  --text-secondary: #aab8ab;
  --text-muted: #728275;
  
  --accent-gold: #c29b62;
  --accent-gold-hover: #dcb378;
  --accent-gold-dim: rgba(194, 155, 98, 0.15);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 84px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.22;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.sub-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-padding {
  padding: 95px 5%;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 4.5%;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   CLEAN HEADER & PROMINENT LOGO
   ═══════════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  background: rgba(7, 9, 7, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

#main-nav.scrolled {
  height: 74px;
  background: rgba(5, 7, 5, 0.98);
  border-bottom-color: var(--border-accent);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

.nav-logo-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent-gold);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194, 155, 98, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.mobile-toggle {
  display: none;
  background: rgba(194, 155, 98, 0.14);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 1.4rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (max-width: 1024px) {
  #main-nav {
    height: 70px;
    padding: 0 1rem;
  }
  .nav-logo-img {
    height: 44px;
  }
  .nav-logo-sub {
    font-size: 1.1rem;
  }
  .nav-links, .nav-cta {
    display: none !important;
  }
  .header-lang-btn {
    display: inline-flex !important;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #main-nav {
    height: 66px;
    padding: 0 0.6rem;
  }
  .nav-logo-img {
    height: 38px;
  }
  .nav-logo-sub {
    display: none !important;
  }
  .header-lang-btn {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FULLSCREEN MOBILE MENU OVERLAY (ISOLATED)
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(5, 7, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.8rem 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-logo {
  height: 48px;
  width: auto;
}

.mobile-menu-brand-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.mobile-menu-brand-text em {
  color: var(--accent-gold);
  font-family: var(--font-accent);
  font-style: italic;
}

.mobile-menu-close-btn {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 1.3rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.mobile-menu-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-contact-info {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.mobile-contact-info strong {
  color: var(--accent-gold);
  display: block;
}

.btn-mobile-cta {
  width: 100%;
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 14px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   HERO & SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 4% 60px;
  background: radial-gradient(circle at 50% 30%, rgba(24, 33, 27, 0.85), var(--bg-dark));
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(7, 9, 7, 0.5), rgba(7, 9, 7, 0.96)), url('img/real_stag_live.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
  filter: contrast(1.1) brightness(0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  width: 100%;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(194, 155, 98, 0.14);
  border: 1px solid var(--border-accent);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .hero-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

.hero-badge-card {
  background: rgba(15, 20, 16, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 12px 10px;
  border-radius: var(--radius-md);
  text-align: center;
}

.hero-badge-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.hero-badge-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 14px 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2: WHO WE ARE
   ═══════════════════════════════════════════════════════════════ */
.who-we-are {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.who-text-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.experience-stat-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.8rem;
}

.experience-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.experience-stat-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: clamp(260px, 45vh, 460px);
  object-fit: cover;
}

.image-caption-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(7, 9, 7, 0.88);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-primary);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3: DESTINATIONS
   ═══════════════════════════════════════════════════════════════ */
.destinations-section {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0.8rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.5rem;
}

.destination-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 1;
}

.destination-content {
  position: relative;
  z-index: 2;
}

.destination-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
}

.destination-tag.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-primary);
}

.destination-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.destination-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4: HUNTING PROGRAMS
   ═══════════════════════════════════════════════════════════════ */
.programs-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.programs-itinerary-banner {
  background: linear-gradient(135deg, rgba(194, 155, 98, 0.12), rgba(15, 20, 16, 0.95));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .programs-itinerary-banner {
    flex-direction: column;
    text-align: center;
  }
}

.itinerary-info h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 0.2rem;
}

.itinerary-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.itinerary-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-dark);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-image-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-header-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 9, 7, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.program-body {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.program-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-features-list {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.program-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.program-features-list li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5: EVERYTHING INCLUDED
   ═══════════════════════════════════════════════════════════════ */
.everything-included {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}

.included-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.included-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.included-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.included-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6: RAHUE HOUSE LODGE
   ═══════════════════════════════════════════════════════════════ */
.rahue-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.rahue-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .rahue-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.rahue-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
}

.rahue-img-box.tall {
  height: 448px;
}

@media (max-width: 768px) {
  .rahue-img-box.tall {
    height: 220px;
  }
}

.rahue-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7: BACKCOUNTRY CABIN EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */
.backcountry-section {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.backcountry-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

@media (max-width: 600px) {
  .backcountry-features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-pill {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 0.8rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.feature-pill h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 0.2rem;
}

.feature-pill p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8: THE HUNT
   ═══════════════════════════════════════════════════════════════ */
.the-hunt-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.hunt-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.hunt-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  position: relative;
}

.hunt-pillar-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold-dim);
  position: absolute;
  top: 10px;
  right: 15px;
  font-weight: 700;
}

.hunt-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.hunt-pillar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 9: TROPHY GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-section {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 7, 0.92), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 10: FATHER & SON PROGRAM
   ═══════════════════════════════════════════════════════════════ */
.father-son-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.father-son-card {
  background: linear-gradient(135deg, rgba(15, 20, 16, 0.95), rgba(7, 9, 7, 0.98));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .father-son-card {
    padding: 1.8rem 1rem;
  }
}

.father-son-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(194, 155, 98, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--border-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 11: MEET THE GUIDES
   ═══════════════════════════════════════════════════════════════ */
.guides-section {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.guide-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
}

.guide-image {
  height: 240px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.guide-role {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.guide-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0 1.2rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 12: FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 1.4rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.4rem 1.4rem;
  max-height: 450px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 13: CONTACT / BOOK YOUR HUNT
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  background-color: var(--bg-card);
  padding: 90px 4%;
}

.contact-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 1.8rem 1.2rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-control {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c29b62' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1.2rem;
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 50px 4% 25px;
  text-align: center;
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto 1.2rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
