:root {
  --bg: #f5f1e9;
  --bg-alt: #fcf9f3;
  --bg-deep: #173747;
  --surface: rgba(255, 252, 246, 0.9);
  --surface-solid: #fffaf2;
  --text: #172832;
  --muted: #68747a;
  --brand: #2b6674;
  --brand-strong: #0f3442;
  --accent: #bd8746;
  --accent-soft: #e6cfad;
  --sage: #758f86;
  --sea-soft: #e8eee7;
  --line: rgba(23, 40, 50, 0.09);
  --line-warm: rgba(189, 135, 70, 0.2);
  --shadow: 0 20px 52px rgba(23, 40, 50, 0.08);
  --shadow-deep: 0 28px 72px rgba(18, 51, 65, 0.16);
  --radius-lg: 16px;
  --radius-md: 10px;
  --container: min(1140px, calc(100% - 2.5rem));
  --hero-glass-border: rgba(255, 255, 255, 0.18);
  --media-placeholder:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9) 0 12%, transparent 32%),
    linear-gradient(135deg, #e6f0ef 0%, #dbe8ec 48%, #f3eadc 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(245, 241, 233, 0.88) 42%, transparent 64%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 54%, #f0e7d8 100%);
  line-height: 1.65;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: #fff;
  color: var(--brand-strong);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.nav-wrap {
  min-height: 4.25rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.65rem, 1.6vw, 1.35rem);
  padding-block: 0.6rem;
}

.brand {
  color: var(--brand-strong);
  text-decoration: none;
  font-family: "IBM Plex Serif", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.brand::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(199, 150, 85, 0.12);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  box-sizing: border-box;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--brand-strong);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 16px;
  flex-shrink: 0;
}

.nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 0;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.48rem, 1.08vw, 1rem);
  padding: 0.2rem 0;
  padding-inline-start: clamp(0.4rem, 1.25vw, 1.3rem);
}

.site-nav a {
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.72rem, 1.02vw, 0.86rem);
  white-space: nowrap;
  padding-block: 0.3rem;
}

.site-nav a:hover {
  color: var(--brand);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(14, 64, 111, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

@media (max-width: 1040px) {
  .nav-wrap {
    flex-wrap: nowrap;
    align-items: center;
    min-height: 0;
    padding-block: 0.5rem;
    gap: 0.75rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
    flex: none;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    padding-inline-start: 0;
    border-top: 1px solid transparent;
    background: rgba(251, 248, 242, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(17, 35, 58, 0.08);
    transition: max-height 0.32s ease, padding 0.32s ease, border-color 0.2s ease, box-shadow 0.25s ease;
    z-index: 10;
    min-height: 0;
  }

  .site-header.is-nav-open .site-nav {
    max-height: min(28rem, calc(100vh - 4.5rem));
    padding: 0.45rem max(1.35rem, env(safe-area-inset-left, 0px)) 0.4rem max(1.35rem, env(safe-area-inset-right, 0px));
    border-top-color: var(--line);
  }

  .site-nav a {
    white-space: normal;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(14, 64, 111, 0.1);
    font-size: 0.95rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 11px;
  }
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.32rem 0.56rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover:not(.is-active) {
  color: var(--text);
  background: rgba(14, 64, 111, 0.07);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-btn.is-active {
  background: var(--brand-strong);
  color: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(820px, 86vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(225, 188, 134, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(8, 28, 38, 0.72) 0%, rgba(8, 28, 38, 0.46) 42%, rgba(8, 28, 38, 0.16) 70%),
    linear-gradient(180deg, rgba(8, 28, 38, 0.1) 0%, rgba(8, 28, 38, 0.45) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(12, 36, 46, 0.52));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6.25rem 0 4.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.8rem;
  margin: 0 0 0.9rem;
  color: rgba(245, 221, 188, 0.94);
  opacity: 1;
}

h1,
h2,
h3 {
  font-family: "IBM Plex Serif", "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 0.8rem;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.2rem, 5.1vw, 4.6rem);
  max-width: 18ch;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--brand-strong);
  max-width: 15ch;
}

h3 {
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  color: var(--brand-strong);
}

.hero-subtitle {
  max-width: min(62ch, 44rem);
  font-size: clamp(1.05rem, 0.55vw + 0.88rem, 1.48rem);
  line-height: 1.58;
  font-weight: 500;
  margin: 0 0 2.15rem;
  color: rgba(255, 255, 255, 0.97);
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0 1.1rem rgba(4, 14, 28, 0.38),
    0 1px 3px rgba(2, 10, 22, 0.55);
}

@media (max-width: 719px) {
  .hero-subtitle {
    font-size: clamp(1rem, 2.8vw + 0.55rem, 1.2rem);
    line-height: 1.52;
  }
}

@media (min-width: 1400px) {
  .hero-subtitle {
    font-size: clamp(1.2rem, 0.85vw + 0.55rem, 1.52rem);
    max-width: min(58ch, 46rem);
  }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.45rem, 2vw, 1rem);
  margin-bottom: 1.8rem;
  max-width: 790px;
  align-items: stretch;
}

.hero-metrics article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  padding: clamp(0.65rem, 1.6vw, 1rem) clamp(0.55rem, 1.4vw, 1rem);
  text-align: left;
  min-height: 0;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

.metric-value {
  display: block;
  font-size: clamp(0.95rem, 2.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #f4c987;
}

.metric-label {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.65rem, 1.85vw, 0.92rem);
  line-height: 1.25;
  text-wrap: balance;
}

.hero-metric--buildings .metric-label {
  font-size: clamp(0.56rem, 1.42vw, 0.78rem);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-actions .btn {
  border-radius: 999px;
}

.hero-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.97);
  background: rgba(8, 22, 38, 0.44);
  border-color: var(--hero-glass-border);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(2, 10, 22, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.hero-actions .btn-ghost:hover {
  color: #fff;
  background: rgba(8, 22, 38, 0.56);
  border-color: var(--hero-glass-border);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 22px rgba(4, 14, 26, 0.42);
}

.hero-actions .btn:focus-visible {
  outline: 2px solid rgba(207, 159, 98, 0.95);
  outline-offset: 3px;
}

.hero-brochure-wrap {
  margin: 1.05rem 0 0;
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.85rem 0.42rem;
  border-radius: 999px;
  background: rgba(6, 16, 28, 0.42);
  border: 1px solid var(--hero-glass-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 36px rgba(4, 12, 22, 0.4);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .hero-brochure-wrap {
    background: rgba(10, 22, 38, 0.8);
  }

  .hero-actions .btn-ghost {
    background: rgba(10, 26, 44, 0.82);
  }
}

.hero-brochure-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.08em;
  text-shadow: 0 1px 2px rgba(4, 12, 22, 0.55);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.hero-brochure-link:hover {
  color: #fff;
  border-bottom-color: rgba(207, 159, 98, 0.85);
}

.hero-brochure-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(26rem, 62svh, 44rem);
  }

  .hero-image {
    object-position: center 88%;
  }

  .hero-content {
    padding: clamp(1.25rem, 3.5vw, 1.75rem) 0 clamp(2rem, 5vw, 2.75rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 2.9rem;
  padding: 0.78rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn-primary {
  background: #c8914e;
  color: #132130;
  border-color: rgba(132, 82, 35, 0.14);
  box-shadow: 0 8px 18px rgba(145, 91, 39, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #bd8746;
  box-shadow: 0 10px 20px rgba(145, 91, 39, 0.15);
}

.hero-actions .btn-primary {
  background: #d7a55f;
  color: #2c251d;
  border-color: rgba(255, 235, 198, 0.28);
  text-shadow: 0 1px 0 rgba(255, 238, 204, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 242, 218, 0.22) inset,
    0 12px 26px rgba(92, 57, 24, 0.14);
}

.hero-actions .btn-primary:hover {
  background: #dfb06b;
  color: #241f19;
  box-shadow:
    0 1px 0 rgba(255, 245, 225, 0.28) inset,
    0 16px 32px rgba(92, 57, 24, 0.18);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.section {
  position: relative;
  padding: clamp(3.2rem, 5.4vw, 5.6rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt), #f7f0e5);
}

.brochure-section.section-alt {
  background: linear-gradient(180deg, #fcf9f3 0%, #f3ebe1 100%);
}

.brochure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, clamp(13rem, 21vw, 17rem));
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3.2vw, 2.25rem);
  border: 1px solid rgba(189, 135, 70, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff5e6 0%, #ecddc6 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 42px rgba(92, 57, 24, 0.1);
}

.brochure-layout::before {
  content: none;
}

.brochure-section h2 {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Serif", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--brand-strong);
  max-width: 18ch;
}

.brochure-intro {
  margin-bottom: 0;
}

.brochure-download {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  background: #d7a55f;
  color: #2c251d;
  border-color: rgba(255, 235, 198, 0.28);
  text-shadow: 0 1px 0 rgba(255, 238, 204, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 242, 218, 0.22) inset,
    0 12px 26px rgba(92, 57, 24, 0.14);
}

.brochure-download:hover {
  background: #dfb06b;
  color: #241f19;
  box-shadow:
    0 1px 0 rgba(255, 245, 225, 0.28) inset,
    0 16px 32px rgba(92, 57, 24, 0.18);
}

.section-intro {
  max-width: 72ch;
  color: var(--muted);
  margin-top: 0;
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.12rem);
}

.benefit-grid,
.amenities-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

#amenities {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #f7f1e7 0%, #ecefe5 58%, #f4eadc 100%);
  color: var(--text);
  overflow: hidden;
}

#amenities h2,
#amenities h3 {
  color: var(--brand-strong);
}

#amenities .section-intro,
#amenities .card p {
  color: var(--muted);
}

#amenities .card {
  background: rgba(255, 252, 246, 0.78);
  border-color: rgba(117, 143, 134, 0.14);
  box-shadow: 0 18px 42px rgba(87, 102, 96, 0.08);
  backdrop-filter: blur(10px);
}

#amenities .card::before {
  content: none;
}

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(255, 250, 242, 0.78)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card::before {
  content: none;
}

.benefit-grid {
  counter-reset: benefit;
}

.benefit-grid .card {
  counter-increment: benefit;
}

.benefit-grid .card::after {
  content: none;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 72px rgba(17, 35, 58, 0.15);
    border-color: rgba(199, 150, 85, 0.35);
  }
}

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

.split {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: center;
}

.split-reverse {
  grid-template-columns: 1fr 1.1fr;
}

.image-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow-deep);
  background: var(--media-placeholder);
}

.image-card img {
  width: 100%;
  min-height: clamp(19rem, 38vw, 30rem);
  object-fit: cover;
  background: var(--media-placeholder);
}

#location .split {
  align-items: stretch;
}

#location .location-map {
  align-self: start;
  height: fit-content;
}

.location-map {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(189, 135, 70, 0.18);
  box-shadow: var(--shadow-deep);
  min-height: 0;
  background: var(--media-placeholder);
}

.location-map iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: clamp(16.5rem, 48vw, 22rem);
  height: clamp(16.5rem, 48vw, 22rem);
  background: var(--media-placeholder);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.55rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0.28rem rgba(123, 139, 122, 0.14);
}

.unit-filters {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 1.15rem 0 1.15rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(20, 33, 43, 0.11);
  background: rgba(255, 250, 242, 0.56);
  padding: 0.38rem 0.74rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  min-height: 2.35rem;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chip.is-active {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: #fff;
  box-shadow: none;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 135, 70, 0.3);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.2rem);
}

.unit-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 240, 229, 0.9)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .unit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 72px rgba(17, 35, 58, 0.16);
    border-color: rgba(189, 135, 70, 0.24);
  }
}

.unit-carousel {
  position: relative;
  box-sizing: border-box;
  width: calc(100% + 2rem);
  max-width: none;
  margin: -1rem -1rem 0.85rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid rgba(25, 35, 44, 0.12);
  border-bottom: none;
  background: var(--media-placeholder);
  min-width: 0;
  align-self: stretch;
}

.unit-carousel-viewport {
  position: relative;
  box-sizing: border-box;
  width: calc(100% + 6px);
  max-width: none;
  margin-left: -3px;
  margin-right: -3px;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 220px;
  outline: none;
  background: var(--media-placeholder);
  transform: translateZ(0);
  isolation: isolate;
  contain: paint;
}

.unit-carousel-track {
  display: flex;
  width: 200%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.unit-carousel-slide {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.unit-carousel-slide--hero {
  background: #eef0ea;
}

.unit-carousel-slide--hero img {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0) scale(1.14);
  transform-origin: center center;
}

.unit-carousel-slide--plan {
  background: #fff;
}

.unit-carousel-slide--plan img {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0);
  transform-origin: center center;
}

.unit-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 242, 0.78);
  color: var(--brand-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(23, 40, 50, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.unit-carousel-nav span {
  display: none;
}

.unit-carousel-nav::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.unit-carousel-nav:hover {
  background: rgba(255, 250, 242, 0.96);
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--brand-strong);
  box-shadow: 0 12px 26px rgba(23, 40, 50, 0.16);
  transform: translateY(-50%) scale(1.02);
}

.unit-carousel-nav--prev {
  left: 0.45rem;
}

.unit-carousel-nav--prev::before {
  margin-left: 0.16rem;
  transform: rotate(-135deg);
}

.unit-carousel-nav--next {
  right: 0.45rem;
}

.unit-carousel-nav--next::before {
  margin-right: 0.16rem;
  transform: rotate(45deg);
}

.unit-carousel-dots {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
  pointer-events: none;
}

.unit-carousel-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.unit-carousel-dot.is-active {
  background: #e8b86a;
  transform: scale(1.15);
}

.unit-plan {
  margin: -1rem -1rem 0.85rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: none;
  background: #f4f1ec;
  aspect-ratio: 4 / 3;
  max-height: 220px;
}

.unit-plan img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.unit-plan--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.5rem;
  background: repeating-linear-gradient(
    -12deg,
    #ece8e2,
    #ece8e2 10px,
    #e4dfda 10px,
    #e4dfda 20px
  );
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.unit-card h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.unit-type {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--sage);
  font-weight: 700;
}

.unit-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.unit-price {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(29, 42, 53, 0.1);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.unit-price small {
  color: var(--muted);
  font-size: 0.72em;
  font-weight: 600;
}

.unit-price--muted {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
}

.gallery-carousel {
  margin-top: 2rem;
  width: 100%;
}

.gallery-carousel-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(189, 135, 70, 0.12);
  background: #f7f1e8;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  outline: none;
  min-height: clamp(200px, 50vw, 480px);
  aspect-ratio: 16 / 10;
  max-height: min(72vh, 640px);
}

.gallery-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 38, 0.1) 0%,
    transparent 38%,
    transparent 62%,
    rgba(8, 28, 38, 0.26) 100%
  );
}

.gallery-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent);
}

.gallery-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  margin: 0;
  padding: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  margin: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 242, 0.78);
  color: var(--brand-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(23, 40, 50, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-nav span {
  display: none;
}

.gallery-nav::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-nav:hover {
  background: rgba(255, 250, 242, 0.96);
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--brand-strong);
  box-shadow: 0 12px 26px rgba(23, 40, 50, 0.16);
  transform: translateY(-50%) scale(1.02);
}

.gallery-nav--prev {
  left: clamp(0.5rem, 2vw, 1.25rem);
}

.gallery-nav--prev::before {
  margin-left: 0.18rem;
  transform: rotate(-135deg);
}

.gallery-nav--next {
  right: clamp(0.5rem, 2vw, 1.25rem);
}

.gallery-nav--next::before {
  margin-right: 0.18rem;
  transform: rotate(45deg);
}

.gallery-thumbs-wrap {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0 1rem;
  background: linear-gradient(180deg, #f9f4eb 0%, #efe7d9 100%);
  border-top: 1px solid rgba(23, 40, 50, 0.08);
}

.gallery-thumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.15rem 1rem 0.35rem;
  scroll-padding-inline: 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 4.75rem;
  height: 3.1rem;
  padding: 0;
  border: 2px solid rgba(15, 52, 66, 0.32);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background: #f7f1e8;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 242, 0.46);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(189, 135, 70, 0.45);
  transform: translateY(-1px);
}

.gallery-thumb.is-active::after {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-thumb:hover::after {
    opacity: 0.18;
  }
}

.gallery-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem 1rem;
  background: #f7f1e8;
  border-top: 1px solid rgba(23, 40, 50, 0.08);
}

.gallery-caption {
  margin: 0;
  font-family: "IBM Plex Serif", "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--brand-strong);
  letter-spacing: 0;
}

.gallery-counter {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(23, 40, 50, 0.5);
  letter-spacing: 0;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    transition-duration: 0.01ms;
  }
}

.faq details {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(29, 42, 53, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 30px rgba(27, 34, 42, 0.045);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-left: 1.15rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::marker {
  content: "";
}

.faq summary::before {
  content: "";
  position: absolute;
  left: 0.05rem;
  top: 0.38em;
  border-style: solid;
  border-width: 0.32em 0 0.32em 0.48em;
  border-color: transparent transparent transparent var(--accent);
  transform-origin: 28% 50%;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::before {
  transform: rotate(90deg);
}

.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-contact {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(135deg, #f8f2e8 0%, #edf0e7 54%, #f5ead9 100%);
  color: var(--text);
  overflow: hidden;
}

.section-contact::before {
  content: none;
}

.section-contact h2,
.section-contact .contact-aside,
.section-contact .contact-aside a {
  color: inherit;
}

.section-contact .section-intro {
  color: var(--muted);
  margin-top: 0.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 28rem) minmax(15rem, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: stretch;
  margin-top: 1.35rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(189, 135, 70, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.98) 0%, rgba(239, 225, 204, 0.62) 100%);
  box-shadow: 0 10px 28px rgba(23, 40, 50, 0.05);
}

.contact-aside__title {
  margin: 0;
  font-family: "IBM Plex Serif", "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--brand-strong);
}

.contact-aside__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-aside__email-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-aside__email {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(43, 102, 116, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-aside__email:hover {
  border-color: rgba(43, 102, 116, 0.3);
  background: #fff;
  box-shadow: 0 8px 20px rgba(43, 102, 116, 0.1);
}

.contact-aside__email:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contact-aside__email-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-aside__email-value {
  font-size: clamp(0.92rem, 0.35vw + 0.84rem, 1rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-strong);
  word-break: break-word;
}

.contact-aside__copy {
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(43, 102, 116, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.contact-aside__copy:hover {
  background: #fff;
  border-color: rgba(43, 102, 116, 0.34);
  color: var(--brand-strong);
}

.contact-aside__copy:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contact-aside__copy.is-copied {
  border-color: rgba(43, 102, 116, 0.34);
  color: var(--brand-strong);
  background: rgba(232, 238, 231, 0.9);
}

.contact-aside__tip {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

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

.contact-aside__meta-item {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(117, 143, 134, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.contact-aside__meta-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-aside__meta-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-strong);
}

.callback-form {
  max-width: 28rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(117, 143, 134, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(23, 40, 50, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.callback-form--success {
  border-color: rgba(43, 102, 116, 0.38);
  box-shadow: 0 14px 36px rgba(43, 102, 116, 0.14);
}

.callback-form--loading .callback-form__submit {
  position: relative;
  color: transparent;
}

.callback-form--loading .callback-form__submit::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.1rem;
  height: 1.1rem;
  margin: -0.55rem 0 0 -0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: callbackSpin 0.7s linear infinite;
}

@keyframes callbackSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes callbackAlertIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.callback-form__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.callback-form__field {
  margin-bottom: 0.85rem;
}

.callback-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.callback-form__input {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(117, 143, 134, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-form__input:focus-visible {
  outline: none;
  border-color: rgba(43, 102, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 102, 116, 0.14);
}

.callback-form__input.is-error {
  border-color: rgba(180, 60, 50, 0.55);
  box-shadow: 0 0 0 3px rgba(180, 60, 50, 0.1);
}

.callback-form__field--channels {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.callback-form__field--channels .callback-form__label {
  margin-bottom: 0.45rem;
  padding: 0;
}

.callback-form__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.callback-form__channel {
  flex: 1 1 5.5rem;
  display: block;
  cursor: pointer;
}

.callback-form__channel input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.callback-form__channel-text {
  display: block;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(117, 143, 134, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.callback-form__channel:hover .callback-form__channel-text {
  border-color: rgba(43, 102, 116, 0.35);
}

.callback-form__channel input:focus-visible + .callback-form__channel-text {
  outline: none;
  border-color: rgba(43, 102, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 102, 116, 0.14);
}

.callback-form__channel input:checked + .callback-form__channel-text {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: #fff;
  box-shadow: none;
}

.callback-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.callback-form__consent {
  margin: 0 0 0.95rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.callback-form__submit {
  width: 100%;
}

.callback-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.callback-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  animation: callbackAlertIn 0.35s ease;
}

.callback-form__alert-icon {
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.callback-form__alert-text {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.45;
}

.callback-form__alert--success {
  background: linear-gradient(135deg, #e5f3ef 0%, #d9ebe4 100%);
  border: 1px solid rgba(43, 102, 116, 0.35);
  box-shadow: 0 10px 24px rgba(43, 102, 116, 0.12);
}

.callback-form__alert--success .callback-form__alert-icon {
  background: var(--brand);
  color: #fff;
}

.callback-form__alert--success .callback-form__alert-icon::before {
  content: "✓";
}

.callback-form__alert--success .callback-form__alert-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.callback-form__alert--error {
  background: #fdf3f1;
  border: 1px solid rgba(180, 60, 50, 0.28);
}

.callback-form__alert--error .callback-form__alert-icon {
  background: #b44a3e;
  color: #fff;
}

.callback-form__alert--error .callback-form__alert-icon::before {
  content: "!";
}

.callback-form__alert--error .callback-form__alert-text {
  color: #8f3a31;
  font-weight: 600;
}

.site-footer {
  background: #f7f1e8;
  color: rgba(23, 40, 50, 0.72);
  border-top: 1px solid rgba(23, 40, 50, 0.08);
  padding: 1.2rem 0 1.4rem;
}

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

.footer-wrap p {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #ffd69f;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .benefit-grid,
  .amenities-grid,
  .units-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(1140px, calc(100% - 1.2rem));
  }

  .section {
    padding: clamp(2.15rem, 6.5vw, 3rem) 0;
  }

  .benefit-grid,
  .amenities-grid,
  .units-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .amenities-grid {
    margin-top: 1.2rem;
  }

  .unit-filters {
    gap: 0.38rem;
    margin: 1rem 0 1rem;
  }

  .chip {
    min-height: 2.15rem;
    padding: 0.32rem 0.62rem;
    font-size: 0.84rem;
  }

  .unit-carousel-viewport {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .benefit-grid .card::after {
    content: none;
  }

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

  .brochure-section h2 {
    max-width: none;
  }

  .brochure-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1.25rem;
  }

  .brochure-download {
    width: 100%;
    min-height: 2.75rem;
    padding-block: 0.68rem;
  }
}

@media (max-width: 720px) {
  .hero-metrics {
    max-width: none;
    margin-bottom: 1.35rem;
    gap: 0.4rem;
  }

  .hero-metrics article {
    padding: 0.45rem 0.3rem;
    border-radius: 12px;
    text-align: center;
  }

  .metric-label {
    margin-top: 0.15rem;
    line-height: 1.2;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 1rem;
    text-align: center;
    white-space: normal;
  }

  .hero-actions .btn-ghost {
    background: rgba(8, 22, 38, 0.48);
    border-color: var(--hero-glass-border);
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 2px rgba(2, 10, 22, 0.55);
  }

  .hero-actions .btn-ghost:hover {
    background: rgba(8, 22, 38, 0.58);
    border-color: var(--hero-glass-border);
  }

  .hero-brochure-wrap {
    text-align: center;
    max-width: min(22rem, 100%);
    margin-inline: auto;
    margin-top: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
