:root {
  --pine-950: #0d261c;
  --pine-900: #123326;
  --pine-800: #194632;
  --pine-700: #245a40;
  --paper: #f2ead7;
  --paper-light: #fbf6e8;
  --ink: #18231d;
  --muted: #596259;
  --rust: #c85d31;
  --rust-dark: #a94524;
  --sun: #edba4a;
  --river: #4f8c91;
  --line: rgba(24, 35, 29, 0.18);
  --light-line: rgba(255, 255, 255, 0.2);
  --shadow: 8px 8px 0 rgba(24, 35, 29, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(24, 35, 29, 0.07) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 35%, rgba(24, 35, 29, 0.025));
  background-size: 5px 5px, 100% 100%;
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body::selection {
  color: var(--paper-light);
  background: var(--rust);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--rust);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--paper-light);
  background: rgba(13, 38, 28, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.header-inner,
.hero-inner,
.hero-facts,
.section,
.day-inner,
.booking-inner,
.footer-inner,
.footer-bottom {
  width: min(var(--max-width), calc(100% - 3rem));
  margin-inline: auto;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--pine-800);
}

.brand-mark svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--paper-light);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Bitter", serif;
  font-size: 1.12rem;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.4rem);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 0.7rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
}

.button-rust {
  color: white;
  background: var(--rust);
}

.button-rust:hover,
.button-rust:focus-visible {
  background: var(--rust-dark);
}

.button-sun {
  color: var(--pine-950);
  background: var(--sun);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper-light);
  background:
    linear-gradient(115deg, rgba(13, 38, 28, 0.98) 0%, rgba(18, 51, 38, 0.95) 52%, rgba(25, 70, 50, 0.92) 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.8px, transparent 0.8px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.topo-lines {
  position: absolute;
  top: -22rem;
  left: -20rem;
  width: 54rem;
  aspect-ratio: 1;
  opacity: 0.14;
  border: 1px solid white;
  border-radius: 42% 58% 54% 46%;
  transform: rotate(20deg);
}

.topo-lines::before,
.topo-lines::after {
  content: "";
  position: absolute;
  border: 1px solid white;
  border-radius: inherit;
}

.topo-lines::before {
  inset: 4.5rem;
}

.topo-lines::after {
  inset: 9rem;
}

.hero-inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 2rem;
  padding-block: 4.6rem 3.5rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 2.5rem;
  animation: rise-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.kicker,
.section-tag,
.note-label,
.card-number {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(237, 186, 74, 0.14);
}

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

h1,
h2 {
  font-family: "Bitter", serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--sun);
  font-weight: 600;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.15rem;
  color: var(--pine-800);
  border-bottom: 2px solid currentColor;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-link {
  color: rgba(255, 255, 255, 0.82);
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  animation: fade-in 900ms 160ms ease both;
}

.sun-disc {
  position: absolute;
  top: 7%;
  right: 4%;
  width: min(17vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 18px rgba(237, 186, 74, 0.08);
}

.camp-landscape {
  position: absolute;
  right: -8%;
  bottom: -3.5rem;
  width: 112%;
  height: auto;
  overflow: visible;
}

.ridge-back {
  fill: #376e4e;
}

.ridge-mid {
  fill: #22563c;
}

.ridge-front,
.pines {
  fill: #0a2419;
}

.river {
  fill: var(--river);
}

.river-glint {
  fill: none;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 8;
  stroke-linecap: round;
}

.trail-sign {
  position: absolute;
  top: 19%;
  left: 9%;
  z-index: 2;
  width: 235px;
  padding: 1.15rem 1.3rem 1.05rem;
  color: var(--paper-light);
  background: #7c452c;
  border: 2px solid rgba(255, 255, 255, 0.36);
  box-shadow: 10px 12px 0 rgba(5, 20, 14, 0.28);
  transform: rotate(-3deg);
}

.trail-sign::before,
.trail-sign::after {
  content: "";
  position: absolute;
  top: -42px;
  width: 5px;
  height: 48px;
  background: #b98a5a;
}

.trail-sign::before {
  left: 36px;
}

.trail-sign::after {
  right: 36px;
}

.trail-sign small,
.trail-sign span,
.trail-sign strong {
  display: block;
}

.trail-sign small,
.trail-sign span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trail-sign strong {
  margin: 0.18rem 0;
  font-family: "Bitter", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.camp-stamp {
  position: absolute;
  right: 2%;
  bottom: 20%;
  z-index: 4;
  width: 106px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(8deg);
}

.camp-stamp::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed currentColor;
  border-radius: 50%;
}

.camp-stamp span,
.camp-stamp strong {
  position: relative;
  z-index: 1;
  display: block;
}

.camp-stamp span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.camp-stamp strong {
  font-family: "Bitter", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-facts {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
}

.hero-facts span {
  padding: 1.25rem 1rem;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--light-line);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.hero-facts span:last-child {
  border-right: 0;
}

.camp-ticker {
  overflow: hidden;
  color: var(--pine-950);
  background: var(--sun);
  border-block: 1px solid rgba(0, 0, 0, 0.22);
}

.camp-ticker > div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.75rem 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.camp-ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust);
}

.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.section-tag {
  color: var(--rust);
}

.light-tag {
  color: var(--sun);
}

.section h2,
.day-section h2,
.booking-section h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.story-copy {
  max-width: 650px;
}

.story-copy > p:last-child,
.location-copy > p {
  color: var(--muted);
}

.large-copy {
  color: var(--ink) !important;
  font-family: "Bitter", serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.field-note {
  position: relative;
  padding: 2.5rem;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.field-note::after {
  content: "";
  position: absolute;
  inset: 11px;
  pointer-events: none;
  border: 1px dashed rgba(24, 35, 29, 0.19);
}

.field-note > * {
  position: relative;
  z-index: 1;
}

.field-note h3 {
  margin-bottom: 0.8rem;
  font-family: "Bitter", serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.field-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.note-label {
  color: var(--rust);
}

.tape {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 2;
  width: 88px;
  height: 29px;
  background: rgba(225, 202, 150, 0.83);
  transform: translateX(-50%) rotate(-2deg);
}

.amenities-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.2rem;
}

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

.section-heading > p {
  max-width: 34rem;
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.amenity-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.amenity-card:hover {
  z-index: 1;
  background: var(--paper-light);
  transform: translateY(-6px);
}

.amenity-card.accent-card {
  color: white;
  background: var(--pine-800);
}

.amenity-card.accent-card p,
.amenity-card.accent-card .card-number {
  color: rgba(255, 255, 255, 0.72);
}

.amenity-card.accent-card p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--pine-800);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accent-card .card-icon {
  color: var(--sun);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  margin: 2.5rem 0 0.5rem;
  color: var(--rust);
}

.amenity-card h3 {
  margin-bottom: 0.7rem;
  font-family: "Bitter", serif;
  font-size: 1.45rem;
}

.amenity-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.day-section {
  position: relative;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--pine-950);
}

.day-section::after {
  content: "RIVER COUNTRY";
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.7;
  white-space: nowrap;
}

.day-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 8rem);
}

.day-heading h2 {
  max-width: 9ch;
}

.day-list {
  border-top: 1px solid var(--light-line);
}

.day-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--light-line);
}

.day-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--pine-950);
  background: var(--sun);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.day-list h3 {
  margin-bottom: 0.25rem;
  font-family: "Bitter", serif;
  font-size: 1.35rem;
}

.day-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.first-look-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.first-look-copy p:not(.section-tag) {
  color: var(--muted);
}

.photo-stack {
  min-height: 510px;
  position: relative;
}

.photo-card {
  position: absolute;
  width: min(360px, 72%);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: white;
  border: 8px solid var(--paper-light);
  box-shadow: 5px 8px 22px rgba(24, 35, 29, 0.24);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(35deg, transparent 48%, rgba(255, 255, 255, 0.16) 49%, transparent 51%),
    linear-gradient(-35deg, transparent 48%, rgba(255, 255, 255, 0.12) 49%, transparent 51%);
  background-size: 34px 34px;
}

.photo-card span,
.photo-card small {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-card span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
}

.photo-card strong {
  font-family: "Bitter", serif;
  font-size: 1.35rem;
}

.photo-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.photo-one {
  top: 0;
  right: 6%;
  z-index: 1;
  background: #496f55;
  transform: rotate(5deg);
}

.photo-two {
  top: 120px;
  left: 2%;
  z-index: 2;
  background: #8c4d32;
  transform: rotate(-7deg);
}

.photo-three {
  right: 0;
  bottom: 0;
  z-index: 3;
  background: #386f75;
  transform: rotate(2deg);
}

.location-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.location-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d9ccab;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-map::after {
  content: "N";
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--pine-800);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Bitter", serif;
  font-weight: 700;
}

.location-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-contours {
  fill: none;
  stroke: rgba(24, 35, 29, 0.24);
  stroke-width: 1.5;
}

.map-river {
  fill: none;
  stroke: rgba(79, 140, 145, 0.65);
  stroke-width: 18;
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 43%;
  display: grid;
  justify-items: center;
  padding: 0.8rem 1rem;
  color: white;
  background: var(--pine-800);
  box-shadow: 4px 4px 0 rgba(24, 35, 29, 0.25);
  transform: translate(-50%, -50%);
}

.map-pin::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: var(--pine-800);
  transform: rotate(45deg);
}

.map-pin strong,
.map-pin small {
  position: relative;
  z-index: 1;
}

.map-pin strong {
  font-family: "Bitter", serif;
}

.map-pin small {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-copy {
  max-width: 520px;
}

.location-copy .text-link {
  margin-top: 1rem;
}

.booking-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--rust);
}

.booking-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 550px;
  height: 550px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.booking-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.booking-copy > p:not(.section-tag) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
}

.booking-copy .button {
  margin-top: 1.2rem;
}

.booking-card {
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 10px 10px 0 rgba(89, 28, 12, 0.35);
  transform: rotate(1deg);
}

.booking-card-head {
  display: grid;
  padding: 1.4rem 1.5rem;
  color: white;
  background: var(--pine-800);
}

.booking-card-head span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card-head strong {
  font-family: "Bitter", serif;
  font-size: 1.35rem;
}

.booking-steps {
  margin: 0;
  padding: 0 1.5rem;
  list-style: none;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.booking-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--rust);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.booking-steps div {
  display: grid;
}

.booking-steps strong {
  font-family: "Bitter", serif;
  font-size: 0.98rem;
}

.booking-steps small {
  color: var(--muted);
}

.powered-by {
  margin: 0;
  padding: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading h2 {
  max-width: 7ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: "Bitter", serif;
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--rust);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--pine-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sun);
}

.footer-bottom {
  margin-bottom: 0;
  padding-block: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--light-line);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-book {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .amenity-card {
    min-height: 340px;
  }

  .first-look-section,
  .location-section {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner,
  .hero-inner,
  .hero-facts,
  .section,
  .day-inner,
  .booking-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 2rem, var(--max-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-inner > .button {
    display: none;
  }

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

  .hero-inner,
  .story-grid,
  .section-heading,
  .day-inner,
  .first-look-section,
  .location-section,
  .booking-inner,
  .faq-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 3.8rem;
    padding-bottom: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-art {
    min-height: 520px;
  }

  .camp-landscape {
    right: -5%;
    width: 106%;
  }

  .sun-disc {
    width: 145px;
  }

  .story-grid,
  .section-heading,
  .day-inner,
  .first-look-section,
  .location-section,
  .booking-inner,
  .faq-section {
    gap: 2.5rem;
  }

  .field-note {
    max-width: 560px;
  }

  .first-look-copy,
  .location-copy {
    max-width: 650px;
  }

  .photo-stack {
    width: min(100%, 650px);
    min-height: 520px;
  }

  .location-map {
    min-height: 460px;
    order: 2;
  }

  .location-copy {
    order: 1;
  }

  .booking-card {
    max-width: 560px;
  }

  .faq-heading h2 {
    max-width: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-book {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 60;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    background: var(--rust);
    border: 1px solid rgba(0, 0, 0, 0.26);
    border-radius: 3px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.24);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 4.8rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

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

  .hero-actions .text-link {
    margin-top: 0.3rem;
  }

  .hero-art {
    min-height: 420px;
  }

  .trail-sign {
    top: 16%;
    left: 3%;
    width: 190px;
  }

  .trail-sign strong {
    font-size: 1.35rem;
  }

  .camp-stamp {
    right: 0;
    bottom: 22%;
    width: 90px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    padding-block: 0.35rem;
  }

  .hero-facts span {
    padding: 0.6rem;
    border-right: 0;
  }

  .section {
    padding-block: 4.8rem;
  }

  .section h2,
  .day-section h2,
  .booking-section h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .field-note {
    padding: 2rem 1.5rem;
  }

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

  .amenity-card {
    min-height: 320px;
  }

  .photo-stack {
    min-height: 430px;
  }

  .photo-card {
    width: 78%;
  }

  .photo-two {
    top: 100px;
  }

  .location-map {
    min-height: 390px;
  }

  .booking-copy .button {
    width: 100%;
  }

  .booking-card {
    transform: none;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .footer-inner {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
