/* Blackwater Boating — shared stylesheet
   Design direction 1a ("Quiet Water"), per iSeek homepage handoff. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-var.woff2") format("woff2-variations"), url("../fonts/montserrat-var.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans-var.woff2") format("woff2-variations"), url("../fonts/opensans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f7f4ed;
  --paper-raised: #fffdf8;
  --paper-warm: #eae5d8;
  --chip-fill: #f0ece1;
  --ink: #1d2a24;
  --ink-muted: #3f4a44;
  --ink-light: #5c665f;
  --ink-faint: #6b7168;
  --river-green: #2f4a3f;
  --river-green-hover: #263d34;
  --cream: #f2efe6;
  --sand: #8b7a5e;
  --sand-mid: #c98b2e;
  --sand-light: #e8b355;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;

  --max-width: 1240px;
  --radius: 2px;
  --hairline: 1px solid rgba(29, 42, 36, 0.1);
  --hairline-dark: 1px solid rgba(242, 239, 230, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--river-green);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 2px solid var(--sand-mid);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}

h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }

/* ---------- Buttons & chips ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--river-green); color: var(--paper); }
.btn-primary:hover { background: var(--river-green-hover); }
.btn-solid-light { background: var(--paper-raised); color: var(--ink); }
.btn-solid-light:hover { background: #fff; }
.btn-outline-light { border-color: rgba(255, 253, 248, 0.6); color: var(--cream); }
.btn-outline-light:hover { border-color: rgba(255, 253, 248, 0.95); background: rgba(255, 253, 248, 0.08); }
.btn-outline-dark { border-color: rgba(29, 42, 36, 0.35); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-large { padding: 15px 28px; font-size: 15px; }
.btn-wide { width: 100%; }

.chip {
  display: inline-block;
  background: var(--chip-fill);
  color: var(--ink-muted);
  font-size: 15px;
  padding: 9px 16px;
  border-radius: var(--radius);
}

.text-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--river-green);
}
.text-link:hover { text-decoration: underline; color: var(--sand-mid); }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(242, 239, 230, 0.82);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 11px 56px;
}
.topbar .container { padding: 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; max-width: var(--max-width); }
.topbar-location strong {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.topbar-contact { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.topbar-contact a:hover { color: var(--sand-light); }
.topbar-divider { width: 1px; height: 12px; background: rgba(242, 239, 230, 0.3); }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--paper-raised);
  padding: 20px 56px;
  border-bottom: var(--hairline);
  position: relative;
  z-index: 100;
}
.site-header .container { padding: 0; display: flex; justify-content: space-between; align-items: center; max-width: var(--max-width); }

.logo-lockup { display: flex; flex-direction: column; gap: 4px; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-rule-row { display: flex; align-items: center; gap: 8px; }
.logo-rule-row .rule { flex: 1; max-width: 18px; height: 1px; background: var(--river-green); }
.logo-boating {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--river-green);
}
.logo-place {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--sand);
  margin-top: 2px;
}
.logo-lockup.reversed .logo-word { color: var(--cream); }
.logo-lockup.reversed .logo-rule-row .rule { background: rgba(242, 239, 230, 0.72); }
.logo-lockup.reversed .logo-boating { color: rgba(242, 239, 230, 0.72); }

.nav-right { display: flex; align-items: center; gap: 34px; }
.main-nav { display: flex; gap: 34px; }
.main-nav a { font-size: 15px; color: var(--ink-light); }
.main-nav a:hover { color: var(--river-green); }
.main-nav a[aria-current="page"] { font-weight: 600; color: var(--river-green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media-mobile { position: absolute; inset: 0; display: none; }
.hero-media-mobile img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 26, 20, 0.62) 0%, rgba(14, 26, 20, 0.28) 48%, rgba(14, 26, 20, 0) 78%);
}
.hero-copy {
  position: absolute;
  left: 112px;
  bottom: 64px;
  max-width: 640px;
  color: var(--paper-raised);
}
.hero-copy .eyebrow { color: var(--cream); }
.hero-copy h1 {
  font-size: 58px;
  line-height: 1.04;
  color: var(--paper-raised);
  text-wrap: pretty;
  margin-bottom: 20px;
}
.hero-copy p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255, 253, 248, 0.92);
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 16px; }

/* ---------- Reassurance strip ---------- */
.reassurance {
  background: var(--river-green);
  color: var(--cream);
}
.reassurance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.reassurance-item {
  padding: 30px 28px;
  border-right: var(--hairline-dark);
}
.reassurance-item:last-child { border-right: none; }
.reassurance-figure {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.reassurance-caption { font-size: 15px; color: rgba(242, 239, 230, 0.8); }

/* ---------- Two-column content sections ---------- */
.split-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: 1fr 1.05fr; }
.split-section .split-text,
.split-section .split-media { min-width: 0; }
.split-section h2 { font-size: 37px; line-height: 1.15; margin-bottom: 20px; }
.split-section p { margin-bottom: 18px; }
.split-section p:last-of-type { margin-bottom: 0; }

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--hairline);
}
.stat-number { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--river-green); line-height: 1; }
.stat-caption { font-size: 13.5px; color: var(--ink-faint); margin-top: 6px; }

.photo-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 240px;
  gap: 14px;
}
.photo-grid-2x2 > :first-child { grid-column: 1 / -1; }
.photo-grid-2x2 figure,
.photo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  min-width: 0;
  height: 100%;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.2s ease; }
.photo-tile:hover img { opacity: 0.92; }

.full-bleed-media { min-height: 540px; height: 100%; overflow: hidden; }
.full-bleed-media img { width: 100%; height: 100%; object-fit: cover; }

/* Meet Denis */
.denis-section { display: grid; grid-template-columns: 1fr 1.1fr; }
.denis-photo { min-height: 540px; overflow: hidden; }
.denis-photo img { width: 100%; height: 100%; object-fit: cover; }
.denis-copy { background: var(--paper-warm); padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; }
.denis-copy h2 { font-size: 35px; margin-bottom: 20px; }
.denis-copy p { margin-bottom: 18px; }
.denis-copy .text-link { margin-top: 8px; }

/* ---------- Gallery strip (home) ---------- */
.gallery-strip { padding: 0 56px 88px; }
.gallery-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 88px 0 32px;
}
.gallery-strip-head h2 { font-size: 32px; }
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-strip-grid .photo-tile { height: 260px; }

/* Camping band */
.camping-band {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.camping-band img { width: 100%; height: 100%; object-fit: cover; }
.camping-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 20, 0.15), rgba(14, 26, 20, 0.7));
}
.camping-copy {
  position: absolute;
  left: 56px;
  bottom: 56px;
  max-width: 560px;
  color: var(--cream);
}
.camping-copy h2 { color: var(--paper-raised); font-size: 32px; margin-bottom: 14px; }
.camping-copy p { color: rgba(242, 239, 230, 0.9); }

/* Where to find us */
.find-us {
  background: var(--paper-raised);
  padding: 88px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.find-us h2 { font-size: 32px; margin-bottom: 18px; }
.find-us p { margin-bottom: 24px; }
.find-us-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.find-us-map { height: 300px; border-radius: var(--radius); overflow: hidden; border: var(--hairline); }
.find-us-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA band */
.cta-band {
  background: var(--river-green);
  padding: 96px 56px;
  text-align: center;
  color: var(--cream);
}
.cta-band h2 { color: var(--paper-raised); font-size: 42px; line-height: 1.12; margin-bottom: 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 32px; color: rgba(242, 239, 230, 0.88); }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.cta-footnote { font-size: 13.5px; color: rgba(242, 239, 230, 0.65); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(242, 239, 230, 0.82);
  padding: 34px 56px;
}
.site-footer .container {
  padding: 0;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; }
.footer-nav a:hover { color: var(--sand-light); }
.footer-copy { font-size: 13px; color: rgba(242, 239, 230, 0.6); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 72px 56px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header h1 { font-size: 46px; margin-bottom: 16px; }
.page-header .lede { font-size: 19px; max-width: 640px; }
.page-header .lede.lede-nowrap { max-width: none; white-space: nowrap; }
.page-header.on-photo {
  max-width: none;
  position: relative;
  padding: 0;
  height: 360px;
  overflow: hidden;
  color: var(--cream);
}
.page-header.on-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-header.on-photo .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,26,20,.25), rgba(14,26,20,.72)); }
.page-header.on-photo .page-header-inner {
  position: absolute; inset: 0; max-width: var(--max-width); margin: 0 auto; padding: 0 56px;
  display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 48px;
}
.page-header.on-photo h1 { color: var(--paper-raised); }
.page-header.on-photo .lede { color: rgba(242,239,230,.9); }

section { position: relative; }

/* ---------- About page ---------- */
.about-content { max-width: var(--max-width); margin: 0 auto; padding: 0 56px 96px; }
.about-lead {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.about-lead .photo-tile { height: 480px; }
.about-body { font-size: 18px; }
.about-body p { margin-bottom: 20px; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--river-green);
  line-height: 1.3;
  border-left: 3px solid var(--sand-mid);
  padding-left: 24px;
  margin: 40px 0;
}
.usp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.usp-item {
  background: var(--paper-warm);
  padding: 24px 26px;
  border-radius: var(--radius);
}
.usp-item h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.usp-item p { margin: 0; font-size: 16px; }

/* ---------- Trips page ---------- */
.trips-intro { max-width: 760px; margin: 0 auto 56px; text-align: center; padding: 0 56px; }
.trips-intro h1 { margin-bottom: 16px; }
.trip-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.trip-card {
  background: var(--paper-raised);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.trip-card.featured { border-color: var(--river-green); box-shadow: inset 0 0 0 1px var(--river-green); }
.trip-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 12px; }
.trip-card h2 { font-size: 22px; }
.trip-price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--river-green); white-space: nowrap; }
.trip-price span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--ink-faint); }
.trip-card p { font-size: 16px; margin-bottom: 16px; }
.trip-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; }

.extras-band {
  background: var(--paper-warm);
  padding: 64px 56px;
  margin-top: 40px;
}
.extras-band .container { max-width: var(--max-width); padding: 0 0; }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.extras-grid h3 { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.extras-grid p { font-size: 15.5px; margin: 0; }

.trips-footnote {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 24px 56px 64px;
  border-top: var(--hairline);
  font-size: 14px;
  color: var(--ink-faint);
}

/* ---------- Gallery page ---------- */
.gallery-page-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 56px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 56px 24px; max-width: var(--max-width); margin: 0 auto; }
.gallery-filter-btn {
  background: var(--chip-fill);
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-muted);
}
.gallery-filter-btn[aria-pressed="true"] { background: var(--river-green); color: var(--cream); }
.gallery-filter-btn:hover:not([aria-pressed="true"]) { background: #e6e0d0; }

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px 96px;
  columns: 4;
  column-gap: 12px;
}
.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--chip-fill);
}
.gallery-grid .gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery-grid .gallery-item:hover img { transform: scale(1.03); }
.gallery-item-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(29, 42, 36, 0.7);
  color: var(--cream);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
}
.editing .gallery-item-remove { display: flex; }

.gallery-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-faint);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 17, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(242, 239, 230, 0.12);
  border: 1px solid rgba(242, 239, 230, 0.3);
  color: var(--cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(242, 239, 230, 0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(242,239,230,.85); font-size: 14px; }

.gallery-admin-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.gallery-admin-panel {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  padding: 24px 32px;
  background: var(--paper-warm);
  border-radius: var(--radius);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.gallery-admin-panel.open { display: flex; }
.gallery-admin-panel input[type="file"] { font-size: 14px; }
.gallery-admin-note { font-size: 13.5px; color: var(--ink-faint); width: 100%; margin-top: 4px; }

/* ---------- Contact page ---------- */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 56px 96px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info h1 { margin-bottom: 16px; }
.contact-info > .lede { margin-bottom: 32px; font-size: 18px; }
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: var(--hairline);
}
.contact-method:last-of-type { border-bottom: var(--hairline); }
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--chip-fill);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--river-green);
}
.contact-method h3 { font-family: var(--font-display); font-size: 15px; color: var(--ink-faint); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method a, .contact-method p { font-size: 18px; color: var(--ink); font-weight: 600; margin: 0; }
.contact-method a:hover { color: var(--river-green); }
.contact-map { margin-top: 32px; height: 260px; border-radius: var(--radius); overflow: hidden; border: var(--hairline); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-card {
  background: var(--paper-raised);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-card h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 24px; color: var(--ink-muted); }
.form-row { margin-bottom: 20px; }
.form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(29, 42, 36, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--river-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 74, 63, 0.15);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-required { color: var(--sand-mid); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: #e5efe8; color: var(--river-green); }
.form-status.error { background: #f6e8e4; color: #9a3c25; }
.form-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 16px; }

/* ---------- Terms page ---------- */
.legal-content { max-width: 780px; margin: 0 auto; padding: 72px 56px 96px; }
.legal-content h1 { margin-bottom: 12px; }
.legal-content .lede { margin-bottom: 40px; color: var(--ink-faint); }
.legal-placeholder {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: 32px;
  font-size: 16px;
}

/* ---------- Placeholder image tiles ---------- */
.photo-tile img[src$=".svg"], .full-bleed-media img[src$=".svg"] { object-fit: cover; background: var(--paper-warm); }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .container, .site-header .container, .topbar .container { padding: 0 32px; }
  .site-header, .topbar { padding-left: 32px; padding-right: 32px; }
  .split-section, .denis-section { grid-template-columns: 1fr; gap: 40px; padding: 64px 32px; }
  .split-section.reverse .split-media { order: -1; }
  .denis-section .denis-photo { order: -1; min-height: 360px; }
  .denis-copy { padding: 56px 32px; }
  .gallery-strip { padding: 0 32px 64px; }
  .gallery-strip-head { padding: 64px 0 24px; }
  .gallery-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .find-us { grid-template-columns: 1fr; padding: 64px 32px; }
  .about-lead { grid-template-columns: 1fr; }
  .usp-list, .trip-cards, .extras-grid, .form-row-group { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; padding: 56px 32px 72px; gap: 40px; }
  .gallery-grid { columns: 3; padding: 0 32px 72px; }
  .cta-band, .camping-copy, .find-us-map { padding-left: 0; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-contact { gap: 8px; }
  .site-header { padding: 16px 20px; }
  .main-nav, .nav-right .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { height: 480px; }
  .hero-media-video { display: none; }
  .hero-media-mobile { display: block; }
  .hero-copy { left: 20px; bottom: 40px; max-width: calc(100% - 40px); }
  .hero-copy h1 { font-size: 34px; line-height: 1.08; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { flex-wrap: wrap; }
  .reassurance-inner { grid-template-columns: repeat(2, 1fr); }
  .reassurance-item { border-right: none; border-bottom: var(--hairline-dark); }
  .split-section, .denis-section, .find-us, .contact-layout, .about-content, .trips-intro, .trip-cards, .gallery-page-head, .gallery-filters, .extras-band, .legal-content { padding-left: 20px; padding-right: 20px; }
  .split-section { padding-top: 44px; padding-bottom: 44px; }
  .split-section h2, .find-us h2, .denis-copy h2 { font-size: 25px; }
  .photo-grid-2x2 { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .photo-grid-2x2 > :not(:first-child) { display: none; }
  .gallery-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-strip-grid .photo-tile { height: 180px; }
  .camping-band { height: 340px; }
  .camping-copy { left: 20px; bottom: 32px; max-width: calc(100% - 40px); }
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 26px; }
  .cta-actions { flex-direction: column; }
  .site-footer { padding: 28px 20px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-header { padding: 48px 20px 32px; }
  .page-header h1 { font-size: 30px; }
  .page-header .lede.lede-nowrap { white-space: normal; max-width: 640px; }
  .page-header.on-photo .page-header-inner { padding: 0 20px; padding-bottom: 32px; }
  .gallery-grid { columns: 2; }
  .trip-card-head { flex-direction: column; gap: 4px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper-raised);
  z-index: 150;
  display: none;
  flex-direction: column;
  padding: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: var(--hairline);
}
.mobile-nav .btn { margin-top: 24px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .photo-tile img, .gallery-grid .gallery-item img { transition: none; }
}
