:root {
  color: #20231f;
  background: #f4efe6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  --ink: #20231f;
  --muted: #64665f;
  --paper: #fbf8f1;
  --mist: #e8eee8;
  --line: rgba(42, 49, 42, 0.14);
  --forest: #173f3b;
  --ocean: #5f8f87;
  --gold: #a87635;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #f4efe6;
  color: var(--ink);
  overflow-x: hidden;
}

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

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

code {
  border-radius: 6px;
  background: #efe4d4;
  padding: 0.1rem 0.35rem;
  font-size: 0.9em;
}

nav {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 4rem;
  color: #fff;
}

nav a:not(.brand) {
  font-size: 0.86rem;
  opacity: 0.92;
}

.brand {
  margin-right: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.55rem 0.85rem;
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  background: #142724;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.72), rgba(7, 16, 15, 0.34) 58%, rgba(7, 16, 15, 0.16)),
    linear-gradient(0deg, rgba(7, 16, 15, 0.76), rgba(7, 16, 15, 0.08) 46%);
  content: "";
}

.hero-media,
.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-controls {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(1120px, 100%);
  padding: 8rem 4rem 5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e4c58f;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7ead7;
  padding: 0.48rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

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

h1 {
  max-width: 820px;
  font-size: 4.8rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 3.55rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}

p {
  margin: 0;
}

h1,
h2,
h3,
p,
strong,
span,
figcaption,
label,
a,
button {
  overflow-wrap: break-word;
}

.lead {
  max-width: 760px;
  margin-top: 1.1rem;
  color: #f3eadc;
  font-size: 1.18rem;
}

.hero-price-line {
  max-width: 760px;
  margin-top: 0.85rem;
  color: #fff6e6;
  font-size: 1rem;
  font-weight: 900;
}

.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  padding: 0.9rem 1.15rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(23, 63, 59, 0.2);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.call-button {
  background: var(--gold);
  color: #1f211d;
}

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

.strategic-hero-button {
  background: rgba(95, 143, 135, 0.92);
}

.hero-contact-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-contact-signal a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7ead7;
  padding: 0.46rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.market-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.market-summary-strip article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.13);
  padding: 0.9rem;
  backdrop-filter: blur(12px);
}

.market-summary-strip span,
.market-summary-strip small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-summary-strip strong {
  display: block;
  margin: 0.18rem 0;
  color: #fff6e6;
  font-size: 1rem;
  line-height: 1.25;
}

.market-snapshot {
  margin-top: 2rem;
}

.market-snapshot .section-heading {
  max-width: 900px;
}

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

.snapshot-card {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.96);
  padding: 1rem;
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.08);
}

a.snapshot-card {
  transition: transform 160ms ease, border-color 160ms ease;
}

a.snapshot-card:hover {
  border-color: rgba(95, 143, 135, 0.45);
  transform: translateY(-2px);
}

.snapshot-card span,
.snapshot-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.snapshot-card strong {
  display: block;
  margin: 0.3rem 0;
  color: var(--forest);
  font-size: 1.2rem;
  line-height: 1.1;
}

.snapshot-disclaimer {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(168, 118, 53, 0.22);
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

main {
  padding: 0;
}

section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5.5rem;
}

.section-menu {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.96);
  padding: 0.75rem;
  box-shadow: 0 12px 32px rgba(74, 57, 35, 0.08);
  backdrop-filter: blur(12px);
}

.section-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(23, 63, 59, 0.18);
  border-radius: 999px;
  color: var(--forest);
  padding: 0.62rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.section-menu .nav-pill {
  background: rgba(23, 63, 59, 0.08);
  backdrop-filter: none;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.fact,
.card,
form,
.gallery-item,
.fit-grid article,
.acquisition-card-grid article,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.08);
}

.fact {
  min-width: 0;
  padding: 1.15rem;
}

.fact strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.22;
}

.fact span,
.note,
.field-help {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.split p:last-child,
.income p,
.disclosure p {
  margin-top: 1rem;
  color: #4e524b;
  font-size: 1.1rem;
}

.feature-photo {
  margin: 0;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.1);
}

.feature-photo figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.card {
  min-height: 128px;
  padding: 1.25rem;
}

.card-grid .card > span {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 99px;
  background: var(--ocean);
}

.card-grid .card > p {
  font-weight: 700;
}

.income,
.income-acquisition,
.income-paths,
.residences-intro,
.buyer-fit,
.disclosure {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}

.offer-value-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 1rem;
  align-items: stretch;
  border: 1px solid rgba(168, 118, 53, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(244, 239, 230, 0.82)),
    var(--paper);
  padding: 1.5rem;
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.08);
}

.offer-value-copy p:not(.eyebrow),
.value-reference-panel > p,
.income-acquisition > p:not(.eyebrow),
.income-paths > p:not(.eyebrow),
.contact-offer .section-heading p {
  margin-top: 0.9rem;
  color: #454943;
  font-size: 1.05rem;
}

.value-highlight {
  display: grid;
  align-items: center;
  border: 1px solid rgba(168, 118, 53, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.2rem;
}

.value-highlight strong {
  color: var(--forest);
  font-size: 1.08rem;
  line-height: 1.45;
}

.value-reference-panel {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.value-card {
  min-height: 128px;
  padding: 1rem;
}

.value-card span,
.value-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.value-card strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--forest);
  font-size: 1.55rem;
  line-height: 1.15;
}

.value-reference-panel > p {
  border-top: 1px solid rgba(168, 118, 53, 0.22);
  padding-top: 0.9rem;
  font-size: 0.9rem;
}

.section-heading,
.gallery-section .section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.residence-section {
  --section-accent: var(--ocean);
  padding-top: 0.35rem;
}

.main-house {
  --section-accent: #b8a9d6;
}

.three-bedroom-unit {
  --section-accent: #b8d2a5;
}

.two-bedroom-unit {
  --section-accent: #a9bbdc;
}

.two-bedroom-penthouse {
  --section-accent: #dfb89d;
}

.one-bedroom-unit {
  --section-accent: #dfc570;
}

.residence-heading {
  max-width: none;
  border-top: 5px solid var(--section-accent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-accent) 32%, transparent), transparent);
  padding: 1.2rem 0 0;
}

.residence-heading p:last-child,
.residences-intro .section-heading p:last-child {
  margin-top: 0.8rem;
  color: #4e524b;
  font-size: 1.05rem;
}

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

.gallery-item {
  appearance: none;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item span {
  display: block;
  min-height: 52px;
  padding: 0.72rem;
  color: #555a53;
  font-size: 0.84rem;
  line-height: 1.25;
}

.residence-gallery .gallery-item:first-child {
  grid-column: span 2;
}

.residence-gallery .gallery-item:first-child img {
  aspect-ratio: 8 / 5;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.fit-grid article {
  padding: 1.15rem;
}

.fit-grid article p {
  margin-top: 0.7rem;
  color: #4e524b;
}

.income-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.income-card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.96);
  padding: 1.15rem;
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.08);
}

.income-card-grid h3 {
  color: var(--forest);
  font-size: 1.25rem;
}

.income-card-grid p {
  margin-top: 0.7rem;
  color: #4e524b;
}

.acquisition-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.acquisition-card-grid article {
  padding: 1.15rem;
}

.acquisition-card-grid article h3 {
  color: var(--forest);
  font-size: 1.25rem;
}

.acquisition-card-grid article p {
  margin-top: 0.7rem;
  color: #4e524b;
}

.acquisition-note {
  font-weight: 800;
}

.strategic-section {
  border: 1px solid rgba(23, 63, 59, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(232, 238, 232, 0.72)),
    var(--paper);
  padding: 2rem;
  box-shadow: 0 18px 56px rgba(74, 57, 35, 0.08);
}

.strategic-copy {
  max-width: 1040px;
}

.strategic-copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: #444942;
  font-size: 1.05rem;
}

.strategic-copy h3 {
  margin-top: 1.45rem;
  color: var(--forest);
}

.strategic-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.strategic-terms li {
  border: 1px solid rgba(23, 63, 59, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.72rem 0.85rem;
  color: #36433e;
  font-weight: 800;
}

.strategic-button {
  margin-top: 1.35rem;
}

.pathway {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.pathway-step {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(23, 63, 59, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--forest);
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 900;
}

.pathway-arrow {
  color: var(--gold);
  font-weight: 900;
}

.pathway-note {
  font-size: 0.9rem;
}

.strategic-coordination {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(23, 63, 59, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.52rem 0.78rem;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.strategic-disclosure {
  border-top: 1px solid rgba(23, 63, 59, 0.16);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-offer {
  scroll-margin-top: 5rem;
}

.two-contact-section {
  scroll-margin-top: 5rem;
}

.contact-card {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
  border: 1px solid rgba(23, 63, 59, 0.14);
  border-radius: 8px;
  background: rgba(23, 63, 59, 0.06);
  padding: 1rem;
}

.contact-card h3 {
  color: var(--forest);
  font-size: 1.35rem;
}

.contact-card p:not(.eyebrow):not(.contact-disclosure) {
  color: #4e524b;
}

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

.strategic-contact-card {
  background: rgba(168, 118, 53, 0.08);
}

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

.contact-disclosure {
  border-top: 1px solid rgba(168, 118, 53, 0.2);
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.strategic-package-button {
  background: var(--forest);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-card {
  padding: 1.7rem;
  scroll-margin-top: 5rem;
}

.lead-form-section {
  scroll-margin-top: 5rem;
}

.lead-form-section .form-card {
  max-width: 900px;
}

.form-subtitle,
.form-route {
  margin-top: 0.6rem;
  color: #4e524b;
  font-size: 0.94rem;
}

.form-route {
  color: var(--forest);
  font-weight: 900;
}

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

.strategic-form-card {
  border-color: rgba(168, 118, 53, 0.28);
}

.form-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

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

label {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.field-help {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(32, 35, 31, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.85rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.hidden {
  display: none;
}

.accent-card input,
.accent-card select,
.accent-card textarea {
  border-color: rgba(255, 255, 255, 0.24);
}

form button {
  margin-top: 1rem;
  background: var(--ocean);
}

form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status[data-status="success"] {
  color: #2d6b4f;
}

.form-status[data-status="error"] {
  color: #9f3f32;
}

.form-status[data-status="pending"] {
  color: #5c685f;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  background: #17211f;
  color: #f8f3ea;
  padding: 2rem 4rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
  place-items: center;
  background: rgba(10, 13, 12, 0.9);
  color: #fff;
  padding: 1rem;
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  border-radius: 8px;
}

.lightbox p {
  margin-top: 0.8rem;
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  nav,
  .hero-copy,
  footer {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    padding-top: 7rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .facts,
  .market-summary-strip,
  .snapshot-grid,
  .card-grid,
  .gallery,
  .residence-gallery,
  .fit-grid,
  .income-card-grid,
  .acquisition-card-grid,
  .offer-value-section,
  .contact-grid,
  .form-paths,
  .split {
    grid-template-columns: 1fr;
  }

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

  .hero-slide-controls {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 560px) {
  nav {
    gap: 0.65rem;
    overflow: hidden;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  nav a:not(.brand) {
    display: none;
  }

  .brand {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 16, 15, 0.3), rgba(7, 16, 15, 0.88)),
      linear-gradient(90deg, rgba(7, 16, 15, 0.58), rgba(7, 16, 15, 0.18));
  }

  .hero-copy {
    width: min(100%, 390px);
    max-width: 100%;
    padding-top: 6.5rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    max-width: 21rem;
    font-size: 1.75rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead,
  .hero-price-line {
    max-width: 21rem;
  }

  .lead,
  .hero-price-line,
  .split p:last-child,
  .income p,
  .income-paths > p:not(.eyebrow),
  .income-acquisition > p:not(.eyebrow),
  .offer-value-copy p:not(.eyebrow),
  .value-reference-panel > p,
  .strategic-copy p:not(.eyebrow),
  .disclosure p {
    font-size: 1rem;
  }

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

  .hero-contact-signal a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-menu {
    position: static;
    display: grid;
    margin-top: 0.75rem;
  }

  .section-menu a {
    justify-content: center;
    text-align: center;
  }

  .contact-card .button,
  .contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-contact {
    display: grid;
    gap: 0.45rem;
  }

  section {
    width: min(100% - 1.5rem, 1180px);
    margin-bottom: 4rem;
  }

  .strategic-section {
    padding: 1.25rem;
  }

  .market-summary-strip article,
  .snapshot-card,
  .offer-value-section,
  .contact-card,
  .form-card {
    padding: 1rem;
  }

  .pathway {
    display: grid;
  }

  .strategic-terms {
    grid-template-columns: 1fr;
  }

  .pathway-arrow {
    display: none;
  }

  .gallery,
  .residence-gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .residence-gallery .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item span {
    min-height: auto;
  }
}
