/*
Theme Name: FCZ Zagorje
Theme URI: https://www.zabok-ribolov.com/
Author: Fishing Club Zagorje
Description: Custom WordPress tema za Fishing Club Zagorje.
Version: 1.0.0
Text Domain: fcz-zagorje
*/

:root {
  --ink: #101827;
  --muted: #4f5b67;
  --paper: #eef3f0;
  --mist: #e7efed;
  --mist-soft: #f7faf8;
  --white: #ffffff;
  --night: #050506;
  --water: #556421;
  --leaf: #708a37;
  --amber: #556421;
  --line: rgba(85, 100, 33, 0.14);
  --shadow: 0 20px 50px rgba(10, 18, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  touch-action: auto;
}

body {
  height: auto;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 100, 33, 0.14), transparent 30%),
    linear-gradient(180deg, #f7faf8 0%, var(--paper) 46%, #eaf1ef 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

main,
footer {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 60px);
  color: var(--white);
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header,
.site-header a,
.site-header button,
.main-nav {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(170px, 18vw, 270px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: min(100%, 360px);
  height: auto;
  max-height: 118px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #111;
  background: var(--amber);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(85, 100, 33, 0.22);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(85, 100, 33, 0.28);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: clamp(80px, 10vw, 150px) clamp(18px, 5vw, 84px) 56px clamp(22px, 4vw, 70px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0.58)),
    url("assets/optimized/hero-home.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.72);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--amber);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-panel {
  max-width: 640px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.hero-panel span {
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.15;
}

.hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel .button {
  margin-top: 20px;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 84px);
}

.intro.section {
  position: relative;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(28px, 3.5vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 248, 0.9) 42%, rgba(231, 239, 237, 0.78)),
    radial-gradient(circle at 18% 12%, rgba(85, 100, 33, 0.12), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(112, 138, 55, 0.11), transparent 30%),
    var(--mist-soft);
}

.intro.section::before {
  content: "";
  position: absolute;
  inset: -74px 0 auto;
  height: 74px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 248, 0.94));
}

.narrow {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow) {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
}

.intro h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p {
  max-width: 1120px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.quick-links {
  scroll-margin-top: 96px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  width: 100%;
  max-width: none;
  padding-top: 20px;
  padding-left: clamp(10px, 1.8vw, 28px);
  padding-right: clamp(10px, 1.8vw, 28px);
  padding-bottom: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(231, 239, 237, 0.78), rgba(240, 246, 243, 0.94)),
    radial-gradient(circle at 7% 48%, rgba(85, 100, 33, 0.1), transparent 28%),
    radial-gradient(circle at 95% 18%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist);
}

.feature-card,
.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.09);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.feature-card div {
  padding: 20px;
}

.feature-card span,
.news-card time {
  color: var(--water);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3,
.news-card h3 {
  margin: 8px 0 8px;
  font-size: 23px;
  line-height: 1.15;
}

.feature-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(85, 100, 33, 0.14);
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(85, 100, 33, 0.22), transparent 38%),
    #050506;
}

.split {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 6vw, 80px);
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.split-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber);
  font-weight: 900;
}

.section-heading {
  max-width: 1480px;
  margin: 0 auto 28px;
}

.news.section {
  background:
    linear-gradient(180deg, rgba(240, 246, 243, 0.94), rgba(247, 250, 248, 0.98)),
    radial-gradient(circle at 16% 86%, rgba(112, 138, 55, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(85, 100, 33, 0.1), transparent 32%),
    var(--mist-soft);
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  padding: clamp(96px, 11vw, 150px) clamp(18px, 5vw, 84px) clamp(44px, 6vw, 70px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.55)),
    url("assets/optimized/about-hero.jpg") center / cover;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.52)),
    url("assets/optimized/about-hero-onama.jpg") center / cover;
}

.gallery-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.55)),
    url("assets/optimized/gallery-hero.jpg") center / cover;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.58)),
    url("assets/optimized/contact-hero.jpg") center / cover;
}

.fish-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.48)),
    url("assets/ribe-hero.png") center / cover;
}

.fly-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.58)),
    url("assets/musicarenje-hero.jpg") center / cover;
}

.plan-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.62)),
    url("assets/optimized/approach-priroda.jpg") center / cover;
}

.resources-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.58)),
    url("assets/optimized/korisno-hero-zakoni.jpg") center / cover;
}

.gallery-page-hero h1 {
  font-size: clamp(44px, 6.2vw, 86px);
  white-space: nowrap;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.72);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.2vw, 27px);
}

.plan-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(231, 239, 237, 0.9)),
    radial-gradient(circle at 12% 20%, rgba(85, 100, 33, 0.11), transparent 30%),
    radial-gradient(circle at 92% 74%, rgba(85, 100, 33, 0.13), transparent 28%),
    var(--mist-soft);
}

.plan-intro-copy {
  max-width: 880px;
}

.plan-intro-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.plan-intro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.plan-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(85, 100, 33, 0.11);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.plan-legend i,
.plan-status::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--amber);
}

.competition,
.plan-day.competition,
.plan-status.competition::before {
  --event-color: #556421;
}

.gathering,
.plan-day.gathering,
.plan-status.gathering::before {
  --event-color: #556421;
}

.action,
.plan-day.action,
.plan-status.action::before {
  --event-color: #708a37;
}

.training,
.plan-day.training,
.plan-status.training::before {
  --event-color: #a04b3d;
}

.trip,
.plan-day.trip,
.plan-status.trip::before {
  --event-color: #556421;
}

.workshop,
.plan-day.workshop,
.plan-status.workshop::before {
  --event-color: #9a5a20;
}

.meeting,
.plan-day.meeting,
.plan-status.meeting::before {
  --event-color: #556421;
}

.plan-legend i {
  background: var(--event-color);
}

.plan-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 8%, rgba(85, 100, 33, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faf8, #e8f1ee);
}

.plan-selected {
  position: sticky;
  top: 96px;
  min-height: 380px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(5, 5, 6, 0.95), rgba(10, 32, 40, 0.94)),
    radial-gradient(circle at 14% 8%, rgba(85, 100, 33, 0.2), transparent 38%),
    var(--night);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.plan-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-status::before {
  background: var(--event-color);
}

.plan-selected h2 {
  margin: 16px 0 22px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.02;
}

.plan-selected dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.plan-selected dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-selected dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-selected dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.plan-selected p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.plan-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-month {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(85, 100, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.08);
}

.plan-month header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.96), rgba(85, 100, 33, 0.92)),
    var(--night);
}

.plan-month header span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.plan-month h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.plan-weekdays,
.plan-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.plan-weekdays {
  padding: 10px 10px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.plan-weekdays span {
  padding: 4px 0;
}

.plan-days {
  gap: 6px;
  padding: 10px;
}

.plan-day {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 58px;
  padding: 7px 6px;
  color: var(--ink);
  background: rgba(238, 243, 240, 0.82);
  border: 1px solid rgba(85, 100, 33, 0.08);
  border-radius: 8px;
  font: inherit;
  text-align: left;
}

.plan-day span {
  font-size: 12px;
  font-weight: 900;
}

.plan-day strong {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.15;
}

.plan-day.empty {
  min-height: 58px;
  background: transparent;
  border-color: transparent;
}

.plan-day.has-event {
  cursor: pointer;
  background: color-mix(in srgb, var(--event-color) 18%, white);
  border-color: color-mix(in srgb, var(--event-color) 42%, white);
  box-shadow: inset 0 4px 0 var(--event-color);
}

.plan-day.has-event:hover,
.plan-day.has-event:focus-visible {
  outline: 2px solid var(--event-color);
  outline-offset: 2px;
}

.plan-day.is-next {
  box-shadow: inset 0 4px 0 var(--event-color), 0 0 0 3px rgba(85, 100, 33, 0.22);
}

.plan-day.is-past {
  opacity: 0.58;
}

.fly-intro-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(231, 239, 237, 0.9)),
    radial-gradient(circle at 14% 18%, rgba(85, 100, 33, 0.12), transparent 30%),
    radial-gradient(circle at 86% 76%, rgba(112, 138, 55, 0.12), transparent 28%),
    var(--mist-soft);
}

.fly-intro {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.fly-intro h2,
.fly-cards-section .section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.fly-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.fly-feature-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.92)),
    var(--mist);
}

.fly-feature-section .split-copy h2 {
  color: var(--ink);
}

.fly-feature-section .split-copy p:not(.eyebrow) {
  color: var(--muted);
}

.fly-feature-section.dark-band {
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(85, 100, 33, 0.22), transparent 38%),
    #050506;
}

.fly-feature-section.dark-band .split-copy h2 {
  color: var(--white);
}

.fly-feature-section.dark-band .split-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.fly-cards-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(85, 100, 33, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faf8, #e8f1ee);
}

.fly-card-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fly-info-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(85, 100, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.08);
}

.fly-info-card span {
  color: var(--water);
  font-size: 13px;
  font-weight: 900;
}

.fly-info-card h3 {
  margin: 12px 0 12px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
}

.fly-info-card p {
  margin: 0;
  color: var(--muted);
}

.fly-detail-section,
.fly-accordion-section,
.fly-rivers-section,
.fly-note-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(85, 100, 33, 0.1), transparent 28%),
    linear-gradient(180deg, #f7faf8, #e8f1ee);
}

.fly-species-grid,
.fly-technique-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.fly-species-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fly-technique-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fly-list-card,
.fly-technique-card {
  padding: clamp(22px, 2.6vw, 32px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(85, 100, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.08);
}

.fly-list-card h3,
.fly-technique-card h3 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.05;
}

.fly-list-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: contain;
  background: #050506;
  border-radius: 8px;
}

.fly-fish-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.92), rgba(85, 100, 33, 0.78)),
    radial-gradient(circle at 22% 24%, rgba(85, 100, 33, 0.22), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fly-list-card p,
.fly-technique-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.fly-list-card em {
  color: var(--water);
  font-weight: 800;
}

.fly-river-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fly-river-card {
  min-height: 245px;
  padding: clamp(22px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(85, 100, 33, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.08);
}

.fly-river-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fly-river-card h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
}

.fly-river-card p {
  margin: 0;
  color: var(--muted);
}

.fly-technique-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(85, 100, 33, 0.2), transparent 38%),
    #050506;
}

.fly-technique-section .section-heading h2,
.fly-technique-section .section-heading .eyebrow {
  color: var(--white);
}

.fly-technique-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.fly-technique-card p {
  color: rgba(255, 255, 255, 0.74);
}

.fly-accordion {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.fly-accordion details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(85, 100, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.07);
}

.fly-accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
}

.fly-accordion details[open] summary {
  color: var(--water);
}

.fly-accordion p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.fly-cycle-section,
.fly-photo-section,
.fly-practical-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(85, 100, 33, 0.11), transparent 28%),
    linear-gradient(180deg, #eef3f0, #f7faf8);
}

.fly-cycle-grid,
.fly-photo-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.fly-cycle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fly-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fly-cycle-grid figure,
.fly-photo-grid figure {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(85, 100, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.08);
}

.fly-cycle-grid img,
.fly-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fly-photo-grid img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #050506;
}

.fly-cycle-grid figcaption,
.fly-photo-grid figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
}

.fly-practical-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fly-practical-card {
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(85, 100, 33, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.08);
}

.fly-practical-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1;
}

.fly-practical-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fly-practical-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.fly-practical-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber);
}

.fly-note-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.96), rgba(10, 32, 40, 0.94)),
    radial-gradient(circle at 14% 8%, rgba(85, 100, 33, 0.2), transparent 38%),
    var(--night);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.fly-note-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.fly-note-card > div {
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(247, 250, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.fly-note-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.fly-note-card p:not(.eyebrow) {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.fly-note-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--amber);
  font-size: 18px;
  font-weight: 900;
}

.story-section,
.membership-section,
.values-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.9)),
    radial-gradient(circle at 12% 24%, rgba(85, 100, 33, 0.11), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist-soft);
}

.story-section.section,
.membership-section.section,
.values-section.section,
.about-feature.section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(85, 100, 33, 0.2), transparent 38%),
    radial-gradient(circle at 84% 72%, rgba(85, 100, 33, 0.24), transparent 34%),
    #050506;
}

.official-block {
  max-width: 1480px;
  margin: 0 auto;
}

.official-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.official-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.story-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: start;
}

.story-grid h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.story-copy {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.07);
}

.dark-section .story-copy {
  background: rgba(5, 12, 14, 0.7);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.compact-heading h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.membership-section .section-heading h2,
.values-section .section-heading h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
}

.membership-section .section-heading {
  margin-bottom: 26px;
}

.membership-section {
  padding-bottom: 0;
}

.membership-section .section-heading .eyebrow {
  color: var(--amber);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.membership-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "duties join"
    "note fee";
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.membership-card {
  grid-area: duties;
  display: grid;
  gap: 14px;
  height: 100%;
  padding: clamp(22px, 3vw, 32px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.membership-card strong,
.membership-card .purpose-list li {
  color: var(--white);
}

.membership-card .purpose-list li {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.68;
}

.dark-section .story-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.story-copy strong {
  color: var(--ink);
}

.dark-section .story-copy strong {
  color: var(--white);
}

.resources-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.93)),
    radial-gradient(circle at 12% 18%, rgba(85, 100, 33, 0.12), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(10, 32, 40, 0.1), transparent 28%),
    var(--mist-soft);
}

.resources-intro {
  max-width: 980px;
  margin: 0 auto clamp(26px, 4vw, 46px);
  text-align: center;
}

.resources-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
}

.resources-intro p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1480px;
  margin: 0 auto;
}

.resource-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.95), rgba(10, 32, 40, 0.94)),
    radial-gradient(circle at 15% 0%, rgba(85, 100, 33, 0.26), transparent 36%),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.resource-card > span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--night);
  background: var(--amber);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.resource-card h2 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.resource-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.resource-links {
  display: grid;
  gap: 10px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-decoration: none;
}

.resource-links a::before {
  content: "->";
  margin-right: 8px;
  color: var(--amber);
}

.resource-links a:hover {
  color: var(--white);
}

.purpose-list {
  display: grid;
  gap: 8px;
  margin: 2px 0;
  padding: 0;
  list-style: none;
}

.purpose-list li {
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--amber);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(85, 100, 33, 0.06);
  font-weight: 700;
  line-height: 1.35;
}

.dark-section .purpose-list li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--amber);
  box-shadow: none;
}

.member-duties {
  display: grid;
  gap: 12px;
}

.membership-note {
  grid-area: join;
  display: grid;
  gap: 14px;
  align-content: start;
  height: 100%;
  margin-top: 0;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.93), rgba(14, 50, 59, 0.92)),
    #050506;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.membership-note p {
  color: rgba(255, 255, 255, 0.82);
}

.membership-note strong {
  color: var(--white);
}

.membership-highlight {
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 14px 18px;
  color: #111;
  background: var(--amber);
  border-radius: 8px;
}

.membership-fee-card {
  grid-area: fee;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.membership-fee-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.membership-highlight span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-highlight strong {
  color: #111;
  font-size: 22px;
}

.membership-pay-button {
  margin-top: 8px;
  color: var(--white);
  background: #071018;
}

.membership-disclaimer {
  grid-area: note;
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.membership-disclaimer strong {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.membership-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.62;
}

.badges-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(85, 100, 33, 0.11), transparent 28%),
    linear-gradient(180deg, #eef3f0, #f7faf8);
}

.badge-link-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(85, 100, 33, 0.11), transparent 28%),
    linear-gradient(180deg, #eef3f0, #f7faf8);
}

.badge-link-card {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    radial-gradient(circle at 8% 0%, rgba(85, 100, 33, 0.2), transparent 34%),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10, 18, 32, 0.16);
}

.badge-link-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.badge-link-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.badge-link-card .button {
  flex: 0 0 auto;
}

.badge-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.badge-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  margin: 0;
  padding: 18px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(85, 100, 33, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.08);
}

.badge-card img {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1;
  margin: 0 auto;
  object-fit: contain;
}

.badge-card figcaption {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}


.values-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  background: #050506;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent);
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-nature {
  background-image: url("assets/optimized/approach-priroda.jpg");
}

.value-sport {
  background-image: url("assets/optimized/approach-sport.jpg");
}

.value-community {
  background-image: url("assets/optimized/approach-zajednistvo.jpg");
}

.value-card span {
  color: var(--amber);
  font-weight: 900;
}

.value-card h3 {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.join-cta-section {
  padding-top: clamp(22px, 4vw, 44px);
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(232, 241, 238, 0.9), rgba(247, 250, 248, 0.98)),
    var(--mist-soft);
}

.join-cta {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    radial-gradient(circle at 8% 0%, rgba(85, 100, 33, 0.2), transparent 34%),
    #050506;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10, 18, 32, 0.16);
}

.join-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
}

.join-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.join-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-feature .button {
  margin-top: 12px;
}

.join-cta-section + .values-section.section {
  padding-top: clamp(42px, 5vw, 68px);
}

.fish-intro-section,
.fish-species-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.92)),
    radial-gradient(circle at 10% 18%, rgba(85, 100, 33, 0.12), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist-soft);
}

.fish-intro {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.fish-intro h2,
.fish-note h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.fish-intro p:not(.eyebrow),
.fish-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.68;
}

.fish-legend-section.section {
  padding-top: 0;
  padding-left: clamp(10px, 2vw, 28px);
  padding-right: clamp(10px, 2vw, 28px);
}

.fish-legend-card {
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(85, 100, 33, 0.14);
  border-radius: 8px;
  background: #f7f8fb;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.11);
}

.fish-legend-card img {
  display: block;
  width: 100%;
  height: auto;
}

.fish-species-section.section {
  padding-top: 0;
  padding-left: clamp(10px, 2vw, 28px);
  padding-right: clamp(10px, 2vw, 28px);
}

.fish-image-grid {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.fish-image-card {
  display: grid;
  align-items: center;
  margin: 0;
  overflow: hidden;
  background: #050506;
  border: 1px solid rgba(85, 100, 33, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.11);
}

.fish-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.fish-image-card figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.48;
}

.fish-carving-visual {
  background: #050506;
}

.fish-carving-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.fish-carving-final {
  position: relative;
  min-height: clamp(260px, 19vw, 340px);
  overflow: hidden;
}

.fish-carving-final > img:not(.fish-carving-final-logo) {
  width: 100%;
  height: clamp(260px, 19vw, 340px);
  object-fit: cover;
  object-position: center;
}

.fish-carving-final .fish-carving-final-logo {
  position: absolute;
  left: 46%;
  top: 50%;
  z-index: 1;
  width: clamp(150px, 18vw, 300px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.72));
}

.fish-carving-contact {
  position: absolute;
  left: clamp(28px, 7vw, 118px);
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  max-width: min(420px, 44vw);
  color: #f7f1e7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.fish-carving-contact h2 {
  margin: 0 0 14px;
  color: #f5eee4;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.95;
}

.fish-carving-contact address,
.fish-carving-contact p {
  margin: 0 0 12px;
  color: rgba(247, 241, 231, 0.88);
  font-style: normal;
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.45;
}

.fish-carving-contact span {
  display: block;
  margin-bottom: 2px;
  color: var(--amber);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fish-carving-contact a {
  color: #f7f1e7;
  text-decoration: none;
}

.fish-carving-contact a:hover {
  color: var(--amber);
}

.fish-carving-contact-link {
  display: inline-flex;
  margin-top: 2px;
  color: var(--amber);
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 700;
}

@media (max-width: 760px) {
  .fish-carving-final {
    min-height: 330px;
    overflow: hidden;
  }

  .fish-carving-final > img:not(.fish-carving-final-logo) {
    width: 180%;
    max-width: none;
    min-height: 330px;
    object-fit: cover;
    object-position: 68% center;
  }

  .fish-carving-contact {
    left: 22px;
    right: 22px;
    max-width: none;
  }

  .fish-carving-final .fish-carving-final-logo {
    left: 66%;
    top: 45%;
    width: min(190px, 40vw);
    opacity: 0.9;
  }
}

.species-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.species-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 330px;
  padding: clamp(22px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(85, 100, 33, 0.08);
}

.species-card span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--water);
  background: rgba(85, 100, 33, 0.09);
  border-radius: 6px;
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
}

.species-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.species-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.species-facts {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.species-facts li {
  padding: 10px 12px;
  background: rgba(231, 239, 237, 0.85);
  border-left: 4px solid var(--amber);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.fish-note-section.section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.fish-note {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.fish-note p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.9)),
    radial-gradient(circle at 12% 24%, rgba(85, 100, 33, 0.11), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist-soft);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.9)),
    radial-gradient(circle at 12% 24%, rgba(85, 100, 33, 0.11), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist-soft);
}

.contact-intro,
.contact-grid,
.direct-contact {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  margin-bottom: 30px;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
}

.contact-intro p:not(.eyebrow) {
  max-width: 880px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  scroll-margin-top: 110px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.12);
}

.fee-panel {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(5, 5, 6, 0.96), rgba(10, 32, 40, 0.96)),
    #050506;
}

.form-kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.contact-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.fee-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compact-form {
  grid-template-columns: 1fr;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.fee-panel .contact-form label {
  color: var(--white);
}

.wide-field {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(85, 100, 33, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(85, 100, 33, 0.28);
  border-color: var(--amber);
}

.check-field {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-field input {
  width: 18px;
  margin-top: 3px;
}

.fee-amount {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid rgba(85, 100, 33, 0.45);
  border-radius: 8px;
  background: rgba(85, 100, 33, 0.12);
}

.fee-amount span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-amount strong {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 0.95;
}

.contact-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-note strong {
  color: var(--amber);
  text-transform: uppercase;
}

.contact-note p {
  margin: 6px 0 0;
  font-size: 15px;
}

.direct-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.direct-contact h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
}

.direct-contact p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.direct-contact-links {
  display: grid;
  gap: 12px;
}

.direct-contact-links a {
  padding: 14px 16px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.direct-contact-links a:hover {
  color: #111;
  background: var(--amber);
}

.location-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(232, 241, 238, 0.9)),
    radial-gradient(circle at 12% 24%, rgba(85, 100, 33, 0.11), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(85, 100, 33, 0.12), transparent 26%),
    var(--mist-soft);
}

.location-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.location-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
}

.location-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.location-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.location-details a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.location-details a:hover {
  color: var(--water);
}

.location-map {
  width: 100%;
  min-height: 380px;
  border: 5px solid var(--amber);
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.05);
}

.trusted-anglers-section {
  color: var(--white);
  background:
    linear-gradient(rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.88)),
    radial-gradient(circle at 12% 0%, rgba(112, 138, 55, 0.18), transparent 34%),
    #050506;
}

.trusted-anglers-board {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.98), rgba(10, 32, 40, 0.96)),
    radial-gradient(circle at 14% 12%, rgba(112, 138, 55, 0.24), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(85, 100, 33, 0.18), transparent 30%),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.trusted-anglers-plaque {
  position: absolute;
  top: -18px;
  left: clamp(22px, 5vw, 62px);
  padding: 8px 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(112, 138, 55, 0.96), rgba(66, 82, 27, 0.98)),
    var(--water);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.trusted-anglers-kicker {
  margin: 0 0 22px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trusted-anglers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.trusted-angler-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 154px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(112, 138, 55, 0.94), rgba(63, 78, 25, 0.96)),
    var(--water);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.trusted-angler-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(42, 24, 10, 0.24);
}

.trusted-angler-info h3 {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.trusted-angler-info p {
  margin: 7px 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.trusted-angler-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trusted-angler-actions a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(5, 5, 6, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.trusted-angler-actions a:hover {
  color: #101827;
  background: var(--white);
}

.member-gallery {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.member-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.14);
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: #dfe4ec;
}

.member-card figcaption {
  padding: 12px 14px 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.news-heading,
.news-layout {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.news-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.news-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.news-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-heading a::before,
.read-more::before {
  content: "->";
  font-weight: 900;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(520px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.news-list {
  display: grid;
  gap: 24px;
  grid-template-rows: repeat(3, 1fr);
}

.portal-news-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(85, 100, 33, 0.28);
  border-radius: 6px;
  box-shadow: none;
}

.featured-news {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.portal-news-card .news-media {
  position: relative;
  overflow: hidden;
  background: #d7dedb;
}

.portal-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-news .news-media {
  min-height: 360px;
  height: auto;
}

.compact-news {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(260px, 1fr);
  min-height: 0;
}

.compact-news .news-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.news-content {
  padding: 30px 30px 28px;
}

.compact-news .news-content {
  padding: 20px 24px;
}

.news-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--amber);
  border-left: 4px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.portal-news-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 39px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-news h3 {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.35vw, 24px);
}

.portal-news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.compact-news p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--amber);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.compact-news .read-more {
  margin-top: 18px;
  font-size: 16px;
}

@media (min-width: 1101px) {
  .news-layout {
    height: 760px;
  }

  .featured-news,
  .news-list {
    height: 100%;
  }

  .featured-news .news-content {
    min-height: 230px;
  }
}

.read-more:hover,
.news-heading a:hover {
  color: var(--amber);
}

.article-hero {
  min-height: 620px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.45)),
    url("assets/news-hero.jpg") center / cover;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.5));
}

.article-hero .page-hero-content {
  max-width: 980px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-section {
  background: var(--mist-soft);
}

.article-layout {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.article-body {
  padding: clamp(24px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(85, 100, 33, 0.1);
}

.article-body .lead {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
}

.article-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.article-source {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-source a {
  color: var(--water);
  font-weight: 900;
}

.article-sidebar {
  display: grid;
  gap: 16px;
}

.article-side-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(85, 100, 33, 0.08);
}

.article-side-card strong {
  font-size: 18px;
}

.article-side-card a {
  color: var(--water);
  font-weight: 900;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}

.clean-list li {
  padding-left: 18px;
  border-left: 4px solid var(--amber);
}

.sponsor-strip {
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px) 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(238, 243, 240, 0.98)),
    var(--mist-soft);
  border-top: 1px solid rgba(85, 100, 33, 0.12);
  border-bottom: 1px solid rgba(85, 100, 33, 0.12);
}

.sponsor-strip-inner {
  width: min(1480px, calc(100% - clamp(36px, 10vw, 168px)));
  margin: 0 auto;
}

.sponsor-strip-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
}

.sponsor-strip-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-marquee {
  position: relative;
  overflow: hidden;
  margin-inline: calc((100vw - min(1480px, calc(100vw - clamp(36px, 10vw, 168px)))) / -2);
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.62);
}

.sponsor-marquee::before,
.sponsor-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(42px, 10vw, 160px);
  pointer-events: none;
}

.sponsor-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--mist-soft), rgba(247, 250, 248, 0));
}

.sponsor-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--mist-soft), rgba(247, 250, 248, 0));
}

.sponsor-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(10px, 1.4vw, 18px);
  animation: sponsor-scroll 46s linear infinite;
}

.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}

.sponsor-name {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(85, 100, 33, 0.14);
  border-radius: 6px;
  white-space: nowrap;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(85, 100, 33, 0.08);
}

@keyframes sponsor-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(5px, 0.7vw, 9px)));
  }
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(10, 32, 40, 0.95)),
    radial-gradient(circle at 12% 0%, rgba(85, 100, 33, 0.2), transparent 34%),
    #050506;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr) minmax(240px, 0.75fr);
  gap: clamp(30px, 5vw, 70px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 84px);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.footer-tagline {
  display: block;
  margin-top: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-resource-link {
  display: flex;
  width: fit-content;
  align-items: center;
  margin-top: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-resource-link::before {
  content: "->";
  margin-right: 8px;
  color: var(--amber);
}

.footer-resource-link:hover {
  color: var(--amber);
}

.footer-resource-link + .footer-resource-link {
  margin-top: 8px;
}

.footer-team-tagline {
  display: block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-challenge,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-challenge strong,
.footer-contact strong {
  margin-bottom: 6px;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 13px;
}

.footer-challenge p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-calendar {
  max-width: 390px;
}

.footer-calendar-toolbar {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.footer-calendar-toolbar button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.footer-calendar-toolbar button:hover {
  border-color: rgba(85, 100, 33, 0.58);
  background: rgba(85, 100, 33, 0.16);
}

.footer-calendar-toolbar span {
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.footer-calendar-weekdays,
.footer-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.footer-calendar-weekdays {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.footer-calendar-grid {
  margin-top: 6px;
}

.footer-calendar-day {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 28px;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.footer-calendar-day.empty {
  background: transparent;
  border-color: transparent;
}

.footer-calendar-day.has-event {
  color: var(--night);
  background: var(--event-color, var(--amber));
  border-color: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.footer-calendar-day.has-event::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  background: rgba(5, 5, 6, 0.72);
  border-radius: 999px;
}

.footer-calendar-day.has-event:hover,
.footer-calendar-day.has-event:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 2px;
}

.footer-calendar-day.is-next {
  box-shadow: 0 0 0 3px rgba(85, 100, 33, 0.26);
}

.footer-calendar-hint {
  margin-top: 10px;
  font-size: 13px;
}

.footer-event-modal[hidden] {
  display: none;
}

.footer-event-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(8px);
}

.footer-event-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(5, 5, 6, 0.98), rgba(10, 32, 40, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(85, 100, 33, 0.22), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.footer-event-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
}

.footer-event-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-event-type::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--event-color, var(--amber));
  border-radius: 999px;
}

.footer-event-dialog h2 {
  margin: 14px 42px 20px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.footer-event-dialog dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-event-dialog dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-event-dialog dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-event-dialog dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-event-dialog p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-challenge a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-challenge a::before {
  content: "-> ";
  color: var(--amber);
}

.footer-contact a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
}

.footer-challenge a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.social-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #071018;
  background: var(--amber);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero,
  .split,
  .split.reverse,
  .news-grid,
  .story-grid,
  .official-grid,
  .badge-link-card,
  .values-grid,
  .membership-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "duties"
      "note"
      "join"
      "fee";
  }

  .member-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid,
  .direct-contact,
  .location-grid,
  .fish-intro,
  .trusted-anglers-grid,
  .fish-note {
    grid-template-columns: 1fr;
  }

  .species-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fish-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 760px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .plan-intro,
  .plan-section,
  .fly-intro {
    grid-template-columns: 1fr;
  }

  .plan-selected {
    position: static;
    min-height: 0;
  }

  .plan-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fly-card-grid,
  .fly-species-grid,
  .fly-river-grid,
  .fly-cycle-grid,
  .fly-photo-grid,
  .fly-note-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fly-card-grid,
  .fly-species-grid,
  .fly-note-card {
    grid-template-columns: 1fr;
  }

  .fly-technique-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .featured-news .news-media {
    height: clamp(320px, 48vw, 520px);
  }
}

@media (max-width: 760px) {
  .badge-link-card {
    display: grid;
    align-items: start;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand-logo {
    width: 190px;
    height: 48px;
  }

  .gallery-page-hero h1 {
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(5, 7, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
    padding-top: 96px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .plan-months {
    grid-template-columns: 1fr;
  }

  .fly-technique-grid {
    grid-template-columns: 1fr;
  }

  .fly-river-grid {
    grid-template-columns: 1fr;
  }

  .fly-photo-grid {
    grid-template-columns: 1fr;
  }

  .fly-practical-grid {
    grid-template-columns: 1fr;
  }

  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-intro {
    gap: 20px;
  }

  .plan-day {
    min-height: 48px;
    padding: 6px 5px;
  }

  .plan-day strong {
    font-size: 9px;
  }

  .species-grid {
    grid-template-columns: 1fr;
  }

  .fish-image-grid {
    grid-template-columns: 1fr;
  }

  .news-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .compact-news {
    grid-template-columns: 1fr;
  }

  .compact-news .news-media,
  .featured-news .news-media {
    min-height: 0;
    height: 260px;
  }

  .news-content,
  .compact-news .news-content {
    padding: 24px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .member-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 300px;
  }

  .join-cta {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }

  .trusted-anglers-board {
    padding: 36px 18px 22px;
  }

  .trusted-anglers-plaque {
    left: 18px;
  }

  .trusted-angler-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .trusted-angler-card img {
    width: 76px;
    height: 76px;
  }

  .trusted-angler-actions a {
    width: 32px;
    height: 32px;
  }
}



