:root {
  --bg: #f3f8f4;
  --surface: #fffdf8;
  --surface-strong: #e7efe5;
  --ink: #17211d;
  --muted: #59665e;
  --line: #d7ded5;
  --brand: #0f5f57;
  --brand-strong: #093f3a;
  --brand-soft: #dceee8;
  --sand: #b88b4f;
  --danger: #a33d2f;
  --shadow: 0 24px 80px rgba(34, 28, 19, 0.13);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1200px;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(15, 95, 87, 0.35);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-shell {
  min-height: 100dvh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 209, 188, 0.8);
  background: rgba(243, 248, 244, 0.9);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #27362f;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 95, 87, 0.18);
}

.ghost-button {
  border: 1px solid rgba(23, 33, 29, 0.18);
  background: rgba(255, 250, 241, 0.8);
  color: var(--ink);
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--brand-strong);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.34em;
}

.hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  font-size: 24px;
  line-height: 1.18;
}

.lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: #344239;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  background: #d8c8ab;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 640px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric {
  min-height: 84px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.92);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--surface);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.unit-card,
.source-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
}

.info-card {
  padding: 24px;
}

.info-card p,
.source-panel p,
.cta-panel p {
  color: var(--muted);
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-card div {
  padding: 14px;
}

.visual-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.source-panel,
.cta-panel {
  padding: 28px;
}

.source-panel {
  border-color: rgba(15, 95, 87, 0.24);
  background: var(--brand-soft);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--brand-strong);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  font-size: 15px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter[data-active] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
  align-items: start;
}

.article {
  display: grid;
  gap: 28px;
}

.article-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
}

.article-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #344239;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

summary {
  min-height: 50px;
  padding: 16px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.footer {
  padding: 48px 0 104px;
  border-top: 1px solid var(--line);
  background: #171f1c;
  color: #edf4ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer a {
  color: #edf4ef;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(222, 209, 188, 0.9);
  border-radius: 18px;
  background: rgba(243, 248, 244, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta[data-visible] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .topbar-inner {
    min-height: 66px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav[data-open] {
    display: grid;
  }

  .hero-grid,
  .section-head,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 360px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
    line-height: 1;
  }

  .lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 52px 0;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(15, 95, 87, 0.35);
  outline-offset: 3px;
}

.proof-section {
  padding: 0 0 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-grid article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.92);
}

.proof-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--sand);
  font-weight: 900;
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.mini-action {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 95, 87, 0.28);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
}

.mini-action:hover {
  border-color: var(--brand);
  background: #cde6dd;
}

.lead-section {
  background: linear-gradient(180deg, rgba(243, 248, 244, 0) 0%, rgba(239, 229, 211, 0.9) 100%);
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(15, 95, 87, 0.24);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 22px 70px rgba(34, 28, 19, 0.1);
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 10px 0;
}

.lead-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344239;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: var(--sand);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 248, 244, 0.72);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  padding: 12px;
  border: 1px solid rgba(15, 95, 87, 0.22);
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
}

@media (max-width: 920px) {
  .proof-grid,
  .lead-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lead-panel {
    padding: 14px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: auto;
  }
}


.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.unit-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.unit-card h3 {
  font-size: 25px;
}

.unit-card p,
.unit-price span {
  margin: 8px 0 0;
  color: var(--muted);
}

.unit-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-strong);
  border-bottom: 2px solid var(--brand-strong);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

@media (max-width: 920px) {
  .unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .visual-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 68%;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

  .unit-card {
    min-height: auto;
  }
}


/* Final overrides for the unit selector and cropped source renders. */
.unit-card[hidden] {
  display: none;
}

.visual-card img {
  object-fit: cover;
  object-position: center 64%;
  transform: scale(1.16);
  transform-origin: center 72%;
}

@media (max-width: 640px) {
  .visual-card img {
    object-fit: cover;
    object-position: center 68%;
  }
}


/* Homepage cinematic hero, territory facts, map and motion. */
.hero-home {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(760px, calc(100dvh - 96px));
  margin: 0;
  padding: 72px 0 44px;
  overflow: hidden;
  isolation: isolate;
  background: #17211d;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(12, 20, 17, 0.84), rgba(12, 20, 17, 0.46) 52%, rgba(12, 20, 17, 0.22)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(243, 248, 244, 0) 78%, var(--bg) 100%);
}

.hero-home .hero-grid {
  width: min(100% - 32px, var(--max));
  min-height: min(620px, calc(100dvh - 220px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.82fr);
  align-items: end;
}

.hero-home .hero-media {
  display: none;
}

.hero-home h1,
.hero-home .lead,
.hero-home .eyebrow,
.hero-home .text-link {
  color: #fffdf8;
}

.hero-home .lead {
  color: rgba(255, 250, 241, 0.86);
}

.hero-home .eyebrow::before {
  background: #d9b878;
}

.hero-home .hero-card {
  border-color: rgba(255, 250, 241, 0.24);
  background: rgba(255, 250, 241, 0.24);
}

.hero-home .metric {
  background: rgba(255, 250, 241, 0.13);
  backdrop-filter: blur(16px);
}

.hero-home .metric strong,
.hero-home .metric span {
  color: #fffdf8;
}

.payment-section {
  background: linear-gradient(180deg, rgba(15, 95, 87, 0.08), rgba(255, 250, 241, 0));
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.term-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(15, 95, 87, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
}

.term-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brand);
  font-weight: 900;
}

.term-card p,
.plan-summary p,
.map-grid p {
  color: var(--muted);
}

.plan-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-summary article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(15, 95, 87, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
}

.plan-summary span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.plan-summary h3 {
  max-width: 340px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: stretch;
}

.map-shell {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.motion-ready .hero,
.motion-ready .proof-grid article,
.motion-ready .article-section,
.motion-ready .unit-card,
.motion-ready .visual-card,
.motion-ready .term-card,
.motion-ready .plan-summary,
.motion-ready .map-grid,
.motion-ready .lead-panel {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-ready .hero[data-visible],
.motion-ready .proof-grid article[data-visible],
.motion-ready .article-section[data-visible],
.motion-ready .unit-card[data-visible],
.motion-ready .visual-card[data-visible],
.motion-ready .term-card[data-visible],
.motion-ready .plan-summary[data-visible],
.motion-ready .map-grid[data-visible],
.motion-ready .lead-panel[data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home::before { animation: none; }
  .motion-ready .hero,
  .motion-ready .proof-grid article,
  .motion-ready .article-section,
  .motion-ready .unit-card,
  .motion-ready .visual-card,
  .motion-ready .term-card,
  .motion-ready .plan-summary,
  .motion-ready .map-grid,
  .motion-ready .lead-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  .hero-home .hero-grid,
  .terms-grid,
  .plan-summary,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    min-height: auto;
    padding: 30px 0 18px;
  }

  .hero-home .hero-grid {
    min-height: auto;
  }
}

.investor-section {
  padding-top: 38px;
  background: linear-gradient(180deg, rgba(243, 248, 244, 0), rgba(15, 95, 87, 0.07));
}

.investor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(15, 95, 87, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 20px 70px rgba(34, 28, 19, 0.1);
}

.investor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.investor-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.scenario-grid,
.layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scenario-card,
.layout-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 248, 244, 0.74);
}

.scenario-card span,
.layout-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-card p,
.layout-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.layout-card .text-link {
  margin-top: 14px;
}

@media (max-width: 920px) {
  .investor-panel,
  .scenario-grid,
  .layout-grid {
    grid-template-columns: 1fr;
  }
}
.unit-plan {
  display: grid;
  gap: 10px;
  margin: -2px 0 4px;
}

.plan-shape {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(15, 95, 87, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(220, 238, 232, 0.72), rgba(255, 253, 248, 0.92));
}

.plan-zone {
  position: absolute;
  border: 1px solid rgba(15, 95, 87, 0.42);
  background: rgba(255, 253, 248, 0.78);
}

.plan-entry { left: 6%; top: 10%; width: 22%; height: 28%; }
.plan-bath { left: 6%; top: 46%; width: 22%; height: 40%; background: rgba(231, 239, 229, 0.92); }
.plan-living { left: 32%; top: 10%; width: 44%; height: 76%; }
.plan-balcony { right: 6%; top: 10%; width: 14%; height: 76%; background: rgba(220, 238, 232, 0.9); }
.plan-bedroom { display: none; }

.unit-card[data-category="family"] .plan-entry { width: 18%; height: 26%; }
.unit-card[data-category="family"] .plan-bath { top: 50%; width: 18%; height: 36%; }
.unit-card[data-category="family"] .plan-living { left: 28%; width: 34%; }
.unit-card[data-category="family"] .plan-bedroom { display: block; left: 64%; top: 10%; width: 18%; height: 76%; background: rgba(255, 253, 248, 0.86); }
.unit-card[data-category="family"] .plan-balcony { right: 5%; width: 10%; }

.unit-plan p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.unit-plan strong {
  color: var(--brand-strong);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.unit-plan span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.unit-plan img {
  display: block;
  width: 100%;
  aspect-ratio: 1565 / 846;
  object-fit: contain;
  border: 1px solid rgba(15, 95, 87, 0.2);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 44, 41, 0.08);
}

.unit-plan figcaption {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
}

.unit-card {
  min-width: 0;
}

.unit-plan {
  min-width: 0;
  width: 100%;
}

.unit-plan img {
  max-width: 100%;
  height: auto;
}

.layout-card {
  display: flex;
  flex-direction: column;
}

.layout-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1565 / 846;
  object-fit: contain;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 95, 87, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 44, 41, 0.08);
}

.layout-card .layout-card-image + span {
  margin-bottom: 10px;
}

.layout-card {
  min-width: 0;
}

.layout-card-image {
  max-width: 100%;
  height: auto;
}

/* Inner page hero fixes. */
.hero:not(.hero-home) {
  padding: 46px 0 58px;
}

.hero:not(.hero-home) .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
  gap: 52px;
  align-items: center;
}

.hero:not(.hero-home) h1 {
  max-width: 100%;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.hero:not(.hero-home) .lead {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero:not(.hero-home) .hero-media {
  min-height: auto;
  height: clamp(320px, 33vw, 460px);
  max-width: 500px;
  justify-self: end;
  border-radius: var(--radius);
}

.hero:not(.hero-home) .hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.article {
  gap: 16px;
}

.article-section {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 24px 26px;
  background: rgba(255, 253, 248, 0.9);
}

.article-section h2 {
  max-width: 720px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.article-section p {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.unit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unit-card {
  min-height: 220px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.92);
}

.unit-card-main {
  display: grid;
  gap: 8px;
}

.unit-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(15, 95, 87, 0.18);
  border-radius: 999px;
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.unit-card h3 {
  font-size: 32px;
  line-height: 1;
}

.unit-details {
  display: grid;
  gap: 8px;
  margin: 0;
}

.unit-details div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(23, 33, 29, 0.1);
}

.unit-details dt,
.unit-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.unit-details dt {
  color: var(--muted);
}

.unit-details dd {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.layout-card-image {
  max-height: 260px;
}

@media (max-width: 920px) {
  .hero:not(.hero-home) .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero:not(.hero-home) .hero-media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero:not(.hero-home) h1 {
    font-size: 38px;
  }

  .hero:not(.hero-home) .hero-media {
    height: 280px;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

  .layout-card-image {
    max-height: 190px;
  }
}

.hero:not(.hero-home) .hero-media {
  width: min(100%, 500px);
}


/* Source-backed resort visuals from the project archive. */
.resort-story {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(15, 95, 87, 0.075));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.story-figure,
.interior-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(15, 95, 87, 0.16);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 20px 60px rgba(18, 44, 41, 0.1);
}

.story-figure img,
.interior-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-figure {
  min-height: 420px;
}

.story-figure img {
  aspect-ratio: 1.9 / 1;
}

.story-figure figcaption,
.interior-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: var(--radius-sm);
  color: #fffdf8;
  background: rgba(15, 32, 28, 0.62);
  backdrop-filter: blur(12px);
  font-size: 13px;
  line-height: 1.45;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(15, 95, 87, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.story-facts span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(15, 95, 87, 0.16);
  border-radius: var(--radius-sm);
  color: var(--brand-strong);
  background: rgba(236, 246, 241, 0.78);
  font-weight: 800;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid rgba(15, 95, 87, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 45px rgba(18, 44, 41, 0.08);
}

.experience-card img {
  aspect-ratio: 16 / 10;
}

.experience-card div {
  padding: 20px;
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.room-experience {
  background: linear-gradient(180deg, rgba(15, 95, 87, 0.055), rgba(255, 250, 241, 0));
}

.interior-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.interior-card {
  min-height: 260px;
}

.interior-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.interior-card img {
  aspect-ratio: 1 / 1;
}

.interior-card-large img {
  aspect-ratio: 1 / 1.12;
}

.video-section {
  background: #15231f;
  color: #fffdf8;
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.46fr);
  gap: 28px;
  align-items: center;
}

.video-copy {
  display: grid;
  gap: 18px;
}

.video-copy h2,
.video-copy .eyebrow {
  color: #fffdf8;
}

.video-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.video-frame {
  overflow: hidden;
  max-width: 420px;
  justify-self: end;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0e1714;
}

.visual-card img {
  transform: none;
  object-position: center;
}

@media (max-width: 920px) {
  .story-layout,
  .experience-grid,
  .interior-grid,
  .video-panel {
    grid-template-columns: 1fr;
  }

  .interior-grid {
    grid-template-rows: none;
  }

  .interior-card-large {
    grid-row: auto;
    min-height: 360px;
  }

  .video-frame {
    justify-self: stretch;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .story-copy {
    padding: 22px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-figure,
  .interior-card,
  .interior-card-large {
    min-height: 300px;
  }

  .story-figure figcaption,
  .interior-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}


/* Immediate photo strip after hero. */
.photo-strip-section {
  padding: 18px 0 28px;
  background: linear-gradient(180deg, rgba(15, 95, 87, 0.08), rgba(255, 250, 241, 0));
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.photo-tile {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.4);
  border-radius: var(--radius);
  background: #15231f;
  box-shadow: 0 16px 46px rgba(18, 44, 41, 0.11);
}

.photo-tile-large {
  min-height: 240px;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.photo-tile figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  color: #fffdf8;
  background: rgba(12, 26, 23, 0.62);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 920px) {
  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-tile-large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .photo-strip-section {
    padding: 12px 0 18px;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .photo-tile,
  .photo-tile-large {
    min-height: 150px;
  }

  .photo-tile-large {
    min-height: 190px;
  }
}

.hero-home {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-home .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  pointer-events: none;
}

.hero-home::before {
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 18, 15, 0.88), rgba(9, 18, 15, 0.58) 48%, rgba(9, 18, 15, 0.25));
  transform: none;
}

.hero-home::after {
  z-index: 2;
}

.hero-home .hero-grid {
  position: relative;
  z-index: 3;
}

.archive-story {
  background: linear-gradient(180deg, rgba(240, 247, 242, 0.8), rgba(255, 250, 241, 0));
}

.archive-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 24px;
}

.archive-intro h2 {
  margin: 0;
}

.archive-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.archive-card,
.archive-note {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(31, 84, 72, 0.16);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 22px 60px rgba(31, 84, 72, 0.11);
}

.archive-card {
  display: flex;
  align-items: flex-end;
  color: #fffdf8;
}

.archive-card-wide {
  grid-column: span 2;
}

.archive-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 15, 0.02) 10%, rgba(9, 18, 15, 0.78) 100%);
}

.archive-card:hover img {
  transform: scale(1.035);
}

.archive-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.archive-card span,
.archive-note span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d9b878;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-card h3,
.archive-note h3 {
  margin: 0;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.02;
}

.archive-card p,
.archive-note p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.62;
}

.archive-card p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.82);
}

.archive-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--ink);
}

.archive-note span {
  color: var(--gold);
}

.archive-note p {
  color: var(--muted);
}

.archive-note .text-link {
  width: fit-content;
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-bg-video {
    display: none;
  }
}

@media (max-width: 980px) {
  .archive-intro,
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .archive-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hero-home .hero-bg-video {
    object-position: center;
  }

  .archive-intro,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card-wide {
    grid-column: auto;
  }

  .archive-card,
  .archive-note {
    min-height: 300px;
  }

  .archive-card div,
  .archive-note {
    padding: 20px;
  }
}

/* Hero video as a vertical preview on desktop. */
.hero-home::before {
  background-image: linear-gradient(90deg, rgba(9, 18, 15, 0.9), rgba(9, 18, 15, 0.62) 46%, rgba(9, 18, 15, 0.18) 72%, rgba(9, 18, 15, 0.08));
}

.hero-home .hero-bg-video {
  inset: 88px max(28px, calc((100vw - var(--max)) / 2)) auto auto;
  width: min(29vw, 390px);
  height: min(72vh, 640px);
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-home .hero-grid > div:first-child {
  max-width: 720px;
}

@media (max-width: 1040px) {
  .hero-home .hero-bg-video {
    width: 300px;
    height: 520px;
    opacity: 0.9;
  }
}

@media (max-width: 820px) {
  .hero-home .hero-bg-video {
    display: none;
  }
}

/* Archive cards: image first, readable commercial copy below. */
.archive-card {
  display: grid;
  align-items: stretch;
  color: var(--ink);
  background: #fffaf1;
}

.archive-card::after {
  display: none;
}

.archive-card img {
  position: static;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  border-bottom: 1px solid rgba(31, 84, 72, 0.12);
  object-fit: cover;
  transform: none !important;
}

.archive-card div {
  padding: 22px;
  background: #fffaf1;
}

.archive-card span {
  color: var(--gold);
}

.archive-card h3 {
  color: var(--ink);
  font-size: clamp(23px, 1.7vw, 30px);
}

.archive-card p {
  color: var(--muted);
  max-width: none;
}

.archive-card-wide img {
  aspect-ratio: 16 / 8.5;
}

@media (max-width: 640px) {
  .archive-card img,
  .archive-card-wide img {
    aspect-ratio: 4 / 3;
  }
}

/* Investment factor infographic. */
.investor-section .scenario-grid {
  gap: 14px;
}

.investor-section .scenario-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding-top: 26px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(240, 247, 242, 0.92));
}

.investor-section .scenario-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(217, 184, 120, 0.95));
}

.investor-section .scenario-card:nth-child(2)::before {
  right: 52px;
}

.investor-section .scenario-card:nth-child(3)::before {
  right: 78px;
}

.investor-section .scenario-card:nth-child(4)::before {
  right: 96px;
}

.investor-section .scenario-card span {
  color: var(--teal);
}

.investor-section .scenario-card h3 {
  font-size: clamp(24px, 2vw, 34px);
}

.investor-section .scenario-card p {
  color: var(--muted);
}

/* Larger vertical hero video after visual review. */
.hero-home .hero-bg-video {
  inset: 76px max(22px, calc((100vw - var(--max)) / 2)) auto auto;
  width: clamp(420px, 34vw, 520px);
  height: min(78vh, 720px);
  border-radius: 20px;
}

@media (max-width: 1180px) {
  .hero-home .hero-bg-video {
    width: 380px;
    height: 640px;
  }
}

@media (max-width: 980px) {
  .hero-home .hero-bg-video {
    width: 330px;
    height: 560px;
    opacity: 0.92;
  }
}

/* Final hero media placement: flush right, full hero height. */
.hero-home {
  min-height: calc(100dvh - 76px);
}

.hero-home::before {
  background-image: linear-gradient(90deg, rgba(9, 18, 15, 0.92), rgba(9, 18, 15, 0.66) 44%, rgba(9, 18, 15, 0.24) 70%, rgba(9, 18, 15, 0.08));
}

.hero-home .hero-bg-video {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: clamp(520px, 36vw, 720px);
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.24);
}

.hero-home .hero-grid > div:first-child {
  max-width: min(720px, calc(100vw - clamp(520px, 36vw, 720px) - 96px));
}

@media (max-width: 1360px) {
  .hero-home .hero-bg-video {
    width: clamp(460px, 38vw, 600px);
  }

  .hero-home .hero-grid > div:first-child {
    max-width: min(660px, calc(100vw - clamp(460px, 38vw, 600px) - 72px));
  }
}

@media (max-width: 1120px) {
  .hero-home .hero-bg-video {
    width: 42vw;
  }

  .hero-home .hero-grid > div:first-child {
    max-width: 56vw;
  }
}

@media (max-width: 820px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home .hero-bg-video {
    display: none;
  }

  .hero-home .hero-grid > div:first-child {
    max-width: 100%;
  }
}

.hero-home h1 {
  max-width: 820px;
  text-transform: uppercase;
}

.hero-home .lead {
  max-width: 720px;
}

.hero-bullets {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #fffdf8;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.42;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(255, 250, 241, 0.16);
}

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

.hero-home .hero-card {
  width: min(100%, 820px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

@media (max-width: 1120px) {
  .hero-home h1,
  .hero-home .lead,
  .hero-bullets,
  .hero-home .hero-card {
    max-width: 55vw;
  }

  .hero-bullets {
    font-size: 18px;
  }
}

@media (max-width: 820px) {
  .hero-home h1,
  .hero-home .lead,
  .hero-bullets,
  .hero-home .hero-card {
    max-width: 100%;
  }

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

/* Home hero final offer: no small intro text. */
.hero-home .lead {
  display: none;
}

.hero-home .hero-bullets {
  gap: 14px;
  margin-top: 26px;
  font-size: clamp(21px, 1.62vw, 29px);
  line-height: 1.36;
}

.hero-home .hero-bullets li {
  padding-left: 32px;
}

.hero-home .hero-bullets li::before {
  top: 0.62em;
  width: 8px;
  height: 8px;
}

/* Hero metric infographic with lightweight CSS icons. */
.hero-home .hero-card {
  border-top: 1px solid rgba(255, 250, 241, 0.5);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  gap: 0;
  padding-top: 22px;
}

.hero-home .metric {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 64px;
  padding: 0 28px 0 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-home .metric::before {
  content: "";
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border: 2px solid rgba(255, 250, 241, 0.9);
  border-radius: 4px;
}

.hero-home .metric:nth-child(2)::before {
  border-radius: 2px;
  box-shadow: inset 7px 0 0 rgba(255, 250, 241, 0.22), inset 0 -7px 0 rgba(255, 250, 241, 0.22);
}

.hero-home .metric:nth-child(3)::before {
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  transform: skew(-10deg);
}

.hero-home .metric strong {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2px;
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.1;
}

.hero-home .metric span {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: rgba(255, 250, 241, 0.92);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .hero-home .metric {
    grid-template-columns: 30px minmax(0, 1fr);
    padding-right: 0;
  }
}

/* Hero offer glass cards */
.hero-home .hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 820px);
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.08vw, 21px);
  line-height: 1.38;
}
.hero-home .hero-bullets li {
  min-height: 96px;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.hero-home .hero-bullets li::before {
  left: 20px;
  top: 25px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #d9b878;
  box-shadow: 0 0 0 5px rgba(217, 184, 120, 0.16);
}
.hero-home .hero-bullets strong { color: #fff1c8; font-weight: 900; }
.hero-home .hero-bullets .accent-money { color: #ffd66b; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34); }

.hero-home .hero-actions { align-items: center; gap: 14px; margin-top: 18px; }
.hero-home .text-link { min-height: 50px; padding: 13px 18px; border: 1px solid rgba(255, 250, 241, 0.22); border-radius: 999px; background: rgba(255, 255, 255, 0.11); color: #fff6dd; text-decoration: none; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.hero-home .hero-card { width: min(100%, 820px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 20px; padding-top: 0; border: 0; background: transparent; }
.hero-home .metric { min-height: 106px; padding: 18px 18px 16px; border: 1px solid rgba(255, 250, 241, 0.24); border-radius: 16px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.075)); box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.hero-home .metric::before { border-color: rgba(255, 241, 200, 0.9); background: rgba(217, 184, 120, 0.16); }
.hero-home .metric strong { color: #ffe3a2; font-size: clamp(24px, 1.7vw, 34px); font-weight: 900; line-height: 1; }
.hero-home .metric span { color: #fffdf8; font-size: clamp(13px, 0.9vw, 16px); font-weight: 800; letter-spacing: 0; }
.hero-home .metric:nth-child(3) strong { color: #ffd66b; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.26); }
.hero-home .metric:nth-child(2) strong { color: #fff1c8; }
@media (max-width: 1120px) { .hero-home .hero-bullets, .hero-home .hero-card { max-width: 56vw; } .hero-home .hero-bullets { grid-template-columns: 1fr; } .hero-home .hero-bullets li { min-height: auto; } }
@media (max-width: 820px) { .hero-home .hero-bullets, .hero-home .hero-card { max-width: 100%; width: 100%; } .hero-home .hero-card { grid-template-columns: 1fr; } .hero-home .metric { min-height: 92px; } }

/* Mobile hero uses video, not fallback image. */
@media (max-width: 820px) { .hero-home { min-height: calc(100dvh - 68px); background-image: none !important; overflow: hidden; } }
@media (max-width: 820px) { .hero-home .hero-bg-video { display: block; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 0; box-shadow: none; opacity: 1; object-fit: cover; object-position: center; } }
@media (max-width: 820px) { .hero-home::before { background-image: linear-gradient(180deg, rgba(9, 18, 15, 0.88), rgba(9, 18, 15, 0.58) 58%, rgba(9, 18, 15, 0.82)); } }

/* Click-to-open archive cards. */
.archive-card { cursor: pointer; }
.archive-card div > span { display: none; }
.archive-card h3 { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.archive-card h3::after { content: '+'; flex: 0 0 auto; color: #b8893e; font-family: var(--font-body); font-size: 26px; line-height: 1; }
.archive-card p { display: none; margin-top: 14px; }
.archive-card[data-open] p { display: block; }
.archive-card[data-open] h3::after { content: '−'; }

/* Hero left redesign: editorial offer instead of glass cards. */
.hero-home .hero-grid > div:first-child {
  max-width: min(760px, calc(100vw - clamp(520px, 36vw, 720px) - 92px));
}

.hero-home .eyebrow {
  margin-bottom: 18px;
  color: #f4dfb4;
}

.hero-home h1 {
  max-width: 780px;
  margin-bottom: 28px;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.34);
}

.hero-home .hero-bullets {
  display: block;
  width: min(100%, 700px);
  max-width: 100%;
  margin: 0;
  padding: 2px 0 2px 24px;
  border-left: 1px solid rgba(244, 223, 180, 0.55);
  list-style: none;
  font-size: clamp(19px, 1.35vw, 25px);
  line-height: 1.4;
}

.hero-home .hero-bullets li {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 0 0 16px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.38);
}

.hero-home .hero-bullets li + li {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
}

.hero-home .hero-bullets li::before {
  left: -30px;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 250, 241, 0.82);
  border-radius: 50%;
  background: #d9b878;
  box-shadow: 0 0 0 8px rgba(217, 184, 120, 0.13);
}

.hero-home .hero-bullets li + li::before {
  top: calc(16px + 0.45em);
}

.hero-home .hero-bullets strong {
  color: #fff4d5;
  font-weight: 850;
}

.hero-home .hero-bullets .accent-money {
  color: #f4c96b;
  font-weight: 900;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.hero-home .hero-actions {
  margin-top: 28px;
}

.hero-home .text-link {
  min-height: 0;
  padding: 0 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff4d5;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-decoration: underline;
  text-decoration-color: rgba(244, 223, 180, 0.55);
  text-underline-offset: 5px;
}

.hero-home .hero-card {
  width: min(100%, 700px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.34);
  background: transparent;
}

.hero-home .metric {
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 0 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-home .metric + .metric {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 250, 241, 0.18);
}

.hero-home .metric::before {
  display: none;
}

.hero-home .metric span {
  grid-column: auto;
  grid-row: auto;
  margin-bottom: 7px;
  color: rgba(255, 250, 241, 0.75);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-home .metric strong {
  grid-column: auto;
  grid-row: auto;
  color: #fff4d5;
  font-size: clamp(25px, 2vw, 38px);
  font-weight: 900;
  line-height: 0.98;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.hero-home .metric:nth-child(3) strong {
  color: #f4c96b;
}

@media (max-width: 1120px) {
  .hero-home .hero-grid > div:first-child,
  .hero-home .hero-bullets,
  .hero-home .hero-card {
    max-width: 56vw;
  }
}

@media (max-width: 820px) {
  .hero-home .hero-grid > div:first-child,
  .hero-home .hero-bullets,
  .hero-home .hero-card {
    max-width: 100%;
    width: 100%;
  }

  .hero-home h1 {
    margin-bottom: 22px;
  }

  .hero-home .hero-bullets {
    padding-left: 18px;
    font-size: clamp(17px, 4.8vw, 21px);
  }

  .hero-home .hero-bullets li {
    padding-left: 18px;
  }

  .hero-home .hero-bullets li::before {
    left: -24px;
  }

  .hero-home .hero-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-home .metric,
  .hero-home .metric + .metric {
    padding: 0;
    border-left: 0;
  }
}

/* Archive cards hover affordance without plus signs. */
.archive-card {
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.archive-card img {
  transition: transform 360ms ease, filter 260ms ease;
}

.archive-card:hover,
.archive-card:focus-visible {
  border-color: rgba(184, 137, 62, 0.42);
  box-shadow: 0 28px 74px rgba(31, 84, 72, 0.18);
  transform: translateY(-5px);
}

.archive-card:hover img,
.archive-card:focus-visible img {
  filter: saturate(1.05) brightness(0.9);
  transform: scale(1.035) !important;
}

.archive-card h3 {
  position: relative;
  display: block;
  padding-right: 0;
  transition: color 180ms ease, transform 220ms ease;
}

.archive-card h3::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: -10px;
  left: 0;
  width: 46px;
  height: 2px;
  background: #b8893e;
  opacity: 0.55;
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.archive-card:hover h3,
.archive-card:focus-visible h3 {
  color: #0f5f57;
  transform: translateY(-2px);
}

.archive-card:hover h3::after,
.archive-card:focus-visible h3::after {
  opacity: 1;
  transform: scaleX(1.25);
}

.archive-card div::after {
  content: "Подробнее";
  display: inline-flex;
  margin-top: 18px;
  color: #0f5f57;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.archive-card:hover div::after,
.archive-card:focus-visible div::after,
.archive-card[data-open] div::after {
  opacity: 1;
  transform: translateY(0);
}

.archive-card[data-open] h3::after {
  content: "";
}

/* Home hero: editorial layout with an independent video panel. */
.hero-home {
  min-height: min(780px, calc(100dvh - 76px));
  padding: 0;
  background: #f1f5f0;
  color: #16261f;
}

.hero-home::before,
.hero-home::after {
  display: none;
}

.hero-home .hero-grid {
  width: 100%;
  min-height: min(780px, calc(100dvh - 76px));
  margin: 0;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
  gap: 0;
  align-items: stretch;
}

.hero-home .hero-copy,
.hero-home .hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 790px);
  max-width: none;
  margin: 0 0 0 auto;
  padding: clamp(52px, 7vw, 112px) clamp(32px, 6vw, 108px) clamp(48px, 6vw, 96px);
}

.hero-home .eyebrow {
  margin-bottom: 20px;
  color: #0f665c;
}

.hero-home .eyebrow::before {
  width: 38px;
  background: #bf9147;
}

.hero-home h1 {
  max-width: 680px;
  margin: 0;
  color: #14231d;
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: 0.96;
  text-shadow: none;
}

.hero-home .lead {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: #405149;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
}

.hero-home .hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 680px);
  max-width: none;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
  color: #24352d;
  list-style: none;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.42;
}

.hero-home .hero-bullets li,
.hero-home .hero-bullets li + li {
  min-height: 88px;
  margin: 0;
  padding: 15px 20px;
  border: 0;
  border-top: 1px solid rgba(20, 63, 51, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}

.hero-home .hero-bullets li:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid rgba(20, 63, 51, 0.18);
}

.hero-home .hero-bullets li:nth-child(even) {
  padding-right: 0;
}

.hero-home .hero-bullets li::before,
.hero-home .hero-bullets li + li::before {
  position: static;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 2px 0;
  border: 0;
  border-radius: 0;
  background: #bf9147;
  box-shadow: none;
  content: "";
  vertical-align: middle;
}

.hero-home .hero-bullets strong {
  color: #0d5e55;
  font-weight: 800;
}

.hero-home .hero-bullets .accent-money {
  color: #a36612;
  text-shadow: none;
}

.hero-home .hero-actions {
  gap: 18px;
  margin-top: 30px;
}

.hero-home .button {
  min-height: 52px;
  padding-right: 28px;
  padding-left: 28px;
  box-shadow: 0 14px 28px rgba(15, 102, 92, 0.18);
}

.hero-home .text-link {
  min-height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #174d45;
  text-decoration-color: rgba(23, 77, 69, 0.46);
  text-underline-offset: 6px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-home .hero-card {
  width: min(100%, 680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  margin-top: 34px;
  border: 0;
  border-top: 1px solid rgba(20, 63, 51, 0.24);
  border-radius: 0;
  background: transparent;
}

.hero-home .metric,
.hero-home .metric + .metric {
  min-height: 0;
  padding: 17px 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-home .metric + .metric {
  padding-left: 18px;
  border-left: 1px solid rgba(20, 63, 51, 0.18);
}

.hero-home .metric::before {
  display: none;
}

.hero-home .metric span {
  margin: 0 0 7px;
  color: #68776f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-home .metric strong,
.hero-home .metric:nth-child(2) strong,
.hero-home .metric:nth-child(3) strong {
  color: #153c34;
  font-size: clamp(24px, 1.86vw, 34px);
  font-weight: 700;
  line-height: 1;
  text-shadow: none;
}

.hero-home .metric:nth-child(3) strong {
  color: #a36612;
}

.hero-home .hero-video-panel {
  position: relative;
  display: block;
  min-height: min(780px, calc(100dvh - 76px));
  overflow: hidden;
  border-radius: 0;
  background: #15231e;
  box-shadow: none;
}

.hero-home .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-home .hero-video-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 18, 0.04), rgba(8, 23, 18, 0.28));
  content: "";
  pointer-events: none;
}

.hero-home .hero-video-label {
  position: absolute;
  right: clamp(22px, 3vw, 50px);
  bottom: clamp(22px, 3vw, 44px);
  z-index: 1;
  color: rgba(255, 251, 241, 0.9);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 1;
}

@media (max-width: 1120px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    padding-right: clamp(28px, 4vw, 58px);
    padding-left: clamp(28px, 5vw, 72px);
  }

  .hero-home .hero-bullets {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-bullets li:nth-child(odd) {
    padding-left: 20px;
    border-right: 0;
  }

  .hero-home .hero-bullets li:nth-child(even) {
    padding-right: 20px;
  }
}

@media (max-width: 820px) {
  .hero-home,
  .hero-home .hero-grid {
    min-height: 0;
  }

  .hero-home .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 42px 24px 48px;
  }

  .hero-home .hero-video-panel {
    order: 1;
    width: 100%;
    min-height: 0;
    height: min(58svh, 480px);
  }

  .hero-home h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .hero-home .lead {
    font-size: 17px;
  }

  .hero-home .hero-bullets {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-home .hero-bullets li,
  .hero-home .hero-bullets li + li,
  .hero-home .hero-bullets li:nth-child(odd),
  .hero-home .hero-bullets li:nth-child(even) {
    min-height: 0;
    padding: 15px 0;
    border-right: 0;
  }

  .hero-home .hero-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-home .metric,
  .hero-home .metric + .metric {
    padding: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-video {
    display: none;
  }

  .hero-home .hero-video-panel {
    background: #1b665c;
  }
}