/* =============================================
   AHF — AIDEN HAMBLIN FISHING
   Design System: Dark Navy + Purple Accent
   Version: 1.4.0
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg-primary:   #0A0E1A;
  --bg-secondary: #111827;
  --bg-card:      #1A1F35;
  --bg-purple:    #4F2683;
  --accent:       #7C3AED;
  --accent-light: #8B5CF6;
  --text-white:   #FFFFFF;
  --text-gray:    #9CA3AF;
  --text-muted:   #6B7280;
  --border:       rgba(255,255,255,0.08);
  --purple-border: rgba(124,58,237,0.35);
  --font-display: 'Montserrat', 'Arial Black', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-width:    1200px;
  --radius:       8px;
  --radius-lg:    16px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.purple-text { color: var(--accent-light); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--purple-border);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-sub {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-white {
  background: #fff;
  color: var(--bg-purple);
  border-color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10,14,26,0.0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.header-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-gray);
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active { color: #fff; }
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icons a {
  color: var(--text-gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.social-icons a:hover { color: #fff; }
.social-icons svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8px; stroke-linecap: round; stroke-linejoin: round; }
.header-cta { font-size: 12px; padding: 9px 20px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 4px;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0A0E1A;
  background-size: cover;
  background-position: center top;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.55) 60%, rgba(10,14,26,0.35) 100%),
    linear-gradient(to bottom, rgba(10,14,26,0.3) 0%, rgba(10,14,26,0.0) 40%, rgba(10,14,26,0.7) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}
/* Water ripple texture */
.hero-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  opacity: 0.15;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(124,58,237,0.3) 15px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.05) 61px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,38,131,0.3);
  border: 1px solid var(--purple-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.hero-badge span.dot {
  width: 7px; height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-name .line1 { color: #fff; display: block; }
.hero-name .line2 { color: var(--accent-light); display: block; }
.hero-sub {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-achievement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 6px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 96px 24px;
}
.section-alt {
  background: var(--bg-secondary);
}
.section-purple {
  background: linear-gradient(135deg, #3b1f6e 0%, var(--bg-purple) 50%, #3b1f6e 100%);
}
.section-header {
  margin-bottom: 56px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 16px auto 0; }

/* ---- TWO COLUMN ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.text-right { direction: rtl; }
.two-col.text-right > * { direction: ltr; }

/* ---- ABOUT PREVIEW ---- */
.about-section .section-label-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.about-section .body-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-section .read-more { margin-top: 28px; }
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bg-card), #0f1428);
  padding: 32px;
  text-align: center;
}
.about-img-placeholder svg {
  width: 80px; height: 80px;
  stroke: var(--accent);
  fill: none;
  opacity: 0.6;
}
.about-img-placeholder p {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  opacity: 0.7;
}

/* ---- TRAIL CARDS ---- */
.trails-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.trail-card:hover {
  border-color: var(--purple-border);
  transform: translateY(-3px);
}
.trail-icon {
  width: 100%;
  height: 80px;
  background: transparent;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}
.trail-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.trail-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ---- SPONSOR SECTION ---- */
.sponsor-title-card {
  background: var(--bg-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  min-height: 160px;
}
.sponsor-title-card .tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--purple-border);
  border-radius: 999px;
  padding: 3px 12px;
}
.sponsor-title-card .sponsor-name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: #fff;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sponsor-logo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: border-color 0.2s;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  text-align: center;
}
.sponsor-logo-card:hover { border-color: var(--purple-border); color: var(--accent-light); }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-card), #0f1428);
}
.gallery-placeholder svg {
  width: 48px; height: 48px;
  stroke: var(--accent);
  fill: none;
  opacity: 0.5;
}
.gallery-placeholder p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

/* ---- CONNECT CTA ---- */
.connect-section {
  text-align: center;
  padding: 80px 24px;
}
.connect-section .section-heading { margin-bottom: 20px; }
.connect-section .section-sub { margin: 0 auto 36px; }
.connect-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO (internal pages) ---- */
.page-hero {
  padding: 100px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(79,38,131,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero .section-heading { margin-bottom: 16px; }
.page-hero .section-sub { margin: 0 auto; }

/* ---- ABOUT PAGE ---- */
.about-main-section { padding: 40px 24px 80px; }
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.about-body p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.journey-section { padding: 80px 24px; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.journey-card p { color: var(--text-gray); line-height: 1.7; font-size: 15px; }
.quick-facts {
  padding: 80px 24px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.fact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.fact-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ---- SCHEDULE PAGE ---- */
.schedule-table-wrap { overflow-x: auto; margin-top: 40px; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.schedule-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.schedule-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-gray);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.trail-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124,58,237,0.15);
  color: var(--accent-light);
  border: 1px solid var(--purple-border);
}

.trail-badge.tbn { background: rgba(34,197,94,0.15); color: #4ade80; border-color: rgba(34,197,94,0.3); }
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--text-gray);
  border: 1px solid var(--border);
}
.schedule-note {
  background: rgba(79,38,131,0.12);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-gray);
}
.season-highlights {
  padding: 80px 24px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.highlight-number {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent-light);
  line-height: 1;
}
.highlight-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 8px;
}

/* ---- SPONSORS PAGE ---- */
.premier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.premier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.premier-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.premier-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.premier-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.premier-category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.premier-desc { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.core-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.core-card:hover { border-color: var(--purple-border); }
.core-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-category {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.become-partner {
  background: var(--bg-card);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin-top: 64px;
}
.become-partner .section-heading { margin-bottom: 16px; }
.become-partner p { color: var(--text-gray); max-width: 480px; margin: 0 auto 32px; font-size: 16px; line-height: 1.7; }

/* ---- MEDIA PAGE ---- */
.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  margin-top: 40px;
}
.media-gallery-grid .media-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.media-gallery-grid .media-item:last-child {
  grid-column: span 3;
  max-height: 320px;
}
.media-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  cursor: pointer;
}
.media-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bg-card), #0f1428);
}
.media-placeholder svg {
  width: 40px; height: 40px;
  stroke: var(--accent);
  fill: none;
  opacity: 0.4;
}
.media-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(10,14,26,0.9), transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.video-section { padding: 80px 24px; }
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  margin-top: 32px;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.social-stats { padding: 80px 24px; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.social-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.social-platform {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.social-count {
  font-family: var(--font-display);
  font-size: 40px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.social-handle { font-size: 12px; color: var(--text-muted); }

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-form-wrap { }
.contact-form { margin-top: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select option {
  background: var(--bg-secondary);
  color: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; padding: 15px; font-size: 13px; }
.contact-sidebar { }
.follow-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.follow-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.follow-section p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}
.social-links-list { list-style: none; }
.social-links-list li {
  border-bottom: 1px solid var(--border);
}
.social-links-list li:last-child { border-bottom: none; }
.social-links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
}
.social-links-list a:hover { color: #fff; }
.social-links-list .ext-icon {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.quick-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.quick-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.info-row {
  margin-bottom: 16px;
}
.info-row:last-child { margin-bottom: 0; }
.info-key {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.info-val { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
.form-success {
  display: none;
  background: rgba(79,38,131,0.15);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 500;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand .footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand .footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-brand .social-icons { gap: 14px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 12px; }
.footer-nav-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: #fff; }
.footer-contact-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-tsu {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,14,26,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gray);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent-light); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
}
.mobile-menu-close svg {
  width: 28px; height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .trails-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-brand { grid-column: span 2; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .core-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-nav,
  .header-right .social-icons,
  .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .two-col,
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 16/9; }
  .trails-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .premier-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .media-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .media-gallery-grid .media-item:first-child { grid-column: span 1; grid-row: span 1; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-brand { grid-column: 1; }
  .become-partner { padding: 40px 28px; }
  .section { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .trails-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: 1fr 1fr; }
  .hero-name { font-size: clamp(60px, 18vw, 120px); }
}
