/*
 * Alean Montvert visual layer.
 * Loaded after the legacy stylesheet to provide one coherent, reversible theme.
 */

:root {
  --bg: #f3f6f1;
  --surface: #fffdf8;
  --surface-strong: #e4ece5;
  --surface-warm: #f2eadc;
  --ink: #15231d;
  --muted: #586860;
  --line: rgba(21, 54, 44, 0.16);
  --brand: #0d6459;
  --brand-strong: #073f39;
  --brand-soft: #d9ebe5;
  --sand: #b4823d;
  --sand-soft: #ecd9b8;
  --shadow-sm: 0 12px 34px rgba(22, 49, 39, 0.09);
  --shadow-md: 0 28px 72px rgba(20, 52, 41, 0.14);
  --radius: 6px;
  --radius-sm: 4px;
  --max: 1280px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: 88px;
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(228, 236, 229, 0.7), rgba(243, 246, 241, 0) 520px),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

::selection {
  background: #c8dfd8;
  color: #082f2a;
}

a,
button,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(180, 130, 61, 0.62);
  outline-offset: 4px;
}

img,
video {
  background: #dfe7df;
}

.topbar {
  z-index: 50;
  border-bottom: 1px solid rgba(21, 54, 44, 0.1);
  background: rgba(247, 249, 245, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.topbar[data-scrolled] {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 34px rgba(15, 45, 36, 0.09);
}

.topbar-inner {
  width: min(100% - 48px, var(--max));
  min-height: 78px;
}

.brand {
  gap: 5px;
}

.brand strong {
  color: #10231c;
  font-size: 23px;
}

.brand span {
  color: #64736b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav {
  gap: clamp(12px, 1.3vw, 22px);
  font-size: 13px;
}

.nav > a:not(.button) {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.ghost-button {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(13, 100, 89, 0.2);
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  box-shadow: 0 18px 40px rgba(7, 63, 57, 0.24);
  transform: translateY(-2px);
}

.button:active,
.ghost-button:active {
  transform: translateY(0) scale(0.985);
}

.text-link {
  min-height: 44px;
  color: var(--brand-strong);
  text-decoration-color: rgba(13, 100, 89, 0.38);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 28px;
  background: var(--sand);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.section {
  padding: clamp(80px, 9vw, 128px) 0;
}

.section.alt {
  background: #edf2ec;
}

.container {
  width: min(100% - 48px, var(--max));
}

.section-head {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.section-head > p,
.archive-intro > p {
  max-width: 610px;
  justify-self: end;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* Home hero */

.hero-home {
  min-height: min(820px, calc(100dvh - 78px));
  background: #edf3ed;
}

.hero-home .hero-grid {
  min-height: min(820px, calc(100dvh - 78px));
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
}

.hero-home .hero-copy,
.hero-home .hero-grid > div:first-child {
  width: min(100%, 820px);
  padding: clamp(56px, 7vw, 112px) clamp(36px, 6vw, 104px);
}

.hero-home h1 {
  max-width: 670px;
  color: #12241d;
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: 0.94;
}

.hero-home .lead {
  max-width: 620px;
  color: #47584f;
  font-size: clamp(17px, 1.32vw, 21px);
}

.hero-home .hero-bullets {
  max-width: 680px;
  margin-top: 34px;
  color: #22372f;
  font-size: clamp(16px, 1.05vw, 19px);
}

.hero-home .hero-bullets li,
.hero-home .hero-bullets li + li {
  min-height: 92px;
  padding: 18px 22px;
  border-color: rgba(16, 65, 52, 0.16);
}

.hero-home .hero-bullets li:nth-child(odd) {
  padding-left: 0;
}

.hero-home .hero-bullets strong {
  color: #0c5a50;
}

.hero-home .hero-bullets .accent-money {
  color: #97641d;
}

.hero-home .hero-actions {
  margin-top: 32px;
}

.hero-home .hero-card {
  max-width: 680px;
  margin-top: 38px;
  padding-top: 20px;
  border-top-color: rgba(16, 65, 52, 0.22);
}

.hero-home .metric span {
  color: #617269;
  font-size: 10px;
}

.hero-home .metric strong,
.hero-home .metric:nth-child(2) strong,
.hero-home .metric:nth-child(3) strong {
  color: #123d34;
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 37px);
}

.hero-home .hero-video-panel {
  min-height: min(820px, calc(100dvh - 78px));
  background: #123b32;
}

.hero-home .hero-video {
  transition: transform 10s ease-out;
}

.hero-home .hero-video-panel:hover .hero-video {
  transform: scale(1.025);
}

.hero-home .hero-video-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(6, 31, 25, 0.12), transparent 25%),
    linear-gradient(180deg, transparent 62%, rgba(6, 25, 20, 0.42));
  content: "";
  pointer-events: none;
}

.hero-home .hero-video-panel::after {
  display: none;
}

.hero-home .hero-video-label {
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(26px, 3vw, 48px);
  z-index: 2;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 253, 248, 0.58);
  color: #fffdf8;
  font-size: clamp(26px, 2.2vw, 42px);
}

/* Inner page hero */

.hero:not(.hero-home) {
  width: min(100% - 48px, var(--max));
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 112px);
}

.hero:not(.hero-home) .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
}

.hero:not(.hero-home) h1 {
  font-size: clamp(50px, 6.2vw, 86px);
}

.hero:not(.hero-home) .lead {
  margin-top: 26px;
  color: #44564d;
}

.hero:not(.hero-home) .hero-media {
  min-height: 510px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.hero:not(.hero-home) .hero-media img {
  transition: transform 700ms var(--ease-out);
}

.hero:not(.hero-home) .hero-media:hover img {
  transform: scale(1.025);
}

/* Trust strip */

.proof-section {
  padding: 0;
  background: #123c33;
  color: #f8f6ee;
}

.proof-grid {
  width: min(100% - 48px, var(--max));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.proof-grid article {
  min-height: 210px;
  padding: 44px clamp(24px, 3.2vw, 52px);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid article > span {
  color: #d9b774;
  font-family: var(--font-display);
  font-size: 18px;
}

.proof-grid h3 {
  margin-top: 18px;
  color: #fffdf7;
  font-size: 28px;
}

.proof-grid p {
  max-width: 330px;
  color: rgba(255, 253, 247, 0.72);
  line-height: 1.6;
}

/* Layouts */

.layouts-section {
  position: relative;
  overflow: hidden;
  background: #f8f6ef !important;
}

.layouts-section::before {
  position: absolute;
  top: 0;
  right: -12vw;
  width: 42vw;
  height: 1px;
  background: var(--sand);
  content: "";
}

.layout-grid {
  gap: 24px;
}

.layout-card {
  padding: 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 6px;
  background: #fffefa;
  box-shadow: 0 18px 54px rgba(29, 57, 47, 0.07);
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.layout-card:hover,
.layout-card:focus-within {
  border-color: rgba(13, 100, 89, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.layout-card-image {
  width: calc(100% - 40px);
  margin: 20px 20px 28px;
  aspect-ratio: 1.78;
  border: 1px solid rgba(21, 54, 44, 0.12);
  border-radius: 4px;
  background: #f7f8f5;
  object-fit: contain;
  transition: transform 420ms var(--ease-out);
}

.layout-card:hover .layout-card-image {
  transform: scale(1.018);
}

.layout-card > span,
.layout-card > h3,
.layout-card > p,
.layout-card > a {
  margin-right: 30px;
  margin-left: 30px;
}

.layout-card > span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layout-card > h3 {
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 44px);
}

.layout-card > p {
  max-width: 570px;
  color: var(--muted);
}

/* Photo ribbon */

.photo-strip-section {
  padding: 28px 0;
  background: #dfe9e1;
}

.photo-strip {
  width: min(100% - 48px, 1440px);
  gap: 12px;
}

.photo-tile {
  min-height: 290px;
  border-radius: 4px;
  box-shadow: none;
}

.photo-tile img {
  filter: saturate(0.9);
  transition: transform 650ms var(--ease-out), filter 300ms ease;
}

.photo-tile:hover img {
  filter: saturate(1.06);
  transform: scale(1.055);
}

.photo-tile figcaption {
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Resort story */

.resort-story {
  background: #eef3ed;
}

.archive-intro {
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.archive-grid {
  gap: 18px;
}

.archive-card,
.archive-note {
  overflow: hidden;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 14px 40px rgba(25, 54, 44, 0.07);
}

.archive-card {
  cursor: pointer;
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.archive-card:hover,
.archive-card:focus-visible,
.archive-card[data-open] {
  border-color: rgba(13, 100, 89, 0.36);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.archive-card img {
  height: 250px;
  filter: saturate(0.92);
  transition: transform 520ms var(--ease-out), filter 280ms ease;
}

.archive-card-wide img {
  height: 360px;
}

.archive-card:hover img,
.archive-card:focus-visible img,
.archive-card[data-open] img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.archive-card > div,
.archive-note {
  padding: 26px 28px 30px;
}

.archive-card div > span,
.archive-note > span {
  display: block;
  margin-bottom: 9px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-card h3 {
  display: block;
  font-size: clamp(25px, 2.2vw, 34px);
}

.archive-card h3::after {
  display: none;
  content: none;
}

.archive-card p {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  opacity: 0;
  transition:
    max-height 440ms var(--ease-out),
    margin-top 300ms ease,
    opacity 260ms ease;
}

.archive-card[data-open] p {
  max-height: 240px;
  margin-top: 14px;
  opacity: 1;
}

.archive-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #173d34;
}

.archive-note h3,
.archive-note p,
.archive-note .text-link {
  color: #fffdf7;
}

.archive-note p {
  color: rgba(255, 253, 247, 0.72);
}

/* Interiors */

.room-experience {
  background: #f8f5ed !important;
}

.interior-grid {
  gap: 18px;
}

.interior-card {
  overflow: hidden;
  border-radius: 5px;
  background: #1b332b;
  box-shadow: var(--shadow-sm);
}

.interior-card img {
  transition: transform 650ms var(--ease-out);
}

.interior-card:hover img {
  transform: scale(1.04);
}

.interior-card figcaption {
  padding: 18px 20px;
  color: rgba(255, 253, 247, 0.84);
  font-size: 14px;
}

/* Investor */

.investor-section {
  padding: clamp(88px, 10vw, 142px) 0;
  background: #123c33;
}

.investor-panel {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 104px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.investor-copy {
  align-self: center;
}

.investor-copy .eyebrow {
  color: #d9b774;
}

.investor-copy h2,
.investor-copy p {
  color: #fffdf7;
}

.investor-copy p {
  color: rgba(255, 253, 247, 0.72);
  font-size: 18px;
}

.investor-copy .button {
  border-color: #d8b370;
  background: #d8b370;
  color: #17352d;
  box-shadow: none;
}

.investor-copy .button:hover {
  border-color: #efd39e;
  background: #efd39e;
}

.scenario-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.17);
}

.scenario-card {
  min-height: 235px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: #f8f5ed;
  transition: background-color 220ms ease;
}

.scenario-card:hover {
  background: #fffdf8;
}

.scenario-card > span {
  color: var(--sand);
}

.scenario-card p {
  color: var(--muted);
}

/* Purchase and territory */

.payment-section {
  background: #f4f0e7;
}

.terms-grid,
.plan-summary {
  gap: 18px;
}

.term-card,
.plan-summary article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: 0 12px 32px rgba(21, 54, 44, 0.05);
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.term-card:hover,
.plan-summary article:hover {
  border-color: rgba(13, 100, 89, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.term-card > span {
  margin-bottom: 34px;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 20px;
}

.plan-section {
  background: #e3ece5 !important;
}

.plan-summary article > span {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 28px;
}

/* Units */

#units {
  background: #f7f5ee !important;
}

.filters {
  margin-bottom: 28px;
}

.filter {
  min-height: 44px;
  padding: 10px 18px;
  border-color: rgba(21, 54, 44, 0.18);
  border-radius: 4px;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter:hover,
.filter:focus-visible,
.filter[data-active] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.unit-grid {
  gap: 14px;
}

.unit-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgba(21, 54, 44, 0.05);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.unit-card:hover {
  border-color: rgba(13, 100, 89, 0.36);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.unit-tag {
  color: var(--brand);
  letter-spacing: 0.11em;
}

.unit-details {
  border-top-color: rgba(21, 54, 44, 0.13);
}

.mini-action {
  min-height: 44px;
  color: var(--brand-strong);
  transition: color 180ms ease, transform 180ms ease;
}

.mini-action:hover {
  color: var(--sand);
  transform: translateX(3px);
}

/* Editorial content */

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.36fr);
  gap: clamp(48px, 8vw, 112px);
}

.article {
  display: block;
}

.article-section {
  padding: 0 0 48px;
  border: 0;
  border-bottom: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 0;
  background: transparent;
}

.article-section + .article-section {
  margin-top: 48px;
}

.article-section h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.article-section p,
.article-section li {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.sidebar {
  gap: 16px;
}

.source-panel,
.info-card {
  padding: 26px;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: none;
}

.source-panel {
  background: #dcebe5;
}

.link-list a {
  min-height: 50px;
}

/* Infrastructure cards */

.card-grid {
  gap: 18px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.visual-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.visual-card img {
  height: 280px;
  transform: none;
  transition: transform 600ms var(--ease-out);
}

.visual-card:hover img {
  transform: scale(1.04);
}

.visual-card > div {
  padding: 24px;
}

/* FAQ */

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 54, 44, 0.2);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid rgba(21, 54, 44, 0.2);
  border-radius: 0;
  background: transparent;
}

.faq-list summary {
  min-height: 78px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
}

.faq-list summary::after {
  color: var(--sand);
  transition: transform 240ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 44px 26px 4px;
  color: var(--muted);
  animation: faq-in 260ms var(--ease-out);
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Related pages */

.related-section {
  background: #e7eee7;
}

.related-grid {
  gap: 14px;
}

.related-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(21, 54, 44, 0.14);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: none;
  transition:
    transform 260ms var(--ease-out),
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  background: #fffdf8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.related-card > span {
  color: var(--brand);
}

.related-card > strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
}

.related-card > small {
  color: var(--muted);
}

/* Lead form */

.lead-section {
  padding: clamp(90px, 10vw, 148px) 0;
  background: #0d332b;
}

.lead-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: clamp(44px, 8vw, 112px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lead-copy {
  align-self: center;
}

.lead-copy .eyebrow {
  color: #d8b370;
}

.lead-copy h2,
.lead-copy p,
.lead-copy li {
  color: #fffdf7;
}

.lead-copy > p {
  color: rgba(255, 253, 247, 0.72);
  font-size: 18px;
}

.check-list li::before {
  background: #d8b370;
}

.lead-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.field span {
  color: #32483f;
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea {
  min-height: 50px;
  border-color: rgba(21, 54, 44, 0.18);
  border-radius: 4px;
  background: #f5f7f3;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 100, 89, 0.12);
}

.form-note {
  color: #68776f;
}

.form-status {
  border-radius: 4px;
  background: #dcebe5;
  color: #173d34;
}

/* Footer */

.footer {
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #082720;
  color: rgba(255, 253, 247, 0.72);
}

.footer strong {
  color: #fffdf7;
  font-family: var(--font-display);
  font-size: 27px;
}

.footer a {
  min-height: 40px;
  color: #fffdf7;
}

/* Neutralize legacy container reveals; v2 animates their children. */
.motion-ready .hero,
.motion-ready .plan-summary,
.motion-ready .lead-panel {
  opacity: 1;
  transform: none;
  transition: none;
}
/* Motion */

.motion-ready .hero-copy,
.motion-ready .hero-video-panel,
.motion-ready .section-head,
.motion-ready .photo-tile,
.motion-ready .proof-grid article,
.motion-ready .article-section,
.motion-ready .unit-card,
.motion-ready .visual-card,
.motion-ready .archive-card,
.motion-ready .archive-note,
.motion-ready .term-card,
.motion-ready .investor-copy,
.motion-ready .scenario-card,
.motion-ready .layout-card,
.motion-ready .plan-summary article,
.motion-ready .lead-copy,
.motion-ready .lead-form,
.motion-ready .related-card,
.motion-ready .interior-card {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
  will-change: opacity, transform;
}

.motion-ready [data-visible] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.motion-ready .hero-video-panel {
  transform: translate3d(20px, 0, 0);
}

.motion-ready .hero-video-panel[data-visible] {
  transform: translate3d(0, 0, 0);
}

/* Responsive */

@media (max-width: 1180px) {
  .topbar-inner,
  .container,
  .proof-grid,
  .photo-strip {
    width: min(100% - 36px, var(--max));
  }

  .nav {
    gap: 11px;
    font-size: 12px;
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    padding-right: 52px;
    padding-left: 52px;
  }

  .hero-home .hero-bullets {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-bullets li:nth-child(odd) {
    padding-left: 20px;
    border-right: 0;
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(21, 54, 44, 0.14);
    border-radius: 5px;
    background: #fffdf8;
    box-shadow: var(--shadow-md);
    font-size: 15px;
  }

  .nav[data-open] {
    display: grid;
    animation: nav-in 220ms var(--ease-out);
  }

  .nav > a:not(.button) {
    min-height: 48px;
    padding: 0 12px;
  }

  .nav > a:not(.button)::after {
    display: none;
  }

  @keyframes nav-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero:not(.hero-home) .hero-grid,
  .section-head,
  .archive-intro,
  .investor-panel,
  .content-grid,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .section-head > p,
  .archive-intro > p {
    justify-self: start;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: 70px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand span {
    font-size: 9px;
  }

  .hero-home .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-home .hero-video-panel {
    order: 1;
    height: min(56svh, 470px);
    min-height: 350px;
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    order: 2;
    padding: 48px 24px 58px;
  }

  .hero-home h1 {
    font-size: clamp(46px, 13.2vw, 68px);
  }

  .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: auto;
    padding: 16px 0;
  }

  .hero-home .hero-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-home .metric,
  .hero-home .metric + .metric {
    padding: 0 10px 0 0;
    border-left: 0;
  }

  .hero-home .metric strong,
  .hero-home .metric:nth-child(2) strong,
  .hero-home .metric:nth-child(3) strong {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .hero:not(.hero-home) {
    width: min(100% - 32px, var(--max));
  }

  .hero:not(.hero-home) .hero-media {
    min-height: 400px;
  }

  .container,
  .proof-grid,
  .photo-strip,
  .topbar-inner {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .layout-grid,
  .terms-grid,
  .plan-summary,
  .unit-grid,
  .card-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card-wide,
  .archive-note {
    grid-column: auto;
  }

  .archive-card img,
  .archive-card-wide img {
    height: 260px;
  }

  .photo-strip {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    overflow: visible;
  }

  .photo-tile,
  .photo-tile-large {
    min-width: 0;
    min-height: 220px;
  }

  .photo-tile-large {
    grid-column: 1 / -1;
  }

  .interior-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interior-card-large {
    grid-column: 1 / -1;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .hero-home .hero-video-panel {
    height: 46svh;
    min-height: 300px;
  }

  .hero-home .lead {
    font-size: 16px;
  }

  .hero-home .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .hero-home .text-link {
    justify-content: flex-start;
  }

  .hero-home .hero-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-home .metric,
  .hero-home .metric + .metric {
    padding: 0;
  }

  .hero-home .metric span {
    margin-bottom: 4px;
  }

  .section-head > p,
  .archive-intro > p,
  .article-section p,
  .article-section li,
  .investor-copy p,
  .lead-copy > p {
    font-size: 16px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-tile-large {
    grid-column: auto;
    min-height: 250px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
  }

  .interior-card-large {
    grid-column: auto;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-visible],
  .motion-ready .hero-copy,
  .motion-ready .hero-video-panel,
  .motion-ready .section-head,
  .motion-ready .photo-tile,
  .motion-ready .proof-grid article,
  .motion-ready .article-section,
  .motion-ready .unit-card,
  .motion-ready .visual-card,
  .motion-ready .archive-card,
  .motion-ready .archive-note,
  .motion-ready .term-card,
  .motion-ready .investor-copy,
  .motion-ready .scenario-card,
  .motion-ready .layout-card,
  .motion-ready .plan-summary article,
  .motion-ready .lead-copy,
  .motion-ready .lead-form,
  .motion-ready .related-card,
  .motion-ready .interior-card {
    opacity: 1;
    transform: none;
  }

  .hero-home .hero-video {
    display: block;
  }
}
/* Hero composition v3 */

.hero-home {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #edf3ed;
}

.hero-home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: clamp(56px, 8vw, 124px);
  align-items: center;
  width: min(calc(100% - 56px), 1360px);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(46px, 5.5vw, 78px) 0;
}

.hero-home .hero-copy,
.hero-home .hero-grid > div:first-child {
  width: auto;
  max-width: 760px;
  margin: 0;
  padding: 0;
}

.hero-home .eyebrow {
  margin-bottom: 26px;
  color: #0d6459;
}

.hero-home h1 {
  max-width: 720px;
  color: #12241d;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 0.98;
  text-transform: none;
  overflow-wrap: normal;
}

.hero-home .lead {
  max-width: 650px;
  margin-top: 26px;
  color: #4d5e56;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.hero-home .hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  max-width: 690px;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(18, 65, 53, 0.18);
  border-bottom: 1px solid rgba(18, 65, 53, 0.18);
  color: #263b33;
  font-size: 16px;
  line-height: 1.46;
}

.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: 82px;
  padding: 18px 0 18px 18px;
  border: 0;
  text-shadow: none;
}

.hero-home .hero-bullets li:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(18, 65, 53, 0.14);
}

.hero-home .hero-bullets li::before {
  top: 1.62em;
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #bd8737;
}

.hero-home .hero-bullets strong {
  color: #0d5d52;
  font-weight: 800;
}

.hero-home .hero-bullets .accent-money {
  color: #97641d;
}

.hero-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.hero-home .hero-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 690px;
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #153f34;
  box-shadow: 0 18px 50px rgba(20, 53, 44, 0.13);
}

.hero-home .metric,
.hero-home .metric + .metric {
  min-width: 0;
  min-height: 94px;
  padding: 18px 20px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
}

.hero-home .metric:first-child {
  border-left: 0;
}

.hero-home .metric strong,
.hero-home .metric:nth-child(2) strong,
.hero-home .metric:nth-child(3) strong {
  display: block;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(23px, 1.7vw, 30px);
  line-height: 1.05;
  text-shadow: none;
}

.hero-home .metric:nth-child(3) strong {
  color: #e5c27f;
}

.hero-home .metric span {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-video-stage {
  position: relative;
  width: min(100%, 360px);
  min-width: 0;
  justify-self: end;
}

.hero-video-stage::before {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 0;
  width: 56%;
  height: 58%;
  background: #d7b675;
  content: "";
}

.hero-home .hero-video-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(18, 51, 42, 0.15);
  border-radius: 6px;
  background: #14372e;
  box-shadow: 0 30px 80px rgba(19, 49, 41, 0.24);
}

.hero-home .hero-video-panel::before {
  z-index: 2;
  border: 0;
  background: linear-gradient(180deg, rgba(8, 27, 22, 0.02), rgba(8, 27, 22, 0.14));
}

.hero-home .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-home .hero-video-panel:hover .hero-video {
  transform: scale(1.015);
}

.hero-video-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 65, 53, 0.22);
}

.hero-video-caption span {
  color: #9b6b25;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-video-caption strong {
  color: #1f342c;
  font-size: 15px;
  line-height: 1.4;
}

/* Repair territory and related-page grids. */

.plan-section {
  min-height: 0;
}

.plan-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.motion-ready .plan-summary article {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.motion-ready .plan-summary article:hover {
  transform: translateY(-4px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.related-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

.related-card > span,
.related-card > strong,
.related-card > small {
  display: block;
  min-width: 0;
}

.related-card > small {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.55;
}

.motion-ready .related-card {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.motion-ready .related-card:hover,
.motion-ready .related-card:focus-visible {
  transform: translateY(-5px);
}

@media (max-width: 1180px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 54px;
    min-height: 680px;
  }

  .hero-home h1 {
    font-size: clamp(52px, 5.8vw, 66px);
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 38px;
  }

  .hero-home .hero-bullets {
    grid-template-columns: 1fr;
  }

  .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: 14px 0 14px 18px;
    border-bottom: 1px solid rgba(18, 65, 53, 0.14);
  }

  .hero-home .hero-bullets li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .hero-home .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(calc(100% - 40px), 680px);
    min-height: 0;
    padding: 46px 0 64px;
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    order: 1;
    width: auto;
    padding: 0;
  }

  .hero-home h1 {
    font-size: clamp(44px, 11.5vw, 60px);
  }

  .hero-home .hero-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .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: 76px;
    padding: 15px 0 15px 18px;
  }

  .hero-home .hero-bullets li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 65, 53, 0.14);
  }

  .hero-home .hero-bullets li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-video-stage {
    order: 2;
    width: min(100%, 430px);
    justify-self: center;
  }

  .hero-home .hero-video-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-home .hero-video {
    object-position: center 42%;
  }

  .plan-summary,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-home .hero-grid {
    width: min(calc(100% - 32px), 520px);
    padding-top: 36px;
  }

  .hero-home .eyebrow {
    margin-bottom: 20px;
  }

  .hero-home h1 {
    font-size: clamp(42px, 12.4vw, 54px);
  }

  .hero-home .hero-bullets {
    grid-template-columns: 1fr;
  }

  .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),
  .hero-home .hero-bullets li:nth-child(n + 3) {
    min-height: 0;
    padding: 14px 0 14px 18px;
    border-bottom: 1px solid rgba(18, 65, 53, 0.14);
  }

  .hero-home .hero-bullets li:last-child {
    border-bottom: 0;
  }

  .hero-home .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-home .hero-actions .button {
    width: 100%;
  }

  .hero-home .hero-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-home .metric,
  .hero-home .metric + .metric {
    min-height: 86px;
    padding: 15px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-home .metric:first-child {
    border-left: 0;
  }

  .hero-home .metric strong,
  .hero-home .metric:nth-child(2) strong,
  .hero-home .metric:nth-child(3) strong {
    font-size: clamp(18px, 5.8vw, 24px);
  }

  .hero-home .metric span {
    font-size: 8px;
  }

  .hero-home .hero-video-panel {
    aspect-ratio: 4 / 5;
  }

  .hero-video-stage::before {
    top: -12px;
    right: -12px;
  }
}
/* Hero benefits v4 */

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 28px;
}

.hero-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 92px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 65, 53, 0.12);
  border-radius: 4px;
  background: #f8faf6;
  box-shadow: 0 10px 28px rgba(20, 53, 44, 0.045);
  transition:
    transform 240ms var(--ease-out),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.hero-benefit::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #c79443;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.hero-benefit:hover {
  border-color: rgba(13, 100, 89, 0.28);
  box-shadow: 0 16px 36px rgba(20, 53, 44, 0.09);
  transform: translateY(-3px);
}

.hero-benefit:hover::after {
  transform: scaleX(1);
}

.hero-benefit > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(183, 126, 47, 0.36);
  color: #9a6824;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
}

.hero-benefit strong {
  display: block;
  color: #17362d;
  font-size: 17px;
  line-height: 1.24;
}

.hero-benefit p {
  margin: 6px 0 0;
  color: #617168;
  font-size: 13px;
  line-height: 1.42;
}

.hero-benefit:nth-child(3) {
  border-color: #153f34;
  background: #153f34;
  box-shadow: 0 16px 36px rgba(20, 53, 44, 0.16);
}

.hero-benefit:nth-child(3) > span {
  border-color: rgba(229, 194, 127, 0.5);
  color: #e5c27f;
}

.hero-benefit:nth-child(3) strong {
  color: #fffaf0;
}

.hero-benefit:nth-child(3) p {
  color: rgba(255, 250, 240, 0.68);
}

.hero-disclosure {
  max-width: 690px;
  margin: 14px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(183, 126, 47, 0.62);
  color: #52665d;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 940px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefit {
    min-height: 82px;
  }
}

@media (max-width: 820px) {
  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefit {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-benefit,
  .hero-benefit::after {
    transition: none;
  }
}
/* Footer links fix */

.footer-grid > nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px 28px;
  padding-top: 6px;
}

.footer-grid > nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0 3px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.28);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-grid > nav a:hover,
.footer-grid > nav a:focus-visible {
  border-color: #d8b370;
  color: #f0cf91;
}

@media (max-width: 560px) {
  .footer-grid > nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
/* Mobile hero video placement v5 */
@media (max-width: 820px) {
  .hero-home .hero-grid {
    gap: 32px;
    padding-top: 24px;
  }

  .hero-video-stage {
    order: 1;
    width: min(78vw, 300px);
    margin-right: 0;
    justify-self: end;
  }

  .hero-home .hero-copy,
  .hero-home .hero-grid > div:first-child {
    order: 2;
  }

  .motion-ready .hero-home .hero-video-panel,
  .motion-ready .hero-home .hero-video-panel[data-visible] {
    transform: none;
  }

  .hero-video-caption {
    margin-top: 12px;
    padding-top: 12px;
  }
}

@media (max-width: 560px) {
  .hero-video-stage {
    width: min(82vw, 300px);
  }

  .hero-video-stage::before {
    right: -8px;
  }
}

/* Site identity and trust */
.trust-section {
  padding: 0;
  border-top: 1px solid rgba(219, 187, 124, 0.22);
  border-bottom: 1px solid rgba(219, 187, 124, 0.22);
  background: #123b31;
  color: #fffdf8;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.trust-copy h2,
.site-info-heading h2,
.document-check-layout h2 {
  max-width: 700px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
}

.trust-copy h2 {
  color: #fffdf8;
}

.trust-copy .eyebrow {
  color: #e1be78;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
}

.trust-copy .text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #f0cf8c;
}

.trust-facts,
.site-identity-list {
  margin: 0;
}

.trust-facts > div,
.site-identity-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.trust-facts > div:last-child {
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.trust-facts dt,
.site-identity-list dt {
  color: #d9b878;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-facts dd,
.site-identity-list dd {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.trust-facts a {
  color: #fffdf8;
  text-decoration-color: rgba(240, 207, 140, 0.52);
}

.site-info-section {
  background: #edf4ef;
}

.site-info-layout,
.document-check-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.site-info-heading {
  position: sticky;
  top: 112px;
}

.site-info-heading > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.site-identity-list > div {
  border-color: rgba(18, 65, 53, 0.16);
}

.site-identity-list > div:last-child {
  border-bottom: 1px solid rgba(18, 65, 53, 0.16);
}

.site-identity-list dd {
  color: #17362d;
}

.site-info-note {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 2px solid #c79443;
  color: var(--muted);
}

.site-info-profiles {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.document-check-layout {
  align-items: start;
}

.document-check-links {
  display: grid;
}

.document-check-links a {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(18, 65, 53, 0.16);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.document-check-links a:last-child {
  border-bottom: 1px solid rgba(18, 65, 53, 0.16);
}

.document-check-links a:hover,
.document-check-links a:focus-visible {
  color: var(--brand);
  transform: translateX(5px);
}

.document-check-links span {
  color: var(--muted);
}

.footer-disclosure {
  max-width: 620px;
  color: rgba(237, 244, 239, 0.58);
  font-size: 13px;
}

@media (max-width: 920px) {
  .trust-layout,
  .site-info-layout,
  .document-check-layout {
    grid-template-columns: 1fr;
  }

  .site-info-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .trust-layout {
    gap: 34px;
  }

  .trust-copy h2,
  .site-info-heading h2,
  .document-check-layout h2 {
    font-size: 38px;
  }

  .trust-facts > div,
  .site-identity-list > div,
  .document-check-links a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .document-check-links a {
    transition: none;
  }
}
/* Lead modal and production CTA */
body[data-modal-open] {
  overflow: hidden;
}

.hero-plan-button {
  border-color: rgba(13, 100, 89, 0.34);
  background: transparent;
  color: var(--brand-strong);
  box-shadow: none;
}

.hero-plan-button:hover,
.hero-plan-button:focus-visible {
  border-color: var(--brand);
  background: rgba(13, 100, 89, 0.08);
  box-shadow: none;
}

.lead-modal {
  width: min(940px, calc(100vw - 32px));
  max-width: none;
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(7, 35, 29, 0.34);
}

.lead-modal::backdrop {
  background: rgba(7, 28, 23, 0.72);
  backdrop-filter: blur(6px);
}

.lead-modal[open] {
  animation: lead-modal-in 220ms var(--ease-out);
}

.lead-modal-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 570px;
}

.lead-modal-copy {
  padding: clamp(34px, 5vw, 64px);
  background: #123b31;
  color: #fffdf8;
}

.lead-modal-copy .eyebrow {
  color: #e0bd78;
}

.lead-modal-copy h2 {
  max-width: 460px;
  margin: 18px 0;
  color: #fffdf8;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.lead-modal-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
  font-size: 17px;
  line-height: 1.6;
}

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

.lead-modal-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 248, 0.88);
}

.lead-modal-points li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 10px;
  height: 2px;
  background: #d9b878;
  content: "";
}

.lead-modal-form {
  align-content: center;
  padding: clamp(34px, 5vw, 58px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18, 59, 49, 0.16);
  border-radius: 50%;
  background: #fffdf8;
  color: #123b31;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.lead-modal-close:hover,
.lead-modal-close:focus-visible {
  background: #edf4ef;
  transform: rotate(6deg);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #637269;
  font-size: 12px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--brand);
}

.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status[data-state="loading"] {
  color: #52665d;
}

.form-status[data-state="success"] {
  color: #0d6459;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9b382d;
  font-weight: 700;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.mobile-cta {
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(7, 63, 57, 0.28);
}

body[data-modal-open] .mobile-cta {
  opacity: 0;
  pointer-events: none;
}

@keyframes lead-modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .lead-modal {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .lead-modal-layout {
    grid-template-columns: 1fr;
  }

  .lead-modal-copy {
    padding: 34px 24px 28px;
  }

  .lead-modal-copy h2 {
    max-width: calc(100% - 36px);
    font-size: 38px;
  }

  .lead-modal-points {
    display: none;
  }

  .lead-modal-form {
    padding: 28px 24px 32px;
  }

  .lead-modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal[open] {
    animation: none;
  }

  .lead-modal-close {
    transition: none;
  }
}
/* Direct phone contact */
.header-phone {
  white-space: nowrap;
  color: var(--brand-strong) !important;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.header-phone::after {
  background: #c79443 !important;
}

.lead-modal-phone {
  display: inline-flex;
  margin-top: 14px;
  color: #f0cf8c;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-decoration: none;
}

.lead-modal-phone:hover,
.lead-modal-phone:focus-visible {
  color: #fff2d2;
}

.footer-phone {
  color: #f0cf8c !important;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

@media (max-width: 1180px) and (min-width: 921px) {
  .header-phone {
    display: none !important;
  }
}
