:root {
  --ink: #14211d;
  --muted: #5d6962;
  --paper: #fbfbf7;
  --soft: #eef2ec;
  --forest: #193d31;
  --forest-2: #0f2c24;
  --lake: #2f7f9f;
  --clay: #a35f35;
  --line: #dce4dc;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 31, 27, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(251, 251, 247, 0.96);
  border-bottom: 1px solid rgba(20, 33, 29, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: auto;
  height: 54px;
  max-width: min(260px, 42vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--forest);
  background: var(--soft);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--white);
  background: var(--lake);
}

.draft-banner {
  position: sticky;
  top: 75px;
  z-index: 19;
  padding: 8px clamp(18px, 4vw, 52px);
  color: #40260f;
  background: #f5d3a8;
  border-bottom: 1px solid rgba(120, 75, 29, 0.22);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.hero-home {
  background-image: url("assets/entryway-finished-concept.png");
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(13, 30, 25, 0.76), rgba(13, 30, 25, 0.1)), url("assets/woods-drive.jpg");
}

.sites-hero {
  background-image: linear-gradient(90deg, rgba(13, 30, 25, 0.76), rgba(13, 30, 25, 0.1)), url("assets/wide-drive.jpg");
}

.amenities-hero {
  background-image: linear-gradient(90deg, rgba(13, 30, 25, 0.76), rgba(13, 30, 25, 0.1)), url("assets/cabin.jpg");
}

.gallery-hero {
  background-image: linear-gradient(90deg, rgba(13, 30, 25, 0.78), rgba(13, 30, 25, 0.16)), url("assets/entryway-finished-concept.png");
}

.rates-hero,
.booking-hero,
.contact-hero,
.things-hero {
  min-height: 58svh;
  background-image: linear-gradient(90deg, rgba(13, 30, 25, 0.78), rgba(13, 30, 25, 0.18)), url("assets/entryway-finished-concept.png");
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 24, 19, 0.88), rgba(9, 24, 19, 0.28) 54%, rgba(9, 24, 19, 0.52));
}

.hero-content,
.page-hero > div {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(48px, 9vh, 92px);
}

.hero-content {
  margin-left: clamp(18px, 8vw, 100px);
}

.page-hero > div {
  margin-left: clamp(18px, 8vw, 100px);
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f3b47f;
}

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

h1,
h2 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(44px, 8vw, 86px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.hero-copy,
.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: #854821;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.disabled-link {
  pointer-events: none;
  opacity: 0.78;
}

.intro-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--forest);
}

.intro-band div {
  display: grid;
}

.intro-band .label {
  color: #b9d6e2;
  margin: 0;
}

.intro-band a {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.section.muted {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.two-column,
.split-feature,
.contact-layout,
.booking-panel,
.rate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lake);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 14px;
  align-items: end;
}

.photo-stack img,
.rounded-photo,
.split-feature img,
.gallery-strip img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack img:first-child {
  height: 430px;
}

.photo-stack img:last-child {
  height: 310px;
}

.rounded-photo,
.split-feature img {
  height: min(560px, 55vw);
  min-height: 340px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.booking-card,
.amenity-list article {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 31, 27, 0.07);
}

.feature-card {
  display: block;
  text-decoration: none;
}

.feature-card span,
.amenity-list strong,
.booking-card strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.feature-card p,
.amenity-list span,
.booking-card li {
  color: var(--muted);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 127, 159, 0.45);
}

.split-feature {
  width: min(1180px, calc(100% - 36px));
}

.split-feature p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.stat-row div {
  padding: 24px 0;
  border-top: 2px solid rgba(25, 61, 49, 0.22);
}

.stat-row strong {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--forest);
}

.stat-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 7vw, 90px);
}

.gallery-strip img {
  height: 340px;
}

.gallery-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.progress-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 31, 27, 0.07);
}

.progress-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.progress-gallery figcaption {
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
}

.video-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.video-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.rate-panel {
  align-items: start;
}

.rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rate-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.rate-table th {
  color: var(--white);
  background: var(--forest);
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

.booking-panel {
  align-items: stretch;
}

.booking-card ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--forest-2);
}

.site-footer p {
  margin: 6px 0 0;
  color: #c3d4ce;
}

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

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .draft-banner {
    top: 75px;
  }

  .two-column,
  .split-feature,
  .contact-layout,
  .booking-panel,
  .rate-panel,
  .video-note,
  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .amenity-list,
  .stat-row,
  .progress-gallery {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: 68svh;
  }

  .hero-content,
  .page-hero > div {
    margin-left: auto;
    padding-bottom: 46px;
  }

  .intro-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-strip,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .gallery-strip img,
  .progress-gallery img,
  .photo-stack img:first-child,
  .photo-stack img:last-child,
  .rounded-photo,
  .split-feature img {
    height: 320px;
    min-height: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 44px;
    max-width: 178px;
  }

  .draft-banner {
    top: 65px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

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

  .section {
    width: min(100% - 28px, 1180px);
  }

  .feature-card,
  .booking-card,
  .amenity-list article,
  .contact-form {
    padding: 18px;
  }
}
