:root {
  --ink: #17231c;
  --muted: #5b6b61;
  --green: #245441;
  --green-dark: #17382c;
  --water: #1c7281;
  --mist: #eef4f0;
  --paper: #fffdf7;
  --line: rgba(23, 35, 28, 0.14);
  --shadow: 0 22px 70px rgba(23, 35, 28, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 35px rgba(23, 35, 28, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  opacity: 0.76;
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(12, 31, 25, 0.78), rgba(12, 31, 25, 0.34) 52%, rgba(12, 31, 25, 0.1));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--water);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #a9e0e6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  max-width: 670px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions,
.phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.button-primary,
.phone-link {
  color: white;
  background: var(--green);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.section,
.section-band {
  padding: 92px 0;
}

.section-muted {
  background: var(--mist);
}

.intro-grid,
.split,
.location-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.intro {
  background: white;
}

.intro h2,
.section-heading h2 {
  margin-bottom: 0;
}

.copy p,
.section-heading p,
.location p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--water);
  background: white;
  box-shadow: 0 1px 0 var(--line);
}

.image-stack {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-top: 70px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 820px;
}

.activity-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-grid article,
.offer-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.activity-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--water);
  font-weight: 900;
}

.activity-grid p,
.offer-card p {
  color: var(--muted);
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card strong {
  color: var(--green);
}

.fishing-section {
  background: white;
}

.fishing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.fishing-copy {
  position: sticky;
  top: 104px;
}

.fishing-copy p {
  color: var(--muted);
}

.fishing-list li {
  background: var(--mist);
}

.fishing-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fishing-media figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.fishing-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.fishing-feature {
  grid-row: span 2;
}

.fishing-feature img {
  min-height: 640px;
}

.fishing-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: white;
  background: rgba(17, 27, 22, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.fishing-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fishing-video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #111b16;
  object-fit: cover;
  box-shadow: 0 14px 42px rgba(23, 35, 28, 0.14);
}

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

.section-gallery .eyebrow {
  color: #9fd8df;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery button {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.04);
}

.location iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 82px 0;
  background: var(--green);
  color: white;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.contact-card .eyebrow,
.contact-card p {
  color: #cce1d8;
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-section .phone-link {
  min-width: 168px;
  color: var(--green-dark);
  background: white;
}

.site-footer {
  padding: 46px 0;
  color: #dbe8e0;
  background: #111b16;
}

.site-footer a {
  color: white;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 18, 14, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 2rem;
  cursor: pointer;
}

.cookie-note {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 520px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
}

.cookie-note.is-hidden {
  display: none;
}

.cookie-note p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-note button {
  min-width: 52px;
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
  font-weight: 800;
}

.simple-page {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.simple-page .container {
  max-width: 850px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .intro-grid,
  .split,
  .fishing-grid,
  .location-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fishing-copy {
    position: static;
  }

  .activity-grid,
  .offer-grid,
  .gallery,
  .fishing-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .activity-grid,
  .offer-grid,
  .gallery,
  .fishing-media,
  .fishing-video-grid {
    grid-template-columns: 1fr;
  }

  .fishing-feature {
    grid-row: auto;
  }

  .fishing-media img,
  .fishing-feature img {
    min-height: 320px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-top: 0;
  }

  .cookie-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
  }
}
