:root {
  --ink: #17201b;
  --muted: #5b665f;
  --paper: #faf9f4;
  --mist: #e8eef0;
  --forest: #28513f;
  --forest-dark: #163427;
  --cider: #c87b3f;
  --sky: #8bb6c8;
  --white: #ffffff;
  --line: #d7ded7;
  --shadow: 0 18px 48px rgba(20, 34, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 249, 244, 0.92);
  border-bottom: 1px solid rgba(215, 222, 215, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.78rem;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 52, 39, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-dark);
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 18, 0.78), rgba(10, 24, 18, 0.28) 60%, rgba(10, 24, 18, 0.18)),
    linear-gradient(0deg, rgba(10, 24, 18, 0.78), rgba(10, 24, 18, 0.04) 56%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(64px, 10vw, 112px) clamp(18px, 7vw, 96px);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f4bd84;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 24px clamp(18px, 3vw, 38px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: #e7a823;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.rating-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 88px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 112px);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 6vw, 88px) clamp(72px, 9vw, 120px);
}

.feature-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.feature-grid p,
.split-content p,
.valley-copy p,
.section-heading p,
.booking-cta p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  background: var(--mist);
}

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

.amenities {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  padding: 14px 0 14px 34px;
  border-top: 1px solid rgba(23, 32, 27, 0.14);
  position: relative;
}

.amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 12px;
  height: 12px;
  background: var(--sky);
  border: 3px solid var(--forest);
  border-radius: 50%;
}

.valley {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  background: var(--forest-dark);
  color: var(--white);
}

.valley-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.location-list {
  display: grid;
  gap: 16px;
}

.location-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.location-list span {
  grid-row: span 2;
  color: #f4bd84;
  font-weight: 900;
}

.location-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.wide-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.wildlife {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

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

.wildlife-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-section {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(1),
.gallery img:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.booking-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin: clamp(24px, 6vw, 80px);
  padding: clamp(32px, 5vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #2c5c64);
  border-radius: 8px;
}

.booking-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.booking-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-cta .button {
  background: var(--white);
  color: var(--forest-dark);
  border-color: var(--white);
  box-shadow: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .trust-band,
  .feature-grid,
  .intro-grid,
  .split,
  .valley,
  .wildlife,
  .booking-cta {
    grid-template-columns: 1fr;
  }

  .booking-cta {
    margin: 18px;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 52px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .trust-band div {
    padding: 18px 14px;
  }

  .section,
  .feature-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery {
    gap: 8px;
  }

  .gallery img:nth-child(1),
  .gallery img:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }

  .footer {
    display: grid;
  }
}
