:root {
  --ivory: #f4f0e8;
  --paper: #fffaf1;
  --ink: #1d2522;
  --muted: #66706b;
  --green: #173b2d;
  --green-soft: #dfe8dc;
  --brass: #b98f56;
  --clay: #9d6c57;
  --stone: #d9d1c3;
  --line: rgba(29, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(21, 31, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--brass);
  color: #fff;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(12, 19, 16, 0.78), rgba(12, 19, 16, 0));
}

.brand-mark,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  text-decoration: none;
  font-weight: 700;
}

.brand-symbol {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 86px) 46px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.24);
  transform-origin: center bottom;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 23, 19, 0.92) 0%, rgba(13, 23, 19, 0.62) 38%, rgba(13, 23, 19, 0) 84%),
    linear-gradient(0deg, rgba(13, 23, 19, 0.68) 0%, rgba(13, 23, 19, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.partner-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(16, 28, 23, 0.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lockup-divider {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
}

h2 {
  color: var(--green);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.hero-subtitle {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.16;
}

.hero-copy {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 24, 20, 0.28);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button::after {
  margin-left: 10px;
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 24, 20, 0.34);
}

.button.primary {
  border-color: #d6b071;
  background: linear-gradient(180deg, #caa064 0%, var(--brass) 100%);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.button.dark-button {
  border-color: #244d3d;
  background: linear-gradient(180deg, #245340 0%, var(--green) 100%);
}

.hero-proof {
  max-width: 760px;
  margin-top: 30px;
}

.hero-proof span,
.quick-replies button {
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  background: rgba(13, 23, 19, 0.26);
  box-shadow: none;
}

.fine-print {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

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

.proof-strip div {
  min-height: 118px;
  padding: 26px 24px;
  background: var(--paper);
}

.proof-strip strong,
.feature-rows strong,
.fit-grid strong,
.chat-header strong {
  display: block;
  color: var(--green);
  font-size: 16px;
}

.proof-strip span,
.feature-rows span,
.fit-grid span,
.chat-header span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.mira-cta,
.handover-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 86px);
  background: var(--green-soft);
}

.mira-cta p,
.section-copy p,
.editorial-section p,
.section-heading p,
.handover-section p {
  color: #53605a;
  font-size: 17px;
}

.mira-cta h2,
.handover-section h2 {
  max-width: 720px;
}

.cta-panel,
.handover-card,
.chat-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-panel {
  padding: 24px;
}

.prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.prompt-grid span {
  border-left: 2px solid var(--brass);
  padding: 8px 10px 8px 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 250, 241, 0.74);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 86px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.lifestyle-section {
  background: #efe6da;
}

.section-copy p {
  max-width: 720px;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #37423d;
}

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

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.interior-panel img {
  aspect-ratio: 16 / 6.8;
  object-position: center top;
}

.unit-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
  border: 1px solid var(--line);
}

.unit-options div {
  min-height: 112px;
  padding: 18px;
  background: var(--paper);
}

.unit-options strong {
  display: block;
  color: var(--green);
  font-size: 16px;
}

.unit-options span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

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

.editorial-section h2,
.section-heading h2 {
  max-width: 780px;
}

.editorial-section blockquote {
  max-width: 980px;
  margin: 34px 0 26px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
}

.editorial-section p {
  max-width: 780px;
}

.market-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.market-signals div {
  min-height: 172px;
  padding: 22px;
  background: #f7f0e6;
}

.market-signals svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
  stroke-width: 1.8;
}

.market-signals strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.05;
}

.market-signals span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.feature-rows {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-rows div {
  padding: 20px;
  background: rgba(255, 250, 241, 0.72);
}

.buyer-fit {
  background: var(--ivory);
}

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

.fit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-grid div {
  min-height: 180px;
  padding: 24px;
  background: var(--paper);
}

.chat-section {
  background: #f7f1e7;
}

.chat-shell {
  overflow: hidden;
  max-width: 920px;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.status-pill {
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chat-body {
  display: grid;
  min-height: 290px;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: #f1eadf;
}

.message {
  max-width: 76%;
  padding: 15px 16px;
  font-size: 15px;
}

.mira-message {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--line);
}

.user-message {
  justify-self: end;
  background: var(--green);
  color: #fff;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.quick-replies button {
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid var(--green);
  color: #fff;
  background: linear-gradient(180deg, #245340 0%, var(--green) 100%);
  font-family: inherit;
  box-shadow: 0 8px 18px rgba(23, 59, 45, 0.14);
}

.quick-replies button:hover,
.quick-replies button:focus {
  outline: none;
  border-color: var(--brass);
  background: #244d3d;
}

.handover-card {
  padding: 24px;
}

.sample-label {
  margin-top: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-message {
  border-left: 3px solid var(--brass);
  padding-left: 16px;
}

.supporting {
  font-size: 15px;
}

.site-footer {
  padding: 28px clamp(18px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.68);
  background: #15231d;
  font-size: 13px;
}

.site-footer p {
  max-width: 1040px;
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

.desktop-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  min-width: 220px;
  min-height: 62px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 11px 18px;
  border: 1px solid rgba(214, 176, 113, 0.78);
  border-radius: 6px;
  color: #fff;
  background: rgba(21, 35, 29, 0.95);
  box-shadow: 0 18px 38px rgba(15, 24, 20, 0.28);
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.desktop-sticky-cta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-sticky-cta strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
}

.desktop-sticky-cta:hover {
  transform: translateY(-1px);
  border-color: #d6b071;
}

@media (max-width: 980px) {
  .proof-strip,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mira-cta,
  .handover-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .lifestyle-section .image-panel {
    order: 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .desktop-sticky-cta {
    display: none;
  }

  .site-header {
    position: absolute;
    padding: 14px 16px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 50;
    display: grid;
    min-height: 56px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    align-items: center;
    border: 1px solid rgba(214, 176, 113, 0.7);
    border-radius: 6px;
    background: rgba(21, 35, 29, 0.94);
    box-shadow: 0 18px 38px rgba(15, 24, 20, 0.34);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-sticky-cta a:last-child {
    border-color: #d6b071;
    background: linear-gradient(180deg, #caa064 0%, var(--brass) 100%);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 100px 18px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 23, 19, 0.9) 0%, rgba(13, 23, 19, 0.62) 58%, rgba(13, 23, 19, 0.12) 100%);
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    flex: 1 1 calc(50% - 8px);
  }

  .partner-lockup {
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
  }

  .lockup-divider {
    display: none;
  }

  .proof-strip,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .market-signals {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .fit-grid div {
    min-height: auto;
  }

  .section,
  .mira-cta,
  .handover-section {
    padding: 56px 18px;
  }

  .editorial-section blockquote {
    font-size: 31px;
  }

  .message {
    max-width: 92%;
  }

  .quick-replies button {
    width: 100%;
  }

  .unit-options {
    grid-template-columns: 1fr;
  }
}
