/* =========================================================
   Upper Don Fly Fishers — Main Stylesheet
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --green-dark:   #2a4a1a;
  --green-mid:    #3d6b28;
  --green-light:  #5a8f3c;
  --river-blue:   #3a6e8a;
  --river-mid:    #5291b0;
  --gold:         #b8870a;
  --gold-light:   #d4a417;
  --cream:        #f4efe3;
  --cream-dark:   #e8e0cc;
  --brown:        #6b4c2a;
  --text-dark:    #1c1c1c;
  --text-mid:     #3a3a3a;
  --text-light:   #666;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.22);
  --radius:       6px;
  --radius-lg:    12px;
  --max-width:    1160px;
  --nav-height:   72px;
}

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--river-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-mid); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  line-height: 1.25;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 640px;
  margin: 0.8rem auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section--dark .section-header p {
  color: var(--cream-dark);
}

.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(28, 42, 18, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-text span {
  font-size: 0.72rem;
  color: var(--cream-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-links .nav-cta {
  background: var(--green-light);
  color: var(--white);
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(28, 52, 16, 0.88) 0%,
      rgba(42, 74, 26, 0.80) 40%,
      rgba(58, 110, 138, 0.75) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  /* Fallback gradient when no image */
  background-color: var(--green-dark);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(90,143,60,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-dark:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

/* --- Feature Cards (Home) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Two-column content --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-mid), var(--river-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 4rem;
}

.content-text h2 { margin-bottom: 1rem; }
.content-text p { color: var(--text-mid); }

/* --- River Story Banner --- */
.story-banner {
  background:
    linear-gradient(135deg, rgba(28,42,18,0.92) 0%, rgba(58,110,138,0.88) 100%),
    #3d6b28;
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.story-banner h2 { color: var(--white); margin-bottom: 1rem; }
.story-banner p { color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 1.2rem; }

.stats-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--gold-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.stat-label {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

/* --- Beats Grid --- */
.beats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.beat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.beat-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--green-mid), var(--river-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.beat-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25));
}

.beat-card-body {
  padding: 1.5rem;
}

.beat-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.beat-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.beat-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--cream-dark);
}

/* --- Membership Table --- */
.membership-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.membership-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tier-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}

.tier-card--featured {
  border-color: var(--green-mid);
  background: linear-gradient(135deg, rgba(61,107,40,0.04), rgba(58,110,138,0.04));
}

.tier-info h4 { margin-bottom: 0.2rem; }
.tier-info p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.tier-price {
  text-align: right;
}

.tier-price strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green-dark);
  font-family: Georgia, serif;
}

.tier-price span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: Arial, sans-serif;
}

.tbd-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-light);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: steps;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 1rem;
}

.step-content h4 { margin-bottom: 0.25rem; }
.step-content p { font-size: 0.93rem; color: var(--text-light); }

/* --- Wildfish notice --- */
.notice-box {
  background: linear-gradient(135deg, rgba(58,110,138,0.08), rgba(61,107,40,0.08));
  border: 1px solid rgba(58,110,138,0.25);
  border-left: 4px solid var(--river-blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.notice-box strong { color: var(--river-blue); }

/* --- Rules List --- */
.rules-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.rules-section h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.rules-list li:last-child { border-bottom: none; }

.rules-list li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* --- Events --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-date {
  text-align: center;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  color: var(--white);
}

.event-date .day {
  display: block;
  font-size: 1.8rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--gold-light);
}

.event-date .month {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}

.event-info h4 { margin-bottom: 0.25rem; }
.event-info p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.event-type {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.type-competition { background: rgba(184,135,10,0.12); color: var(--gold); }
.type-social      { background: rgba(58,110,138,0.12); color: var(--river-blue); }
.type-work        { background: rgba(42,74,26,0.12);   color: var(--green-mid); }
.type-opening     { background: rgba(90,143,60,0.15);  color: var(--green-light); }

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

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-mid), var(--river-blue));
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 3rem;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* --- News --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.news-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-mid), var(--river-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

.news-card-body { padding: 1.5rem; }

.news-meta {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.news-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  font-size: 0.72rem;
  color: var(--green-mid);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card-body h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.news-card-body p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1rem; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61,107,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 0.15rem; font-size: 0.95rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: Georgia, serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(90,143,60,0.12);
  background: var(--white);
}

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

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding-top: var(--nav-height);
  background:
    linear-gradient(160deg, rgba(28,42,18,0.92) 0%, rgba(42,74,26,0.88) 60%, rgba(58,110,138,0.82) 100%),
    var(--green-dark);
  color: var(--white);
  padding-bottom: 4rem;
  padding-top: calc(var(--nav-height) + 3.5rem);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumb {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 0.4rem; }

/* --- Footer --- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

.wildfish-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
}

.wildfish-badge:hover {
  background: rgba(255,255,255,0.13);
  color: var(--white);
}

/* --- About Page Specific --- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--river-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item h4 {
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .two-col,
  .membership-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col--reverse { direction: ltr; }

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

  .event-card {
    grid-template-columns: 70px 1fr;
  }

  .event-card .event-type {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(20,36,12,0.98);
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a { padding: 0.7rem 1rem; }
  .nav-toggle { display: flex; }

  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .beats-grid,
  .news-grid { grid-template-columns: 1fr; }

  .stats-row { gap: 2rem; }

  .contact-form { padding: 1.5rem; }
}
