@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 850;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pn-ink: #171a17;
  --pn-white: #fff;
  --pn-mist: #eef1ec;
  --pn-moss: #596a4c;
  --pn-lichen: #c7d0bf;
  --pn-clay: #b66f4f;
  --pn-stone: #767b74;
  --pn-max: 1180px;
  --pn-font-sans:
    "Gilroy", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pn-ink);
  background: #f7f8f4;
  font-family: var(--pn-font-sans);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.guide-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(24px, 5vw, 58px) clamp(24px, 6vw, 70px);
  color: var(--pn-white);
  pointer-events: none;
}

.brand {
  display: grid;
  gap: 10px;
  width: 96px;
  text-decoration: none;
  pointer-events: auto;
}

.brand img,
.brand .custom-logo {
  display: block;
  width: 100%;
  max-width: 96px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 82px;
  height: 40px;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(0 100%, 0 0, 34% 51%, 34% 21%, 100% 100%);
}

.brand-text {
  font-size: 13px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.menu-toggle {
  position: fixed;
  top: clamp(24px, 5vw, 58px);
  right: clamp(24px, 6vw, 70px);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(88px, 7vw, 112px);
  min-height: clamp(36px, 3vw, 44px);
  padding: 0 20px;
  border: 1px solid rgba(23, 26, 23, 0.18);
  border-radius: 14px;
  color: var(--menu-toggle-bg, #bd2530);
  background: var(--pn-white);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44),
    0 10px 28px rgba(23, 26, 23, 0.22);
  cursor: pointer;
  pointer-events: auto;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(23, 26, 23, 0.42);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(23, 26, 23, 0.28);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
}

.site-nav {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: block;
  min-height: 100vh;
  min-height: 100svh;
  overflow-y: auto;
  color: var(--pn-white);
  background: #283029 var(--nav-image) center / cover no-repeat;
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.site-nav::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 23, 20, 0.68),
      rgba(20, 23, 20, 0.14) 42%,
      rgba(20, 23, 20, 0.54)
    ),
    linear-gradient(
      0deg,
      rgba(20, 23, 20, 0.5),
      rgba(20, 23, 20, 0.08) 48%,
      rgba(238, 241, 236, 0.3)
    );
}

.park-background-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(20, 23, 20, 0.68),
      rgba(20, 23, 20, 0.14) 42%,
      rgba(20, 23, 20, 0.54)
    ),
    linear-gradient(
      0deg,
      rgba(20, 23, 20, 0.5),
      rgba(20, 23, 20, 0.08) 48%,
      rgba(238, 241, 236, 0.3)
    ),
    var(--active-park-image) center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.has-park-hover-image .park-background-hover {
  opacity: 1;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.site-nav__brand {
  position: fixed;
  top: clamp(24px, 5vw, 58px);
  left: clamp(24px, 6vw, 70px);
  z-index: 31;
}

.site-nav__close {
  position: fixed;
  top: clamp(24px, 5vw, 58px);
  right: clamp(24px, 6vw, 70px);
  z-index: 31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(126px, 9vw, 154px);
  min-height: clamp(36px, 3vw, 44px);
  padding: 0 20px;
  border: 1px solid rgba(23, 26, 23, 0.18);
  border-radius: 14px;
  color: var(--menu-toggle-bg, #bd2530);
  background: var(--pn-white);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44),
    0 10px 28px rgba(23, 26, 23, 0.22);
  cursor: pointer;
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.site-nav__close:hover,
.site-nav__close:focus-visible {
  border-color: rgba(23, 26, 23, 0.42);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(23, 26, 23, 0.28);
  transform: translateY(-1px);
}

.site-nav__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(108px, 12vh, 150px) clamp(24px, 5.5vw, 70px)
    clamp(24px, 6vh, 56px);
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: end;
}

.site-nav__intro {
  align-self: end;
  justify-self: start;
  max-width: 380px;
  margin: 0 0 8px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.16;
  font-weight: 400;
}

.nav-menu {
  align-self: center;
  justify-self: center;
  display: grid;
  gap: clamp(4px, 0.9vw, 10px);
  width: 100%;
  max-width: min(100%, 1040px);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(clamp(-48px, -4.5vh, -32px));
}

.nav-menu--centered {
  align-self: center;
  align-content: center;
  justify-items: center;
  min-height: min(46vh, 440px);
  text-align: center;
  transform: none;
}

.nav-menu a {
  display: inline;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: clamp(34px, min(4.65vw, 8vh), 66px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--pn-white);
}

.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--pn-white);
  background: #283029 var(--hero-image) center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 23, 20, 0.68),
      rgba(20, 23, 20, 0.14) 42%,
      rgba(20, 23, 20, 0.54)
    ),
    linear-gradient(
      0deg,
      rgba(20, 23, 20, 0.5),
      rgba(20, 23, 20, 0.08) 48%,
      rgba(238, 241, 236, 0.3)
    );
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(108px, 12vh, 150px) clamp(24px, 5.5vw, 70px)
    clamp(24px, 6vh, 56px);
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: end;
}

.hero__intro {
  align-self: end;
  justify-self: start;
  max-width: 380px;
  margin-bottom: 8px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.16;
  font-weight: 400;
}

.park-list {
  align-self: center;
  justify-self: center;
  display: grid;
  gap: clamp(4px, 0.9vw, 10px);
  width: 100%;
  max-width: min(100%, 1040px);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(clamp(-48px, -4.5vh, -32px));
}

.park-list--centered {
  align-self: center;
  align-content: center;
  justify-items: center;
  min-height: min(46vh, 440px);
  text-align: center;
  transform: none;
}

.park-list a {
  display: inline;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: clamp(34px, min(4.65vw, 8vh), 66px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.park-list a:hover,
.park-list a:focus-visible {
  color: var(--pn-white);
}

.home-map-section {
  overflow: hidden;
  background: #4c786d;
}

.home-map-section__inner {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.home-map {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #4c786d;
}

.home-map__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-map__hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.home-map__hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  transform: translate(-50%, -50%);
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.home-map__hotspot:hover::after,
.home-map__hotspot:focus-visible::after {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.home-map__hotspot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.home-map-tooltip {
  position: absolute;
  z-index: 4;
  width: min(330px, calc(100% - 36px));
  padding: 18px 18px 16px;
  border-radius: 8px;
  color: #bd2530;
  background: var(--pn-white);
  box-shadow: 0 20px 52px rgba(12, 26, 22, 0.24);
  transform: translate(-50%, -100%);
  pointer-events: auto;
}

.home-map-tooltip.is-below {
  transform: translate(-50%, 0);
}

.home-map-tooltip strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 700;
}

.home-map-tooltip p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

.home-map-tooltip__button {
  display: none;
}

.territory-section {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 6vw, 80px)
    clamp(80px, 10vw, 140px);
  color: #aa1f4b;
  background: var(--pn-white);
}

.territory-section__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.territory-section h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(54px, 8.2vw, 132px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.territory-section__copy {
  width: min(100%, 720px);
  margin: clamp(44px, 7vw, 84px) auto 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.28;
}

.territory-section__copy p {
  margin: 0;
}

.territory-section__copy p + p {
  margin-top: 18px;
}

.territory-section__map {
  margin: clamp(64px, 8vw, 112px) auto 0;
  overflow: hidden;
  border-radius: 8px;
}

.territory-section__map .home-map-section__inner {
  width: 100%;
}

.community-section {
  padding: clamp(76px, 9vw, 128px) clamp(24px, 6vw, 80px) clamp(92px, 10vw, 150px);
  color: var(--pn-white);
  background: #741a34;
}

.community-section__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
  text-align: center;
}

.community-section h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
}

.community-section__intro,
.community-section__copy {
  width: min(100%, 780px);
  margin: clamp(36px, 5vw, 72px) auto 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.26;
}

.community-carousel {
  margin-top: clamp(64px, 7vw, 92px);
}

.community-carousel__stage {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, .24);
}

.community-carousel__slide {
  display: none;
}

.community-carousel__slide.is-active {
  display: block;
}

.community-carousel__slide img,
.community-carousel__slide iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.community-carousel__slide img {
  object-fit: cover;
}

.community-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 5vw, 64px);
  height: clamp(42px, 5vw, 64px);
  padding: 0;
  border: 0;
  color: var(--pn-white);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease;
}

.community-carousel__arrow--prev {
  left: clamp(14px, 3vw, 34px);
}

.community-carousel__arrow--next {
  right: clamp(14px, 3vw, 34px);
}

.community-carousel__arrow span {
  display: block;
  font-size: clamp(58px, 7vw, 90px);
  line-height: 0.72;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.community-carousel__arrow:hover,
.community-carousel__arrow:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.community-carousel__arrow:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.community-carousel__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 70px);
  width: min(100%, 1140px);
  margin: clamp(54px, 6vw, 82px) auto 0;
}

.community-carousel__thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  color: inherit;
  background: rgba(0, 0, 0, .18);
  cursor: pointer;
}

.community-carousel__thumb.is-active {
  border-color: rgba(255, 255, 255, .82);
}

.community-carousel__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.community-carousel__thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, .58);
}

.experience-section {
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 80px) clamp(96px, 11vw, 160px);
  color: #aa1f4b;
  background: var(--pn-white);
}

.experience-section__keyword {
  width: 100%;
  margin: 0 0 clamp(80px, 10vw, 140px);
  font-size: 20vw;
  line-height: .72;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.experience-section__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.experience-section__header {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  width: 100%;
  margin: 0 0 clamp(48px, 6vw, 78px);
  text-align: left;
}

.experience-section__header h3 {
  grid-column: 2;
  width: min(100%, 840px);
  justify-self: center;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.experience-section__content {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.experience-section__activities {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.2;
}

.experience-section__activities strong {
  display: block;
  margin-bottom: 20px;
  font-weight: 800;
}

.experience-section__activities ul {
  margin: 0;
  padding-left: 18px;
}

.experience-section__body {
  display: grid;
  justify-items: center;
}

.experience-section__copy {
  width: min(100%, 840px);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.24;
  text-align: center;
}

.experience-section__copy p {
  margin: 0;
  text-align: justify;
}

.experience-section__copy p + p {
  margin-top: 22px;
}

.experience-section__figure {
  width: min(100%, 860px);
  margin: clamp(54px, 7vw, 84px) 0 0;
  border-radius: 8px;
}

.experience-section__carousel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: inherit;
  background: #e8ece6;
}

.experience-section__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-section__slide {
  display: block;
}

.experience-section__figure--carousel .experience-section__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.experience-section__figure--carousel .experience-section__slide.is-active {
  opacity: 1;
}

.experience-section__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.experience-section__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(170, 31, 75, 0.32);
  cursor: pointer;
}

.experience-section__dot.is-active {
  background: #aa1f4b;
}

.experience-section__dot:focus-visible {
  outline: 2px solid #aa1f4b;
  outline-offset: 4px;
}

.video-catalog-section {
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 80px);
  color: var(--pn-white);
  background: #741a34;
}

.video-catalog-section__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.video-catalog-section__kicker {
  margin: 0 0 clamp(32px, 4vw, 58px);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.video-catalog__layout {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.video-catalog__stage {
  width: 100%;
}

.video-catalog__panel {
  display: grid;
  gap: 22px;
}

.video-catalog__panel[hidden] {
  display: none;
}

.video-catalog__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #241a17;
}

.video-catalog__media img,
.video-catalog__media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.video-catalog__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, .28);
}

.video-catalog__media.is-playing::after {
  content: none;
}

.video-catalog__description {
  max-width: 720px;
  margin: 0;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.3;
}

.video-catalog__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: 132px;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  color: #741a34;
  background: var(--pn-white);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-catalog__play:focus-visible,
.video-catalog__item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 5px;
}

.video-catalog__list {
  display: grid;
  gap: 12px;
}

.video-catalog__item {
  display: block;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  opacity: .62;
}

.video-catalog__item.is-active,
.video-catalog__item:hover {
  opacity: 1;
}

.video-catalog__item.is-active {
  border-bottom-color: var(--pn-white);
}

.video-catalog__item strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

@media (min-width: 901px) {
  .park-header-only__hero {
    grid-template-columns: minmax(270px, 3fr) minmax(0, 9fr);
  }

  .park-header-only__panel {
    min-height: 100vh;
  }

  .park-header-only__image {
    min-height: 100vh;
  }

  .video-catalog__layout {
    align-items: start;
    grid-template-columns: minmax(210px, 3fr) minmax(0, 9fr);
  }

  .video-catalog__list {
    position: sticky;
    top: 96px;
  }
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(24px, 6vw, 80px);
}

.section__inner {
  width: min(100%, var(--pn-max));
  margin: 0 auto;
}

.section__kicker {
  margin: 0 0 14px;
  color: var(--pn-clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section h1,
.section h2 {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: #4b504a;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.park-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.park-card {
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  color: var(--pn-white);
  text-decoration: none;
  background: #3a4038;
}

.park-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.park-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
}

.park-card:hover img {
  transform: scale(1.04);
}

.park-card__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.park-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1;
}

.park-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.single-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: var(--pn-white);
  background: #283029 var(--hero-image) center / cover no-repeat;
  position: relative;
  isolation: isolate;
}

.single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(20, 23, 20, 0.74),
    rgba(20, 23, 20, 0.22)
  );
}

.single-hero__content {
  width: min(100%, var(--pn-max));
  margin: 0 auto;
  padding: 160px 24px 72px;
}

.single-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -42px auto 0;
  width: min(calc(100% - 48px), var(--pn-max));
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 26px 70px rgba(23, 26, 23, 0.14);
}

.fact {
  padding: 24px;
  background: var(--pn-white);
}

.fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--pn-stone);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.fact strong {
  font-size: 20px;
}

.single-park .site-header {
  display: flex !important;
}

.single-park .site-header .brand {
  display: none !important;
}

.park-header-only {
  --park-header-color: #bd2530;
  min-height: 100vh;
  color: var(--pn-white);
  background: var(--park-header-color);
}

.park-header-only__hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  overflow: hidden;
  background: var(--park-header-color);
}

.park-header-only__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: clamp(28px, 6vw, 60px) clamp(24px, 5vw, 58px);
  background: var(--park-header-color);
}

.park-header-only__image {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 62px);
  overflow: hidden;
  background: var(--park-header-color) var(--park-header-image) center / cover
    no-repeat;
  isolation: isolate;
}

.park-header-only__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(11, 16, 14, 0.68),
    rgba(11, 16, 14, 0.28) 54%,
    rgba(11, 16, 14, 0.04)
  );
}

.park-header-only__brand {
  display: grid;
  gap: 10px;
  width: min(140px, 40vw);
  color: inherit;
  text-decoration: none;
}

.park-header-only__brand img {
  width: min(100%, 112px);
  height: auto;
}

.park-header-only__brand .brand-mark {
  width: 82px;
  height: 40px;
}

.park-header-only__section {
  border-top: 2px solid rgba(255, 255, 255, 0.82);
  padding-top: 28px;
}

.park-header-only__section strong {
  display: block;
  margin: 0 0 24px;
  color: inherit;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1;
  font-weight: 720;
  text-transform: uppercase;
}

.park-header-only__section p,
.park-header-only__section li {
  margin: 0;
  color: inherit;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.35;
  font-weight: 400;
}

.park-header-only__section .park-header-only__coming-soon {
  max-width: 32ch;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.34;
}

.park-header-only__section p + p,
.park-header-only__section p + ul {
  margin-top: 18px;
}

.park-header-only__section ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 1.1em;
}

.park-header-only__content {
  width: min(100%, 780px);
  margin-left: auto;
  text-align: right;
}

.park-header-only__content h1 {
  max-width: 780px;
  margin: 0 0 0 auto;
  color: inherit;
  font-size: clamp(38px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

.park-detail {
  --sidebar-width: clamp(290px, 30vw, 460px);
  --detail-sidebar-bg: #bd2530;
  --detail-accent: var(--detail-sidebar-bg);
  min-height: 100vh;
  background: var(--pn-white);
}

.detail-sidebar {
  position: fixed;
  z-index: 19;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  display: grid;
  align-content: start;
  gap: 0;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3.4vw, 44px);
  color: var(--pn-white);
  background: var(--detail-sidebar-bg);
  overflow-y: auto;
}

.admin-bar .detail-sidebar {
  top: 32px;
  height: calc(100vh - 32px);
}

.detail-sidebar__brand {
  width: 132px;
  display: grid;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

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

.detail-sidebar__logo {
  color: inherit;
  display: grid;
  gap: 10px;
  margin-bottom: clamp(22px, 3.2vh, 34px);
  text-decoration: none;
}

.detail-sidebar__logo img {
  width: min(100%, 100px);
  height: auto;
  margin-bottom: 4vh;
}

.detail-sidebar__logo .brand-mark {
  width: min(100%, 128px);
  height: 70px;
}

.detail-sidebar__logo .brand-text {
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.detail-sidebar__logo strong {
  color: var(--pn-white);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
}

.detail-sidebar__copy,
.detail-sidebar__info,
.detail-sidebar__activities,
.detail-sidebar__visit-guide {
  padding: 0 0 clamp(18px, 2.7vh, 28px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
}

.detail-sidebar__info,
.detail-sidebar__activities,
.detail-sidebar__visit-guide {
  padding-top: clamp(18px, 2.7vh, 28px);
}

.detail-sidebar__copy p,
.detail-sidebar__info p,
.detail-sidebar__info li,
.detail-sidebar__activities li,
.detail-sidebar__visit-guide p {
  margin: 0;
  color: var(--pn-white);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.18;
  font-weight: 400;
}

.detail-sidebar__info p,
.detail-sidebar__info li,
.detail-sidebar__activities li,
.detail-sidebar__visit-guide p {
  margin-top: 12px;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.2;
}

.detail-sidebar__visit-guide p + p {
  margin-top: 12px;
}

.detail-sidebar__eyebrow,
.detail-sidebar__info strong,
.detail-sidebar__activities strong,
.detail-sidebar__visit-guide strong {
  display: block;
  margin: 0 0 clamp(12px, 2vh, 20px);
  color: var(--pn-white);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-sidebar__info ul,
.detail-sidebar__activities ul {
  margin: 0;
  padding-left: 1.1em;
}

.detail-sidebar__info ul {
  margin-top: 10px;
}

.detail-page {
  margin-left: var(--sidebar-width);
  min-width: 0;
  background: var(--pn-white);
}

.detail-hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--pn-white);
  background: #283029 var(--hero-image) center / cover no-repeat;
  isolation: isolate;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(23, 26, 23, 0.35),
    rgba(23, 26, 23, 0.05)
  );
  pointer-events: none;
}

.detail-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

.detail-section {
  padding: clamp(58px, 8vw, 112px) clamp(28px, 7vw, 96px);
}

.detail-section__inner {
  width: min(100%, 880px);
  margin: 0 auto;
}

.detail-intro .detail-section__inner {
  width: min(100%, 1040px);
}

.detail-activities .detail-section__inner {
  width: min(100%, 1120px);
}

.detail-section h2 {
  margin: 0 0 32px;
  color: var(--detail-accent);
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: 0;
}

.detail-section h3 {
  margin: 0;
  color: var(--detail-accent);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.96;
}

.detail-image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  background: #e3e3e3;
}

.detail-image--wide {
  aspect-ratio: 16 / 8.5;
  margin-bottom: 54px;
}

.detail-image--outlined {
  border: 5px solid var(--detail-accent);
}

.detail-image--secondary,
.detail-placeholder--large {
  width: min(100%, 430px);
  aspect-ratio: 4 / 5.2;
  border-radius: 8px;
}

.detail-image--map {
  height: auto;
  aspect-ratio: auto;
  margin: 0 0 clamp(60px, 9vw, 96px);
  border-radius: 8px;
  object-fit: contain;
}

.detail-image--portrait,
.detail-placeholder {
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}

.detail-placeholder {
  background: var(--pn-white);
  box-shadow: inset 0 0 0 1px
    color-mix(in srgb, var(--detail-accent) 16%, transparent);
}

.detail-placeholder--large {
  background: #d8d8d8;
  box-shadow: none;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.detail-columns--reversed {
  grid-template-columns: 0.8fr 1fr;
  margin-top: 50px;
}

.detail-richtext {
  color: var(--detail-accent);
  font-size: 15px;
  line-height: 1.48;
}

.detail-richtext--center {
  max-width: 960px;
  margin: 0 auto 74px;
  text-align: center;
}

.detail-richtext p {
  margin: 0 0 18px;
}

.detail-richtext h2,
.detail-richtext h3,
.detail-richtext h4 {
  margin: 26px 0 12px;
  color: inherit;
  line-height: 1.08;
  font-weight: 700;
  text-transform: none;
}

.detail-richtext h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.detail-richtext h3 {
  font-size: clamp(22px, 3vw, 34px);
}

.detail-richtext h4 {
  font-size: clamp(18px, 2vw, 24px);
}

.detail-richtext ul,
.detail-richtext ol {
  margin: 0 0 18px;
  padding-left: 1.25em;
}

.detail-richtext li + li {
  margin-top: 8px;
}

.detail-richtext a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.activity-intro-text {
  width: min(100%, 640px);
  margin: 0 0 clamp(34px, 6vw, 58px);
}

@media (min-width: 760px) {
  .activity-intro-text {
    margin-left: 0;
  }
}

.activity-overview {
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  margin-bottom: clamp(58px, 8vw, 92px);
  color: var(--detail-accent);
}

.activity-overview__aside {
  order: 2;
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.22;
}

.activity-overview__aside strong {
  display: block;
  margin: 0 0 14px;
  font-weight: 760;
}

.activity-overview__aside ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.1em;
}

.activity-overview__main {
  order: 1;
  min-width: 0;
}

.activity-overview__main h2 {
  max-width: 760px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.activity-overview .detail-image--map {
  display: block;
  width: min(100%, 640px);
  margin: clamp(28px, 5vw, 48px) 0 0;
}

@media (min-width: 760px) {
  .activity-overview {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    align-items: start;
  }

  .activity-overview__aside,
  .activity-overview__main {
    order: initial;
  }

  .activity-overview__main {
    padding-top: 8px;
  }
}

.intro-secondary {
  display: grid;
  grid-template-columns: minmax(240px, 430px) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.detail-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 25%, transparent);
  border-radius: 4px;
}

.detail-facts div {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: var(--detail-accent);
  background: var(--pn-white);
  border-bottom: 1px solid
    color-mix(in srgb, var(--detail-accent) 18%, transparent);
}

.detail-facts div:last-child {
  border-bottom: 0;
}

.detail-facts span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.detail-facts strong {
  font-size: 17px;
  line-height: 1.1;
}

.activity-board {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: start;
  color: var(--detail-accent);
}

.activity-board__preview {
  display: grid;
  gap: 18px;
}

.activity-board__image {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #e5e0dc;
}

.activity-board__image img,
.activity-board__image .detail-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-board__preview h3 {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.14;
  font-weight: 700;
}

.activity-table {
  min-width: 0;
}

.activity-table h3 {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.1;
  font-weight: 750;
  text-transform: uppercase;
}

.activity-table__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.activity-row {
  display: grid;
  align-content: start;
  min-height: 82px;
  padding: 14px 22px 12px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.activity-row:nth-child(odd) {
  padding-right: 28px;
}

.activity-row strong {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.15;
  font-weight: 700;
}

.activity-row span {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.12;
}

.activity-row.is-active strong,
.activity-row:hover strong,
.activity-row:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.activity-row:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.activity-detail {
  display: grid;
  gap: clamp(26px, 5vw, 42px);
  margin-top: clamp(50px, 8vw, 86px);
  color: var(--pn-white);
}

.activity-detail__panel {
  position: relative;
  padding: clamp(28px, 5vw, 54px) clamp(24px, 5vw, 52px);
  border-radius: 8px;
  background: var(--detail-accent);
}

.activity-detail__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.activity-detail__eyebrow,
.activity-detail__close {
  color: inherit;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.activity-detail h3 {
  margin: 0 0 clamp(30px, 5vw, 48px);
  color: inherit;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.9;
}

.activity-detail__description {
  max-width: 880px;
  color: inherit;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.28;
}

.activity-detail__description p {
  margin: 0 0 16px;
}

.activity-detail__description p:last-child {
  margin-bottom: 0;
}

.activity-detail__media:empty {
  display: none;
}

.activity-detail__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  border-radius: 8px;
  object-fit: cover;
}

.service-board {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) 1fr;
  gap: 26px;
  align-items: stretch;
  color: var(--detail-accent);
}

.service-board__media {
  min-height: 230px;
  overflow: hidden;
  border-radius: 4px;
  background: #e5e0dc;
}

.service-board__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-board__table {
  border-top: 1px solid
    color-mix(in srgb, var(--detail-accent) 40%, transparent);
}

.service-board__table h3 {
  margin: 0;
  padding: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--detail-accent) 28%, transparent);
  font-size: 13px;
  line-height: 1.2;
}

.service-row em {
  font-style: normal;
  opacity: 0.72;
}

.detail-wildlife {
  background: #f0d2d4;
}

.detail-wildlife .detail-section__inner {
  width: min(100%, 1040px);
}

.outline-title {
  margin: 0;
  color: color-mix(in srgb, var(--detail-accent) 18%, transparent);
  -webkit-text-stroke: 0;
  font-size: clamp(72px, 10vw, 142px);
  line-height: 0.9;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-wildlife h2 {
  margin-top: 22px;
  font-size: clamp(74px, 10vw, 144px);
  line-height: 0.82;
  text-transform: uppercase;
}

.wildlife-intro {
  max-width: 900px;
  margin: clamp(70px, 10vw, 110px) auto 0;
  text-align: center;
}

.wildlife-main-image {
  max-width: 980px;
  margin: clamp(54px, 8vw, 96px) auto 0;
}

.wildlife-main-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.wildlife-middle {
  max-width: 980px;
  margin: clamp(54px, 8vw, 96px) auto 0;
}

.wildlife-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
  margin-top: clamp(90px, 14vw, 150px);
}

.wildlife-carousel {
  display: grid;
  gap: 24px;
  color: var(--detail-accent);
}

.wildlife-carousel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pn-white);
}

.wildlife-carousel__media {
  width: 100%;
  height: 100%;
}

.wildlife-carousel__frame img,
.detail-placeholder--wildlife {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-placeholder--wildlife {
  background: var(--pn-white);
  box-shadow: none;
}

.wildlife-carousel__dots {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 42px;
  display: flex;
  justify-content: center;
  gap: 9px;
  pointer-events: none;
}

.wildlife-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d1d1d1;
  cursor: pointer;
  pointer-events: auto;
}

.wildlife-carousel__dot.is-active {
  background: #151515;
}

.wildlife-carousel__dot:hover,
.wildlife-carousel__dot:focus-visible {
  transform: scale(1.18);
}

.wildlife-carousel__dot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wildlife-carousel__caption {
  margin: 0;
  font-weight: 850;
  color: var(--detail-accent);
}

.wildlife-side {
  max-width: 410px;
  margin-top: 6px;
}

.recommendations {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 54px 0 0;
  padding: 0;
  color: var(--detail-accent);
  list-style: none;
}

.recommendations li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.35;
}

.recommendations li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: currentColor;
}

.detail-guides {
  --guide-accent: var(--detail-accent, #bd2530);
  --guide-soft: color-mix(in srgb, var(--guide-accent) 12%, var(--pn-white));
  color: var(--guide-accent);
  background: var(--pn-white);
}

.detail-guides .detail-section__inner {
  width: min(100%, 1220px);
}

.detail-guides h2 {
  max-width: 760px;
  margin: 0;
  color: var(--guide-accent);
  font-size: clamp(64px, 8.4vw, 112px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.guide-section__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(54px, 7vw, 86px);
  border-radius: 8px;
  object-fit: contain;
}

.guide-section__intro {
  max-width: 640px;
  margin-top: clamp(60px, 7vw, 92px);
}

.guide-section__intro p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-section__intro h3 {
  margin: 0;
  color: var(--guide-accent);
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.guide-grid {
  display: grid;
  gap: 22px;
}

.detail-guides .guide-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: clamp(22px, 4vw, 44px);
  width: min(100%, 930px);
  margin-top: clamp(60px, 7vw, 90px);
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 28px;
  align-items: center;
}

.detail-guides .guide-card {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 290px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--guide-accent);
}

.guide-card__photo {
  display: block;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--detail-accent);
  border-radius: 999px;
  color: var(--detail-accent);
  background: var(--guide-soft);
  text-decoration: none;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 850;
}

.detail-guides .guide-card__photo {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--guide-accent);
  background: var(--guide-soft);
  cursor: pointer;
}

.detail-guides .guide-card__photo:hover img,
.detail-guides .guide-card__photo:focus-visible img {
  transform: scale(1.03);
}

.guide-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-guides .guide-card__photo img {
  transition: transform 0.22s ease;
}

.guide-card__body {
  padding: 24px;
  border-radius: 4px;
  color: var(--pn-white);
  background: var(--detail-accent);
}

.detail-guides .guide-card__body {
  min-height: 72px;
  padding: 20px 18px 22px;
  border-radius: 0;
  text-align: center;
  background: var(--guide-accent);
}

.guide-card__body p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.detail-guides .guide-card__body p {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.78;
}

.guide-card__body h3 {
  margin: 0 0 12px;
  color: var(--pn-white);
  font-size: clamp(24px, 3vw, 38px);
}

.detail-guides .guide-card__body h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.08;
}

.guide-card__body a {
  color: inherit;
  text-decoration: none;
}

.guide-card__body span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.guide-modal[hidden] {
  display: none;
}

.guide-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.guide-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 23, 0.62);
}

.guide-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(760px, 92vh);
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  overflow: auto;
  border-radius: 8px;
  color: var(--guide-accent);
  background: var(--pn-white);
  box-shadow: 0 26px 80px rgba(23, 26, 23, 0.32);
}

.guide-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--pn-white);
  background: var(--guide-accent);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.guide-modal__photo {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(760px, 92vh);
  min-height: min(760px, 92vh);
  color: var(--guide-accent);
  background: var(--guide-soft);
  font-size: clamp(64px, 6.6vw, 104px);
  font-weight: 650;
  line-height: 1;
  text-align: center;
}

.guide-modal__photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.guide-modal__content {
  padding: clamp(36px, 5vw, 64px);
}

.guide-modal__role {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-modal__content h3 {
  margin: 0;
  color: var(--guide-accent);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
}

.guide-modal__bio {
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
  font-weight: 700;
}

.guide-modal__text {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.42;
}

.guide-modal__text p {
  margin: 0;
}

.guide-modal__text p + p {
  margin-top: 14px;
}

.guide-modal__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--guide-accent) 22%, transparent);
  border-radius: 6px;
}

.guide-modal__meta div {
  padding: 16px;
  background: color-mix(in srgb, var(--guide-accent) 6%, var(--pn-white));
}

.guide-modal__meta dt {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.guide-modal__meta dd {
  margin: 0;
  font-weight: 800;
}

.guide-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.guide-card--catalog {
  align-items: stretch;
  padding: 0;
}

.guide-card--catalog .guide-card__photo {
  align-self: center;
}

.guide-profile {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
}

.guide-profile__photo {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 6px solid var(--detail-accent);
  border-radius: 999px;
  color: var(--detail-accent);
  background: color-mix(in srgb, var(--detail-accent) 12%, var(--pn-white));
  font-size: clamp(68px, 8vw, 120px);
  font-weight: 850;
}

.guide-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-profile__content h1 {
  margin: 0 0 18px;
  color: var(--detail-accent);
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.92;
}

.guide-profile__content .content {
  width: 100%;
  padding: 28px 0 0;
  color: var(--detail-accent);
}

.guide-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 22%, transparent);
  border-radius: 4px;
}

.guide-contact div {
  padding: 18px;
  color: var(--detail-accent);
  background: var(--pn-white);
}

.guide-contact dt {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.guide-contact dd {
  margin: 0;
  font-weight: 800;
}

.related-parks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-parks a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 32%, transparent);
  border-radius: 999px;
  color: var(--detail-accent);
  text-decoration: none;
  font-weight: 800;
}

.detail-empty {
  color: var(--detail-accent);
  font-weight: 800;
}

.content {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) 24px;
  font-size: 19px;
  line-height: 1.65;
}

.content .button,
.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--pn-white);
  background: var(--pn-moss);
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 124px) clamp(24px, 6vw, 80px) clamp(34px, 4vw, 54px);
  color: var(--pn-white);
  background: #aa1f4b;
}

body.single-park .site-footer {
  z-index: 22;
  width: 100%;
  margin-left: 0;
  isolation: isolate;
}

.site-footer::before {
  content: "SPN";
  position: absolute;
  top: -0.24em;
  right: -0.12em;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(120px, 26vw, 420px);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1.25fr);
  gap: clamp(40px, 6vw, 92px);
  width: min(100%, 1480px);
  margin: 0 auto;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: clamp(28px, 4vw, 48px);
}

.site-footer__logo {
  display: grid;
  gap: 12px;
  width: 112px;
  color: inherit;
  text-decoration: none;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
  display: block;
  width: 100%;
  max-width: 112px;
  max-height: 102px;
  height: auto;
  object-fit: contain;
}

.site-footer__logo .brand-mark {
  width: 82px;
  height: 40px;
}

.site-footer__logo .brand-text {
  font-size: 12px;
}

.site-footer__brand p {
  max-width: 430px;
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.18;
}

.site-footer__headline {
  align-self: start;
  display: grid;
  gap: 18px;
}

.site-footer__headline span,
.site-footer__nav strong,
.site-footer__parks strong {
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__headline strong {
  display: block;
  max-width: 980px;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer__nav,
.site-footer__parks {
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  padding-top: 24px;
}

.site-footer__nav ul,
.site-footer__parks ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a,
.site-footer__parks a {
  color: inherit;
  text-decoration: none;
}

.site-footer__nav a {
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 700;
}

.site-footer__parks ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 4vw, 52px);
}

.site-footer__parks a {
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.05;
  font-weight: 650;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__parks a:hover,
.site-footer__parks a:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__nav a:focus-visible,
.site-footer__parks a:focus-visible,
.site-footer__logo:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(12px, 3vw, 36px);
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__inner,
  .site-nav__inner {
    grid-template-columns: minmax(210px, 320px) minmax(0, 1fr);
    align-items: end;
    align-content: end;
    gap: clamp(24px, 4vw, 44px);
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: clamp(40px, 7vh, 74px);
  }

  .hero__intro,
  .site-nav__intro {
    max-width: 320px;
    margin-bottom: 0;
  }

  .park-list a,
  .nav-menu a {
    font-size: clamp(34px, 7vw, 54px);
  }

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

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

  .single-park .site-header .brand {
    display: grid;
  }

  .park-detail {
    --sidebar-width: 0px;
  }

  .detail-sidebar {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .detail-page {
    margin-left: 0;
  }

  .detail-sidebar__brand {
    display: none;
  }

  .detail-sidebar__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-sidebar__nav a {
    padding-right: 10px;
    font-size: 14px;
  }

  .detail-columns,
  .detail-columns--reversed,
  .intro-secondary,
  .activity-board,
  .activity-detail,
  .wildlife-bottom,
  .service-board,
  .guide-card,
  .guide-catalog,
  .guide-profile,
  .guide-modal__panel {
    grid-template-columns: 1fr;
  }

  .detail-guides .guide-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .detail-guides .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-modal__photo img {
    min-height: 320px;
  }

  .guide-modal__photo {
    position: relative;
    height: auto;
    min-height: 320px;
  }

  .wildlife-middle,
  .wildlife-bottom {
    margin-top: 72px;
  }

  .activity-table__grid {
    grid-template-columns: 1fr;
  }

  .territory-section {
    padding-top: 72px;
  }

  .territory-section h2 {
    font-size: clamp(46px, 11vw, 88px);
    line-height: 1.1;
  }

  .territory-section__copy {
    margin-left: 0;
  }

  .community-section h2 {
    font-size: clamp(40px, 8vw, 64px);
  }

  .community-carousel__thumbs {
    gap: 22px;
  }

  .experience-section {
    padding-bottom: 96px;
  }

  .experience-section__keyword {
    margin-bottom: 72px;
  }

  .experience-section__content {
    grid-template-columns: 1fr;
  }

  .experience-section__header {
    grid-template-columns: 1fr;
  }

  .experience-section__header h3 {
    grid-column: 1;
  }

  .experience-section__activities {
    width: min(100%, 560px);
    margin: 0 auto;
  }

}

@media (max-width: 620px) {
  .admin-bar .detail-sidebar {
    top: 46px;
    height: auto;
  }

  .site-header {
    position: absolute;
    padding: 24px;
  }

  .menu-toggle {
    top: 24px;
    right: 24px;
    min-width: 82px;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 13px;
  }

  .site-nav__brand {
    top: 24px;
    left: 24px;
  }

  .site-nav__close {
    top: 24px;
    right: 24px;
    min-width: 118px;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 12px;
  }

  .brand {
    width: 84px;
  }

  .brand img,
  .brand .custom-logo {
    max-width: 84px;
    max-height: 76px;
  }

  .brand-mark {
    width: 64px;
    height: 31px;
  }

  .brand-text {
    font-size: 11px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__inner,
  .site-nav__inner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: clamp(22px, 4.8vh, 34px);
    align-content: end;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: max(86px, env(safe-area-inset-bottom));
  }

  .hero__intro,
  .site-nav__intro {
    order: 2;
    max-width: min(100%, 330px);
    margin: 0;
    font-size: 14px;
    line-height: 1.14;
  }

  .park-list,
  .nav-menu {
    align-self: end;
    justify-self: stretch;
    align-content: end;
    gap: 3px;
    max-height: min(56vh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    transform: none;
    scrollbar-width: none;
  }

  .park-list::-webkit-scrollbar,
  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .park-list--centered,
  .nav-menu--centered {
    min-height: auto;
    justify-items: start;
    text-align: left;
  }

  .park-header-only__content h1 {
    font-size: clamp(42px, 17vw, 84px);
  }

  .park-list a,
  .nav-menu a {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 0.98;
  }

  .home-map-section__inner {
    overflow: visible;
  }

  .home-map {
    width: 100%;
  }

  .home-map-tooltip {
    width: min(250px, calc(100% - 24px));
    padding: 12px;
  }

  .home-map-tooltip.is-below {
    transform: translate(-50%, 0);
  }

  .home-map-tooltip strong {
    font-size: 16px;
  }

  .home-map-tooltip p {
    font-size: 12px;
  }

  .home-map-tooltip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 36px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--pn-white);
    background: #bd2530;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .territory-section {
    padding: 56px 24px 72px;
  }

  .territory-section h2 {
    font-size: clamp(40px, 13vw, 64px);
    line-height: 1.08;
  }

  .territory-section__copy {
    margin-top: 36px;
    font-size: 14px;
  }

  .territory-section__map {
    margin-top: 48px;
  }

  .community-section {
    padding: 64px 24px 78px;
  }

  .community-section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .community-section__intro,
  .community-section__copy {
    margin-top: 32px;
    font-size: 14px;
  }

  .community-carousel {
    margin-top: 48px;
  }

  .community-carousel__stage {
    border-radius: 6px;
  }

  .community-carousel__slide img,
  .community-carousel__slide iframe {
    aspect-ratio: 4 / 3;
  }

  .community-carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .community-carousel__arrow--prev {
    left: 8px;
  }

  .community-carousel__arrow--next {
    right: 8px;
  }

  .community-carousel__arrow span {
    font-size: 54px;
  }

  .community-carousel__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .experience-section {
    padding: 0 24px 78px;
  }

  .experience-section__keyword {
    margin-bottom: 52px;
    line-height: .82;
  }

  .experience-section__header {
    margin-bottom: 36px;
  }

  .experience-section__header h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .experience-section__activities,
  .experience-section__copy {
    font-size: 14px;
  }

  .experience-section__copy {
    text-align: left;
  }

  .experience-section__figure {
    margin-top: 42px;
  }

  .experience-section__carousel-stage {
    aspect-ratio: 4 / 3;
  }

  .video-catalog-section {
    padding: 58px 24px 72px;
  }

  .video-catalog-section__kicker {
    margin-bottom: 34px;
  }

  .video-catalog__media {
    border-radius: 6px;
  }

  .video-catalog__media img,
  .video-catalog__media iframe {
    aspect-ratio: 4 / 3;
  }

  .video-catalog__play {
    min-width: 108px;
    min-height: 48px;
    padding: 0 26px;
    font-size: 12px;
  }

  .video-catalog__list {
    gap: 8px;
  }

  .video-catalog__item {
    padding: 13px 0;
  }

  .video-catalog__item strong {
    font-size: clamp(22px, 7vw, 34px);
  }

  .park-grid,
  .facts,
  .guide-contact,
  .guide-modal__meta {
    grid-template-columns: 1fr;
  }

  .detail-guides h2 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .guide-section__image {
    height: auto;
  }

  .detail-guides .guide-grid {
    grid-template-columns: 1fr;
    width: min(100%, 290px);
  }

  .guide-modal {
    padding: 14px;
  }

  .guide-modal__content {
    padding: 30px 24px 34px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__headline {
    order: -1;
  }

  .site-footer__parks ul {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }
}
