:root {
  --ink: #151412;
  --muted: #635e55;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --bronze: #b98252;
  --teal: #0f6f73;
  --green: #54683d;
  --line: rgba(21, 20, 18, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.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: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 17, 17, 0.58), rgba(15, 17, 17, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 13px;
  text-transform: uppercase;
}

.nav a,
.header-cta {
  opacity: 0.92;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 15, 13, 0.78), rgba(16, 15, 13, 0.34) 46%, rgba(16, 15, 13, 0.1)),
    linear-gradient(0deg, rgba(16, 15, 13, 0.32), rgba(16, 15, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 90svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  padding: 104px clamp(18px, 5vw, 72px) 42px;
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label,
.form-kicker {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}

.hero-actions,
.contact-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.button.primary.light {
  background: var(--paper-strong);
  color: var(--ink);
}

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

.lead-form {
  scroll-margin-top: 92px;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(16, 15, 13, 0.62);
  backdrop-filter: blur(18px);
}

.lead-form h2 {
  margin-bottom: 22px;
  font-size: 28px;
  line-height: 1.1;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: inherit;
  padding: 0 12px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.lead-form.validation-attempted input:invalid,
.lead-form.validation-attempted select:invalid {
  border-color: #d89b67;
  box-shadow: 0 0 0 1px rgba(216, 155, 103, 0.32);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form button {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  border: 0;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  min-height: 38px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.lead-form.submitted {
  border-color: rgba(255, 255, 255, 0.58);
}

.lead-form.submitted .form-note {
  color: rgba(255, 255, 255, 0.88);
}

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

.stats-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 5vw, 56px);
  background: var(--paper-strong);
}

.stats-strip strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.stats-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  scroll-margin-top: 82px;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.image-feature,
.amenities,
.contact-band {
  scroll-margin-top: 82px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.image-feature,
.amenities {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
  background: #ece4d6;
}

.feature-image-wrap,
.amenities img {
  min-height: 640px;
}

.feature-image-wrap img,
.amenities img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel,
.amenities-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 96px);
}

.feature-panel p,
.amenities-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--teal);
}

.locations {
  background: var(--paper-strong);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.location-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.location-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
}

.location-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.amenities {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  background: #e6eee9;
}

.amenities img {
  order: 2;
}

.payment {
  padding-top: clamp(92px, 10vw, 140px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.payment h2 {
  max-width: 760px;
  margin-bottom: 38px;
}

.timeline {
  counter-reset: route-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline div {
  counter-increment: route-step;
  position: relative;
  min-height: 214px;
  padding: 74px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #151412;
}

.timeline div::before {
  content: "0" counter(route-step);
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(185, 130, 82, 0.48);
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
}

.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline p {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.contact-band {
  justify-content: space-between;
  gap: 34px;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: var(--white);
}

.contact-band div {
  max-width: 820px;
}

.contact-band .contact-actions {
  max-width: 320px;
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.contact-band h2 {
  margin-bottom: 18px;
}

.contact-band p:last-child,
.contact-actions p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
}

.contact-actions p strong {
  color: var(--white);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0c0c0b;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer span:first-child {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

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

  .nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .lead-form {
    max-width: 520px;
  }

  .stats-strip,
  .intro-grid,
  .section-heading,
  .image-feature,
  .amenities,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .feature-image-wrap,
  .amenities img {
    min-height: 420px;
  }

  .amenities img {
    order: 0;
  }

  .timeline div {
    min-height: auto;
    padding: 70px 22px 22px;
  }

  .timeline span {
    margin-bottom: 18px;
  }
}

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

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

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-content {
    min-height: 86svh;
    align-items: end;
    padding: 94px 16px 28px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

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

  .lead-form {
    display: block;
    padding: 20px;
    scroll-margin-top: 86px;
  }

  .stats-strip div {
    min-height: 96px;
  }

  .section {
    padding: 64px 16px;
  }

  .payment {
    padding-top: 132px;
  }

  .feature-panel,
  .amenities-copy {
    padding: 46px 16px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid article {
    min-height: 220px;
    padding: 24px;
  }

  .location-grid span {
    margin-bottom: 44px;
  }

  .contact-band,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-band .contact-actions {
    width: 100%;
    max-width: none;
  }

  .footer {
    flex-direction: column;
  }
}
