/*
Theme Name: Cross Country Campground
Theme URI: https://crosscountrycampground.com
Author: Cross Country Campground
Description: Front-page wireframe matching the campground marketing mockup.
Version: 0.1.0
Text Domain: cross-country-campground
*/

:root {
  --ink: #1a1814;
  --white: #faf8f4;
  --parchment: #e6dcc8;
  --parchment-dark: #d4c9b2;
  --forest: #1e3a2f;
  --forest-deep: #152a22;
  --forest-textured: #1a3228;
  --gold: #c9a227;
  --gold-bright: #e4c76b;
  --cta-orange: #d35400;
  --cta-orange-hover: #e86512;
  --muted: #5c5348;
  --topbar-border: #c8c2b8;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.18);
  --font-script: "Great Vibes", cursive;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --max-w: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.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;
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--cta-orange);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cta-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--topbar-border);
  font-size: 0.8rem;
  color: var(--muted);
}

.top-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.45rem 0;
}

.top-bar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.top-bar__contact a {
  text-decoration: none;
  color: inherit;
}

.top-bar__badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.badge-placeholder {
  width: 36px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
  border: 1px solid #aaa;
  opacity: 0.85;
}

/* ——— Main header ——— */
.site-header {
  background: var(--forest-textured);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(0, 0, 0, 0.06) 3px
    );
  color: var(--white);
  position: relative;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 8% 3%;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(250, 248, 244, 0.34) 0%,
    rgba(228, 199, 107, 0.16) 38%,
    rgba(250, 248, 244, 0) 74%
  );
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

.brand__logo {
  display: block;
  width: auto;
  height: 92px;
  max-width: min(320px, 42vw);
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 10px rgba(250, 248, 244, 0.18));
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: center;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.95;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn--cta {
  background: var(--cta-orange);
  color: var(--white);
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn--cta:hover {
  background: var(--cta-orange-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.btn--green:hover {
  background: var(--forest-deep);
  color: var(--white);
}

@media (max-width: 900px) {
  .top-bar .wrap {
    justify-content: center;
    text-align: center;
  }

  .top-bar__contact {
    justify-content: center;
  }

  .top-bar__badges {
    display: none;
  }

  .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 0.75rem;
    padding: 0.75rem 0 1rem;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    height: 64px;
    max-width: min(240px, 100%);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
  }

  .site-nav {
    width: 100%;
    order: 4;
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1rem 1rem;
    gap: 0.85rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    font-size: 0.82rem;
  }

  .site-header .btn--cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    margin-left: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .top-bar {
    font-size: 0.74rem;
  }

  .top-bar .wrap {
    padding: 0.4rem 0;
  }

  .top-bar__contact {
    flex-direction: column;
    gap: 0.15rem;
  }

  .site-header .wrap {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .brand {
    justify-content: center;
  }

  .brand__logo {
    height: 56px;
    max-width: min(220px, 78vw);
  }

  .nav-toggle {
    width: 100%;
  }

  .site-nav ul {
    padding-inline: 0.85rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  color: var(--white);
  padding: 3rem 1rem;
  background-color: var(--forest-deep);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media--image {
  background-size: cover;
  background-position: center;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.hero__script {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
  opacity: 0.92;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.12;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.hero__title-line {
  display: inline-block;
  margin-top: 0.25rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  margin: 0 0 1.75rem;
  color: var(--white);
  opacity: 1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.hero .btn--cta {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
}

/* ——— Torn paper + features ——— */
.torn-edge {
  display: block;
  width: 100%;
  height: 18px;
  margin-top: -1px;
}

.torn-edge--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

.features {
  position: relative;
  background: var(--parchment);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  padding: 2.5rem 0 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  text-align: center;
}

.feature-card__ring {
  width: min(100%, 200px);
  aspect-ratio: 1;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #333;
}

.feature-card__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-deep);
}

.features__tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.features .section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: none;
}

.section-kicker {
  font-family: var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-card__note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0.4rem 0 0;
  max-width: 14rem;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.82);
  padding: 0.62rem 1.35rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost-on-dark {
  border-color: rgba(255, 255, 255, 0.75);
}

/* ——— Welcome ——— */
.section-welcome {
  background: var(--parchment);
  background-image: linear-gradient(180deg, var(--parchment-dark) 0%, var(--parchment) 14%);
  padding: 3rem 0 3.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.welcome__inner {
  max-width: 40rem;
}

.welcome__lead {
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--ink);
}

.welcome__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.welcome__cta-line {
  margin-top: 1.5rem;
}

/* ——— Why stay ——— */
.why {
  background: #ebe4d7;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.why .section-head {
  margin-bottom: 1.75rem;
}

.why__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.why__item h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin: 0 0 0.5rem;
}

.why__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Location ——— */
.location-section {
  background: var(--parchment);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.location__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .location__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.location__copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.location__note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0;
}

.location__aside {
  background: rgba(30, 58, 47, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
}

.location__aside-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--forest-deep);
}

.location__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ——— Site map preview ——— */
.sitemap-section {
  background: linear-gradient(180deg, var(--parchment-dark) 0%, var(--parchment) 18%);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sitemap__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .sitemap__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.sitemap__copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.sitemap__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ——— Intro split (legacy / unused blocks retained for other templates) ——— */
.intro {
  background: var(--parchment);
  background-image: linear-gradient(180deg, var(--parchment-dark) 0%, var(--parchment) 12%);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.intro__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.intro h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--forest-deep);
  margin: 0 0 0.75rem;
}

.intro__lead {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.intro__lead strong {
  color: var(--forest);
}

.intro__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.intro__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo-frame {
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #222;
}

.photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.map-placeholder {
  border: 3px solid var(--white);
  background: linear-gradient(145deg, #c5d4c0 0%, #a8b89f 40%, #8a9a82 100%);
  min-height: 180px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  text-align: center;
  padding: 1rem;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08);
}

/* ——— Adventure / gallery ——— */
.adventure {
  background: var(--forest-deep);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 35%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  color: var(--white);
  padding: 3rem 0 3.5rem;
}

.adventure__script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 0.5rem;
}

.adventure__script--title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  font-weight: 400;
}

.adventure__sub {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
  opacity: 0.92;
}

.adventure__sub a {
  color: var(--gold-bright);
}

.adventure__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .adventure__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  text-align: center;
}

.gallery-item__frame {
  border: 4px solid var(--white);
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-soft);
  background: #111;
}

.gallery-item__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.gallery-item figcaption {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.adventure__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.25rem;
}

.adventure__actions .btn--cta {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.adventure__actions .btn--ghost {
  font-size: 0.82rem;
  padding: 0.65rem 1.25rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--parchment);
  background-image: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-dark) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.site-footer__primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.site-footer__line a {
  color: inherit;
  text-decoration: none;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.site-footer__social a:hover {
  background: var(--cta-orange);
  color: var(--white);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
}

.site-footer__legal a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--forest-deep);
  text-decoration: underline;
}

.site-footer__sep {
  color: rgba(0, 0, 0, 0.25);
  user-select: none;
}

/* Inner pages (default page + posts) */
.page-content {
  background: var(--parchment);
  background-image: linear-gradient(180deg, var(--parchment-dark) 0%, var(--parchment) 10%);
  padding: 2.5rem 0 4rem;
  min-height: 55vh;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-content__inner {
  width: min(100% - 2rem, 42rem);
  margin-inline: auto;
}

.page-article__header {
  margin-bottom: 1.25rem;
}

.page-article__title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--forest-deep);
  margin: 0;
  line-height: 1.15;
}

.page-article__body,
.entry-content {
  font-size: 1rem;
  line-height: 1.65;
}

.entry-content p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.entry-content h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest-deep);
  margin: 1.75rem 0 0.5rem;
}

.entry-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.entry-content a.btn {
  margin-top: 0.25rem;
}
