:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #5f6f68;
  --paper: #fbf8ef;
  --mist: #eef2e8;
  --sage: #6d876d;
  --pine: #203b2c;
  --lake: #5f8d95;
  --sunset: #d78158;
  --rose: #b55d78;
  --line: rgba(23, 35, 29, 0.16);
  --shadow: 0 20px 60px rgba(23, 35, 29, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

a,
button,
input,
textarea {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 129, 88, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--pine);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(16, 28, 22, 0.74);
  box-shadow: 0 12px 36px rgba(16, 28, 22, 0.18);
  backdrop-filter: blur(12px);
}

.brand,
.main-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.9) 48% 53%, transparent 54%),
    linear-gradient(160deg, var(--sage), var(--lake));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.46);
}

.main-nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
}

.main-nav a,
.text-link {
  text-decoration: none;
}

.main-nav a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: #fff;
}

.text-link:hover {
  color: var(--lake);
}

.header-cta,
.button,
button {
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta {
  padding: 11px 16px;
  color: var(--pine);
  background: #fff7e6;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover,
button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.menu-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0;
  border-radius: 99px;
  background: #fff;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-header.is-open .menu-line:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-line:nth-child(3) {
  opacity: 0;
}

.site-header.is-open .menu-line:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

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

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 14, 10, 0.78), rgba(6, 14, 10, 0.34) 48%, rgba(6, 14, 10, 0.05)),
    linear-gradient(0deg, rgba(16, 28, 22, 0.85), rgba(16, 28, 22, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 86px;
  color: #fff;
}

.kicker,
.section-label,
.site-tag {
  margin: 0 0 14px;
  color: var(--sunset);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9.2vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
}

.primary,
button {
  color: #fff;
  background: var(--pine);
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

section:not(.hero) {
  scroll-margin-top: 84px;
  padding: 76px clamp(18px, 5vw, 76px);
}

.intro-section,
.split-section,
.map-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.intro-copy p,
.contact-section p {
  margin-top: 0;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--pine);
  font-weight: 900;
  border-bottom: 2px solid var(--sunset);
}

.camping-section,
.activities-section,
.map-section {
  background: var(--mist);
}

.map-section {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
}

.camping-section {
  display: block;
}

.section-heading.compact {
  max-width: 860px;
  margin-bottom: 28px;
}

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

.camping-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "copy rates"
    "photo rates";
  gap: 22px clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.camping-copy {
  grid-area: copy;
}

.camping-copy p:not(.section-label) {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.camping-photo-card {
  grid-area: photo;
  min-height: 420px;
  display: grid;
  align-content: end;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pine);
  box-shadow: var(--shadow);
}

.camping-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  grid-area: 1 / 1;
}

.camping-photo-card figcaption {
  grid-area: 1 / 1;
  align-self: end;
  margin: 0;
  padding: 18px 20px;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  background: linear-gradient(0deg, rgba(8, 18, 12, 0.82), rgba(8, 18, 12, 0));
}

.activity-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.camping-rates-panel {
  grid-area: rates;
  display: grid;
  gap: 14px;
  align-content: stretch;
  padding: 22px;
  border: 1px solid rgba(23, 35, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.7);
  box-shadow: var(--shadow);
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.rate-row h3 {
  margin-top: 12px;
}

.rate-row p {
  max-width: 360px;
  margin: 10px 0 0;
}

.rate-row strong {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.9;
  white-space: nowrap;
}

.rate-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.membership-row {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 59, 44, 0.94), rgba(32, 59, 44, 0.82)),
    url("assets/green-lake-camping.jpeg") center / cover;
}

.membership-row p,
.membership-row strong,
.membership-row small {
  color: #fff;
}

.membership-row .site-tag {
  color: var(--pine);
  background: #fff7e6;
}

.site-tag {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pine);
  background: #fff3dd;
  letter-spacing: 0.08em;
}

.camping-payment {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--pine);
  font-weight: 800;
}

.camping-payment span {
  color: var(--sunset);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.camping-payment p,
.camping-payment small {
  margin: 0;
  color: var(--pine);
}

.camping-payment small {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: rgba(95, 141, 149, 0.82);
  box-shadow: 0 0 0 4px rgba(95, 141, 149, 0.14);
}

textarea {
  resize: vertical;
}

.amenities-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.amenity-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.amenity-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--pine);
  font-weight: 900;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 0 6px rgba(215, 129, 88, 0.12);
}

.amenities-photo-card {
  display: grid;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pine);
  box-shadow: var(--shadow);
}

.amenities-photo-card img {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
  object-fit: cover;
}

.amenities-photo-card figcaption {
  grid-area: 1 / 1;
  align-self: end;
  margin: 0;
  padding: 20px 22px;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
  background: linear-gradient(0deg, rgba(8, 18, 12, 0.82), rgba(8, 18, 12, 0));
}

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

.activity-grid article {
  min-height: 100%;
}

.activity-card {
  display: flex;
  flex-direction: column;
}

.activity-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.activity-card img.walking-track-photo {
  object-position: center 82%;
}

.activity-card img.fishing-photo {
  object-position: center 68%;
}

.activity-card img.paddle-boarding-photo {
  object-position: center 86%;
}

.activity-card-content {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.activity-card-content p {
  margin: 0;
}

.nearby-section {
  background: #fff;
}

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

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

.faq-card {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.faq-card h3 {
  color: var(--pine);
}

.faq-card p {
  margin: 0;
}

.nearby-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 28px;
}

.nearby-intro p {
  margin: 0 0 28px;
  font-size: 1.05rem;
}

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

.nearby-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nearby-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.nearby-card img.nearby-logo-image {
  padding: 24px;
  background: #fff;
  object-fit: contain;
}

.nearby-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.nearby-card span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pine);
  background: #fff3dd;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nearby-card p {
  margin: 0;
}

.nearby-card a {
  width: max-content;
  margin-top: auto;
  color: var(--pine);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--sunset);
}

.gallery-section {
  padding-bottom: 28px;
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-column: span 3;
  height: 460px;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 2;
  height: 460px;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 1;
  height: 460px;
}

.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 3;
}

.map-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #d7c48a;
  box-shadow: var(--shadow);
}

.map-image-link img {
  width: 100%;
  aspect-ratio: 1448 / 1086;
  object-fit: cover;
}

.rules-section {
  background: #fff;
}

.rules-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "intro list"
    "photo list";
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.rules-shell .section-heading {
  grid-area: intro;
}

.rules-shell .section-heading p:not(.section-label) {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.rules-photo-card {
  grid-area: photo;
  display: grid;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pine);
  box-shadow: var(--shadow);
}

.rules-photo-card img {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
  object-fit: cover;
}

.rules-photo-card figcaption {
  grid-area: 1 / 1;
  align-self: end;
  margin: 0;
  padding: 20px 22px;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  background: linear-gradient(0deg, rgba(8, 18, 12, 0.82), rgba(8, 18, 12, 0));
}

.rules-list {
  grid-area: list;
  counter-reset: rule;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  position: relative;
  min-height: 88px;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--pine);
  font-weight: 800;
  line-height: 1.45;
}

.rules-list li::before {
  counter-increment: rule;
  content: counter(rule);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-section {
  background: #fff;
}

.contact-form {
  box-shadow: none;
  border: 1px solid var(--line);
}

.form-status {
  min-height: 1.45em;
  margin: -2px 0 0;
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--pine);
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 28, 22, 0.96);
    box-shadow: 0 18px 44px rgba(16, 28, 22, 0.22);
    backdrop-filter: blur(16px);
  }

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

  .main-nav a {
    padding: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle {
    display: flex;
  }

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

  .amenities-layout {
    grid-template-columns: 1fr;
  }

  .amenities-photo-card {
    min-height: 420px;
  }

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

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5) {
    grid-column: auto;
    height: 360px;
  }

  .rules-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "photo"
      "list";
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    width: min(100% - 32px, 980px);
    padding-bottom: 58px;
  }

  section:not(.hero) {
    padding: 52px 18px;
  }

  .intro-section,
  .split-section,
  .map-section,
  .contact-section,
  .nearby-intro,
  .amenities-layout,
  .rules-shell,
  .rules-list {
    grid-template-columns: 1fr;
  }

  .activity-grid,
  .faq-grid,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .activity-grid article {
    min-height: auto;
  }

  .camping-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "rates";
  }

  .camping-photo,
  .camping-photo-card {
    height: 280px;
    min-height: 0;
  }

  .camping-photo {
    min-height: 0;
  }

  .rate-row {
    grid-template-columns: 1fr;
  }

  .rate-row strong {
    font-size: 3rem;
  }

  .amenities-photo-card {
    min-height: 280px;
  }

  .rules-photo-card {
    min-height: 280px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5) {
    height: 260px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .button {
    width: 100%;
  }

  .camping-rates-panel {
    padding: 12px;
  }

  .rules-list li {
    min-height: auto;
  }
}
