:root {
  --paper: #f4efe6;
  --paper-soft: #fbf8f1;
  --ink: #20231f;
  --muted: #68685f;
  --forest: #243425;
  --forest-2: #3f563d;
  --bronze: #b48a52;
  --bronze-dark: #8f6836;
  --container: 1360px;
  --line: rgba(32, 35, 31, 0.12);
  --shadow: 0 26px 70px rgba(32, 35, 31, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

/* Portrait brochure preview and print layout */
.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.is-brochure-route {
  overflow-x: auto;
  background: #d9d3c8;
}

.is-brochure-route .site-header {
  display: none !important;
}

.is-brochure-route .brochure-page {
  min-height: 100vh;
  padding: 104px 24px 60px;
  background: #d9d3c8;
}

.is-brochure-route .brochure-document {
  width: min(210mm, 100%);
  margin: 0 auto;
}

.brochure-toolbar {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  min-height: 76px;
  padding: 8px max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--forest);
  background: rgba(250, 248, 242, 0.96);
  border-bottom: 1px solid rgba(36, 52, 37, 0.12);
  box-shadow: 0 10px 34px rgba(20, 30, 22, 0.12);
  backdrop-filter: blur(18px);
}

.brochure-toolbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brochure-toolbar-brand img {
  width: 154px;
  height: auto;
  display: block;
}

.brochure-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.brochure-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-weight: 750;
}

.brochure-sheet {
  width: 210mm;
  min-height: 297mm;
  position: relative;
  margin: 0 auto 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(19, 27, 21, 0.18);
  break-after: page;
  page-break-after: always;
}

.brochure-cover-sheet {
  color: #fff;
  background: var(--forest);
}

.brochure-cover-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-cover-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 16, 11, 0.94), rgba(8, 16, 11, 0.08) 72%),
    linear-gradient(90deg, rgba(8, 16, 11, 0.55), transparent 60%);
}

.brochure-cover-overlay {
  position: absolute;
  z-index: 2;
  inset: 18mm 17mm 17mm;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brochure-cover-overlay > img {
  width: 52mm;
}

.brochure-cover-overlay h1 {
  max-width: 165mm;
  margin: 0 0 7mm;
  color: #fff;
  font-size: 18mm;
  line-height: 1.02;
}

.brochure-cover-overlay > div > p:not(.eyebrow) {
  max-width: 130mm;
  color: rgba(255, 255, 255, 0.82);
  font-size: 4.5mm;
}

.brochure-intro-sheet,
.brochure-toc-sheet,
.brochure-end-sheet {
  padding: 22mm 18mm;
}

.brochure-intro-sheet,
.brochure-end-sheet {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brochure-intro-sheet h2,
.brochure-toc-sheet h2,
.brochure-end-sheet h2 {
  max-width: 160mm;
  margin: 0 0 8mm;
  color: var(--forest);
  font-size: 12mm;
  line-height: 1.08;
}

.brochure-lead {
  max-width: 155mm;
  color: var(--muted);
  font-size: 4.5mm;
  line-height: 1.7;
}

.brochure-project-link {
  display: inline-block;
  margin-top: 8mm;
  color: var(--forest);
  font-size: 7mm;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-underline-offset: 1.5mm;
}

.brochure-intro-facts {
  margin: 16mm 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.brochure-intro-facts article {
  padding: 7mm 5mm 7mm 0;
  display: flex;
  flex-direction: column;
}

.brochure-intro-facts article + article {
  padding-left: 6mm;
  border-left: 1px solid var(--line);
}

.brochure-intro-facts strong {
  color: var(--forest);
  font-size: 10mm;
  font-weight: 500;
  line-height: 1;
}

.brochure-intro-facts span {
  margin-top: 2mm;
  color: var(--muted);
  font-size: 3.2mm;
  line-height: 1.45;
}

.brochure-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.brochure-steps li {
  padding: 6mm 8mm 6mm 0;
  border-bottom: 1px solid var(--line);
}

.brochure-steps li:nth-child(even) {
  padding-left: 8mm;
  border-left: 1px solid var(--line);
}

.brochure-steps span {
  color: var(--bronze);
  font-size: 3mm;
  font-weight: 850;
}

.brochure-steps strong {
  display: block;
  margin: 2mm 0 1mm;
  color: var(--forest);
  font-size: 5.2mm;
  font-weight: 600;
}

.brochure-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 3.2mm;
}

.brochure-toc {
  margin: 13mm 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14mm;
  border-top: 1px solid var(--line);
  list-style: none;
}

.brochure-toc li {
  min-width: 0;
  padding: 4mm 0;
  display: grid;
  grid-template-columns: 9mm 1fr;
  column-gap: 3mm;
  border-bottom: 1px solid var(--line);
}

.brochure-toc span {
  grid-row: 1 / 3;
  color: var(--bronze);
  font-size: 3mm;
  font-weight: 850;
}

.brochure-toc strong {
  color: var(--forest);
  font-size: 5mm;
  font-weight: 600;
  line-height: 1.1;
}

.brochure-toc small {
  overflow: hidden;
  color: var(--muted);
  font-size: 2.8mm;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brochure-house-sheet {
  padding: 15mm 15mm 12mm;
  display: grid;
  grid-template-rows: auto 112mm 1fr;
  gap: 8mm;
}

.brochure-house-sheet .brochure-house-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10mm;
  align-items: end;
}

.brochure-house-sheet .brochure-house-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: 15mm;
  line-height: 1;
}

.brochure-house-sheet .brochure-house-heading > p {
  margin: 0 0 1mm;
  color: var(--muted);
  font-size: 5mm;
  line-height: 1.25;
}

.brochure-house-visual {
  overflow: hidden;
  background: var(--paper-soft);
}

.brochure-house-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-house-details {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10mm;
}

.brochure-house-sheet .brochure-house-copy {
  display: block;
}

.brochure-house-sheet .brochure-house-copy > p {
  margin: 0 0 6mm;
  color: var(--muted);
  font-size: 3.15mm;
  line-height: 1.55;
}

.brochure-house-sheet .brochure-house-copy dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.brochure-house-sheet .brochure-house-copy dl div {
  padding: 2.7mm 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5mm;
  border-bottom: 1px solid var(--line);
}

.brochure-house-sheet .brochure-house-copy dt {
  color: var(--muted);
  font-size: 2.8mm;
}

.brochure-house-sheet .brochure-house-copy dd {
  margin: 0;
  font-size: 2.9mm;
  font-weight: 750;
  line-height: 1.3;
  text-align: right;
}

.brochure-house-sheet .brochure-floorplan {
  min-width: 0;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 5mm;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f4f1e9;
}

.brochure-house-sheet .brochure-floorplan figcaption {
  flex: 0 0 auto;
  color: var(--bronze-dark);
  font-size: 2.7mm;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brochure-house-sheet .brochure-floorplan img {
  min-height: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  flex: 1 1 auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.brochure-end-sheet {
  color: #fff;
  background: var(--forest);
}

.brochure-end-sheet h2 {
  margin-top: 5mm;
  color: #fff;
}

.brochure-end-sheet > div:first-child > p:not(.eyebrow) {
  max-width: 150mm;
  color: rgba(255, 255, 255, 0.74);
  font-size: 4.5mm;
}

.brochure-contact-block {
  padding-top: 10mm;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.brochure-contact-block span {
  margin-bottom: 4mm;
  color: #d7ae70;
  font-size: 3mm;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brochure-contact-block a {
  color: #fff;
  font-size: 7mm;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(215, 174, 112, 0.8);
  text-underline-offset: 1.4mm;
}

@media (max-width: 900px) {
  .is-brochure-route .brochure-page {
    padding-inline: 0;
  }

  .is-brochure-route .brochure-document {
    width: 210mm;
  }
}

@media (max-width: 620px) {
  .brochure-toolbar {
    padding-inline: 14px;
  }

  .brochure-toolbar-brand img {
    width: 112px;
  }

  .brochure-toolbar-actions {
    gap: 8px;
  }

  .brochure-back {
    display: none;
  }

  .brochure-toolbar .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }
}

@page {
  size: A4 portrait;
  margin: 0;
}

@media print {
  html,
  body.is-brochure-route {
    width: 210mm !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .is-brochure-route .brochure-page {
    display: block !important;
    min-height: 0;
    padding: 0 !important;
    background: #fff !important;
  }

  .is-brochure-route .brochure-document {
    width: 210mm !important;
    margin: 0 !important;
  }

  .brochure-toolbar {
    display: none !important;
  }

  .brochure-sheet {
    width: 210mm !important;
    height: 297mm !important;
    min-height: 297mm !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
  }

  .brochure-sheet:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .brochure-house-sheet .brochure-floorplan img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: contain !important;
  }

  .brochure-project-link,
  .brochure-contact-block a {
    text-decoration: underline;
  }
}

* {
  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;
}

body.modal-open {
  overflow: hidden;
}

section {
  scroll-margin-top: var(--header-height);
}

#hero {
  scroll-margin-top: 0;
}

img,
video {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.content-protection-active img,
.content-protection-active video,
.content-protection-active picture,
.content-protection-active canvas {
  -webkit-touch-callout: none;
}

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

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: white;
  background: var(--forest);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.78);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: white;
}

.footer .brand-mark {
  align-items: flex-start;
}

.brand-logo-shell {
  display: inline-flex;
  width: 152px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition:
    background 200ms ease,
    box-shadow 200ms ease;
}

.footer .brand-logo-shell {
  width: 126px;
  min-height: 52px;
  padding: 7px 10px;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(14, 20, 15, 0.12);
}

.is-scrolled .brand-logo-shell {
  width: 126px;
  min-height: 52px;
  padding: 7px 10px;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(14, 20, 15, 0.1);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.is-scrolled .brand-logo {
  max-height: 38px;
}

.brand-project {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.is-scrolled .brand-project,
.is-house-route .brand-project,
.is-brochure-route .brand-project {
  color: var(--bronze);
}

.footer .brand-project {
  display: none;
}

.nav-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.02rem, 1vw, 1.14rem);
  font-weight: 700;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.36),
    0 3px 16px rgba(0, 0, 0, 0.58);
}

.is-scrolled .nav-links {
  color: var(--ink);
  text-shadow: none;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 11px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.site-header:not(.is-scrolled) .nav-links a:not(.nav-cta) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: #171b16;
  background: linear-gradient(135deg, #d2ad73, var(--bronze));
  box-shadow: 0 10px 24px rgba(29, 36, 28, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #11160f;
  background: linear-gradient(135deg, #e0c18d, #b9894d);
  box-shadow: 0 14px 30px rgba(29, 36, 28, 0.24);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.is-scrolled .nav-links a:hover,
.is-scrolled .nav-links a:focus-visible {
  background: rgba(36, 52, 37, 0.08);
}

.is-scrolled .nav-links .nav-cta {
  color: #171b16;
  background: linear-gradient(135deg, #d2ad73, var(--bronze));
}

.is-scrolled .nav-links .nav-cta:hover,
.is-scrolled .nav-links .nav-cta:focus-visible {
  background: linear-gradient(135deg, #e0c18d, #b9894d);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  transition: transform 180ms ease;
}

.is-scrolled .nav-toggle {
  border-color: var(--line);
}

.is-scrolled .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #132116 0%, var(--forest) 48%, #314734 100%);
  color: white;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 52%),
    linear-gradient(
      90deg,
      #122216 0%,
      #142719 54%,
      rgba(20, 39, 25, 0.92) 57%,
      rgba(21, 41, 27, 0.68) 60%,
      rgba(22, 43, 28, 0.4) 63%,
      rgba(23, 44, 29, 0.18) 66%,
      rgba(24, 45, 30, 0.05) 68%,
      transparent 70%
    );
  pointer-events: none;
}

.hero-media,
.hero-overlay,
.cta-media,
.cta-overlay {
  position: absolute;
}

.hero-media,
.hero-overlay {
  inset: 0;
}

.cta-media,
.cta-overlay {
  inset: 0;
}

.hero-media img,
.hero-media video,
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  z-index: 0;
  inset: 0;
  width: 100%;
  overflow: hidden;
  background-position: 58% center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(calc(var(--scroll-depth, 0) * 0.035px));
  transform-origin: center;
}

.hero-media .image-fallback {
  display: none;
}

.hero-media img {
  object-position: 58% center;
  transition: transform 900ms ease;
}

.hero:hover .hero-media img {
  transform: scale(1.018);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 65%, rgba(10, 18, 12, 0.04) 100%),
    linear-gradient(0deg, rgba(10, 18, 12, 0.1), transparent 42%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 15, 10, 0.08), transparent 28%),
    linear-gradient(0deg, rgba(9, 15, 10, 0.08), transparent 36%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--header-height) 0 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.video-copy h2,
.cta h2,
.modal-copy h2 {
  margin: 0;
  font-family:
    "Arial", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2rem, 2.85vw, 3.35rem);
  font-weight: 780;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.28vw, 1.14rem);
  line-height: 1.62;
}

.hero-project-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-project-line span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(217, 184, 121, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.hero-project-line span:first-child {
  color: var(--bronze);
  background: rgba(217, 184, 121, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  max-width: 540px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #171b16;
  background: linear-gradient(135deg, #d9b879, var(--bronze));
  box-shadow: 0 16px 36px rgba(84, 60, 29, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #e3c68f, var(--bronze-dark));
  box-shadow: 0 20px 48px rgba(84, 60, 29, 0.32);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  right: max(26px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: grid;
  width: 44px;
  height: 72px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  margin-top: 16px;
  border-radius: 50%;
  background: white;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }
  50% {
    transform: translateY(28px);
    opacity: 1;
  }
}

.section-pad {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-grid,
.section-heading,
.house-grid,
.compare-wrap,
.compare-cards {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 2.65vw, 3.05rem);
  color: var(--forest);
  line-height: 1.08;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-item:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.feature-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.22), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(180, 138, 82, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(32, 35, 31, 0.08);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.project-gallery-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-gallery-item {
  position: relative;
  grid-column: span 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: rgba(36, 52, 37, 0.08);
  aspect-ratio: 1.1 / 1;
  border-radius: 8px;
}

.project-gallery-item.is-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.project-gallery-item.is-large {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.project-gallery-item.is-tall {
  grid-column: span 1;
  aspect-ratio: 1 / 1.18;
}

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

.project-gallery-item:nth-child(n + 3) {
  grid-column: span 1;
  aspect-ratio: 1.08 / 1;
}

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

.project-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 23, 16, 0.78));
  pointer-events: none;
}

.project-gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.project-gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 13, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
}

.gallery-lightbox-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  display: block;
  background: #0f1510;
}

.gallery-lightbox-figure figcaption {
  padding: 14px 18px 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(14, 20, 15, 0.94);
  font-size: 0.95rem;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(10px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.intro-statement {
  width: min(980px, calc(100% - 40px));
  margin: clamp(42px, 6vw, 72px) auto 0;
  color: var(--forest);
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  font-weight: 760;
  line-height: 1.18;
  text-align: center;
}

.intro-statement::before {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.catalog {
  background:
    radial-gradient(circle at 12% 10%, rgba(180, 138, 82, 0.13), transparent 28%),
    var(--paper-soft);
}

.catalog-layout {
  width: min(var(--container), calc(100% - 40px));
  margin: clamp(46px, 6vw, 74px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 24px;
  align-items: start;
}

.catalog-layout .house-grid {
  width: auto;
  margin: 0;
}

.catalog-progress {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  z-index: 5;
  align-self: start;
}

.catalog-progress-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  color: var(--forest);
  background: rgba(251, 248, 241, 0.78);
  border: 1px solid rgba(36, 52, 37, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(32, 35, 31, 0.1);
  backdrop-filter: blur(18px);
}

.catalog-progress-label {
  color: var(--bronze);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.catalog-progress-card strong {
  display: grid;
  justify-items: center;
  font-size: 1.75rem;
  line-height: 1;
}

.catalog-progress-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.catalog-progress-dots {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.catalog-dot {
  position: relative;
  width: 26px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.catalog-dot::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  z-index: 8;
  min-width: 118px;
  padding: 8px 10px;
  color: white;
  background: rgba(19, 33, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(32, 35, 31, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(6px, -50%);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
  white-space: nowrap;
}

.catalog-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  z-index: 9;
  width: 8px;
  height: 8px;
  background: rgba(19, 33, 22, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%) rotate(45deg);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.catalog-dot:hover::after,
.catalog-dot:focus-visible::after,
.catalog-dot:hover::before,
.catalog-dot:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.catalog-dot span {
  width: 7px;
  height: 7px;
  display: block;
  background: rgba(36, 52, 37, 0.28);
  border-radius: 999px;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.catalog-dot:hover span,
.catalog-dot:focus-visible span {
  background: var(--bronze);
  transform: scale(1.12);
}

.catalog-dot.is-active span {
  width: 22px;
  background: var(--forest);
}

.designer-credit {
  width: min(var(--container), calc(100% - 40px));
  margin: clamp(8px, 2vw, 18px) auto clamp(36px, 5vw, 64px);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  border-top: 1px solid rgba(36, 52, 37, 0.12);
  font-size: 0.9rem;
}

.designer-credit span {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.designer-credit strong {
  color: var(--forest);
  font-weight: 760;
}

.catalog-note {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 18px !important;
  padding: 16px 18px;
  color: #4f4a3f;
  background: rgba(180, 138, 82, 0.11);
  border: 1px solid rgba(180, 138, 82, 0.22);
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.6;
}

.catalog-note:empty,
.catalog-note[hidden] {
  display: none;
}

.catalog-note-title {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.catalog-note-list li {
  position: relative;
  padding-left: 16px;
}

.catalog-note-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bronze);
}

.house-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 54px);
  margin-top: clamp(46px, 6vw, 74px);
}

.house-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.7fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(32, 35, 31, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.house-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 138, 82, 0.36);
  box-shadow: var(--shadow);
}

.house-media-stack {
  display: grid;
  grid-template-rows: minmax(380px, 1fr) auto;
  min-width: 0;
  background: rgba(36, 52, 37, 0.08);
}

.media-shell {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8c9b2, #69775d);
}

.media-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 27, 20, 0.6));
  pointer-events: none;
}

.media-shell img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition:
    transform 520ms ease,
    opacity 220ms ease;
}

.house-card:hover .media-shell img {
  transform: scale(1.055);
}

.house-index {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.floorplan-preview {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.12), transparent 52%),
    #f8f4ec;
  border-top: 1px solid rgba(36, 52, 37, 0.12);
}

.floorplan-preview-copy {
  display: grid;
  gap: 4px;
}

.floorplan-preview-copy span {
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floorplan-preview-copy strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.floorplan-preview-copy small {
  color: var(--muted);
  font-weight: 700;
}

.floorplan-image-shell {
  overflow: hidden;
  min-height: 168px;
  background: white;
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(32, 35, 31, 0.08);
}

.floorplan-image-shell img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.house-content {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(56px, 5vw, 68px);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.house-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.house-content h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.05rem, 3.35vw, 3.9rem);
  line-height: 1.05;
}

.house-kicker {
  margin: 0;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.house-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  color: #171b16;
  background: linear-gradient(135deg, rgba(217, 184, 121, 0.92), rgba(180, 138, 82, 0.86));
  border: 1px solid rgba(143, 104, 54, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(84, 60, 29, 0.12);
  font-size: 0.74rem;
  font-weight: 850;
}

.house-tagline {
  color: var(--forest);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 780;
}

.house-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

.house-price {
  width: fit-content;
  margin-top: 18px !important;
  padding: 9px 13px;
  color: #241c12 !important;
  background: linear-gradient(135deg, rgba(217, 184, 121, 0.94), rgba(180, 138, 82, 0.88));
  border: 1px solid rgba(143, 104, 54, 0.28);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.house-designer,
.modal-designer {
  color: var(--forest) !important;
  font-size: 0.86rem;
  font-weight: 760;
}

.house-meta,
.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.house-content .house-meta {
  margin-bottom: 22px;
}

.house-benefits-preview {
  margin: 6px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.house-benefits-preview h4 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.house-benefits-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--forest);
  background: rgba(36, 52, 37, 0.08);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.house-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-action,
.card-quote {
  width: fit-content;
  min-width: 178px;
  margin-top: auto;
}

.card-action {
  color: var(--forest);
  background: transparent;
  border: 1px solid rgba(36, 52, 37, 0.22);
  cursor: pointer;
}

.card-action:hover,
.card-action:focus-visible {
  color: white;
  background: var(--forest);
}

.card-quote {
  color: #171b16;
  background: linear-gradient(135deg, #d9b879, var(--bronze));
  box-shadow: 0 14px 30px rgba(84, 60, 29, 0.18);
}

.card-quote:hover,
.card-quote:focus-visible {
  box-shadow: 0 18px 38px rgba(84, 60, 29, 0.26);
}

.copy-link-button {
  position: absolute;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(16px, 2.5vw, 24px);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(36, 52, 37, 0.72);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(32, 35, 31, 0.08);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.copy-link-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.copy-link-button::after {
  content: attr(data-tooltip);
  position: absolute;
  right: -2px;
  bottom: calc(100% + 10px);
  min-width: 112px;
  padding: 8px 10px;
  color: white;
  background: rgba(19, 33, 22, 0.94);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(32, 35, 31, 0.18);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(5px);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
  white-space: nowrap;
}

.copy-link-button:hover,
.copy-link-button:focus-visible,
.copy-link-button.is-copied {
  color: var(--forest);
  background: rgba(180, 138, 82, 0.2);
  border-color: rgba(180, 138, 82, 0.32);
  transform: translateY(-1px);
}

.copy-link-button:hover::after,
.copy-link-button:focus-visible::after,
.copy-link-button.is-copied::after {
  opacity: 1;
  transform: translateY(0);
}

.is-house-route .site-header {
  background: rgba(244, 239, 230, 0.82);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.is-brochure-route .site-header {
  background: rgba(244, 239, 230, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.is-brochure-route .brand-logo-shell {
  width: 126px;
  min-height: 52px;
  padding: 7px 10px;
}

.is-house-route .brand-logo-shell {
  width: 126px;
  min-height: 52px;
  padding: 7px 10px;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(14, 20, 15, 0.1);
}

.is-house-route .brand-logo {
  max-height: 38px;
}

.is-house-route .nav-links {
  color: var(--ink);
}

.is-house-route .nav-toggle {
  border-color: var(--line);
}

.is-house-route .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.house-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 84% 8%, rgba(180, 138, 82, 0.14), transparent 26%),
    var(--paper);
}

.house-detail {
  padding: calc(var(--header-height) + clamp(34px, 6vw, 70px)) 0 clamp(70px, 9vw, 118px);
}

.house-detail-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 800;
}

.back-to-catalog {
  display: inline-flex;
  margin-top: 20px;
  color: var(--bronze-dark);
  font-weight: 850;
}

.house-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 62px);
}

.house-detail-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  line-height: 1.02;
}

.house-detail-copy p {
  max-width: 660px;
  color: var(--muted);
}

.house-detail-lead {
  color: var(--forest) !important;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
  font-weight: 780;
}

.house-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.house-detail-media {
  overflow: hidden;
  min-height: clamp(340px, 46vw, 640px);
  background: #d8c9b2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.house-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.house-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  margin-top: clamp(36px, 6vw, 76px);
}

.house-detail-panel,
.house-detail-floorplan,
.house-detail-gallery,
.house-detail-cta {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(32, 35, 31, 0.06);
}

.house-detail-panel {
  padding: clamp(24px, 3vw, 34px);
}

.house-detail-panel h2,
.house-detail-floorplan h2,
.house-detail-gallery h2,
.house-detail-cta h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

.house-detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.house-detail-floorplan {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 44px);
}

.house-detail-floorplan p {
  max-width: 560px;
  color: var(--muted);
}

.house-detail-floorplan-image {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.house-detail-floorplan-image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.house-detail-gallery {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 44px);
}

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

.house-detail-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: var(--radius);
}

.house-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 26px;
  align-items: center;
  margin-top: clamp(26px, 5vw, 58px);
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.18), transparent 42%),
    var(--forest);
  color: white;
}

.house-detail-cta h2,
.house-detail-cta p {
  color: white;
}

.house-detail-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.house-detail-contact {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.house-detail-contact dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.house-detail-contact dd {
  margin: 0 0 12px;
  color: white;
  font-weight: 850;
}

.brochure-page {
  min-height: 100svh;
  padding: calc(var(--header-height) + 28px) 0 80px;
  background: #e9dfcf;
}

.brochure-document {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.brochure-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: rgba(251, 248, 241, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(32, 35, 31, 0.09);
  backdrop-filter: blur(14px);
}

.print-page {
  overflow: hidden;
  min-height: 780px;
  margin-bottom: 22px;
  padding: clamp(38px, 5vw, 62px);
  background: var(--paper-soft);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(32, 35, 31, 0.12);
  page-break-after: always;
  break-after: page;
  aspect-ratio: 1.414 / 1;
}

.brochure-cover {
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  background: var(--forest);
}

.brochure-cover-image,
.brochure-cover-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brochure-cover-image img {
  object-fit: cover;
  filter: saturate(0.9);
}

.brochure-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 22, 17, 0.82), rgba(16, 22, 17, 0.28)),
    linear-gradient(0deg, rgba(16, 22, 17, 0.64), transparent);
}

.brochure-cover-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.brochure-cover-copy img {
  width: 172px;
  height: auto;
  margin-bottom: 70px;
}

.brochure-cover h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.brochure-cover p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.brochure-toc h2,
.brochure-intro h2,
.brochure-contact h2,
.brochure-house-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.06;
}

.brochure-toc ol {
  columns: 2;
  gap: 64px;
  margin: 42px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.brochure-toc li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.brochure-intro p,
.brochure-contact p,
.brochure-house-copy p,
.brochure-house-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.06rem;
}

.brochure-project-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: rgba(173, 124, 57, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.brochure-house-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 26px;
  align-items: start;
  margin-top: 30px;
}

.brochure-house-main,
.brochure-floorplan {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brochure-house-main img {
  width: 100%;
  aspect-ratio: 1.58;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brochure-house-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.brochure-house-copy p {
  margin: 0;
}

.brochure-house-copy dl,
.brochure-contact dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 16px;
  margin: 24px 0 0;
}

.brochure-house-copy dt,
.brochure-contact dt {
  color: var(--bronze-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brochure-house-copy dd,
.brochure-contact dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.brochure-house-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.96fr);
  gap: 20px;
  margin-top: 24px;
}

.brochure-house-bottom h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.brochure-house-bottom > div:first-child {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(36, 52, 37, 0.08);
  border-radius: var(--radius);
}

.brochure-house-bottom ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.brochure-floorplan img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  padding: 18px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.inline-cta {
  width: min(var(--container), calc(100% - 40px));
  margin: clamp(46px, 7vw, 78px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.15), transparent 46%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
}

.inline-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.42rem, 2vw, 2.05rem);
  line-height: 1.02;
}

.inline-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
}

.inline-cta-dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.18), transparent 44%),
    var(--forest);
  border-color: rgba(255, 255, 255, 0.14);
}

.inline-cta-dark h2,
.inline-cta-dark p:not(.eyebrow) {
  color: white;
}

.inline-cta-dark .button-primary {
  color: var(--forest);
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.inline-cta-dark .button-primary:hover,
.inline-cta-dark .button-primary:focus-visible {
  background: #f8f4ec;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

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

.brochure-download {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.72), rgba(244, 239, 230, 0.96)),
    var(--paper-soft);
}

.brochure-shell {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  min-height: 440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(180, 138, 82, 0.22);
  border-radius: var(--radius);
  background: #f8f4ec;
  box-shadow: 0 28px 80px rgba(32, 35, 31, 0.13);
}

.brochure-art {
  min-height: 440px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.9);
}

.brochure-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 74px);
}

.brochure-copy h2 {
  max-width: 720px;
  color: var(--forest);
  font-size: clamp(1.85rem, 2.9vw, 3.2rem);
  line-height: 1.08;
}

.brochure-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.video-panel {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  min-height: clamp(440px, 64vw, 720px);
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.video-backdrop-media,
.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-backdrop-media {
  z-index: 0;
}

.video-player {
  z-index: 3;
}

.video-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 22, 17, 0.08), rgba(16, 22, 17, 0.76)),
    linear-gradient(90deg, rgba(16, 22, 17, 0.5), transparent 64%);
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid white;
}

.video-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px);
}

.video-copy h2 {
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.video-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.experience {
  position: relative;
  min-height: clamp(640px, 82vw, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.experience-media,
.experience-overlay {
  position: absolute;
  inset: 0;
}

.experience-media {
  background-position: center;
  background-size: cover;
  transform: scale(calc(1.04 + (var(--scroll-depth, 0) * 0.00002)));
  will-change: transform;
}

.experience-overlay {
  background:
    linear-gradient(90deg, rgba(16, 22, 17, 0.82), rgba(16, 22, 17, 0.22) 62%, rgba(16, 22, 17, 0.44)),
    linear-gradient(0deg, rgba(16, 22, 17, 0.5), rgba(16, 22, 17, 0.1));
}

.experience-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.experience-content h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.25vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

#compare-title {
  max-width: none;
  font-size: clamp(1.42rem, 1.85vw, 2.05rem);
}

.experience-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.experience-content p:not(.eyebrow) span {
  display: block;
}

.experience-content p:not(.eyebrow) span + span {
  margin-top: 14px;
}

.compare {
  background: var(--paper-soft);
}

.compare-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

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

.compare-table th {
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.compare-table td {
  color: var(--muted);
}

.compare-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.compare-table th:last-child,
.compare-table td:last-child {
  text-align: center;
}

.compare-table-cta-cell {
  width: 1%;
  white-space: nowrap;
}

.compare-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--forest);
  background: rgba(36, 52, 37, 0.06);
  border: 1px solid rgba(36, 52, 37, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 32, 24, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.compare-cta:hover,
.compare-cta:focus-visible {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 18px 34px rgba(23, 32, 24, 0.18);
  transform: translateY(-1px);
}

.compare-cta-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 138, 82, 0.16);
  border-radius: 999px;
  transition: background 180ms ease;
}

.compare-cta:hover .compare-cta-icon,
.compare-cta:focus-visible .compare-cta-icon {
  background: rgba(255, 255, 255, 0.16);
}

.compare-cta-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.compare-cards {
  display: none;
}

.technical {
  background:
    radial-gradient(circle at 86% 12%, rgba(180, 138, 82, 0.12), transparent 28%),
    var(--paper);
}

.technical-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.technical-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.technical-intro h2 {
  max-width: 560px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.62rem, 2.35vw, 2.65rem);
  line-height: 1.08;
}

.technical-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.technical-list {
  border-top: 1px solid var(--line);
}

.technical-item {
  border-bottom: 1px solid var(--line);
}

.technical-item summary {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  padding: 20px 48px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.04rem, 1.2vw, 1.22rem);
  font-weight: 820;
  list-style: none;
}

.technical-item summary::-webkit-details-marker {
  display: none;
}

.technical-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(36, 52, 37, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.technical-item[open] summary::after {
  content: "−";
  background: rgba(180, 138, 82, 0.18);
}

.technical-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 24px 22px;
  color: var(--muted);
}

.technical-item li::marker {
  color: var(--bronze);
}

.technical-note {
  grid-column: 2;
  margin: 4px 0 0;
  padding: 20px 22px;
  color: var(--forest);
  background: rgba(180, 138, 82, 0.1);
  border: 1px solid rgba(180, 138, 82, 0.24);
  border-radius: var(--radius);
  font-size: 0.96rem;
}

.plots {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.98), rgba(251, 248, 241, 0.94)),
    var(--paper-soft);
}

.plots-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: clamp(42px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: minmax(520px, 1.04fr) minmax(340px, 0.56fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.plots-map {
  position: relative;
  min-width: 0;
  height: clamp(430px, 42vw, 610px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 52, 37, 0.14);
  border-radius: var(--radius);
  background: #233225;
  box-shadow: 0 24px 70px rgba(32, 35, 31, 0.11);
}

.plots-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: saturate(0.78) contrast(1.02) brightness(0.92);
}

.plots-map-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 29, 19, 0.55), rgba(17, 29, 19, 0.04) 42%, rgba(17, 29, 19, 0.18)),
    linear-gradient(180deg, rgba(17, 29, 19, 0.18), transparent 38%, rgba(17, 29, 19, 0.28));
  pointer-events: none;
}

.plots-map-label {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 5;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: white;
  background: rgba(16, 26, 17, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.plots-map-label span {
  color: rgba(232, 204, 146, 0.96);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plots-map-label strong {
  font-size: 1rem;
}

.plot-zone {
  position: absolute;
  z-index: 2;
  padding: 0;
  background: rgba(180, 138, 82, 0.16);
  border: 2px solid rgba(232, 204, 146, 0.96);
  border-radius: 8px;
  box-shadow:
    0 0 0 999px rgba(9, 18, 11, 0.02),
    0 18px 44px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.plot-zone span {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-width: max-content;
  padding: 7px 10px;
  color: #1d1a12;
  background: rgba(232, 204, 146, 0.96);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.plot-zone:hover,
.plot-zone:focus-visible,
.plot-zone.is-selected {
  z-index: 4;
  background: rgba(217, 184, 121, 0.28);
  border-color: #fff4ce;
  box-shadow:
    0 0 0 4px rgba(232, 204, 146, 0.18),
    0 22px 54px rgba(0, 0, 0, 0.28);
  transform: scale(1.04);
}

.plot-parcel {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1px;
  color: #241c12;
  background: rgba(232, 204, 146, 0.22);
  border: 1.5px solid rgba(255, 236, 183, 0.98);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.plot-parcel span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #1f251d;
  background: rgba(255, 243, 203, 0.96);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.plot-parcel small {
  display: none;
}

.plot-parcel:hover,
.plot-parcel:focus-visible,
.plot-parcel.is-selected {
  background: rgba(217, 184, 121, 0.38);
  border-color: #fff8dc;
  box-shadow:
    0 0 0 5px rgba(232, 204, 146, 0.22),
    0 16px 34px rgba(0, 0, 0, 0.32);
  transform: scale(1.08);
}

.plots-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

@media (min-width: 961px) {
  .plots-panel {
    margin-top: -18px;
  }
}

.plots-summary {
  padding: 24px;
  color: var(--forest);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(248, 244, 236, 0.82);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(32, 35, 31, 0.08);
}

.plots-summary > span {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plots-summary h3 {
  margin: 8px 0 10px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.plots-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.plots-zone-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.plots-zone-list button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  text-align: left;
  background: rgba(36, 52, 37, 0.06);
  border: 1px solid rgba(36, 52, 37, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.plots-zone-list button:hover,
.plots-zone-list button:focus-visible,
.plots-zone-list button.is-selected {
  background: rgba(180, 138, 82, 0.13);
  border-color: rgba(180, 138, 82, 0.32);
  transform: translateX(-3px);
}

.plots-zone-list strong {
  grid-row: span 2;
  color: var(--forest);
  font-size: 1.2rem;
}

.plots-zone-list span {
  color: var(--ink);
  font-weight: 850;
}

.plots-zone-list small {
  color: var(--muted);
  line-height: 1.45;
}

.plots-list {
  display: grid;
  gap: 16px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.plot-group {
  display: grid;
  gap: 10px;
}

.plot-group-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
}

.plot-group-heading span {
  padding: 5px 9px;
  color: #211b10;
  background: rgba(217, 184, 121, 0.8);
  border-radius: 999px;
  font-size: 0.72rem;
}

.plot-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  text-align: left;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.plot-card:hover,
.plot-card:focus-visible,
.plot-card.is-selected {
  border-color: rgba(180, 138, 82, 0.48);
  background: rgba(180, 138, 82, 0.12);
  transform: translateX(-3px);
}

.plot-card span {
  display: block;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plot-card strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1.06rem;
}

.plot-card small {
  color: var(--muted);
}

.plot-card em {
  grid-column: 2;
  grid-row: 1;
  padding: 6px 9px;
  color: var(--forest);
  background: rgba(36, 52, 37, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.plots-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.faq-list {
  width: min(900px, calc(100% - 40px));
  margin: 44px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  min-height: 72px;
  padding: 22px 44px 22px 0;
  color: var(--forest);
  cursor: pointer;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.cta {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.cta-media img {
  filter: saturate(0.9);
}

.cta-overlay {
  background:
    linear-gradient(90deg, rgba(16, 22, 17, 0.76), rgba(16, 22, 17, 0.26)),
    linear-gradient(0deg, rgba(16, 22, 17, 0.42), transparent);
}

.cta-content {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.cta h2 {
  max-width: 850px;
  font-size: clamp(1.95rem, 3.15vw, 3.55rem);
  line-height: 1.08;
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0 34px;
  color: var(--muted);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.footer-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.footer-contact-copy {
  display: grid;
  gap: 18px;
}

.footer-contact-copy .eyebrow {
  margin-bottom: -4px;
}

.footer-contact-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.85rem, 2.8vw, 3.15rem);
  line-height: 1.08;
}

.footer-contact-copy p {
  max-width: 700px;
  margin: 0;
}

.footer-contact-form {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: grid;
  gap: 13px;
  align-self: start;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(180, 138, 82, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(32, 35, 31, 0.12);
  backdrop-filter: blur(14px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.footer-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-contact-form input,
.footer-contact-form select,
.footer-contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.92);
  border: 1px solid rgba(36, 52, 37, 0.16);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.footer-contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.footer-contact-form input:focus,
.footer-contact-form select:focus,
.footer-contact-form textarea:focus {
  background: white;
  border-color: rgba(180, 138, 82, 0.7);
  box-shadow: 0 0 0 3px rgba(180, 138, 82, 0.16);
}

.captcha-field strong {
  color: var(--bronze);
}

.footer-contact-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.footer-contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.is-success {
  padding: 15px 16px;
  color: #fff;
  background: #267044;
  border: 1px solid #1d5b36;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 100, 55, 0.22);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  animation: form-status-in 260ms ease both;
}

.form-status.is-success::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  place-items: center;
  color: #1f6437;
  background: #fff;
  border-radius: 50%;
  line-height: 1;
  vertical-align: -2px;
}

.form-status.is-error {
  padding: 12px 14px;
  color: #7f211c;
  background: #fff0ee;
  border: 1px solid rgba(157, 47, 40, 0.28);
  border-radius: var(--radius);
  font-weight: 700;
}

@keyframes form-status-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-icon-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-block {
  display: grid;
  gap: 7px;
  max-width: 470px;
  margin: 2px 0 4px;
}

.social-panel {
  overflow: hidden;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(36, 52, 37, 0.08), rgba(180, 138, 82, 0.08)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(32, 35, 31, 0.08);
}

.social-panel-heading {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  color: var(--forest);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 800;
}

.social-panel-heading a,
.social-panel-heading span:last-child {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 850;
}

.social-icon-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--forest);
  background: rgba(36, 52, 37, 0.08);
  border-radius: 50%;
}

.social-panel iframe {
  display: block;
  width: 100%;
  min-height: 132px;
  border: 0;
}

.instagram-panel {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
}

.instagram-panel strong,
.instagram-panel small {
  padding: 0 14px;
}

.instagram-panel strong {
  color: var(--forest);
  font-size: 1.04rem;
}

.instagram-panel small {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.copyright {
  margin: 0;
}

.footer-credit {
  flex: 0 0 auto;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.footer-credit a {
  color: rgba(92, 91, 82, 0.62);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--bronze);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 18px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 12, 0.68);
  backdrop-filter: blur(14px);
}

.modal-panel {
  position: relative;
  width: min(var(--container), 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  background: var(--paper-soft);
  border-radius: var(--radius);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
  outline: none;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(16, 22, 17, 0.42);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-hero {
  position: relative;
  min-height: clamp(320px, 48vw, 580px);
  overflow: hidden;
  background: #d8c9b2;
}

.modal-slider,
.modal-slide,
.modal-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal-slide {
  opacity: 0;
  transition:
    opacity 300ms ease,
    transform 520ms ease;
  transform: scale(1.02);
}

.modal-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.modal-slide img {
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(16, 22, 17, 0.42);
  cursor: pointer;
  font-size: 1.8rem;
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(26px, 5vw, 58px);
}

.modal-copy h2 {
  color: var(--forest);
  font-size: clamp(1.9rem, 3.1vw, 3.4rem);
}

.modal-tagline {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 750;
}

.modal-price {
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  color: #241c12;
  background: linear-gradient(135deg, rgba(217, 184, 121, 0.94), rgba(180, 138, 82, 0.88));
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
}

.modal-copy p:not(.eyebrow):not(.modal-tagline):not(.modal-price):not(.modal-designer) {
  color: var(--muted);
}

.modal-benefits {
  margin: 26px 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.modal-benefits h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.modal-benefits ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.floorplan-block h3 {
  margin: 0 0 14px;
  color: var(--forest);
}

.floorplan-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.floorplan-frame img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.image-fallback {
  display: grid;
  min-height: inherit;
  place-items: center;
  padding: 24px;
  color: var(--forest);
  background:
    linear-gradient(135deg, rgba(36, 52, 37, 0.18), rgba(180, 138, 82, 0.16)),
    var(--paper);
  font-weight: 800;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: fixed;
    inset: var(--header-height) 20px auto;
    display: grid;
    padding: 14px;
    color: var(--ink);
    background: rgba(251, 248, 241, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 960px) {
  .catalog-layout {
    width: min(var(--container), calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-layout .house-grid {
    grid-row: 2;
  }

  .catalog-progress {
    grid-row: 1;
    top: calc(var(--header-height) + 10px);
  }

  .catalog-progress-card {
    grid-template-columns: auto auto minmax(120px, 1fr);
    justify-items: start;
    align-items: center;
    padding: 12px 14px;
  }

  .catalog-progress-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .catalog-progress-card strong {
    grid-auto-flow: column;
    align-items: baseline;
    gap: 3px;
    font-size: 1.35rem;
  }

  .catalog-progress-dots {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    width: 100%;
  }

  .catalog-dot::after {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    min-width: auto;
    transform: translate(-50%, 6px);
  }

  .catalog-dot::before {
    top: auto;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, 6px) rotate(45deg);
  }

  .catalog-dot:hover::after,
  .catalog-dot:focus-visible::after,
  .catalog-dot:hover::before,
  .catalog-dot:focus-visible::before {
    transform: translate(-50%, 0);
  }

  .section-grid,
  .inline-cta,
  .brochure-shell,
  .technical-shell,
  .plots-shell,
  .modal-body,
  .footer-contact-layout,
  .house-detail-hero,
  .house-detail-grid,
  .house-detail-floorplan,
  .house-detail-cta,
  .brochure-house-layout,
  .brochure-house-bottom {
    grid-template-columns: 1fr;
  }

  .brochure-art {
    min-height: 320px;
  }

  .house-detail-media {
    min-height: 420px;
  }

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

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

  .project-gallery-item,
  .project-gallery-item.is-wide,
  .project-gallery-item.is-large,
  .project-gallery-item.is-tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-lightbox-panel {
    width: min(100vw - 36px, 980px);
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 12px;
  }

  .technical-intro {
    position: static;
  }

  .technical-note {
    grid-column: 1;
  }

  .plots-map {
    height: clamp(360px, 52vw, 500px);
  }

  .plots-list {
    max-height: none;
  }

  .footer-contact-form {
    position: static;
  }

  .house-card {
    grid-template-columns: 1fr;
  }

  .house-media-stack {
    grid-template-rows: minmax(360px, auto) auto;
  }

  .modal-body {
    padding-bottom: 34px;
  }
}

@media (min-width: 961px) {
  #compare-title,
  .inline-cta-dark h2,
  .experience-content h2 {
    white-space: nowrap;
  }

  #plots-title {
    max-width: none;
    white-space: nowrap;
    font-size: 2.35rem;
  }

  .inline-cta h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell,
  .section-grid,
  .section-heading,
    .catalog-layout,
    .house-grid,
    .brochure-shell,
    .compare-wrap,
    .compare-cards,
    .technical-shell,
    .plots-shell,
    .faq-list,
    .inline-cta,
    .cta-content,
    .experience-content,
    .brochure-document,
    .footer {
    width: min(100% - 28px, var(--container));
  }

  .hero-content {
    width: min(100% - 28px, var(--container));
    padding-bottom: 128px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.3vw, 2.1rem);
  }

  .catalog-note-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .scroll-indicator {
    right: 16px;
    bottom: 22px;
  }

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

  .catalog-progress-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .catalog-progress-card strong {
    justify-self: end;
  }

  .media-shell,
  .media-shell img {
    min-height: 300px;
  }

  .project-gallery-grid {
    gap: 10px;
  }

  .project-gallery-item,
  .project-gallery-item.is-wide,
  .project-gallery-item.is-large,
  .project-gallery-item.is-tall {
    aspect-ratio: 1 / 1;
  }

  .project-gallery-caption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 0.8rem;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-panel {
    width: min(100vw - 28px, 100%);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-lightbox-nav {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 2;
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox-nav.is-prev {
    left: 10px;
  }

  .gallery-lightbox-nav.is-next {
    right: 10px;
  }

  .gallery-lightbox-figure img {
    max-height: calc(100vh - 120px);
  }

  .gallery-lightbox-figure figcaption {
    font-size: 0.88rem;
    padding: 12px 14px 14px;
  }

  .house-media-stack {
    grid-template-rows: minmax(300px, auto) auto;
  }

  .floorplan-preview {
    grid-template-columns: 1fr;
  }

  .floorplan-image-shell,
  .floorplan-image-shell img {
    min-height: 220px;
  }

  .house-content h3 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .card-action,
  .card-quote {
    width: 100%;
  }

  .house-detail {
    padding-top: calc(var(--header-height) + 28px);
  }

  .plots-map {
    height: 340px;
  }

  .plots-map-label {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .plot-zone span {
    left: 50%;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
  }

  .plot-parcel {
    min-width: 34px;
    min-height: 30px;
    border-width: 1px;
  }

  .plot-parcel span {
    width: 20px;
    height: 20px;
    font-size: 0.56rem;
  }

  .plot-parcel small {
    display: none;
  }

  .house-detail-shell {
    width: min(100% - 28px, var(--container));
  }

  .house-detail-copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .house-detail-media {
    min-height: 320px;
  }

  .house-detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-panel {
    width: min(100% - 28px, var(--container));
    min-height: 560px;
  }

  .experience {
    min-height: 680px;
  }

  .experience-content h2 {
    font-size: clamp(1.95rem, 10vw, 2.75rem);
  }

  .brochure-copy {
    padding: 28px;
  }

  .brochure-toolbar {
    position: static;
  }

  .print-page {
    min-height: auto;
    padding: 28px;
  }

  .brochure-cover {
    min-height: 640px;
  }

  .brochure-toc ol {
    columns: 1;
  }

  .brochure-house-copy dl,
  .brochure-contact dl {
    grid-template-columns: 1fr;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .plots-map {
    min-height: 460px;
  }

  .plot-card {
    grid-template-columns: 1fr;
  }

  .plot-card em {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .compare-wrap {
    display: none;
  }

  .compare-cards {
    display: grid;
    gap: 12px;
    margin-top: 34px;
  }

  .compare-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.56);
  }

  .compare-card h3 {
    margin: 0 0 10px;
    color: var(--forest);
  }

  .compare-card dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px 12px;
    margin: 0;
  }

  .compare-card dt {
    color: var(--muted);
    font-size: 0.82rem;
  }

  .compare-card dd {
    margin: 0;
    font-weight: 700;
  }

  .compare-card .compare-cta {
    width: 100%;
    margin-top: 16px;
  }

  .cta {
    min-height: 620px;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    max-height: 100svh;
    border-radius: 0;
  }

  .modal-hero {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@page {
  size: A4 landscape;
  margin: 0;
}

@media print {
  :root {
    --paper: #f4efe6;
    --paper-soft: #fbf8f1;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    width: 297mm;
    background: white !important;
  }

  .site-header,
  .brochure-toolbar {
    display: none !important;
  }

  .brochure-page {
    display: block !important;
    padding: 0 !important;
    background: white !important;
  }

  .brochure-document {
    width: 297mm !important;
    margin: 0 !important;
  }

  .print-page {
    width: 297mm;
    height: 210mm;
    min-height: 210mm;
    margin: 0 !important;
    padding: 10mm 12mm 10mm !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .brochure-cover {
    padding: 14mm !important;
  }

  .brochure-cover h1 {
    font-size: 30pt;
  }

  .brochure-toc h2,
  .brochure-intro h2,
  .brochure-contact h2,
  .brochure-house-heading h2 {
    font-size: 18pt;
  }

  .brochure-toc ol {
    gap: 28px;
    margin-top: 18px;
    font-size: 9.4pt;
  }

  .brochure-intro p,
  .brochure-contact p,
  .brochure-house-copy p,
  .brochure-house-heading p:not(.eyebrow) {
    font-size: 8.9pt;
    line-height: 1.38;
  }

  .brochure-house-heading p {
    margin: 8px 0 0;
  }

  .brochure-house-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(86mm, 0.82fr);
    gap: 10px;
    margin-top: 10px;
    min-height: 82mm;
  }

  .brochure-house-main,
  .brochure-floorplan,
  .brochure-house-bottom > div:first-child {
    border-color: rgba(36, 52, 37, 0.12);
    box-shadow: none;
  }

  .brochure-house-main img {
    width: 100%;
    height: 82mm;
    aspect-ratio: 1.72;
    padding: 5mm;
    object-fit: contain;
  }

  .brochure-house-copy {
    gap: 6px;
  }

  .brochure-house-copy dl,
  .brochure-contact dl {
    grid-template-columns: 30mm 1fr;
    gap: 3px 8px;
    margin-top: 8px;
  }

  .brochure-house-copy dt,
  .brochure-contact dt {
    font-size: 6.7pt;
    letter-spacing: 0.08em;
  }

  .brochure-house-copy dd,
  .brochure-contact dd {
    font-size: 8.3pt;
    line-height: 1.28;
  }

  .brochure-house-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(92mm, 1.04fr);
    gap: 10px;
    margin-top: 10px;
    align-items: stretch;
    min-height: 62mm;
  }

  .brochure-house-bottom > div:first-child {
    padding: 10px 12px;
  }

  .brochure-house-bottom h3 {
    margin-bottom: 6px;
    font-size: 8.8pt;
  }

  .brochure-house-bottom ul {
    font-size: 8.1pt;
    line-height: 1.28;
    padding-left: 14px;
  }

  .brochure-floorplan {
    min-height: 62mm;
    height: 62mm;
    padding: 0;
  }

  .brochure-floorplan img {
    width: 100%;
    height: 100%;
    max-height: 62mm;
    padding: 4mm 5mm;
    object-fit: contain;
    object-position: center;
  }

  .brochure-project-link {
    margin-top: 10mm;
    font-size: 20pt;
    text-underline-offset: 4px;
  }

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

/* Final brochure overrides: keep these after the legacy landscape rules. */
body.is-brochure-route {
  overflow-x: auto;
  background: #d9d3c8;
}

.is-brochure-route .site-header {
  display: none !important;
}

.is-brochure-route .brochure-page {
  min-height: 100vh;
  padding: 104px 24px 60px;
  background: #d9d3c8;
}

.is-brochure-route .brochure-document {
  width: min(210mm, 100%);
  margin: 0 auto;
}

.is-brochure-route .brochure-toolbar {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  top: 0;
  min-height: 76px;
  margin: 0;
  padding: 8px max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--forest);
  background: rgba(250, 248, 242, 0.96);
  border: 0;
  border-bottom: 1px solid rgba(36, 52, 37, 0.12);
  border-radius: 0;
  box-shadow: 0 10px 34px rgba(20, 30, 22, 0.12);
}

.is-brochure-route .brochure-toolbar-brand img {
  width: 154px;
  height: auto;
}

.is-brochure-route .brochure-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.is-brochure-route .brochure-sheet {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto 26px;
}

@media (max-width: 900px) {
  .is-brochure-route .brochure-page {
    padding-inline: 0;
  }

  .is-brochure-route .brochure-document {
    width: 210mm;
  }
}

@media (max-width: 620px) {
  .is-brochure-route .brochure-toolbar {
    padding-inline: 14px;
  }

  .is-brochure-route .brochure-toolbar-brand img {
    width: 112px;
  }

  .is-brochure-route .brochure-back {
    display: none;
  }
}

@page {
  size: A4 portrait;
  margin: 0;
}

@media print {
  html,
  body.is-brochure-route {
    width: 210mm !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .is-brochure-route .brochure-page {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  .is-brochure-route .brochure-document {
    width: 210mm !important;
    margin: 0 !important;
  }

  .is-brochure-route .brochure-toolbar {
    display: none !important;
  }

  .is-brochure-route .brochure-sheet {
    width: 210mm !important;
    height: 297mm !important;
    min-height: 297mm !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
  }

  .is-brochure-route .brochure-sheet:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .is-brochure-route .brochure-house-sheet .brochure-floorplan {
    min-height: 0 !important;
    height: auto !important;
    padding: 5mm !important;
  }

  .is-brochure-route .brochure-house-sheet .brochure-floorplan img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: contain !important;
  }

  .is-brochure-route a {
    color: inherit;
  }
}
