:root {
  --snow: #f6f2ea;
  --paper: #fffaf0;
  --ink: #17211d;
  --muted: #53625d;
  --river: #0d6b70;
  --spruce: #173f36;
  --moss: #6f7c4f;
  --ember: #b84d32;
  --line: #d8d0c1;
  --shadow: 0 18px 45px rgba(18, 28, 23, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Avenir Next, Segoe UI, system-ui, sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 242, 234, 0.93);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: var(--spruce);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-place {
  display: block;
}

.brand-name {
  font-weight: 850;
  letter-spacing: 0;
}

.brand-place {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  flex: 1;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--river);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: var(--river);
}

.button.primary:hover,
.nav-cta:hover {
  background: #09565b;
}

.button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--spruce);
  background: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(88svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(40px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(18px, 4vw, 46px);
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 17, 14, 0.82), rgba(8, 17, 14, 0.42) 48%, rgba(8, 17, 14, 0.16)),
    linear-gradient(0deg, rgba(8, 17, 14, 0.72), rgba(8, 17, 14, 0.08) 45%);
}

.hero-content {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--river);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.booking-band .eyebrow {
  color: #aee3dc;
}

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

h1,
h2 {
  font-family: Georgia, Times New Roman, serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: clamp(36px, 8vh, 84px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 16px 18px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-section,
.section,
.page-hero,
.booking-band,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 9vw, 114px) 0;
}

.intro-section img,
.page-hero.split img,
.wide-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.intro-section img {
  aspect-ratio: 4 / 5;
}

.intro-copy p:not(.eyebrow),
.section-heading p,
.page-hero p,
.plain-card p,
.feature-card p,
.booking-band p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section {
  padding: clamp(42px, 7vw, 92px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.plain-card,
.amenity-groups article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.trip-section {
  padding-top: 0;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trip-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.trip-card div {
  padding: 18px;
}

.trip-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 22px;
  margin-bottom: clamp(54px, 8vw, 98px);
  padding: clamp(28px, 5vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(23, 63, 54, 0.96), rgba(13, 107, 112, 0.92)),
    var(--spruce);
  border-radius: 8px;
}

.booking-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
}

.booking-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: clamp(46px, 7vw, 86px) 0 clamp(30px, 4vw, 54px);
}

.page-hero.compact {
  max-width: 860px;
  margin-left: clamp(18px, 7vw, 90px);
}

.page-hero.compact h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6.2vw, 6rem);
}

.page-hero.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.page-hero.split h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.page-hero.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.page-hero.reverse div {
  order: 2;
}

.page-hero.split img {
  aspect-ratio: 4 / 3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto clamp(56px, 8vw, 96px);
}

.gallery-item {
  margin: 0;
}

.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.gallery-item figcaption {
  padding: 8px 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-credit {
  display: block;
  padding: 3px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  opacity: 0.82;
}

.amenity-groups,
.guide-grid,
.card-row,
.season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.season-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity-groups article,
.plain-card {
  padding: 26px;
}

.amenity-groups h2,
.plain-card h2 {
  margin-bottom: 14px;
  font-family: Inter, Avenir Next, Segoe UI, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

ul {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 8px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  margin: 0;
  padding: 10px 14px;
  color: var(--spruce);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.wide-photo {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(58px, 9vw, 110px);
}

.wide-photo img {
  max-height: 620px;
}

.guide-feature-list {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.guide-feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.guide-feature.reverse img {
  order: 2;
}

.guide-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.faq-list {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto clamp(64px, 8vw, 110px);
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.2rem;
  font-weight: 850;
}

details p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #ffffff;
  background: rgba(10, 18, 15, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 82svh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer span,
.site-footer small {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer small {
  grid-column: 1 / -1;
}

.photo-credits {
  font-size: 0.78rem;
}

.photo-credits a {
  color: inherit;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 74svh;
  }

  .intro-section,
  .page-hero.split,
  .page-hero.reverse {
    grid-template-columns: 1fr;
  }

  .page-hero.reverse div {
    order: 0;
  }

  .feature-grid,
  .amenity-groups,
  .guide-grid,
  .card-row,
  .season-grid,
  .trip-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-feature,
  .guide-feature.reverse {
    grid-template-columns: 1fr;
  }

  .guide-feature.reverse img {
    order: 0;
  }

  .booking-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-band {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .nav-cta {
    width: 100%;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 78svh;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .amenity-groups,
  .guide-grid,
  .card-row,
  .season-grid,
  .trip-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.compact {
    margin-left: auto;
  }
}
