:root {
  --ink: #1f2522;
  --muted: #65706a;
  --paper: #fbfaf7;
  --soft: #f0ece4;
  --line: #ddd6ca;
  --forest: #2f5e46;
  --forest-dark: #173c2b;
  --brick: #8c3f32;
  --pool: #0d8390;
  --gold: #b68a45;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(25, 31, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 24, 20, 0.66), rgba(18, 24, 20, 0.38) 48%, rgba(18, 24, 20, 0.12)),
    linear-gradient(0deg, rgba(18, 24, 20, 0.42), rgba(255, 255, 255, 0.1) 58%, rgba(255, 255, 255, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 180px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brick);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6.5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--brick);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--forest-dark);
  border-color: var(--forest-dark);
}

.stat-strip {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: grid;
  width: min(980px, calc(100% - 36px));
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%);
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.stat-strip div {
  padding: 18px clamp(12px, 3vw, 26px);
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.lifestyle-grid,
.location-grid,
.video-grid,
.contact-grid,
.details-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.intro-grid p,
.section-heading p,
.lifestyle-copy p,
.details-grid p,
.location-grid p,
.video-grid p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: end;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  margin-bottom: 26px;
}

.photo-feature {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.photo-feature.large {
  grid-row: span 2;
  min-height: 580px;
}

.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(24, 31, 28, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

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

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

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

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

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

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

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

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

.lifestyle {
  background: var(--soft);
}

.lifestyle-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  background: var(--pool);
}

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

.details-grid article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--brick);
  background: var(--paper);
}

.location-section {
  background: var(--paper);
}

.nearby-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.nearby-list span,
.contact-highlights span {
  display: block;
  padding: 10px 12px;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
}

.map-wrap,
.video-wrap {
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: 0;
}

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

.video-wrap {
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  color: var(--white);
  background: var(--forest-dark);
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
  padding-top: 14px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.form-panel {
  min-height: 640px;
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel iframe {
  min-height: 600px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: #111612;
}

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

.site-footer span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 19;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brick);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 58px clamp(14px, 4vw, 60px);
  background: rgba(10, 14, 12, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  margin: 0;
  width: min(1120px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 9px 14px;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    margin-left: 18px;
    padding-bottom: 190px;
  }

  .intro-grid,
  .lifestyle-grid,
  .location-grid,
  .video-grid,
  .contact-grid,
  .details-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

  .photo-feature.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 420px;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 24, 20, 0.76), rgba(18, 24, 20, 0.28) 68%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 100px 0 210px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    bottom: 20px;
  }

  .stat-strip div:nth-child(2) {
    border-right: 0;
  }

  .stat-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .photo-story,
  .feature-grid,
  .gallery-grid,
  .nearby-list {
    grid-template-columns: 1fr;
  }

  .photo-feature.large,
  .photo-feature {
    grid-column: auto;
    min-height: 270px;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .form-panel {
    min-height: 620px;
    padding: 8px;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .site-footer {
    display: grid;
    padding-bottom: 80px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
