:root {
  --ink: #061726;
  --ink-soft: #0c2633;
  --paper: #f4efe4;
  --paper-bright: #fffdf7;
  --teal: #18d4cf;
  --teal-dark: #007d7a;
  --gold: #f6bb24;
  --coral: #ee6449;
  --line: rgba(6, 23, 38, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --shadow: 0 22px 60px rgba(3, 15, 25, 0.16);
  --space-section: clamp(56px, 7vw, 96px);
  --space-page: clamp(22px, 6vw, 88px);
  --space-grid: clamp(36px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: 999px;
}

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(22px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 12, 25, 0.8), transparent);
}

.site-header.solid {
  position: relative;
  background: var(--ink);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:not(.nav-cta) { padding-block: 10px; }
.nav-links a:not(.nav-cta):hover { color: var(--teal); }
.nav-links a[aria-current="page"] { color: var(--teal); }

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.nav-cta:hover { background: rgba(255, 255, 255, 0.12); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(820px, 100svh);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero-media, .hero-wash { position: absolute; inset: 0; }

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(2, 15, 30, .97) 0%, rgba(3, 19, 34, .78) 44%, rgba(2, 11, 23, .12) 76%),
    linear-gradient(180deg, transparent 54%, rgba(2, 15, 27, .96) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(820px, 100svh);
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 132px);
  padding: 112px 0 154px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.warm { color: #a34d32; }

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

h1, h2, .display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .92;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); }
.button-primary:hover { background: #ffd258; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(4,18,32,.22); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }

.hero-details {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6vw, 96px);
  bottom: 34px;
  left: clamp(24px, 8vw, 132px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
}

.hero-details div { display: grid; gap: 4px; }
.hero-details span { color: var(--teal); font-size: .65rem; font-weight: 800; letter-spacing: .15em; }
.hero-details strong { font-size: .93rem; font-weight: 500; }

.gallery-ribbon {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(300px, .9fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 190px;
  padding: 24px var(--space-page);
  color: #fff;
  background: var(--ink-soft);
  text-decoration: none;
}
.gallery-ribbon-copy { display: grid; align-content: center; }
.gallery-ribbon-copy .eyebrow { margin-bottom: 8px; }
.gallery-ribbon-copy strong { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: .96; }
.gallery-ribbon-copy small { max-width: 580px; margin-top: 8px; color: rgba(255,255,255,.67); font-size: .82rem; }
.gallery-ribbon-images { display: grid; grid-template-columns: repeat(3, 1fr); height: 132px; overflow: hidden; }
.gallery-ribbon-images img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .35s ease, filter .35s ease; }
.gallery-ribbon-action { display: inline-flex; gap: 10px; align-items: center; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.gallery-ribbon:hover .gallery-ribbon-images img { transform: scale(1.04); filter: saturate(1.1); }
.gallery-ribbon:hover .gallery-ribbon-action { color: var(--teal); }
.intro-section { padding-top: clamp(44px, 5vw, 68px); }

.section { padding: var(--space-section) var(--space-page); }
.section-inner { width: min(1200px, 100%); margin: 0 auto; }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: var(--space-grid);
  align-items: center;
}

.intro-grid h2, .section-heading h2, .contact-copy h1, .arrival-copy h1 {
  font-size: clamp(3.25rem, 6vw, 6.5rem);
}

.intro-copy p:not(.eyebrow) { max-width: 620px; color: #31434b; }
.intro-copy .emphasis { color: var(--ink); font-size: 1.2rem; font-weight: 650; }

.photo-stack { position: relative; min-height: 560px; }
.photo-stack img { position: absolute; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.photo-stack .photo-large { top: 0; right: 0; width: 78%; height: 72%; }
.photo-stack .photo-small { bottom: 0; left: 0; width: 56%; height: 48%; border: 10px solid var(--paper); }

.legacy-section { background: #e9e2d3; }
.legacy-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-grid); align-items: end; margin-bottom: 36px; }
.legacy-heading h2 { margin-bottom: 0; font-size: clamp(3.25rem, 5.5vw, 5.8rem); }
.legacy-heading > p { max-width: 640px; margin-bottom: 0; color: #3f5057; }
.legacy-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legacy-card { padding: 24px 22px 26px; border-right: 1px solid var(--line); }
.legacy-card:first-child { padding-left: 0; }
.legacy-card:last-child { padding-right: 0; border-right: 0; }
.legacy-card h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: 1.65rem; line-height: 1.05; }
.legacy-card p { margin-bottom: 14px; color: #46555b; font-size: .94rem; line-height: 1.55; }
.legacy-year { color: var(--teal-dark); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.legacy-card .text-link { font-size: .8rem; }
.archive-note { margin: 18px 0 0; color: #5b686c; font-size: .82rem; }
.legacy-proof { display: grid; grid-template-columns: .75fr 1.05fr auto; gap: var(--space-grid); align-items: center; margin-top: 30px; padding: 24px 26px; color: #fff; background: var(--ink); }
.legacy-proof p { margin-bottom: 0; }
.legacy-proof > p { color: rgba(255,255,255,.72); }
.legacy-quote { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; }
.camp-companions { display: grid; grid-template-columns: 180px minmax(160px, 1fr); gap: 18px; align-items: center; margin: 0; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.camp-companions img { width: 180px; height: 140px; object-fit: cover; object-position: 50% 42%; border: 2px solid rgba(255,255,255,.7); }
.camp-companions figcaption { display: flex; flex-direction: column; }
.camp-companions span { color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.camp-companions strong { margin: 5px 0 4px; font-family: var(--serif); font-size: 1.65rem; line-height: 1; }
.camp-companions small { color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.3; }

.dark-section { padding-block: clamp(38px, 4.2vw, 58px); color: #fff; background: var(--ink); }
.section-heading { display: flex; justify-content: space-between; gap: 42px; align-items: end; margin-bottom: 40px; }
.dark-section .section-heading { margin-bottom: clamp(24px, 3vw, 32px); }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.7); }

.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.experience-card { position: relative; min-height: clamp(340px, 34vw, 430px); margin: 0; overflow: hidden; border-radius: 4px; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.experience-card:hover img { transform: scale(1.025); }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(1,10,18,.9)); }
.experience-card figcaption { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; }
.experience-card strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.experience-card span { color: rgba(255,255,255,.75); }

.essentials { padding-block: clamp(40px, 4.8vw, 64px); background: var(--paper-bright); }
.essentials-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-grid); }
.essentials h2 { font-size: clamp(3rem, 5vw, 5rem); }
.number-list { border-top: 1px solid var(--line); }
.number-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.number-row > span { color: var(--teal-dark); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.number-row strong { display: block; margin-bottom: 6px; font-size: 1.12rem; }
.number-row p { margin-bottom: 0; color: #46555b; }

.night-band { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.night-band img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.night-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(2,14,26,.18), rgba(2,11,22,.8)); }
.night-band div { position: relative; z-index: 2; width: min(850px, calc(100% - 44px)); }
.night-band h2 { margin-bottom: 26px; font-size: clamp(4rem, 8vw, 8rem); }

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 520px;
  background: var(--paper-bright);
}

.page-hero-copy { align-self: center; padding: clamp(48px, 6vw, 80px); }
.page-hero-copy h1 { font-size: clamp(4rem, 7vw, 7.4rem); }
.page-hero-copy > p:not(.eyebrow) { max-width: 620px; color: #42535b; font-size: 1.08rem; }
.page-hero-image { min-height: 420px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.contact-hero { min-height: 410px; }
.contact-hero .page-hero-copy { padding: clamp(34px, 4vw, 56px); }
.contact-hero .page-hero-copy h1 { max-width: 7ch; font-size: clamp(3.6rem, 6vw, 6rem); }
.contact-hero .page-hero-image { min-height: 360px; max-height: 460px; }

.gallery-hero { min-height: 360px; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
.gallery-hero .page-hero-copy { padding: clamp(38px, 5vw, 68px); }
.gallery-hero .page-hero-copy h1 { font-size: clamp(3.8rem, 6.5vw, 6.5rem); }
.gallery-hero .page-hero-image { min-height: 360px; max-height: 470px; }
.gallery-hero .page-hero-image img { object-position: center 42%; }

.gallery-section { padding-block: clamp(46px, 6vw, 78px); }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-heading { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: var(--space-grid); align-items: end; margin-bottom: 24px; }
.gallery-heading h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
.gallery-heading > p { max-width: 620px; margin-bottom: 0; color: #46555b; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-card { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: #d8d2c7; }
.gallery-card.wide { grid-column: span 8; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card a { display: block; width: 100%; height: 100%; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 34px 18px 14px; color: #fff; background: linear-gradient(transparent, rgba(2,13,23,.82)); font-size: .8rem; pointer-events: none; }
.gallery-card figcaption strong { display: block; font-size: .94rem; }
.gallery-night { color: #fff; background: var(--ink); }
.gallery-night .gallery-heading > p { color: rgba(255,255,255,.68); }
.gallery-close { display: grid; place-items: center; min-height: 300px; padding: 48px 22px; color: #fff; background: linear-gradient(rgba(2,14,25,.6), rgba(2,14,25,.82)), url('../media/community-hoops.jpg') center 45%/cover; text-align: center; }
.gallery-close h2 { max-width: 850px; margin-bottom: 22px; font-size: clamp(3.2rem, 7vw, 7rem); }

.contact-layout { display: grid; grid-template-columns: 1.05fr .75fr; }
.form-panel { padding: clamp(38px, 4.5vw, 62px); background: var(--paper); }
.form-panel h2 { max-width: 12ch; font-size: clamp(2.8rem, 4.4vw, 4.35rem); }
.wufoo-shell { min-height: 720px; margin-top: 16px; padding: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.wufoo-shell iframe { display: block; width: 100% !important; max-width: 100%; border: 0; }
.form-fallback { margin: 12px 0 0; color: #46555b; font-size: .8rem; }
.contact-alternative { margin: 18px 0 0; font-size: .9rem; }
.capacity-note { margin-top: 24px; padding: 20px 0; border-block: 1px solid var(--line); }
.capacity-note strong { font-family: var(--sans); font-size: 1.05rem; }
.capacity-note p { margin: 6px 0 0; color: var(--ink); }
.text-link { color: var(--teal-dark); font-weight: 800; text-underline-offset: 4px; }
.text-link:hover { text-decoration-thickness: 3px; }

.next-panel { padding: clamp(38px, 4.5vw, 62px); color: #fff; background: var(--ink); }
.next-panel h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.18); }
.step-number { display: grid; place-items: center; width: 38px; height: 38px; color: var(--teal); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .75rem; font-weight: 800; }
.step p { color: rgba(255,255,255,.7); }

.arrival-hero { position: relative; min-height: 560px; display: grid; align-items: end; color: #fff; overflow: hidden; }
.arrival-hero img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.arrival-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,12,22,.15), rgba(2,15,28,.86)); }
.arrival-copy { position: relative; z-index: 2; width: min(900px, calc(100% - 44px)); padding: clamp(50px, 6vw, 82px); }
.arrival-copy p:last-child { max-width: 630px; font-size: 1.08rem; }

.arrival-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-grid); align-items: start; }
.video-card { position: relative; }
.video-placeholder { min-height: 340px; display: grid; place-items: center; padding: 30px; color: #fff; background: linear-gradient(145deg, rgba(0,210,205,.2), rgba(6,23,38,.96)), url('../media/forest-workshop.jpg') center/cover; text-align: center; }
.video-placeholder span { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 20px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-size: 1.5rem; }
.video-placeholder p { max-width: 440px; color: rgba(255,255,255,.76); }
.video-embed { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.video-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.caption { margin-top: 12px; color: #5b686c; font-size: .83rem; }
.arrival-notes h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.arrival-lead { margin-bottom: 26px; color: #31434b; font-size: 1.08rem; }
.arrival-tips-wrap { grid-column: 1 / -1; }
.arrival-tips { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); column-gap: var(--space-grid); }
.arrival-tips .number-row { align-content: start; }
.arrival-source-note { margin: 24px 0 0; padding: 18px 20px; color: #3f5057; background: #e9e2d3; border-left: 3px solid var(--teal-dark); font-size: .86rem; }
.arrival-source-note strong { color: var(--ink); }
.arrival-cta { margin: 24px 0 0; }

.faq { background: #e9e2d3; }
.faq h2 { font-size: clamp(3rem, 5vw, 5rem); }
.faq-list { max-width: 900px; margin-top: 30px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 18px 42px 18px 0; font-weight: 800; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding-bottom: 18px; color: #46555b; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px var(--space-page);
  color: #fff;
  background: #031019;
}

.site-footer strong, .site-footer span { display: block; }
.site-footer strong { font-family: var(--serif); font-size: 1.35rem; }
.site-footer span { color: rgba(255,255,255,.58); font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { font-size: .8rem; font-weight: 750; text-underline-offset: 4px; }
.footer-links a:hover { color: var(--teal); }

@media (max-width: 860px) {
  body { font-size: 16px; }
  .site-header { min-height: 70px; padding: 14px 20px; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    color: #fff;
    background: rgba(3,16,25,.98);
    box-shadow: 0 30px 50px rgba(0,0,0,.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; padding: 12px 8px; }
  .nav-cta { justify-content: center; margin-top: 8px; }
  .hero { min-height: 700px; }
  .hero-media { object-position: 58% 45%; }
  .hero-wash { background: linear-gradient(180deg, rgba(2,13,26,.42) 0%, rgba(2,16,29,.92) 76%, #03111f 100%); }
  .hero-inner {
    min-height: 700px;
    width: auto;
    margin: 0;
    justify-content: end;
    padding: 120px 22px 205px;
  }
  .hero h1 { max-width: 100%; margin-bottom: 22px; font-size: clamp(3.5rem, 17vw, 5rem); overflow-wrap: anywhere; }
  .hero-lead { font-size: 1rem; }
  .actions { flex-direction: column; }
  .actions .button { width: 100%; }
  .hero-details { right: 22px; bottom: 22px; left: 22px; grid-template-columns: 1fr; gap: 10px; }
  .hero-details div { grid-template-columns: 92px 1fr; align-items: baseline; }
  .gallery-ribbon { grid-template-columns: 1fr auto; min-height: 0; }
  .gallery-ribbon-images { grid-column: 1 / -1; grid-row: 1; height: 150px; }
  .gallery-ribbon-copy { grid-column: 1; grid-row: 2; }
  .gallery-ribbon-action { grid-column: 2; grid-row: 2; }
  .intro-grid, .essentials-grid, .page-hero, .contact-layout, .arrival-layout { grid-template-columns: 1fr; }
  .legacy-heading { grid-template-columns: 1fr; }
  .legacy-proof { grid-template-columns: 1fr; }
  .legacy-quote { grid-column: 1 / -1; }
  .camp-companions { grid-template-columns: 190px 1fr; width: 100%; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .camp-companions img { width: 190px; height: 148px; }
  .legacy-grid { grid-template-columns: 1fr 1fr; }
  .legacy-card { border-bottom: 1px solid var(--line); }
  .legacy-card:nth-child(2) { border-right: 0; }
  .legacy-card:nth-child(3), .legacy-card:nth-child(4) { border-bottom: 0; }
  .legacy-card:nth-child(3) { padding-left: 0; }
  .legacy-card:nth-child(4) { padding-right: 0; }
  .photo-stack { min-height: 420px; }
  .section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .experience-grid { grid-template-columns: 1fr; }
  .dark-section, .essentials { padding-block: 44px; }
  .experience-card { min-height: 350px; }
  .page-hero-image { order: -1; min-height: 300px; }
  .page-hero-copy { padding: 44px 24px 52px; }
  .contact-hero { min-height: 0; }
  .contact-hero .page-hero-image { min-height: 260px; max-height: 320px; }
  .contact-hero .page-hero-copy { padding: 36px 24px 42px; }
  .contact-hero .page-hero-copy h1 { font-size: clamp(3.35rem, 12vw, 5rem); }
  .gallery-hero { min-height: 0; }
  .gallery-hero .page-hero-image { min-height: 280px; max-height: 340px; }
  .gallery-hero .page-hero-copy { padding: 38px 24px 44px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-card, .gallery-card.wide { grid-column: span 1; }
  .gallery-card.wide { grid-column: 1 / -1; }
  .arrival-copy { padding: 48px 22px; }
  .video-card { position: relative; top: auto; }
  .arrival-lead { font-size: 1rem; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.45rem); }
  .hero-inner { padding-top: 110px; }
  .section { padding-inline: 22px; }
  .photo-stack { min-height: 360px; }
  .legacy-heading { margin-bottom: 28px; }
  .legacy-heading h2 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .legacy-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(265px, 84%);
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .legacy-card, .legacy-card:first-child, .legacy-card:nth-child(3), .legacy-card:nth-child(4), .legacy-card:last-child {
    min-height: 330px;
    padding: 20px 20px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }
  .legacy-card:first-child { padding-left: 0; }
  .legacy-card:last-child { border-right: 0; }
  .legacy-proof { gap: 12px; margin-top: 22px; padding: 20px 18px; }
  .legacy-quote { font-size: 2rem; }
  .legacy-proof { grid-template-columns: 1fr; }
  .camp-companions { grid-template-columns: 132px 1fr; gap: 14px; padding-top: 16px; }
  .camp-companions img { width: 132px; height: 104px; }
  .camp-companions strong { font-size: 1.35rem; }
  .photo-stack .photo-large { width: 88%; height: 70%; }
  .photo-stack .photo-small { width: 62%; height: 45%; border-width: 7px; }
  .dark-section, .essentials { padding-block: 36px; }
  .experience-card { min-height: 300px; }
  .number-row { grid-template-columns: 40px 1fr; gap: 14px; }
  .contact-layout > *, .form-panel, .next-panel { padding: 36px 22px; }
  .wufoo-shell { min-height: 760px; padding: 8px; }
  .gallery-ribbon { grid-template-columns: 1fr; gap: 16px; padding: 18px 22px 22px; }
  .gallery-ribbon-images { height: 116px; }
  .gallery-ribbon-action { grid-column: 1; grid-row: 3; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-card, .gallery-card.wide { grid-column: 1; }
  .gallery-card.tall { grid-row: span 1; }
  .video-placeholder { min-height: 280px; padding: 24px 20px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
