:root {
  --bg: #f7f5ef;
  --paper: #fffefa;
  --ink: #121513;
  --ink-soft: #252c28;
  --muted: #606862;
  --line: rgba(18, 21, 19, 0.12);
  --forest: #173b34;
  --teal: #2f6259;
  --copper: #b88352;
  --copper-soft: #ead7bf;
  --blue: #497a9a;
  --sage: #dbe6df;
  --rose: #d66f62;
  --shadow: 0 18px 50px rgba(18, 21, 19, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(1rem, calc((100% - 1180px) / 2));
  background: rgba(18, 21, 19, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  width: 142px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link,
.nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.is-active,
.nav-login:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.nav-login {
  background: var(--copper);
  color: #111;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle span::before {
  top: -7px;
  left: 0;
  right: 0;
}

.nav-toggle span::after {
  top: 7px;
  left: 0;
  right: 0;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.subhero,
.detail-hero,
.thanks-page {
  position: relative;
  overflow: hidden;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 4rem;
  color: #fff;
}

.hero-home {
  background-image:
    linear-gradient(180deg, rgba(8, 13, 12, 0.22), rgba(8, 13, 12, 0.82)),
    url("../img/render1.jpeg");
  background-position: center 36%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 21, 19, 0.78), rgba(18, 21, 19, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 0.9rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.subhero h1,
.detail-hero h1,
.thanks-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: 6.2rem;
  line-height: 0.95;
}

.hero-copy,
.subhero p,
.detail-hero p,
.showcase-copy p,
.platform-copy p,
.final-cta p,
.split-copy p,
.detail-section p,
.thanks-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-copy {
  max-width: 690px;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button,
.ghost-button,
.text-button,
.secondary-link {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
}

button.primary-button,
button.secondary-button,
button.ghost-button {
  appearance: none;
}

.primary-button {
  background: var(--copper);
  color: #111;
}

.secondary-button {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.text-button:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.text-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest);
  font-weight: 850;
}

.hero-signal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 1rem;
  align-items: center;
  width: min(780px, 100%);
  margin-top: 3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 21, 19, 0.58);
  backdrop-filter: blur(14px);
}

.hero-signal strong {
  color: #fff;
  font-size: 1.25rem;
}

.hero-signal span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section {
  padding: 6rem max(1rem, calc((100% - 1180px) / 2));
}

.band-ink {
  background: var(--ink);
  color: #fff;
}

.band-steel {
  background: #1c282c;
  color: #fff;
}

.band-forest {
  background: var(--forest);
  color: #fff;
}

.metric-grid,
.property-grid,
.process-grid,
.feature-grid,
.advantage-grid,
.detail-specs {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card,
.process-card,
.feature-card,
.property-card,
.detail-spec,
.advantage-item,
.legal-section,
.thanks-panel,
.empty-state {
  border-radius: var(--radius);
}

.metric-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.metric-card span,
.property-card-bottom span,
.detail-price span,
.detail-spec span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.55);
}

.metric-card strong {
  display: block;
  margin: 0.55rem 0;
  color: #fff;
  font-size: 1.25rem;
}

.metric-card p,
.process-card p,
.feature-card p,
.property-card p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.metric-card p,
.process-card p {
  color: rgba(255, 255, 255, 0.66);
}

.section-split,
.showcase-section,
.platform-section,
.final-cta,
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.section h2 {
  font-size: 3rem;
}

.section-split h2,
.showcase-copy h2,
.platform-copy h2,
.final-cta h2 {
  max-width: 620px;
}

.split-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.showcase-section {
  background: #eef3ef;
  padding-top: 0;
  padding-bottom: 0;
}

.showcase-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: inherit;
  object-fit: cover;
}

.showcase-copy {
  padding-block: 5rem;
}

.showcase-copy p,
.platform-copy p,
.final-cta p,
.detail-section p,
.thanks-panel p {
  color: var(--muted);
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.spec-row span {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
}

.spec-row strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading.light h2,
.section-heading.light .section-kicker {
  color: #fff;
}

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

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

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(18, 21, 19, 0.08);
}

.property-card[hidden] {
  display: none;
}

.property-media-link {
  position: relative;
  display: block;
  height: 292px;
  overflow: hidden;
  background: #d9d9d2;
}

.property-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.property-card:hover .property-card-image {
  transform: scale(1.035);
}

.status-chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.9);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 850;
}

.status-chip.is-sold {
  color: #fff;
  background: var(--rose);
}

.property-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 750;
}

.inline-icon {
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 999px;
}

.property-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.property-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.property-spec-grid span {
  display: grid;
  gap: 0.15rem;
  min-height: 58px;
  padding: 0.65rem;
  border: 1px solid rgba(18, 21, 19, 0.09);
  border-radius: var(--radius);
  background: #f3f6f1;
  color: var(--muted);
  font-size: 0.78rem;
}

.property-spec-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.availability {
  display: grid;
  gap: 0.65rem;
}

.availability > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.availability span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.availability strong {
  color: var(--forest);
  font-size: 0.9rem;
}

.availability-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e2d8;
}

.availability-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--teal));
}

.property-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.property-card-bottom div {
  display: grid;
}

.property-card-bottom strong {
  font-size: 1.08rem;
}

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

.process-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.process-card span {
  display: block;
  margin: 1.2rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.process-card h3,
.feature-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.platform-section {
  align-items: start;
}

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

.feature-card {
  min-height: 205px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.feature-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--copper) 0 4px, transparent 5px),
    linear-gradient(135deg, var(--sage), #ffffff);
  border: 1px solid var(--line);
}

.admin-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-preview img {
  width: 100%;
  height: auto;
}

.final-cta {
  margin: 0 max(1rem, calc((100% - 1180px) / 2)) 6rem;
  padding: 3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--forest), #101312);
  color: #fff;
}

.final-cta h2,
.final-cta .section-kicker {
  color: #fff;
}

.final-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
}

.subhero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 4.2rem;
  color: #fff;
}

.subhero > div,
.detail-hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.subhero h1,
.detail-hero h1 {
  font-size: 4.2rem;
}

.subhero p,
.detail-hero p {
  max-width: 720px;
}

.subhero-properties {
  background-image:
    linear-gradient(180deg, rgba(12, 18, 17, 0.32), rgba(12, 18, 17, 0.84)),
    url("../img/render2.jpeg");
  background-position: center 38%;
  background-size: cover;
}

.subhero-process {
  background-image:
    linear-gradient(180deg, rgba(12, 18, 17, 0.34), rgba(12, 18, 17, 0.86)),
    url("../img/render6.jpeg");
  background-position: center center;
  background-size: cover;
}

.subhero-faq,
.subhero-legal {
  background-image:
    linear-gradient(180deg, rgba(12, 18, 17, 0.38), rgba(12, 18, 17, 0.88)),
    url("../img/render9.jpeg");
  background-position: center 44%;
  background-size: cover;
}

.explorer {
  display: grid;
  gap: 1.5rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.filter-group,
.select-field,
.range-field,
.quote-range,
.lead-stage label {
  display: grid;
  gap: 0.55rem;
}

.filter-group > span,
.select-field > span,
.range-field > span,
.quote-range > span,
.lead-stage label > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.segmented-control button {
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f7f4;
  color: var(--ink-soft);
}

.segmented-control button.is-selected {
  background: var(--forest);
  color: #fff;
}

select,
input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 0.8rem;
}

input[type="range"] {
  min-height: 22px;
  padding: 0;
  accent-color: var(--teal);
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line);
  background: rgba(255, 254, 250, 0.72);
}

.empty-state h3 {
  margin: 0 0 0.4rem;
}

.detail-hero {
  min-height: 560px;
  padding-top: 8rem;
  padding-bottom: 4rem;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(10, 15, 14, 0.88), rgba(10, 15, 14, 0.38)),
    var(--detail-bg, url("../img/render4.jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.detail-price {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(360px, 100%);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 21, 19, 0.62);
  backdrop-filter: blur(16px);
}

.detail-price span {
  color: rgba(255, 255, 255, 0.62);
}

.detail-price strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 1.75rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 2rem;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 2rem;
}

.gallery-shell {
  display: grid;
  gap: 0.85rem;
}

.gallery-main {
  position: relative;
  height: 560px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #d9d9d2;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  font-weight: 850;
}

.gallery-thumbs,
.modal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 108px;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.gallery-thumbs button,
.modal-strip button {
  height: 82px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #d9d9d2;
}

.gallery-thumbs button.is-active,
.modal-strip button.is-active {
  border-color: var(--copper);
}

.gallery-thumbs img,
.modal-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  padding: 4.8rem max(1rem, calc((100% - 1180px) / 2)) 1.5rem;
  background: rgba(7, 9, 8, 0.94);
}

.gallery-modal > img {
  align-self: center;
  justify-self: center;
  max-height: 76svh;
  width: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: max(1rem, calc((100% - 1180px) / 2));
}

.icon-button {
  min-height: 42px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
}

.detail-section {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.video-section {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d100f;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.detail-spec {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.detail-spec strong {
  font-size: 1.02rem;
}

.two-column-list {
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
}

.check-list li::before,
.check-dot {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.quote-panel {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form {
  align-content: start;
}

.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quote-header strong {
  color: var(--teal);
}

.quote-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.quote-panel p {
  margin: 0;
  color: var(--muted);
}

.detail-availability {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f7f4;
}

.quote-stage {
  display: grid;
  gap: 1rem;
}

.quote-range span {
  justify-content: space-between;
}

.quote-range strong {
  color: var(--ink);
}

.quote-extra {
  display: grid;
  gap: 1rem;
}

.quote-summary {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f7f4;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.summary-line:last-child {
  border-bottom: 0;
}

.summary-line span {
  color: var(--muted);
  font-weight: 700;
}

.summary-line strong {
  text-align: right;
}

.summary-line.is-featured strong {
  color: var(--teal);
  font-size: 1.12rem;
}

.full-width {
  width: 100%;
}

.lead-stage {
  gap: 0.85rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-actions {
  display: flex;
  gap: 0.65rem;
}

.form-actions .primary-button,
.form-actions .secondary-button {
  flex: 1;
}

.form-status {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-success {
  background: #e1f3e6;
  color: #14633d;
}

.form-status.is-error {
  background: #f8dddd;
  color: #8b2424;
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
}

.faq-plus {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  inset: 8px 0 auto;
  height: 2px;
  background: var(--copper);
  content: "";
}

.faq-plus::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-plus::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

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

.advantage-item {
  position: relative;
  display: flex;
  align-items: start;
  gap: 0.65rem;
  min-height: 86px;
  padding: 1rem 1rem 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.advantage-item .check-dot {
  left: 1rem;
  background: var(--copper-soft);
}

.legal-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-section {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-section h2 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.legal-section p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  line-height: 1.85;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image:
    linear-gradient(180deg, rgba(247, 245, 239, 0.88), rgba(247, 245, 239, 0.98)),
    url("../img/render12.jpeg");
  background-position: center;
  background-size: cover;
}

.thanks-panel {
  max-width: 780px;
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--shadow);
}

.footer {
  padding: 3rem max(1rem, calc((100% - 1180px) / 2)) 2rem;
  background: #0d100f;
  color: rgba(255, 255, 255, 0.66);
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  width: 145px;
}

.footer p {
  max-width: 520px;
  margin: 1rem 0 0;
}

.footer-apps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.25rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.app-badge img {
  display: block;
  width: auto;
  height: 44px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .metric-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-grid,
  .filter-bar,
  .detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .quote-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0.8rem 1rem 1rem;
    background: rgba(18, 21, 19, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .nav-link,
  .nav-login {
    justify-content: center;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section h2,
  .subhero h1,
  .detail-hero h1 {
    font-size: 2.8rem;
  }

  .section-split,
  .showcase-section,
  .platform-section,
  .final-cta,
  .detail-hero,
  .video-section,
  .property-grid,
  .compact-grid,
  .filter-bar,
  .detail-layout,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .showcase-section {
    padding-top: 4rem;
  }

  .showcase-media,
  .showcase-media img,
  .gallery-main {
    min-height: 0;
    height: 420px;
  }

  .final-cta {
    margin-inline: 1rem;
    padding: 2rem;
  }

  .detail-price {
    justify-self: start;
  }

  .advantage-grid,
  .feature-grid,
  .detail-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-logo {
    width: 122px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 7rem;
    padding-bottom: 2.2rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-copy,
  .subhero p,
  .detail-hero p {
    font-size: 0.98rem;
  }

  .hero-signal,
  .property-card-bottom,
  .availability > div:first-child,
  .footer-inner,
  .footer-bottom,
  .section-heading,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .subhero,
  .detail-hero {
    padding-inline: 1rem;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .subhero,
  .detail-hero {
    min-height: 480px;
  }

  .section h2,
  .subhero h1,
  .detail-hero h1,
  .thanks-panel h1 {
    font-size: 2.25rem;
  }

  .metric-grid,
  .property-spec-grid,
  .spec-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .property-media-link {
    height: 250px;
  }

  .gallery-main {
    height: 360px;
  }

  .gallery-thumbs,
  .modal-strip {
    grid-auto-columns: 86px;
  }

  .quote-panel,
  .thanks-panel {
    padding: 1rem;
  }

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

  .footer-apps {
    gap: 0.6rem;
  }

  .app-badge img {
    height: 40px;
  }
}
