/* ---------------------------------------------------------------
   Camp Bridal — sunlit-v3
   Bright & sunny: cream / sage / forest ink / sunny yellow.
   Huge condensed uppercase display, squared controls, image-led.
---------------------------------------------------------------- */

:root {
  /* palette */
  --cream:        oklch(0.967 0.018 95);
  --cream-deep:   oklch(0.935 0.028 95);
  --sage:         oklch(0.915 0.038 135);
  --sage-deep:    oklch(0.86 0.05 135);
  --forest:       oklch(0.31 0.055 150);
  --forest-deep:  oklch(0.24 0.045 150);
  --ink:          oklch(0.26 0.035 145);
  --ink-soft:     oklch(0.42 0.03 145);
  --yellow:       oklch(0.85 0.158 92);
  --yellow-hover: oklch(0.8 0.16 88);
  --on-yellow:    oklch(0.25 0.05 95);
  --line:         oklch(0.85 0.025 110);

  /* type */
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;

  /* rhythm */
  --section-pad: clamp(4rem, 9vw, 8.5rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  text-wrap: pretty;
}

/* tactile paper grain over the whole surface, kills the flat-fill look */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
/* <picture> wrappers are layout-transparent so an inner img's width/height:100%
   (gallery tiles, amenity mosaic, lodge photos) still resolve against the figure */
picture { display: contents; }

h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(3.25rem, 10vw, 8rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); }

.kicker {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  flex: none;
  width: 1.6rem;
  height: 2px;
  background: var(--yellow-hover);
}
.kicker-light { color: var(--sage); }
.kicker-light::before { background: var(--yellow); }

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  max-width: 34em;
}

/* ----- buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.12s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--on-yellow);
  box-shadow: 0 2px 0 oklch(0.72 0.13 86 / 0.55);
}
.btn-yellow:hover { background: var(--yellow-hover); box-shadow: 0 4px 14px oklch(0.7 0.14 88 / 0.4); }
.btn-ghost {
  border-color: oklch(0.98 0.01 95 / 0.85);
  color: oklch(0.98 0.01 95);
}
.btn-ghost:hover { background: oklch(0.98 0.01 95 / 0.14); }
.btn:active { transform: translateY(1px); }
.btn-small { padding: 0.6rem 1.3rem; font-size: 1rem; }
.btn-wide { width: 100%; border: 0; }
.btn-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 0.6em;
  transition: transform 0.25s var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(0.28em); }

/* keyboard focus, visible on light and dark sections */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--yellow-hover);
  outline-offset: 2px;
}
/* anchored sections clear the sticky header */
:where(section[id], main[id]) { scroll-margin-top: 4.75rem; }

/* ----- header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem var(--gutter);
  background: oklch(0.967 0.018 95 / 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo { width: 42px; height: auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}
.site-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: auto;
}
.site-nav a {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.02rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 3px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--yellow-hover);
  transition: right 0.28s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.site-nav a.is-active { color: var(--ink); }
.site-nav a.is-active::after { right: 0; }

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: min(94vh, 60rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, oklch(0.2 0.04 150 / 0.74) 0%, oklch(0.2 0.04 150 / 0.26) 40%, transparent 66%),
    linear-gradient(to right, oklch(0.2 0.04 150 / 0.34), transparent 52%);
}
.hero-content {
  padding: var(--gutter);
  padding-bottom: clamp(2.5rem, 6vw, 5.5rem);
  color: oklch(0.98 0.01 95);
  max-width: 60rem;
}
.hero h1 { text-shadow: 0 1px 28px oklch(0.18 0.04 150 / 0.4); }
.hero-kicker {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--yellow);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--yellow);
}
.hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  max-width: 32em;
  margin-top: 1.25rem;
  line-height: 1.5;
  text-shadow: 0 1px 18px oklch(0.18 0.04 150 / 0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
/* small urgency line under the hero CTAs (light text on the dark hero) */
.hero-note {
  margin-top: 1.1rem;
  max-width: 30em;
  font-size: 0.98rem;
  line-height: 1.5;
  color: oklch(0.95 0.015 95);
  text-shadow: 0 1px 14px oklch(0.18 0.04 150 / 0.5);
}
.hero-note strong { color: var(--yellow); font-weight: 600; }

/* cinematic first-load reveal */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-kicker  { animation: heroRise 0.85s var(--ease-out) both; }
  .hero h1      { animation: heroRise 0.95s 0.1s var(--ease-out) both; }
  .hero-sub     { animation: heroRise 0.95s 0.26s var(--ease-out) both; }
  .hero-actions { animation: heroRise 0.95s 0.42s var(--ease-out) both; }
  .hero-scroll  { animation: heroRise 1s 0.7s var(--ease-out) both; }
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: clamp(2.5rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: oklch(0.98 0.01 95 / 0.85);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  writing-mode: vertical-rl;
}
.hero-scroll-track {
  writing-mode: horizontal-tb;
  width: 2px;
  height: 3.25rem;
  background: oklch(0.98 0.01 95 / 0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-track::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background: var(--yellow);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-track::after { animation: scrollDrop 1.9s 1.4s var(--ease-out) infinite; }
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(250%); }
}
.hero-scroll:hover { color: oklch(0.98 0.01 95); }

/* ----- at a glance strip ----- */
.ataglance {
  background: var(--forest);
  color: oklch(0.95 0.015 110);
  padding: 1.1rem var(--gutter);
}
.ataglance ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem clamp(1.25rem, 3vw, 2.75rem);
  max-width: 84rem;
  margin: 0 auto;
}
.ataglance li {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
}
.ataglance li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(0.65rem, 1.5vw, 1.4rem));
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  transform: translateY(-50%) rotate(45deg);
}

/* ----- quick-answer band (homepage plain-language intro) ----- */
.quick-answer {
  background: var(--cream);
  padding: clamp(2.25rem, 4.5vw, 3.75rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.quick-answer-inner { max-width: 64rem; margin: 0 auto; }
.quick-answer-text {
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 56rem;
}
.quick-answer-text strong { font-weight: 600; }

/* ----- RV price anchor (homepage RV section) ----- */
.price-anchor {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  color: var(--ink);
}
.price-anchor b { color: var(--forest); font-size: 1.35rem; }
.price-anchor span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ----- shared subpage hero + section head (lodge.html, rv.html) ----- */
.subhero {
  position: relative;
  min-height: min(70vh, 42rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.subhero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, oklch(0.2 0.04 150 / 0.78) 0%, oklch(0.2 0.04 150 / 0.3) 42%, transparent 70%),
    linear-gradient(to right, oklch(0.2 0.04 150 / 0.34), transparent 52%);
}
.subhero-content {
  padding: var(--gutter);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  color: oklch(0.98 0.01 95);
  max-width: 54rem;
}
.subhero-content h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  text-shadow: 0 1px 28px oklch(0.18 0.04 150 / 0.4);
}
.subhero-content .hero-sub { text-shadow: 0 1px 18px oklch(0.18 0.04 150 / 0.35); }

.section-head {
  max-width: 90rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head .lede { margin-top: 1rem; }

/* ----- ways to stay ----- */
.ways { background: var(--sage); }
.ways-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}
.way {
  padding: clamp(2.25rem, 4vw, 3.5rem) var(--gutter);
  text-decoration: none;
  color: var(--ink);
  border-left: 1px solid oklch(0.78 0.05 135);
  transition: background-color 0.25s var(--ease-out);
}
.way:first-child { border-left: 0; }
.way:hover { background: var(--sage-deep); }
.way-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.way h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin: 0.5rem 0 0.6rem;
}
.way p { color: var(--ink-soft); max-width: 28em; }
.way-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.15rem;
}

/* ----- rv ----- */
/* image bleeds off the left edge; copy aligns to the page's content edge */
.rv { padding: var(--section-pad) 0; }
.rv-grid {
  display: grid;
  grid-template-columns: 1fr min(44rem, 47vw);
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: center;
  padding-right: max(var(--gutter), calc((100vw - 90rem) / 2));
}
.rv-media {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px oklch(0.28 0.04 150 / 0.24);
}
.rv-media-main {
  width: 100%;
  height: clamp(27rem, 42vw, 42rem);
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.rv-media:hover .rv-media-main { transform: scale(1.04); }
.rv-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 3rem clamp(1.25rem, 3vw, 2rem) 1.25rem;
  color: oklch(0.98 0.01 95);
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(to top, oklch(0.18 0.04 150 / 0.82), oklch(0.18 0.04 150 / 0.2) 60%, transparent);
}
.rv-media figcaption::before {
  content: "";
  flex: none;
  width: 1.4rem;
  height: 2px;
  background: var(--yellow);
}
.rv-copy h2 { margin-bottom: 1.25rem; }
.rv-copy .lede { margin-bottom: 1.5rem; }
.ticks {
  list-style: none;
  margin-bottom: 2rem;
}
.ticks li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 1.05rem;
  width: 0.85rem;
  height: 0.5rem;
  border-left: 3px solid var(--yellow-hover);
  border-bottom: 3px solid var(--yellow-hover);
  transform: rotate(-45deg);
}
.aside {
  margin-top: 1.25rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 34em;
}
.aside a { color: var(--ink); }

/* ----- amenities ----- */
.amenities {
  background: var(--cream-deep);
  padding: var(--section-pad) var(--gutter);
}
.amenities-head { max-width: 90rem; margin: 0 auto 3rem; }
.amenities-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 90rem;
  margin: 0 auto;
}
.am-photo { position: relative; overflow: hidden; }
.am-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.am-photo:hover img { transform: scale(1.03); }
.am-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1rem;
  color: oklch(0.98 0.01 95);
  font-weight: 500;
  background: linear-gradient(to top, oklch(0.2 0.04 150 / 0.7), transparent);
}
.am-pool { grid-row: 1 / 3; min-height: 30rem; }
.am-hottub { min-height: 16rem; }
.am-list {
  background: var(--sage);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}
.am-list ul { list-style: none; }
.am-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid oklch(0.8 0.05 135);
}
.am-list li:last-child { border-bottom: 0; }
.am-list strong { font-weight: 600; }

/* ----- lodge ----- */
.lodge { padding-top: var(--section-pad); }
.lodge-hero {
  position: relative;
  height: clamp(22rem, 46vw, 44rem);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.lodge-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lodge-hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  color: oklch(0.98 0.01 95);
  background: linear-gradient(to top, oklch(0.2 0.04 150 / 0.75), transparent);
}
.lodge-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) var(--section-pad);
  max-width: 90rem;
  margin: 0 auto;
  align-items: start;
}
.lodge-copy .lede { margin-bottom: 1.5rem; }
.lodge-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.lodge-photos figure { aspect-ratio: 4 / 3; overflow: hidden; }
.lodge-photos figure:first-child { grid-column: 1 / 3; aspect-ratio: 2 / 1; }
.lodge-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.lodge-photos figure:hover img { transform: scale(1.04); }
.lodge-hero img { transition: transform 1.2s var(--ease-out); }
.lodge-hero:hover img { transform: scale(1.03); }

/* ----- nearby ----- */
.nearby {
  background: var(--sage);
  padding: var(--section-pad) var(--gutter);
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 84rem;
  margin: 0 auto;
  align-items: center;
}
.nearby-copy h2 { margin-bottom: 1.25rem; }
.nearby-list { margin-top: 2rem; }
.nearby-list > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.85fr) 1.5fr auto;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid oklch(0.78 0.05 135);
}
.nearby-list dt {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
}
.nearby-list dd { color: var(--ink-soft); }
.nearby-list .nearby-time {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
  justify-self: end;
  padding: 0.15rem 0.55rem;
  background: oklch(0.86 0.05 135);
}
.nearby-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.nearby-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.nearby-photo figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ----- gallery ----- */
.gallery { padding: var(--section-pad) var(--gutter); }
.gallery-head { max-width: 90rem; margin: 0 auto 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 90rem;
  margin: 0 auto;
}
.gallery-grid figure { overflow: hidden; aspect-ratio: 4 / 3; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid-teaser { grid-template-columns: repeat(3, 1fr); }

/* centred call-to-action below a section (e.g. "view full gallery") */
.section-cta {
  max-width: 90rem;
  margin: 2.5rem auto 0;
  text-align: center;
}

/* inline "see all →" text link used inside section copy */
.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.text-link:hover { border-color: var(--yellow-hover); color: var(--ink-soft); }

/* ----- page intro (subpages) ----- */
.page-intro { padding: var(--section-pad) var(--gutter) 0; }
.page-intro-inner { max-width: 64rem; margin: 0 auto; text-align: center; }
.page-intro .lede { margin-top: 1.25rem; }

/* ----- feature grid (photo cards: amenities, etc.) ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature-card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.feature-card:hover .feature-card-media img { transform: scale(1.04); }
.feature-card-body { padding: 1.5rem 1.5rem 1.7rem; }
.feature-card h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}
.feature-card p { margin-top: 0.5rem; color: var(--ink-soft); }

@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ----- inquiry ----- */
.inquire {
  background: var(--forest);
  color: oklch(0.95 0.015 110);
  padding: var(--section-pad) var(--gutter);
}
.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 84rem;
  margin: 0 auto;
  align-items: start;
}
.inquire-copy h2 { color: oklch(0.98 0.01 95); margin-bottom: 1.25rem; }
.inquire-copy .lede { color: oklch(0.88 0.025 120); }
.inquire-contacts {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
.inquire-contacts a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: oklch(0.97 0.01 95);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid oklch(0.45 0.05 150);
  padding-bottom: 0.75rem;
  max-width: 24rem;
}
.inquire-contacts a span {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
}
.inquire-contacts a:hover { border-bottom-color: var(--yellow); }

.inquire-form {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}
.inquire-form label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.inquire-form label small {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink-soft);
}
.inquire-form input,
.inquire-form select,
.inquire-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: oklch(1 0.005 95);
  border: 1px solid var(--line);
  border-radius: 0;
}
.inquire-form input:focus,
.inquire-form select:focus,
.inquire-form textarea:focus {
  outline: 2px solid var(--yellow-hover);
  outline-offset: 1px;
  border-color: var(--yellow-hover);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-row:has(.field-narrow) { grid-template-columns: 1fr 1fr 0.6fr; }
.inquire-form .btn-wide { margin-top: 0.5rem; }
.form-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-align: center;
}
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--sage);
  font-weight: 500;
  text-align: center;
}

/* ----- footer ----- */
.site-footer {
  background: var(--forest-deep);
  color: oklch(0.85 0.02 120);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 84rem;
  margin: 0 auto 3rem;
}
.footer-brand .brand-name { color: oklch(0.97 0.01 95); margin: 0.75rem 0 0.4rem; }
.footer-brand p { max-width: 24em; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: oklch(0.93 0.02 110);
  border: 1px solid oklch(0.4 0.04 150);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.footer-social a:hover { color: var(--forest-deep); background: var(--yellow); border-color: var(--yellow); }
.site-footer address {
  font-style: normal;
  line-height: 1.9;
}
.site-footer a { color: oklch(0.93 0.02 110); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.site-footer nav { display: grid; gap: 0.5rem; align-content: start; }
.site-footer nav a {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-fine {
  max-width: 84rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(0.35 0.04 150);
  font-size: 0.9rem;
  color: oklch(0.74 0.025 125);
}

/* ----- reveal motion ----- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .am-photo img, .gallery-grid img { transition: none; }
}

/* ----- responsive ----- */
@media (max-width: 960px) {
  .lodge-body,
  .nearby-grid,
  .inquire-grid {
    grid-template-columns: 1fr;
  }
  .rv-grid { grid-template-columns: 1fr; padding-right: 0; gap: 0; }
  .rv-copy { padding: clamp(2rem, 5vw, 3rem) var(--gutter) 0; }
  .rv-media-main { height: clamp(20rem, 56vw, 30rem); }
  .amenities-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .am-pool { grid-row: auto; min-height: 22rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- mobile nav (hamburger dropdown) ----- */
@media (max-width: 860px) {
  .site-header { gap: 0.75rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    background: oklch(0.967 0.018 95 / 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px -18px oklch(0.2 0.04 150 / 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease-out);
  }
  .nav-open .site-nav { max-height: 26rem; }
  .site-nav a {
    padding: 0.95rem var(--gutter);
    border-top: 1px solid var(--line);
    font-size: 1.1rem;
  }
  .site-nav a::after { display: none; }
  .site-nav a.is-active { color: var(--yellow-hover); }
}

@media (max-width: 640px) {
  .hero { min-height: min(88svh, 46rem); }
  .field-row, .field-row:has(.field-narrow) { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nearby-list > div {
    grid-template-columns: 1fr auto;
    gap: 0.25rem 0.75rem;
  }
  .nearby-list dt { grid-column: 1; grid-row: 1; }
  .nearby-list .nearby-time { grid-column: 2; grid-row: 1; }
  .nearby-list dd { grid-column: 1 / -1; grid-row: 2; }
  .ataglance li::after { display: none; }
  .ataglance ul { gap: 0.5rem 1.4rem; }
}

/* ---------------------------------------------------------------
   FAQ — answer-first Q&A (dual SEO rich-result + GEO value).
   Squared, clean accordion; matches the brand register.
---------------------------------------------------------------- */
.faq {
  background: var(--cream-deep);
  padding: var(--section-pad) var(--gutter);
}
.faq-inner { max-width: 60rem; margin: 0 auto; }
.faq-head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.faq-head h2 { margin-top: 0.4rem; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: oklch(0.99 0.007 95);
  border: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.1rem, 2.2vw, 1.6rem);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--forest);
  transition: transform 0.25s var(--ease-out);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--forest); }
.faq-answer {
  padding: 0 clamp(1.1rem, 2.2vw, 1.6rem) clamp(1.1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--line);
}
.faq-answer p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  padding-top: 1rem;
  max-width: 52rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after { transition: none; }
}

/* ---------------------------------------------------------------
   TESTIMONIALS — guest social proof (conversion lever).
   Verbatim quotes from public reviews; displayed only (no review
   schema, to stay within Google's first-party-rating guidelines).
---------------------------------------------------------------- */
.testimonials {
  background: var(--sage);
  padding: var(--section-pad) var(--gutter);
}
.tm-inner { max-width: 90rem; margin: 0 auto; }
.tm-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.tm-head h2 { margin-top: 0.4rem; }
.tm-rating {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}
.tm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.tm-card {
  position: relative;
  background: oklch(0.99 0.007 95);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px oklch(0.3 0.04 150 / 0.1);
}
.tm-stars {
  color: oklch(0.78 0.155 80);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.tm-quote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}
.tm-quote::before { content: "\201C"; }
.tm-quote::after  { content: "\201D"; }
.tm-by {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.tm-name {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  color: var(--ink);
}
.tm-src { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------
   CTA urgency note — honest, soft seasonal nudge near RV CTAs.
---------------------------------------------------------------- */
.cta-note {
  margin-top: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--yellow);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 32rem;
}
.cta-note strong { font-weight: 600; }

/* ---------------------------------------------------------------
   GUIDE / ARTICLE pages — long-tail SEO + GEO content.
   Readable prose column; reuses subhero, ataglance, faq, inquire.
---------------------------------------------------------------- */
.guide { padding: var(--section-pad) var(--gutter); }
.guide-body {
  max-width: 52rem;
  margin: 0 auto;
}
.guide-body > .kicker { margin-bottom: 0.6rem; }
.guide-body h2 {
  margin: 2.75rem 0 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.guide-body h2:first-of-type { margin-top: 0; }
.guide-body h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--ink);
}
.guide-body p {
  margin-bottom: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
}
.guide-body .lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.guide-body ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}
.guide-body li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
}
.guide-body li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.42rem;
  border-left: 3px solid var(--yellow-hover);
  border-bottom: 3px solid var(--yellow-hover);
  transform: rotate(-45deg);
}
.guide-body a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.05rem;
  font-weight: 500;
}
.guide-body a:hover { border-bottom-color: var(--yellow-hover); }
.guide-cta {
  background: var(--sage);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  text-align: center;
}
.guide-cta h2 { margin-bottom: 0.75rem; }
.guide-cta p { color: var(--ink-soft); max-width: 40rem; margin: 0 auto 1.5rem; }

/* ---------------------------------------------------------------
   Skip link — first focusable element; visible only on keyboard focus.
---------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--forest);
  color: oklch(0.98 0.01 95);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus-visible {
  transform: none;
  outline: 3px solid var(--yellow-hover);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------
   Honest preview note inside every inquiry form (mock doesn't send).
---------------------------------------------------------------- */
.form-mock-note {
  margin: 0 0 1rem;
  padding: 0.7rem 0.9rem;
  background: oklch(0.93 0.06 96);
  border-left: 3px solid var(--yellow-hover);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}
.form-mock-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------------------------------------------------------------
   Persistent mobile money CTA — sticky bottom bar on phones only.
   Desktop relies on the header "Check Availability" button instead.
---------------------------------------------------------------- */
.mobile-cta { display: none; }

@media (max-width: 860px) {
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: oklch(0.967 0.018 95 / 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px -18px oklch(0.2 0.04 150 / 0.55);
  }
  .mobile-cta .btn {
    font-size: 1.02rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .mobile-cta-book { box-shadow: none; }
  .mobile-cta-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--forest);
    color: oklch(0.97 0.01 95);
    border-color: var(--forest);
  }
  .mobile-cta-call:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
  /* keep the fixed bar from covering the footer / form tail */
  body { padding-bottom: 4.75rem; }
}
