:root {
  --ink: #17211b;
  --forest-950: #07140f;
  --forest-900: #0d241a;
  --forest-800: #173b2b;
  --forest-700: #28533d;
  --forest-600: #3a6b50;
  --lake: #6699a5;
  --orange: #dc762f;
  --orange-dark: #bd5d1d;
  --gold: #d6a034;
  --cream: #f5f0e5;
  --sand: #e8dfcc;
  --paper: #fffdf8;
  --muted: #69746d;
  --line: rgba(23, 59, 43, .15);
  --shadow: 0 20px 60px rgba(7, 20, 15, .14);
  --shadow-soft: 0 10px 30px rgba(7, 20, 15, .09);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(220,118,47,.25); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-dark { background: var(--forest-900); color: white; }
.section-paper { background: var(--paper); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2,
.display-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-heading p { margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }

/* Announcement */
.announcement-banner {
  background: var(--orange);
  color: white;
  min-height: 48px;
  position: relative;
  z-index: 1200;
}
.announcement-content {
  width: min(var(--container), calc(100% - 88px));
  min-height: 48px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: .9rem;
}
.announcement-content strong { letter-spacing: .05em; text-transform: uppercase; font-size: .76rem; }
.announcement-content p { margin: 0; }
.announcement-content a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.announcement-close {
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,.14);
  cursor: pointer;
  font-size: 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(7,20,15,.94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 156px;
}
.logo img {
  width: 148px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  mix-blend-mode: screen;
}
.site-nav { display: flex; justify-content: center; gap: 6px; }
.site-nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 650;
  transition: .2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: white; background: rgba(255,255,255,.09); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-book {
  text-decoration: none;
  color: white;
  background: var(--orange);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(220,118,47,.22);
  transition: .2s ease;
}
.header-book:hover { background: var(--orange-dark); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: white;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  transition: .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { color: white; background: var(--orange); box-shadow: 0 12px 30px rgba(220,118,47,.24); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-light { color: var(--forest-900); background: white; }
.btn-light:hover { transform: translateY(-2px); background: var(--cream); }
.btn-outline { color: white; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: white; }
.text-link { color: var(--forest-700); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  isolation: isolate;
  color: white;
  background: var(--hero-image, url("images/campground_hut.webp")) center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7,20,15,.94) 0%, rgba(7,20,15,.78) 42%, rgba(7,20,15,.28) 72%, rgba(7,20,15,.2) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(transparent, rgba(7,20,15,.46));
}
.hero-home { --hero-image: url("images/campground_hut.webp"); }
.hero-sites { --hero-image: url("images/csite.webp"); min-height: 520px; }
.hero-amenities { --hero-image: url("images/beach.webp"); min-height: 520px; }
.hero-info { --hero-image: url("images/fishing dock.webp"); min-height: 520px; }
.hero-gallery { --hero-image: url("images/playground.webp"); min-height: 520px; }
.hero-contact { --hero-image: url("images/campground_hut.webp"); min-height: 520px; }
.hero .container { position: relative; }
.hero-copy { max-width: 760px; padding: 82px 0; }
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.hero:not(.hero-home) h1 { font-size: clamp(3.3rem, 7vw, 6.2rem); max-width: 900px; }
.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.16rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.weather-card {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: min(330px, 100%);
  padding: 22px;
  color: white;
  background: rgba(7,20,15,.88);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.weather-card small { display: block; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.weather-card h2 { margin: 0; font-size: 1rem; }
.weather-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 12px; }
#weather-temp { font-size: 2.8rem; line-height: 1; font-weight: 850; letter-spacing: -.05em; }
#weather-details { margin: 0; color: rgba(255,255,255,.66); font-size: .9rem; text-align: right; }

/* Trust strip */
.quick-strip { background: var(--forest-900); color: white; border-top: 1px solid rgba(255,255,255,.08); }
.quick-grid {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-item { padding: 24px 18px; border-right: 1px solid rgba(255,255,255,.1); }
.quick-item:first-child { padding-left: 0; }
.quick-item:last-child { border-right: 0; }
.quick-item strong { display: block; font-size: 1rem; }
.quick-item span { color: rgba(255,255,255,.58); font-size: .86rem; }

/* Home cards */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.intro-note { padding: 28px; border-left: 4px solid var(--orange); background: rgba(255,255,255,.48); border-radius: 0 var(--radius) var(--radius) 0; }
.intro-note strong { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.intro-note p { margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card-media { aspect-ratio: 16/10; background: #eef1eb; overflow: hidden; }
.feature-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.feature-card-body { padding: 26px; }
.feature-card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.feature-card p { margin: 0 0 18px; color: var(--muted); }


/* News & Events */
.news-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.news-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -230px;
  bottom: -230px;
  border-radius: 50%;
  border: 1px solid rgba(23,59,43,.08);
  box-shadow:
    0 0 0 60px rgba(23,59,43,.025),
    0 0 0 120px rgba(23,59,43,.018);
  pointer-events: none;
}

.news-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.news-facebook-link {
  flex: 0 0 auto;
  margin-bottom: 6px;
}

.news-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: stretch;
}

.news-side {
  display: grid;
  gap: 22px;
}

.news-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.news-card-featured {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: white;
  background:
    linear-gradient(180deg, rgba(7,20,15,.08) 0%, rgba(7,20,15,.82) 72%, rgba(7,20,15,.96) 100%),
    url("images/campground_hut.webp") center/cover no-repeat;
  border-color: rgba(23,59,43,.18);
}

.news-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,15,.32), transparent 58%);
  pointer-events: none;
}

.news-card-top,
.news-card-body {
  position: relative;
  z-index: 1;
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--forest-900);
  background: var(--cream);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-card:not(.news-card-featured) .news-tag {
  color: #8f491b;
  background: #fff1e7;
}

.news-date {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 750;
}

.news-card:not(.news-card-featured) .news-date {
  color: var(--muted);
}

.news-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.news-card-featured h3 {
  max-width: 560px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.news-card p {
  margin: 16px 0 0;
}

.news-card-featured .news-card-body > p:not(.news-kicker) {
  max-width: 610px;
  color: rgba(255,255,255,.73);
}

.news-card-featured .btn {
  margin-top: 24px;
}

.news-card-compact {
  padding: 26px;
}

.news-card-compact .news-card-body {
  margin-top: 26px;
}

.news-card-compact h3 {
  font-size: 1.55rem;
}

.news-card-compact p {
  color: var(--muted);
  font-size: .94rem;
}

.news-card-compact .text-link {
  display: inline-block;
  margin-top: 16px;
}

.news-card-muted {
  background: rgba(255,255,255,.58);
}

/* News responsive */
@media (max-width: 1020px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

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

  .news-card-featured {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .news-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }

  .news-facebook-link {
    margin-bottom: 0;
  }

  .news-side {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    min-height: 430px;
    padding: 26px;
    background-position: 58% center;
  }

  .news-card-featured h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .news-card-compact {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .news-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .news-card-featured {
    min-height: 460px;
  }
}


/* Rates */
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rate-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.rate-card h3 { margin: 0; font-size: 1.16rem; }
.price { margin: 16px 0 0; color: white; font-size: 2.65rem; line-height: 1; font-weight: 850; letter-spacing: -.05em; }
.rate-card .sub { margin-top: 7px; color: rgba(255,255,255,.58); font-size: .9rem; }
.rate-card small { display: block; color: rgba(255,255,255,.54); margin-top: 10px; }
.boat-rates { display: grid; gap: 8px; margin-top: 16px; }
.boat-row { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1); }
.boat-row span { color: rgba(255,255,255,.66); }
.boat-row strong { color: white; }
.booking-panel {
  margin-top: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}
.booking-panel h3 { margin: 0 0 5px; }
.booking-panel p { margin: 0; color: var(--muted); }

/* Shared promo / CTA */
.photo-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.photo-split .photo { min-height: 420px; }
.photo-split .photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-split .copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; background: var(--forest-800); color: white; }
.photo-split .copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.04em; }
.photo-split .copy p { color: rgba(255,255,255,.7); }
.cta-strip {
  padding: 82px 0;
  text-align: center;
  color: white;
  background: linear-gradient(rgba(7,20,15,.84), rgba(7,20,15,.9)), url("images/beach.webp") center/cover;
}
.cta-strip h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: 1; letter-spacing: -.045em; }
.cta-strip p { max-width: 620px; margin: 16px auto 28px; color: rgba(255,255,255,.72); }

/* Sites */
.booking-search {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.booking-search h2 { margin: 3px 0; font-size: 1.75rem; }
.booking-search p { margin: 0; color: var(--muted); }
.site-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.site-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.site-card img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 14px; background: #f2f4ef; border-radius: 14px; }
.site-card h3 { margin: 20px 0 8px; font-size: 1.5rem; }
.site-card p { margin: 0; color: var(--muted); }
.map-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 30px; align-items: stretch; }
.map-copy { padding: 38px; border-radius: var(--radius); background: var(--forest-800); color: white; }
.map-copy h2 { margin: 8px 0 14px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.04em; }
.map-copy p { color: rgba(255,255,255,.7); }
.campspot-card { display: block; margin-top: 24px; padding: 14px; border-radius: 14px; background: rgb(231, 112, 57); text-decoration: none; transition: .2s ease; }
.campspot-card:hover { transform: translateY(-3px); }
.campspot-card img { width: 100%; max-height: 190px; object-fit: cover; border-radius: 10px; }
.campspot-card span { display: block; margin-top: 10px; color: var(--forest-800); font-size: .87rem; font-weight: 800; text-align: center; }
.map-image { padding: 16px; border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); overflow: hidden; }
.map-image img { width: 100%; height: 100%; object-fit: contain; }

/* Amenities */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.amenity-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.amenity-card-body { padding: 24px; }
.amenity-card h3 { margin: 0 0 8px; font-size: 1.45rem; }
.amenity-card p { margin: 0; color: var(--muted); }
.amenity-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.amenity-pill { padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.9); font-weight: 650; }

/* Information */
.info-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-nav-card { padding: 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); text-decoration: none; box-shadow: var(--shadow-soft); transition: .2s ease; }
.info-nav-card:hover { transform: translateY(-4px); border-color: rgba(220,118,47,.6); }
.info-nav-card .num { color: var(--orange); font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.info-nav-card h3 { margin: 8px 0; font-size: 1.3rem; }
.info-nav-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.info-stack { display: grid; gap: 18px; }
.info-section { scroll-margin-top: calc(var(--header-height) + 18px); padding: 30px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.info-section h2 { margin: 0 0 16px; font-size: 1.8rem; }
.info-section ul { margin: 0; padding-left: 22px; }
.info-section li { margin: 8px 0; color: var(--muted); }
.info-callout { padding: 22px; border-radius: var(--radius-sm); background: #fff6ed; border: 1px solid rgba(220,118,47,.22); color: #70421f; }

/* Gallery */
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  top: 90px;
  border-radius: 50%;
  border: 1px solid rgba(23, 59, 43, .08);
  box-shadow:
    0 0 0 55px rgba(23, 59, 43, .025),
    0 0 0 110px rgba(23, 59, 43, .018);
  pointer-events: none;
}

.gallery-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, 170px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--forest-800);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7,20,15,0) 40%,
    rgba(7,20,15,.18) 64%,
    rgba(7,20,15,.76) 100%
  );
  opacity: .92;
  transition: opacity .3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-feature {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.gallery-tall {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}

.gallery-small:nth-of-type(3) {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.gallery-small:nth-of-type(4) {
  grid-column: 4 / span 3;
  grid-row: 3;
}

.gallery-wide {
  grid-column: 7 / span 6;
  grid-row: 3;
}

.gallery-medium:nth-of-type(6) {
  grid-column: 1 / span 4;
  grid-row: 4;
}

.gallery-medium:nth-of-type(7) {
  grid-column: 5 / span 4;
  grid-row: 4;
}

.gallery-panorama {
  grid-column: 9 / span 4;
  grid-row: 4;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: white;
  text-align: left;
  pointer-events: none;
}

.gallery-caption strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.gallery-feature .gallery-caption strong,
.gallery-tall .gallery-caption strong {
  font-size: 1.3rem;
}

.gallery-caption small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.3;
}

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(0,0,0,.88);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--forest-900);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card, .contact-form { padding: 34px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.contact-card h2, .contact-form h2 { margin: 0 0 22px; font-size: 2rem; }
.contact-list { display: grid; gap: 18px; }
.contact-item { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-item strong { display: block; margin-bottom: 4px; color: var(--forest-700); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-item a { color: var(--ink); font-weight: 750; text-decoration: none; }
.contact-item p { margin: 0; color: var(--muted); }
.map-box { min-height: 540px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); background: #d8ddd7; }
.map-box iframe { width: 100%; height: 100%; min-height: 540px; border: 0; display: block; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.form-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.04em; }
.form-copy p { color: var(--muted); }
.contact-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--forest-800); font-size: .86rem; font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d7ddd5; border-radius: 12px; background: #fff; color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(220,118,47,.1); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .82rem; }

/* Footer */
.site-footer { background: var(--forest-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: 50px; padding: 56px 0 42px; }
.footer-brand img { width: 190px; height: 95px; object-fit: contain; object-position: left center; mix-blend-mode: screen; border-radius: 8px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.58); margin: 16px 0 0; }
.footer-heading { margin: 0 0 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .82rem; }

/* Responsive */
@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--forest-950);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 26px 60px rgba(0,0,0,.32);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; border-radius: 12px; font-size: 1rem; }
  .menu-toggle { display: inline-flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .header-book { padding: 10px 15px; }
  .card-grid, .site-card-grid, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-list { grid-template-columns: repeat(3, 1fr); }
  .info-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .map-section, .contact-grid, .contact-layout, .photo-split { grid-template-columns: 1fr; }
  .map-box, .map-box iframe { min-height: 420px; }
  .photo-split .copy { padding: 40px; }
  .gallery-collage {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(6, 160px);
  }

  .gallery-feature { grid-column: 1 / span 4; grid-row: 1 / span 2; }
  .gallery-tall { grid-column: 5 / span 2; grid-row: 1 / span 2; }
  .gallery-small:nth-of-type(3) { grid-column: 1 / span 2; grid-row: 3; }
  .gallery-small:nth-of-type(4) { grid-column: 3 / span 2; grid-row: 3; }
  .gallery-wide { grid-column: 5 / span 2; grid-row: 3 / span 2; }
  .gallery-medium:nth-of-type(6) { grid-column: 1 / span 3; grid-row: 4 / span 2; }
  .gallery-medium:nth-of-type(7) { grid-column: 4 / span 1; grid-row: 4 / span 2; }
  .gallery-panorama { grid-column: 1 / -1; grid-row: 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-height: 76px; }
  .container, .header-inner, .quick-grid { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .announcement-content { width: calc(100% - 72px); min-height: 52px; flex-wrap: wrap; gap: 3px 8px; padding: 8px 0; line-height: 1.25; }
  .announcement-content strong { width: 100%; }
  .logo { min-width: 110px; }
  .logo img { width: 112px; height: 58px; }
  .header-book { display: none; }
  .hero { min-height: 590px; background-position: 60% center; }
  .hero-sites, .hero-amenities, .hero-info, .hero-gallery, .hero-contact { min-height: 480px; }
  .hero::before { background: linear-gradient(90deg, rgba(7,20,15,.94), rgba(7,20,15,.64)); }
  .hero-copy { padding: 68px 0 86px; }
  .hero h1 { font-size: clamp(3rem, 17vw, 5.2rem); }
  .hero:not(.hero-home) h1 { font-size: clamp(2.9rem, 14vw, 4.7rem); }
  .weather-card { position: relative; right: auto; bottom: auto; margin: -56px 0 30px; width: 100%; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); padding: 8px 0; }
  .quick-item { padding: 17px 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .quick-item:nth-last-child(-n+2) { border-bottom: 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .card-grid, .site-card-grid, .amenity-grid, .rate-grid, .info-nav-grid { grid-template-columns: 1fr; }
  .booking-panel, .booking-search { flex-direction: column; align-items: stretch; }
  .booking-panel .btn, .booking-search .btn { width: 100%; }
  .booking-search { margin-top: -26px; }
  .amenity-list { grid-template-columns: repeat(2, 1fr); }
  .map-copy, .contact-card, .contact-form, .info-section { padding: 25px; }
  .gallery-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 170px;
    gap: 12px;
  }

  .gallery-feature { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-tall { grid-column: 1; grid-row: span 2; }
  .gallery-small:nth-of-type(3) { grid-column: 2; grid-row: span 1; }
  .gallery-small:nth-of-type(4) { grid-column: 2; grid-row: span 1; }
  .gallery-wide { grid-column: 1 / -1; grid-row: span 1; }
  .gallery-medium:nth-of-type(6),
  .gallery-medium:nth-of-type(7) { grid-column: auto; grid-row: span 1; }
  .gallery-panorama { grid-column: 1 / -1; grid-row: span 1; }
  .gallery-caption { left: 14px; right: 14px; bottom: 13px; }
  .gallery-feature .gallery-caption strong,
  .gallery-tall .gallery-caption strong { font-size: 1.08rem; }
  .gallery-note { align-items: flex-start; flex-direction: column; gap: 6px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 420px) {
  .container, .header-inner, .quick-grid { width: min(100% - 22px, var(--container)); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .amenity-list { grid-template-columns: 1fr; }
  .weather-row { align-items: center; }
}


@media (max-width: 480px) {
  .gallery-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-feature,
  .gallery-tall,
  .gallery-small:nth-of-type(3),
  .gallery-small:nth-of-type(4),
  .gallery-wide,
  .gallery-medium:nth-of-type(6),
  .gallery-medium:nth-of-type(7),
  .gallery-panorama {
    grid-column: 1;
    grid-row: span 1;
  }

  .gallery-feature,
  .gallery-tall {
    grid-row: span 1;
  }
}

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