/* =====================================================================
   Lewis & Clark Lake House — site styles
   Editorial hospitality, cool/navy palette, Roy-style hero collage.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --night-shore: #1a2438;
  --corps-blue: #1e2e58;
  --steel-channel: #2e4a7c;
  --lake-blue: #3d6fa0;
  --horizon-mist: #6a9cc4;
  --prairie-stone: #8a8078;
  --corps-teal: #4a8fa0;
  --drift-sand: #f5f1eb;
  --page-cream: #f8f5f0;
  --hairline: rgba(26, 36, 56, 0.18);
  --hairline-strong: rgba(26, 36, 56, 0.4);

  --font-display: 'Gloock', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jura', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-italic: 'Crimson Pro', Georgia, serif;

  --radius-button: 2px;
  --section-y: clamp(5rem, 10vw, 9rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-w: 1400px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--page-cream);
  color: var(--night-shore);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--steel-channel); }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--prairie-stone);
  margin: 0;
}
.eyebrow--dark { color: var(--night-shore); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--night-shore);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--night-shore);
  margin: 0 0 1rem;
}
.h-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.italic-statement {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--steel-channel);
  margin: 0;
}
p { margin: 0 0 1em; max-width: 60ch; }
.body-md { font-size: 1.0625rem; line-height: 1.65; }
.caption {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--prairie-stone);
  margin: 0.75rem 0 0;
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: 880px; }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.divider {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}
.divider--full {
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  max-width: var(--max-w);
  width: calc(100% - 2 * var(--gutter));
  border-top-color: var(--night-shore);
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95rem 1.6rem;
  min-height: 44px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius-button);
  border: 1px solid var(--night-shore);
  background: transparent;
  color: var(--night-shore);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn:hover { background: var(--night-shore); color: var(--page-cream); }
.btn--primary { background: var(--night-shore); color: var(--page-cream); }
.btn--primary:hover { background: var(--corps-blue); border-color: var(--corps-blue); color: var(--page-cream); }
.btn--ghost { border-color: var(--hairline-strong); color: var(--night-shore); }
.btn--small { padding: 0.6rem 1rem; font-size: 0.7rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--page-cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--night-shore);
  letter-spacing: 0.005em;
  text-align: center;
  display: inline-block;
}
.nav__brand small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--prairie-stone);
  margin-top: 0.55rem;
  text-align: center;
}
/* Hairline divider that sits between "Lewis & Clark" and "LAKE HOUSE" */
.nav__brand small::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--night-shore);
  opacity: 0.65;
  margin: 0 auto 0.5rem;
}
.nav__links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a { color: var(--night-shore); }
.nav__links a.is-current { border-bottom: 1px solid var(--night-shore); padding-bottom: 0.2rem; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 60;
}
.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--night-shore);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav--open .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (Roy-style collage) ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  isolation: isolate;
}
.hero__eyebrow { margin-bottom: 1.75rem; }

/* ---------- Framed banner hero (Roy "Featured Projects" style) ---------- */
.banner-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.75rem) var(--gutter) clamp(2rem, 4vw, 3.5rem);
}
.banner-hero__frame {
  margin: 0;
  border: 1px solid var(--night-shore);
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--drift-sand);
}
.banner-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-hero__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0.25rem 0;
  border-top: 0;
}
.banner-hero__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--night-shore);
  margin: 0;
  text-transform: uppercase;
}
.banner-hero__tag {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-shore);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .banner-hero__frame { aspect-ratio: 4/3; }
  .banner-hero__label { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--night-shore);
  font-size: clamp(1.75rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  max-width: 22ch;
  position: relative;
}
.hero__title .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}
/* Cutouts as intentional stickers — each has its own personality */
.hero__cutout {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(26, 36, 56, 0.22));
}
/* The s'more — slight playful tilt right, larger than letters */
.hero__title .hero__cutout--lg {
  height: 1.85em;
  margin: 0 -0.18em;
  transform: rotate(7deg) translateY(-0.05em);
}
/* The paddle — strong diagonal slash, breaks the line */
.hero__title .hero__cutout--rotated {
  height: 2.1em;
  margin: 0 -0.32em;
  transform: rotate(-22deg) translateY(-0.12em) translateX(-0.06em);
}
/* The beach chair — small counter-tilt, anchors the line */
.hero__title .hero__cutout:not(.hero__cutout--lg):not(.hero__cutout--rotated) {
  height: 1.55em;
  margin: 0 -0.16em;
  transform: rotate(-5deg) translateY(0.05em);
}

.hero__cta { margin-top: 1rem; }

/* ---------- Italic statement section (legacy) ---------- */
.statement {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Editorial pull-quote (replaces .statement) ---------- */
.pull-quote {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(4rem, 7vw, 5.5rem) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}
.pull-quote__rule {
  flex: 1;
  height: 1px;
  background: var(--night-shore);
  opacity: 0.4;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--night-shore);
  letter-spacing: 0.005em;
  text-align: center;
  margin: 0;
  flex: 0 1 auto;
  max-width: 32ch;
  white-space: normal;
}
.pull-quote__text br { display: block; }
.pull-quote__text em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--steel-channel);
}
@media (max-width: 880px) {
  .pull-quote { flex-direction: column; gap: 1.25rem; padding: 3.5rem var(--gutter); }
  .pull-quote__rule { width: 60px; flex: 0 0 auto; }
}

/* ---------- Photo strip (3-up) ---------- */
.photo-strip { padding: 0 var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-strip__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- Three-column editorial cards ---------- */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.three-up__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.25rem, 2vw, 2rem) clamp(2rem, 3vw, 3rem);
  border-right: 1px solid var(--hairline);
}
.three-up__item:last-child { border-right: 0; }

/* Editorial number marker */
.three-up__num {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--prairie-stone);
  margin-bottom: 0.5rem;
}

/* Sticker cutouts — varied tilt + size, anchored top-right of the card so they
   feel placed by hand, not centered like icons */
.three-up__cutout {
  width: 110px;
  height: 110px;
  object-fit: contain;
  position: absolute;
  top: clamp(0.75rem, 1.5vw, 1.25rem);
  right: clamp(0.75rem, 1.5vw, 1.25rem);
  filter: drop-shadow(0 6px 14px rgba(26, 36, 56, 0.18));
  z-index: 2;
  pointer-events: none;
}
.three-up__item:nth-child(1) .three-up__cutout { transform: rotate(-8deg); width: 110px; height: 110px; }
.three-up__item:nth-child(2) .three-up__cutout { transform: rotate(6deg); width: 125px; height: 125px; }
.three-up__item:nth-child(3) .three-up__cutout { transform: rotate(-4deg); width: 100px; height: 100px; }

.three-up__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.05;
  margin: 0 0 0.25rem;
  max-width: 12ch; /* keeps heading from running into the sticker */
}
.three-up__body {
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 38ch;
  color: var(--fg2-ink, var(--night-shore));
}

/* ---------- Two-column amenities ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  position: relative;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
}
.amenity-list li {
  position: relative;
  padding-left: 1rem;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.6rem;
  padding-top: 0.3rem;
}
.amenity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 1px;
  background: var(--night-shore);
}
/* .amenities-anchor-cutout intentionally removed — sticker felt orphaned */

/* ---------- Location (full-bleed image with overlay card) ---------- */
.location {
  position: relative;
  width: 100%;
  height: clamp(540px, 80vh, 760px);
  overflow: hidden;
}
.location__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(26, 36, 56, 0.55) 0%, rgba(26, 36, 56, 0.15) 60%, rgba(26, 36, 56, 0) 100%);
}
.location__card {
  position: absolute;
  left: clamp(1.25rem, 5vw, 4rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  max-width: 540px;
  background: var(--page-cream);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid var(--hairline);
}
.location__card .h-section { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.location__card p { font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-band .h-display { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-band__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  background: var(--page-cream);
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--prairie-stone);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--night-shore);
  letter-spacing: 0.005em;
}
.footer__right { text-align: right; }
.footer__right a { color: var(--night-shore); display: block; margin-bottom: 0.4rem; }
.footer__copy { margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- Hosts page ---------- */
/* Photo and bio stack vertically and center under the page-hero italic quote */
.hosts-intro {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.hosts-intro__photo {
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  max-width: 980px;
  position: relative;
}
.hosts-intro__photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}
.hosts-intro__photo .caption { text-align: center; }
.hosts-intro__body {
  max-width: 65ch;
  margin: 0 auto;
  text-align: left;
}
.hosts-intro__body .eyebrow,
.hosts-intro__body .h-section { text-align: center; }
.hosts-intro__body .h-section { margin-bottom: 2rem; }
.hosts-intro__body p { max-width: none; }
.hosts-intro__body p + p { margin-top: 1.1rem; }

/* Reviews block */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.review {
  margin: 0;
  padding: 0 clamp(0.5rem, 1vw, 1rem) 0 0;
  border-left: 1px solid var(--hairline);
  padding-left: clamp(1rem, 2vw, 1.5rem);
}
.review:first-child { border-left: 0; padding-left: 0; }
.review p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--night-shore);
  margin: 0 0 0.85rem;
}
.review cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--prairie-stone);
}
@media (max-width: 880px) {
  .reviews { grid-template-columns: 1fr; }
  .review { border-left: 0; border-top: 1px solid var(--hairline); padding: 1.5rem 0 0; }
  .review:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- The Space — page hero ---------- */
.page-hero {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 0 clamp(0.5rem, 1.5vw, 1rem);
  max-width: 1700px;
  margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery__item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.03); }

/* ---------- Sleeping + Amenities groups ---------- */
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.amenity-group h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--prairie-stone);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--night-shore);
}
.amenity-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.amenity-group li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--hairline);
}

.sleeping {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.sleeping__list { list-style: none; padding: 0; margin: 0; }
.sleeping__list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
}
.sleeping__list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.15rem;
}

/* ---------- Contact split ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.contact h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0.75rem 0 1.5rem;
}

/* Form */
.form { display: grid; gap: 1.25rem; }
.form__field { display: grid; gap: 0.4rem; }
.form__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-shore);
}
.form__input,
.form__textarea {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 0;
  color: var(--night-shore);
  outline: none;
  transition: border-color 0.2s ease;
}
.form__input:focus,
.form__textarea:focus { border-bottom-color: var(--night-shore); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__hint { font-size: 0.78rem; color: var(--prairie-stone); margin-top: 0.2rem; }
.form__honey { display: none; }
.form__submit { margin-top: 0.5rem; justify-self: start; }
.form__footnote {
  font-size: 0.78rem;
  color: var(--prairie-stone);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* Find us block */
.find-us {
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(4rem, 7vw, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.find-us dl { margin: 0; display: grid; gap: 0.85rem; }
.find-us dt {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--prairie-stone);
}
.find-us dd { margin: 0.1rem 0 0; font-size: 0.96rem; }
.find-us__map { width: 100%; aspect-ratio: 4/3; background: var(--drift-sand); object-fit: cover; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 36, 56, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--page-cream);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  /* Hamburger shows, links become a flyout panel */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 360px);
    background: var(--page-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 5.5rem 2rem 2.5rem;
    border-left: 1px solid var(--hairline);
    box-shadow: -16px 0 40px rgba(26, 36, 56, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    z-index: 55;
    overflow-y: auto;
  }
  .nav--open .nav__links { transform: translateX(0); }
  .nav__links a { display: block; width: 100%; }
  .nav__links .btn { padding: 0.85rem 1.1rem; font-size: 0.7rem; align-self: stretch; text-align: center; }
  /* Scrim behind the open panel */
  .nav--open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 56, 0.35);
    z-index: 54;
  }

  /* Tighten nav brand so it sits cleanly next to the hamburger on small phones */
  .nav__brand { font-size: 1.15rem; }
  .nav__brand small { font-size: 0.52rem; letter-spacing: 0.2em; margin-top: 0.4rem; }
  .nav__brand small::before { width: 32px; margin-bottom: 0.35rem; }
  .nav__inner { padding: 0.85rem var(--gutter); }

  /* Banner-hero label stacks cleaner */
  .banner-hero__name { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }

  /* Hero collage — scale cutouts down so they don't dominate small screens */
  .hero__title .hero__cutout--lg { height: 1.4em; margin: 0 -0.12em; }
  .hero__title .hero__cutout--rotated { height: 1.6em; margin: 0 -0.18em; }
  .hero__title .hero__cutout:not(.hero__cutout--lg):not(.hero__cutout--rotated) { height: 1.2em; margin: 0 -0.1em; }

  /* Inner-page hero (.page-hero) — shrink so titles like "Your Hosts" don't wrap */
  .page-hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .contact h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  /* CTA buttons stack tighter; primary still leads */
  .cta-band__buttons { gap: 0.6rem; }
  .cta-band__buttons .btn { flex: 1 0 auto; min-width: 0; }

  .photo-strip__grid { grid-template-columns: 1fr; gap: 4px; }
  .three-up { grid-template-columns: 1fr; gap: 0; }
  .three-up__item { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .three-up__item:last-child { border-bottom: 0; }
  .three-up__cutout { width: 80px !important; height: 80px !important; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .amenity-list { grid-template-columns: 1fr; }
  .amenities-anchor-cutout { display: none; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__right { text-align: left; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  .amenity-groups { grid-template-columns: 1fr; }
  .sleeping { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .find-us__grid { grid-template-columns: 1fr; }

  .location__card { left: var(--gutter); right: var(--gutter); bottom: var(--gutter); max-width: none; }

  .hero__cutout { height: 0.85em; }
}

/* ---------- A11y ---------- */
:focus-visible {
  outline: 2px solid var(--lake-blue);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
