:root {
  --ink: #10201d;
  --muted: #5d6c66;
  --paper: #fbfaf5;
  --soft: #eef3eb;
  --reed: #728234;
  --pine: #1f4a3f;
  --water: #236a76;
  --sun: #d99d3a;
  --line: rgba(16, 32, 29, 0.14);
  --shadow: 0 18px 55px rgba(16, 32, 29, 0.16);
}

* {
  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.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 32, 29, 0.78), rgba(16, 32, 29, 0));
}

.site-header.solid {
  position: sticky;
  color: #fff;
  background: var(--pine);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  max-width: 100%;
  font-size: 0.96rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.92;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px clamp(20px, 6vw, 86px) 128px;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 20, 0.84) 0%, rgba(10, 24, 20, 0.55) 42%, rgba(10, 24, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 24, 20, 0.62), rgba(10, 24, 20, 0.06) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  width: min(620px, 100%);
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  color: #10201d;
  background: var(--sun);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -86px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.quick-info div {
  padding: 18px 22px;
  background: #fff;
}

.info-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.quick-info strong {
  font-size: 1rem;
  line-height: 1.28;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.two-column,
.route-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.route-simple {
  display: block;
}

.intro-section {
  width: min(980px, calc(100% - 40px));
}

.intro-section h2 {
  max-width: 860px;
}

.intro-section .section-copy p:not(.kicker) {
  max-width: 780px;
}

.section h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p:not(.kicker),
.contact-band p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.rule-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 9vw, 110px);
}

.image-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.image-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.image-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 32, 29, 0.72);
  font-weight: 750;
}

.muted {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  background: #e8efe3;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 24px;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rule-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.rule-card p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  width: min(980px, calc(100% - 40px));
  padding-bottom: clamp(52px, 7vw, 86px);
}

.services-section .section-heading {
  width: 100%;
  max-width: 860px;
}

.services-section .section-heading p:not(.kicker) {
  max-width: 780px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 18px;
}

.feature-list {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list h3 {
  margin: 0 0 14px;
  font-size: 1.16rem;
}

.feature-list h3:not(:first-child) {
  margin-top: 26px;
}

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

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--water);
}

.opening-section {
  padding-top: 0;
}

.opening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.opening-grid article,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.opening-grid article {
  padding: 20px 22px;
}

.opening-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.opening-grid strong {
  display: block;
  color: var(--pine);
  font-size: 1.55rem;
  line-height: 1.1;
}

.opening-grid p,
.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.rules-section {
  padding-top: 0;
}

.rules-section .section-heading p:not(.kicker) {
  max-width: 780px;
}

.rules-section .rule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules-section .rule-card {
  min-height: 0;
}

.price-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.price-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.price-group h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 22px;
  color: #fff;
  background: var(--pine);
  font-size: 1.14rem;
}

.price-group h3 span {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
}

.price-group dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-group dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
}

.price-group dl div:first-child {
  border-top: 0;
}

.price-group dt {
  font-weight: 800;
}

.price-group dt small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.price-group dd {
  margin: 0;
  color: var(--pine);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.fish-prices {
  grid-column: auto;
}

.price-note {
  margin: 0;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  color: #a82626;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--water);
  font-weight: 850;
  text-underline-offset: 5px;
}

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

.distance-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.distance-panel {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 9vw, 110px);
}

.distance-panel .section-heading {
  width: 100%;
  max-width: 760px;
}

.distance-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

.distance-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.distance-list span {
  color: var(--muted);
}

.distance-list strong {
  text-align: right;
}

.faq-section {
  padding-top: 0;
}

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

.faq-grid h3 {
  margin: 0;
  font-size: 1.08rem;
}

.map-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-section iframe {
  width: 100%;
  height: clamp(340px, 46vw, 520px);
  display: block;
  border: 0;
}

.map-placeholder {
  min-height: clamp(340px, 46vw, 520px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(31, 74, 63, 0.92), rgba(11, 42, 50, 0.88)),
    url("assets/fuzes-hero.jpg") center / cover;
  color: #fff;
}

.map-placeholder h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.map-placeholder p {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.map-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-noscript {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(48px, 7vw, 72px) max(20px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: linear-gradient(110deg, var(--pine), var(--water));
}

.contact-band p:not(.kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 58px);
  color: var(--muted);
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 4px;
  max-width: 760px;
}

.footer-meta p:last-child {
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer a {
  font-weight: 750;
  text-underline-offset: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 32, 29, 0.96);
  box-shadow: 0 18px 50px rgba(10, 24, 20, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions a {
  color: #fff;
  font-weight: 800;
  text-underline-offset: 5px;
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 132px) 0 clamp(64px, 9vw, 100px);
}

.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.05rem;
}

.operator-address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.operator-address strong {
  color: var(--ink);
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.gallery-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 11vw, 128px) 0 34px;
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.gallery-hero p:not(.kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.gallery-tools {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-count {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 9vw, 110px);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(12px, 4vw, 72px);
  background: rgba(4, 12, 10, 0.9);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox figure {
  width: min(1180px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 170px);
  display: block;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 750;
}

.lightbox button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
  }

  .site-header.solid {
    position: sticky;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 92vh;
    padding-top: 160px;
    padding-bottom: 72px;
  }

  .quick-info,
  .two-column,
  .route-section,
  .rule-grid,
  .feature-grid,
  .opening-grid,
  .faq-grid,
  .image-strip,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .rules-section .rule-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .distance-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-section,
  .distance-panel {
    width: calc(100% - 36px);
  }

  .distance-panel h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .main-nav {
    gap: 8px 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 86vh;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 18vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .distance-list {
    grid-template-columns: 1fr;
  }

  .distance-panel {
    margin-bottom: 56px;
  }

  .distance-panel .section-heading {
    margin-bottom: 18px;
  }

  .distance-list div {
    min-height: 52px;
    padding: 12px 14px;
  }

  .opening-grid article,
  .faq-grid article {
    padding: 20px;
  }

  .price-group dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .price-group h3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .price-group dd {
    text-align: left;
  }

  .lightbox {
    padding: 70px 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    transform: none;
  }
}
