:root {
  --ink: #241810;
  --rust: #8c2b10;
  --rust-dark: #5f1d0b;
  --ivory: #ede6df;
  --moss: #566342;
  --olive: #7b8058;
  --ochre: #c8994b;
  --sky: #637f8f;
  --plum: #6e526d;
  --paper: #fbf7ef;
  --line: rgba(36, 24, 16, .16);
  --shadow: 0 24px 70px rgba(54, 24, 10, .18);
  --radius: 8px;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 250, 240, .94);
  box-shadow: 0 10px 34px rgba(24, 40, 33, .12);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(246, 240, 234, .5);
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  opacity: .78;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: .92rem;
  font-weight: 700;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  min-width: max-content;
  border: 1px solid rgba(246, 240, 234, .58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.language-switch button {
  min-width: 42px;
  min-height: 42px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
}

.language-switch button[aria-pressed="true"] {
  color: var(--rust);
  background: var(--ivory);
}

.site-header.is-solid .language-switch {
  border-color: rgba(140, 43, 16, .22);
  background: rgba(140, 43, 16, .06);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  color: var(--rust);
  background: var(--ivory);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 34px;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62, 18, 9, .9), rgba(62, 18, 9, .58) 42%, rgba(62, 18, 9, .22)),
    linear-gradient(0deg, rgba(62, 18, 9, .78), transparent 45%),
    url("../img/rockhaven-hero-forest.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-bottom: 96px;
}

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

.hero .eyebrow,
.visual-band .eyebrow,
.contact .eyebrow {
  color: var(--ivory);
}

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

h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.button-primary {
  color: var(--ivory);
  background: var(--rust);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12);
}

.button-outline {
  color: var(--rust);
  border: 1px solid rgba(140, 43, 16, .35);
  background: transparent;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, 100%);
  margin-left: auto;
  border: 1px solid rgba(244, 239, 231, .22);
  border-radius: var(--radius);
  background: rgba(145, 36, 15, .26);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 10px;
  opacity: .78;
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, .45fr) minmax(0, 1fr);
  gap: 38px;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  margin-left: 0;
}

.section-heading.compact h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  line-height: 1.03;
}

h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .58fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}

.lead-copy {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}

.lead-copy p {
  margin: 0 0 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.feature-grid span {
  min-height: 82px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: var(--rust);
  font-weight: 800;
}

.feature-grid span:nth-child(2),
.feature-grid span:nth-child(5) {
  color: var(--ivory);
  background: var(--ochre);
}

.feature-grid span:nth-child(3) {
  background: var(--sky);
}

.feature-grid span:nth-child(4) {
  background: var(--moss);
}

.feature-grid span:nth-child(6) {
  background: var(--plum);
}

.visual-band {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  color: white;
  background: var(--rust-dark);
}

.visual-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(101, 26, 13, .78), rgba(101, 26, 13, .24));
}

.visual-band img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  object-position: center;
}

.visual-band-copy {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(32px, 8vw, 90px);
  max-width: 760px;
}

.lots,
.reserve {
  background: var(--ivory);
}

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

.zone {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow);
}

.zone-blue {
  background: var(--sky);
}

.zone-gold {
  color: var(--ivory);
  background: var(--ochre);
}

.zone-purple {
  background: var(--plum);
}

.zone-chip {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
}

.zone h3 {
  margin: 36px 0 8px;
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 800;
  line-height: .95;
  white-space: nowrap;
}

.zone h3 span {
  margin-right: .12em;
  font-size: .55em;
  vertical-align: .26em;
}

.zone p {
  margin: 0;
  font-weight: 800;
}

.lot-catalog {
  margin-top: clamp(34px, 5vw, 68px);
}

.lot-catalog-header {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .52fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.lot-catalog-header h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.lot-catalog-header p:not(.eyebrow) {
  margin: 0;
  color: rgba(36, 24, 16, .74);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

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

.lot-group h4 {
  margin: 0 0 10px;
  color: var(--rust);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lot-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.lot-row {
  display: grid;
  grid-template-columns: .45fr .78fr 1fr .86fr minmax(108px, auto);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.lot-row:first-child {
  border-top: 0;
}

.lot-row-head {
  min-height: 46px;
  color: rgba(36, 24, 16, .68);
  background: rgba(140, 43, 16, .06);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lot-row .lot-id {
  color: var(--rust);
  font-size: 1.2rem;
}

.lot-row span {
  font-weight: 800;
}

.lot-zone {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.lot-zone-blue {
  color: #314f60;
  background: rgba(99, 127, 143, .18);
}

.lot-zone-gold {
  color: #6f5420;
  background: rgba(200, 153, 75, .24);
}

.lot-zone-purple {
  color: #5b405b;
  background: rgba(110, 82, 109, .18);
}

.status {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .82rem;
  white-space: nowrap;
}

.status.available {
  color: #28523a;
  background: rgba(86, 99, 66, .16);
}

.status.reserved {
  color: #6f5420;
  background: rgba(200, 153, 75, .22);
}

.status.sold {
  color: var(--rust-dark);
  background: rgba(140, 43, 16, .16);
}

.status.unavailable {
  color: #5f5661;
  background: rgba(110, 82, 109, .16);
}

.lot-action {
  min-height: 38px;
  border: 1px solid rgba(140, 43, 16, .28);
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--rust);
  background: white;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  white-space: nowrap;
}

.lot-action:disabled,
.lot-action.is-disabled {
  color: rgba(36, 24, 16, .48);
  border-color: rgba(36, 24, 16, .14);
  background: rgba(36, 24, 16, .06);
  cursor: not-allowed;
}

.masterplan {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(320px, .48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.masterplan-copy {
  max-width: 720px;
}

.masterplan-copy p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.plan-preview {
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.plan-preview img {
  width: min(100%, 430px);
  margin: 0 auto;
}

.plan-preview figcaption {
  margin-top: 14px;
  color: rgba(36, 24, 16, .68);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline div {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 20px;
  background: white;
}

.timeline-icon {
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  color: var(--rust);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.timeline-icon-fill {
  fill: currentColor;
  stroke: none;
}

.timeline strong {
  color: var(--rust);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .9;
}

.timeline span {
  font-weight: 800;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: 44px;
}

.reserve-copy {
  max-width: 440px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.steps article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.steps span {
  color: var(--rust);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.steps h3 {
  max-width: 260px;
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-right: 3px solid var(--rust);
  border-bottom: 3px solid var(--rust);
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  max-width: 720px;
  line-height: 1.6;
}

.contact {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(101, 26, 13, .92), rgba(101, 26, 13, .7)),
    url("../img/rockhaven-field.jpg") center / cover;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .58fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy p {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.contact-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--rust);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--rust-dark);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer div {
  display: flex;
  gap: 10px;
}

.site-footer a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 230, 223, .36);
  border-radius: var(--radius);
  color: var(--ivory);
}

.site-footer svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-footer .footer-icon-fill {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-panel,
  .section-heading,
  .intro-grid,
  .zone-grid,
  .lot-catalog-header,
  .lot-tables,
  .masterplan,
  .timeline,
  .reserve,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .timeline {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .timeline div {
    min-height: 116px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .lot-table {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .lot-row-head {
    display: none;
  }

  .lot-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
  }

  .lot-row .lot-id {
    font-size: 1.45rem;
  }

  .lot-row .status,
  .lot-action {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 12px;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 38px;
  }

  .hero {
    min-height: 820px;
  }

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

  .visual-band,
  .visual-band img {
    min-height: 520px;
    height: 520px;
  }

  .site-footer {
    display: grid;
  }
}
