:root {
  --ink: #1e2a24;
  --muted: #68766d;
  --paper: #fbfaf6;
  --warm: #f2eadf;
  --line: #e5ded1;
  --sage: #6f8d73;
  --sage-dark: #496f55;
  --gold: #b99a5d;
  --terracotta: #bb765f;
  --blue: #d8e8ea;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(30, 42, 36, .12);
  --radius: 8px;
}

:root[data-theme="dark"] {
  --ink: #fbfff7;
  --muted: #d9e4d7;
  --paper: #202821;
  --warm: #2a342d;
  --line: rgba(224, 214, 192, .18);
  --sage: #90aa8f;
  --sage-dark: #d8ead0;
  --gold: #d2b778;
  --terracotta: #d49a86;
  --blue: #304247;
  --white: #2b3630;
  --shadow: 0 24px 64px rgba(5, 9, 7, .28);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  left: 0;
  padding: 16px 22px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(30, 42, 36, .08);
  padding-top: 0;
}

.nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px 0;
  transition: padding .25s ease;
}

.site-header.is-scrolled .nav {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 9px 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  font-weight: 800;
  min-width: 0;
}

.brand-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 60px;
  object-fit: contain;
  padding: 0;
  transition: height .24s ease, width .24s ease, filter .24s ease;
  width: 154px;
}

.site-header.is-scrolled .brand-logo {
  height: 42px;
  width: 108px;
}

.brand span {
  display: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #fffffb, #e6eee4);
  border: 1px solid rgba(185, 154, 93, .38);
  color: var(--sage-dark);
  display: inline-flex;
  justify-content: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  border-radius: 8px;
  height: 44px;
  width: 44px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-actions {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-left: 2px;
}

.nav-links a {
  border-radius: 0;
  color: var(--ink);
  font-size: .91rem;
  font-weight: 800;
  padding: 6px 0;
  position: relative;
  transition: color .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-links a:hover {
  transform: none;
}

.nav-links a.active::after {
  display: none;
}

.nav-toggle {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(111, 141, 115, .18);
  border-radius: 8px;
  display: none;
  height: 42px;
  position: relative;
  width: 42px;
}

.theme-toggle {
  align-items: center;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(111, 141, 115, .18);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  width: 38px;
}

.theme-toggle:hover {
  background: var(--white);
  border-color: rgba(185, 154, 93, .38);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  border: 2px solid currentColor;
  border-radius: 999px;
  display: block;
  height: 16px;
  position: relative;
  width: 16px;
}

.theme-toggle-icon::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: -2px;
  top: 2px;
  width: 8px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  background: var(--ink);
  border-radius: 99px;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  right: 11px;
  transition: transform .2s ease, opacity .2s ease;
}

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

.nav-toggle::before {
  top: 13px;
}

.nav-toggle::after {
  top: 27px;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

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

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

.hero {
  align-items: center;
  background-image: linear-gradient(0deg, rgba(251, 250, 246, .96) 0%, rgba(251, 250, 246, .62) 44%, rgba(251, 250, 246, .34) 100%), var(--hero-image, url("assets/visual-drive.jpg"));
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: 88vh;
  padding: 120px 24px 86px;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.hero::after {
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 246, 0));
  bottom: 0;
  content: "";
  height: 170px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 700;
  line-height: .96;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.hero-copy {
  color: #3d4b42;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 500;
  margin: 22px auto 34px;
  max-width: 650px;
}

.hero-slogan {
  color: #27382f;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 16px auto 28px;
  max-width: none;
  white-space: nowrap;
}

.button,
.icon-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(30, 42, 36, .18);
  color: var(--white);
}

.hero-cta {
  background: linear-gradient(120deg, #1e2a24, #4f7656, #b99a5d, #1e2a24);
  background-size: 260% 260%;
  box-shadow: 0 18px 42px rgba(73, 111, 85, .28);
  padding: 11px 22px;
}

.hero-cta:hover {
  animation: ctaGradient 1.8s ease infinite;
  box-shadow: 0 22px 48px rgba(73, 111, 85, .36);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(30, 42, 36, .18);
  color: var(--ink);
}

.button-filter {
  background: linear-gradient(120deg, #1e2a24, #4f7656, #b99a5d, #1e2a24);
  background-size: 260% 260%;
  box-shadow: 0 14px 30px rgba(73, 111, 85, .2);
  color: var(--white);
}

.button-filter:hover {
  animation: ctaGradient 1.8s ease infinite;
  box-shadow: 0 18px 38px rgba(73, 111, 85, .3);
}

.section {
  padding: 82px 24px;
}

.intro-section {
  background: linear-gradient(180deg, var(--paper) 0%, #f7f9fb 100%);
  padding-bottom: 74px;
  padding-top: 78px;
}

.section.alt {
  background: #f5f1e9;
}

.container {
  margin: 0 auto;
  max-width: min(1180px, calc(100vw - 48px));
  width: 100%;
}

.intro {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  justify-items: center;
  margin: 0 auto;
  max-width: 1040px;
  text-align: center;
}

.investment-logo {
  height: auto;
  max-height: 170px;
  object-fit: contain;
  width: min(620px, 92vw);
}

.intro h2,
.section-heading h2,
.seo-block h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 18px auto 0;
  max-width: 820px;
  text-align: center;
}

.multiline {
  white-space: pre-line;
}

.intro-lead {
  max-width: 760px;
}

.deadline {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  gap: 12px;
  margin: 22px auto 0;
  padding: 14px 18px;
}

.deadline strong {
  color: var(--sage-dark);
}

.features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}

.feature-card,
.quick-card,
.admin-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card {
  background: transparent;
  border: 0;
  padding: 18px 14px;
  text-align: center;
}

.feature-icon {
  align-items: center;
  background: radial-gradient(circle at 50% 45%, #fffdf8 0 34%, rgba(111, 141, 115, .16) 35% 100%);
  border-radius: 999px;
  color: var(--sage-dark);
  display: inline-flex;
  height: 76px;
  justify-content: center;
  margin: 0 auto 18px;
  width: 76px;
}

.feature-icon svg {
  animation: iconFloat 3.2s ease-in-out infinite;
  height: 38px;
  width: 38px;
}

.feature-card:nth-child(2) .feature-icon svg {
  animation-delay: .35s;
}

.feature-card:nth-child(3) .feature-icon svg {
  animation-delay: .7s;
}

.feature-card:nth-child(4) .feature-icon svg {
  animation-delay: 1.05s;
}

.feature-card h3,
.quick-card h3,
.contact-card h3 {
  font-size: 1.18rem;
}

.feature-card p,
.quick-card p,
.contact-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.availability-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.availability-head h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-note {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4b584f;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 18px;
  text-align: center;
}

.legal-note span {
  display: block;
  font-size: .9rem;
}

.legal-note strong {
  color: var(--ink);
}

.legal-history-link {
  background: linear-gradient(120deg, #1e2a24, #4f7656, #b99a5d, #1e2a24);
  background-size: 260% 260%;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(73, 111, 85, .16);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 8px 15px;
  transition: box-shadow .18s ease, transform .18s ease;
}

.legal-history-link:hover {
  animation: ctaGradient 1.8s ease infinite;
  box-shadow: 0 16px 34px rgba(73, 111, 85, .26);
  transform: translateY(-1px);
}

.selector-wrap {
  background: linear-gradient(180deg, #fffdf9, #f1eadf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
}

.rowhouse-stage {
  align-items: end;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(230, 222, 208, .62));
  border: 1px solid rgba(185, 154, 93, .2);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(104px, .72fr) repeat(10, minmax(78px, 1fr));
  min-height: 245px;
  overflow-x: auto;
  padding: 72px 18px 18px;
  position: relative;
}

.rowhouse-stage::before {
  background: linear-gradient(135deg, transparent 0 14%, #c3ad84 14.2% 50%, #b79968 50.2% 86%, transparent 86.2%);
  content: "";
  height: 74px;
  left: 124px;
  min-width: 780px;
  position: absolute;
  right: 18px;
  top: 26px;
}

.house {
  align-items: center;
  animation: riseIn .55s ease both;
  background: rgba(255, 250, 242, .88);
  border: 1px solid #d9cdbb;
  border-left-width: 0;
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 156px;
  justify-content: center;
  min-height: 156px;
  min-width: 78px;
  padding: 14px 8px 18px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.house::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 10px;
  opacity: .58;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
}

.house:not(.all-units):nth-child(2) {
  border-left-width: 1px;
  border-radius: 8px 0 0 8px;
}

.house:last-child {
  border-radius: 0 8px 8px 0;
}

.house.all-units {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(111, 141, 115, .28);
  border-radius: 8px;
  color: var(--sage-dark);
  margin-right: 14px;
}

.house.free {
  color: #315d3b;
}

.house.reserved {
  color: #8a611c;
}

.house.sold {
  color: #8a4138;
}

.house.is-active {
  background:
    linear-gradient(#fffaf2, #fffaf2) padding-box,
    linear-gradient(120deg, #1e2a24, #4f7656, #b99a5d) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(73, 111, 85, .22);
  outline: 0;
  transform: translateY(-4px);
  z-index: 4;
}

.house strong {
  display: block;
  font-size: .98rem;
  line-height: 1.12;
  margin-top: 6px;
}

.house small {
  color: var(--muted);
  display: block;
  font-weight: 700;
  line-height: 1.1;
}

.house-roof {
  background: #c4dbe2;
  border: 1px solid rgba(73, 111, 85, .16);
  display: block;
  height: 38px;
  margin: 0 auto 12px;
  width: 42px;
}

.unit-meta {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4px;
}

.all-units-icon {
  background:
    linear-gradient(currentColor 0 0) 7px 7px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 22px 7px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 7px 22px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 22px 22px / 9px 9px no-repeat;
  border: 1px solid currentColor;
  border-radius: 8px;
  display: block;
  height: 42px;
  margin: 0 auto 10px;
  opacity: .8;
  width: 42px;
}

.mini-units {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}

.mini-unit {
  border-radius: 4px;
  height: 18px;
}

.mini-unit.free {
  background: #86ad78;
}

.mini-unit.reserved {
  background: #d6ab5c;
}

.mini-unit.sold {
  background: #b97970;
}

.selector-summary {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 18px;
  text-align: center;
}

.selector-summary:empty {
  display: none;
}

.filters {
  display: grid;
  align-items: end;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
  margin: 24px 0;
}

.field.filter-action {
  align-self: end;
  display: flex;
  align-items: flex-end;
}

.field.filter-action .button {
  min-height: 44px;
  width: 100%;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.availability-tools {
  display: flex;
  justify-content: flex-end;
  margin: -6px 0 18px;
}

.table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 100%;
  min-width: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  min-width: 1060px;
  width: 100%;
}

.availability-table table {
  min-width: 780px;
}

th,
td {
  border-bottom: 1px solid #ece6da;
  padding: 15px 14px;
  text-align: left;
  vertical-align: middle;
}

th {
  background: #f7f3ec;
  color: #4c5a51;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr:hover {
  background: #fbf8f1;
}

.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 700;
  justify-content: center;
  min-width: 92px;
  padding: 6px 10px;
}

.status.free {
  background: #e2f0df;
  color: #315d3b;
}

.status.reserved {
  background: #fff0d5;
  color: #7a5520;
}

.status.sold {
  background: #f6dfdc;
  color: #8a4138;
}

.history-link {
  background: transparent;
  border: 0;
  color: var(--sage-dark);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-units {
  display: none;
}

.garage-availability-section {
  background:
    linear-gradient(180deg, rgba(247, 249, 251, .96), rgba(255, 253, 248, .96));
}

.garage-availability-intro {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr);
  margin-bottom: 26px;
}

.garage-availability-copy {
  max-width: 760px;
}

.garage-availability-copy .lead {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.garage-availability-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin-bottom: 16px;
}

.garage-availability-image {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(185, 154, 93, .22);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(30, 42, 36, .11);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.garage-availability-image::after {
  background: linear-gradient(180deg, transparent 45%, rgba(30, 42, 36, .18));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.garage-availability-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.garage-table-wrap {
  display: grid;
  gap: 16px;
}

.garage-table table {
  min-width: 620px;
}

.garage-table th,
.garage-table td {
  padding-block: 13px;
}

.garage-mobile-list {
  display: none;
}

.garage-card {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(30, 42, 36, .07);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 15px;
}

.garage-card strong,
.garage-card b {
  color: var(--ink);
  display: block;
  font-size: 1.02rem;
}

.garage-card span:not(.status) {
  color: var(--muted);
  display: block;
  font-size: .9rem;
  font-weight: 650;
  margin-top: 4px;
}

.garage-card > div:last-child {
  align-items: flex-end;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.unit-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(30, 42, 36, .08);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.unit-card-head {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.unit-card h3 {
  font-size: 1.12rem;
  margin: 0 0 5px;
}

.unit-card p {
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.unit-card-price {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.unit-details {
  border-top: 1px solid #ece6da;
  padding-top: 12px;
}

.unit-details summary {
  color: var(--sage-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.unit-details summary::after {
  content: "+";
  float: right;
  font-weight: 800;
}

.unit-details[open] summary::after {
  content: "−";
}

.unit-details dl {
  display: grid;
  gap: 9px;
  margin: 14px 0 12px;
}

.unit-details dl div {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(116px, .75fr) 1fr;
}

.unit-details dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-details dd {
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.table-actions {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 14px;
}

.quick-links {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-card {
  background-position: center;
  background-size: cover;
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .26),
    0 18px 44px rgba(30, 42, 36, .12);
  color: var(--white);
  isolation: isolate;
  min-height: 310px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.quick-card::before {
  background: linear-gradient(0deg, rgba(20, 31, 26, .74), rgba(20, 31, 26, .08));
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.quick-card::after {
  content: none;
}

.quick-card:nth-child(1) {
  background-image: url("assets/visual-front.jpg");
}

.quick-card:nth-child(2) {
  background-image: url("assets/visual-drive.jpg");
}

.quick-card:nth-child(3) {
  background-image: url("assets/visual-front.jpg");
}

.quick-card-content {
  bottom: 0;
  left: 0;
  padding: 26px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.quick-card p {
  color: rgba(255, 255, 255, .82);
}

.arrow {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-top: 22px;
  width: 42px;
}

.seo-block {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  text-align: center;
}

.seo-heading {
  margin: 0 auto;
  max-width: 1060px;
}

.seo-heading h2 {
  max-width: 1060px;
}

.text-columns {
  display: grid;
  gap: 54px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1060px;
  text-align: left;
}

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

.gallery-section {
  overflow: hidden;
  padding: 82px 0;
}

.slider {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 20vw minmax(520px, 920px) 20vw;
  justify-content: center;
  position: relative;
}

.slide {
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .36),
    var(--shadow);
  overflow: hidden;
}

.slide.side {
  filter: saturate(.8);
  opacity: .62;
  transform: scale(.94);
}

.icon-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  height: 44px;
  min-height: 44px;
  padding: 0;
  width: 44px;
}

.gallery-arrow {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(30, 42, 36, .16);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  width: 48px;
  z-index: 3;
}

.gallery-arrow:hover {
  background: var(--white);
  box-shadow: 0 18px 40px rgba(30, 42, 36, .2);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-prev {
  left: clamp(24px, 5vw, 86px);
}

.gallery-arrow-next {
  right: clamp(24px, 5vw, 86px);
}

.gallery-page-section .section-heading {
  margin: 0 auto 32px;
  max-width: 820px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  background: var(--warm);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(30, 42, 36, .08);
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery-tile.is-featured {
  aspect-ratio: 16 / 10;
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
  width: 100%;
}

.gallery-tile:hover img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.footer-map {
  background: #f7f9fb;
  min-height: 340px;
  position: relative;
}

.footer-map iframe {
  border: 0;
  height: 340px;
  width: 100%;
}

.map-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  left: auto;
  max-width: 300px;
  padding: 16px;
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 - 18px));
  top: 50%;
  transform: translateY(-50%);
  width: min(86vw, 300px);
}

.map-card dl {
  display: grid;
  gap: 5px;
  margin: 14px 0 0;
}

.map-card dt {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-card dd {
  font-size: .88rem;
  margin: -4px 0 4px;
}

.map-card h3 {
  font-size: 1.1rem;
}

.footer-bottom {
  background: #f7f9fb;
  border-top: 1px solid #e5edf1;
  color: #526159;
  font-size: 14px;
  padding: 0 24px;
}

.footer-bottom .container {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 40px;
}

.footer-link {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color .18s ease;
}

.footer-link:hover {
  color: var(--sage);
}

.footer-credit-link:hover {
  color: #CC6EF3;
}

.modal {
  align-items: center;
  background: rgba(30, 42, 36, .48);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  max-height: min(86vh, 720px);
  max-width: 780px;
  overflow: auto;
  padding: 26px;
  width: 100%;
}

.modal-head {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.close-modal {
  background: #f5f1e9;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  height: 38px;
  width: 38px;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247, 249, 251, .72)),
    url("assets/visual-front.jpg") center/cover;
  min-height: 38vh;
  padding: 118px 24px 54px;
}

.page-hero .container {
  max-width: 1180px;
  text-align: center;
}

.updates-hero {
  background-image: linear-gradient(90deg, rgba(251,250,246,.95), rgba(251,250,246,.34)), url("assets/visual-drive.jpg");
}

.admin-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  max-width: 100%;
}

.admin-layout > [data-cms-section] {
  grid-column: 2;
}

.admin-layout .admin-updates {
  grid-column: 1 / -1;
}

.admin-layout > .admin-updates[data-cms-section] {
  grid-column: 2;
}

.admin-card {
  min-width: 0;
  padding: 22px;
}

.admin-sidebar {
  align-self: start;
  position: sticky;
  top: 96px;
}

.admin-sidebar-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-sidebar-head h2 {
  margin: 0;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu-item {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 13px;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.admin-menu-item:hover,
.admin-menu-item.is-active {
  background: rgba(111, 141, 115, .1);
  border-color: rgba(111, 141, 115, .18);
  color: var(--sage-dark);
}

.admin-menu-item:hover {
  transform: translateX(2px);
}

.admin-card h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.admin-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-tabs {
  background: #f7f3ec;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  gap: 4px;
  margin: 0 0 18px;
  padding: 4px;
}

.admin-tab {
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 9px 14px;
}

.admin-tab.is-active {
  background: var(--white);
  box-shadow: 0 8px 22px rgba(30, 42, 36, .08);
  color: var(--sage-dark);
}

.admin-table input,
.admin-table select {
  min-width: 0;
}

.admin-table {
  min-width: 1080px;
}

.admin-table input[type="file"] {
  font-size: .74rem;
  max-width: 150px;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
}

.login-box {
  margin: 0 auto;
  max-width: 430px;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ead8ac;
  border-radius: var(--radius);
  color: #705421;
  margin: 12px 0;
  padding: 12px 14px;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  padding: 26px;
}

.contact-overview-section {
  padding-bottom: 36px;
}

.contact-overview {
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(185, 154, 93, .2);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info-item {
  align-items: center;
  display: grid;
  gap: 13px;
  justify-items: center;
  padding: 26px 24px;
  text-align: center;
}

.contact-info-item + .contact-info-item {
  border-left: 1px solid rgba(185, 154, 93, .18);
}

.contact-info-icon {
  align-items: center;
  background: #edf4ef;
  border: 1px solid rgba(111, 141, 115, .2);
  border-radius: 999px;
  color: var(--sage-dark);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.contact-info-icon svg {
  display: block;
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}

.contact-info-item h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  margin: 0;
}

.location-section .section-heading {
  margin: 0 auto 32px;
  max-width: 860px;
  text-align: center;
}

.location-slider {
  position: relative;
}

.location-track {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(250px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.location-track::-webkit-scrollbar {
  display: none;
}

.location-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(185, 154, 93, .22);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(30, 42, 36, .08);
  min-height: 238px;
  padding: 24px;
  scroll-snap-align: start;
}

.location-icon,
.admin-location-icon {
  align-items: center;
  background: #edf4ef;
  border-radius: 999px;
  color: var(--sage-dark);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.admin-location-icon {
  flex: 0 0 48px;
  margin-bottom: 0;
}

.location-icon svg,
.admin-location-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.location-card strong {
  color: var(--gold);
  display: block;
  font-size: .92rem;
  margin-bottom: 8px;
}

.location-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

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

.location-arrow {
  align-items: center;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(111, 141, 115, .2);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(30, 42, 36, .12);
  color: var(--ink);
  display: flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  top: 42%;
  width: 42px;
  z-index: 2;
}

.location-arrow-prev {
  left: -10px;
}

.location-arrow-next {
  right: -10px;
}

.contact-form-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
}

.contact-form {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(185, 154, 93, .18);
  border-radius: 8px;
  padding: 28px;
}

.contact-form-section {
  padding-top: 36px;
}

.contact-form-copy {
  max-width: 560px;
}

.contact-form-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-form-copy .lead {
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.contact-mini-note {
  border-top: 1px solid rgba(185, 154, 93, .22);
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding-top: 18px;
}

.contact-mini-note strong {
  color: var(--ink);
  font-size: .95rem;
}

.contact-mini-note span {
  color: var(--muted);
  font-size: .92rem;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(247, 249, 251, .98), rgba(242, 234, 223, .46));
}

.why-panel {
  align-items: start;
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
}

.why-copy {
  max-width: 660px;
}

.why-copy h2 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.why-copy p,
.why-detail p {
  color: var(--muted);
}

.why-details {
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(185, 154, 93, .2);
  border-radius: 8px;
  display: grid;
  gap: 0;
  padding: 8px 26px;
}

.why-detail {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 22px 0;
}

.why-detail + .why-detail {
  border-top: 1px solid rgba(185, 154, 93, .2);
}

.why-detail > span {
  align-items: center;
  background: #edf4ef;
  border: 1px solid rgba(111, 141, 115, .2);
  border-radius: 999px;
  color: var(--sage-dark);
  display: flex;
  font-size: .86rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.why-detail:nth-child(1) > span::before {
  content: "01";
}

.why-detail:nth-child(2) > span::before {
  content: "02";
}

.why-detail:nth-child(3) > span::before {
  content: "03";
}

.garage-detail {
  background:
    linear-gradient(135deg, rgba(111, 141, 115, .12), rgba(185, 154, 93, .12)),
    rgba(255, 255, 255, .62);
  border: 1px solid rgba(185, 154, 93, .28);
  border-radius: 8px;
  margin: 10px -12px 4px;
  padding: 22px 14px;
  position: relative;
}

.why-detail + .garage-detail {
  border-top: 1px solid rgba(185, 154, 93, .28);
}

.garage-detail > span {
  background: linear-gradient(135deg, var(--sage-dark), var(--gold));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(111, 141, 115, .22);
}

.why-detail strong {
  color: var(--ink);
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.why-detail p {
  max-width: 520px;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 40px;
  margin-top: 7px;
  padding: 9px 12px;
  width: 100%;
}

.consent-line {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  font-size: .82rem;
  line-height: 1.45;
}

.consent-line input {
  margin-top: 3px;
  width: auto;
}

.unit-card-link,
.admin-file-link {
  color: var(--sage-dark);
  display: inline-block;
  font-weight: 800;
  margin-top: 10px;
}

.privacy-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.privacy-content article {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.cookie-panel {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(185, 154, 93, .24);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 22px 64px rgba(30, 42, 36, .18);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 50%;
  max-width: 1080px;
  padding: 18px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100vw - 36px);
  z-index: 80;
}

.cookie-panel p {
  color: var(--muted);
  margin: 6px 0;
}

.cookie-options {
  display: grid;
  gap: 10px;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.social-dock {
  bottom: 28px;
  pointer-events: none;
  position: fixed;
  right: 24px;
  z-index: 56;
}

.social-dock-shell {
  align-items: center;
  display: flex;
  pointer-events: auto;
  position: relative;
}

.social-dock-trigger {
  align-items: center;
  background: #1877f2;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(24, 119, 242, .3);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease;
  width: 50px;
}

.social-dock-trigger:hover,
.social-dock.is-open .social-dock-trigger,
.social-dock-shell:focus-within .social-dock-trigger {
  background: #0f6fe8;
  box-shadow: 0 22px 52px rgba(24, 119, 242, .4);
  transform: translateY(-2px);
}

.social-dock-panel {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(185, 154, 93, .22);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(30, 42, 36, .18);
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  right: 64px;
  bottom: 0;
  transform: translateX(14px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  visibility: hidden;
  width: min(292px, calc(100vw - 96px));
}

.social-dock:hover .social-dock-panel,
.social-dock.is-open .social-dock-panel,
.social-dock-shell:focus-within .social-dock-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.social-dock-panel span {
  color: var(--sage-dark);
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.social-dock-panel strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.social-dock-panel p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

.social-dock-panel a {
  color: var(--sage-dark);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.social-dock-panel a:hover {
  color: #cc6ef3;
}

.plans-section .section-heading {
  margin: 0 auto 32px;
  max-width: 780px;
  text-align: center;
}

.plans-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.plan-card h3 {
  margin-bottom: 14px;
}

.plan-card object {
  background: #f7f3ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 520px;
  margin-bottom: 14px;
  width: 100%;
}

.updates-list {
  display: grid;
  gap: 30px;
}

.blog-feature-wrap {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(30, 42, 36, .08);
  display: grid;
  overflow: hidden;
}

.blog-featured {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  max-width: 980px;
  width: 100%;
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  aspect-ratio: 16 / 10;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
  width: 100%;
}

.blog-featured .blog-card-image img {
  aspect-ratio: auto;
  min-height: 360px;
}

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

.blog-card-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.blog-featured .blog-card-content {
  gap: 13px;
  padding: clamp(26px, 4vw, 42px);
}

.blog-label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card-content time,
.blog-post-content time {
  color: var(--sage-dark);
  display: block;
  font-size: .82rem;
  font-weight: 800;
}

.blog-card-content h2 {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.18;
  margin: 0;
}

.blog-featured .blog-card-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.blog-card-content p,
.blog-post-content p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}

.blog-read-more,
.blog-back {
  background: transparent;
  border: 0;
  color: var(--sage-dark);
  cursor: pointer;
  font-weight: 800;
  justify-self: start;
  padding: 0;
}

.blog-read-more:hover,
.blog-back:hover {
  color: var(--gold);
}

.blog-post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(30, 42, 36, .08);
  overflow: hidden;
}

.blog-back {
  margin: 22px 24px 0;
}

.blog-post-hero {
  aspect-ratio: 21 / 9;
  margin-top: 18px;
  object-fit: cover;
  width: 100%;
}

.blog-post-content {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 880px;
  padding: 34px 24px 42px;
}

.blog-post-content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.blog-post-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.blog-post-gallery img,
.admin-update-list img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.update-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.update-form .full,
.update-form .actions,
.content-form .full,
.content-form .actions {
  grid-column: 1 / -1;
}

.content-form {
  display: grid;
  gap: 18px;
}

.content-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 18px;
}

.content-group legend {
  color: var(--sage-dark);
  font-weight: 700;
  padding: 0 8px;
}

.content-group textarea {
  resize: vertical;
}

.admin-update-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.admin-update-list article {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr auto;
  padding: 10px;
}

.admin-update-list span {
  color: var(--muted);
  display: block;
  font-size: .9rem;
}

.admin-update-list .admin-location-icon {
  color: var(--sage-dark);
  display: inline-flex;
  font-size: 1rem;
}

.admin-logo-preview {
  background:
    linear-gradient(135deg, rgba(144, 170, 143, .12), rgba(210, 183, 120, .08)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  height: 86px;
  margin-top: 10px;
  object-fit: contain;
  padding: 10px;
  width: min(260px, 100%);
}

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

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.03);
  }
}

@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1040px) {
  .features,
  .filters,
  .contact-grid,
  .plans-grid,
  .update-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links,
  .seo-block,
  .admin-layout,
  .update-item,
  .blog-grid,
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-feature-wrap {
    margin-bottom: 22px;
  }

  .blog-featured .blog-card-image img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .availability-head {
    align-items: start;
    flex-direction: column;
  }

  .legal-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 10px 0;
  }

  .nav {
    padding: 8px 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    background: rgba(251, 250, 246, .96);
    border: 1px solid rgba(229, 222, 209, .78);
    border-radius: 8px;
    box-shadow: 0 22px 42px rgba(30, 42, 36, .1);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    left: 10px;
    margin-left: 0;
    padding: 8px;
    position: absolute;
    right: 10px;
    top: calc(100% + 8px);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-radius: 7px;
    padding: 12px 14px;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding-top: 112px;
  }

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

  .features,
  .filters,
  .quick-links,
  .text-columns,
  .contact-grid,
  .contact-overview,
  .contact-form-layout,
  .why-panel,
  .plans-grid,
  .update-form,
  .content-group,
  .admin-update-list article,
  .blog-post-gallery {
    grid-template-columns: 1fr;
  }

  .contact-info-item + .contact-info-item {
    border-left: 0;
    border-top: 1px solid rgba(185, 154, 93, .18);
  }

  .slider {
    gap: 12px;
    grid-template-columns: 18vw 72vw 18vw;
  }

  .footer-bottom .container,
  .table-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 62px 18px;
  }

  .map-card {
    position: static;
    transform: none;
    width: auto;
    margin: -80px 18px 28px;
  }
}

@media (max-width: 1180px) {
  .nav {
    max-width: calc(100vw - 24px);
    padding-inline: 12px;
  }

  .rowhouse-stage {
    grid-template-columns: minmax(104px, .72fr) repeat(10, minmax(78px, 1fr));
  }

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

  .rowhouse-stage::before {
    left: 126px;
    min-width: 780px;
  }
}

@media (max-width: 1040px) {
  .container {
    max-width: calc(100vw - 36px);
  }

  .availability-table {
    display: none;
  }

  .garage-availability-intro {
    grid-template-columns: 1fr;
  }

  .garage-table {
    display: none;
  }

  .garage-mobile-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-units {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rowhouse-stage {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: auto;
    overflow: visible;
    padding: 14px;
  }

  .rowhouse-stage::before {
    display: none;
  }

  .house,
  .house:not(.all-units):nth-child(2),
  .house:last-child {
    border: 1px solid #d9cdbb;
    border-radius: 8px;
    height: 138px;
    min-height: 138px;
    min-width: 0;
    padding: 12px 8px;
  }

  .house.all-units {
    grid-column: 1 / -1;
    margin-right: 0;
  }

  .feature-card {
    padding-inline: 10px;
  }

  .slider {
    grid-template-columns: 16vw minmax(0, 68vw) 16vw;
  }

  .admin-table {
    min-width: 900px;
  }
}

@media (max-width: 760px) {
  .container {
    max-width: calc(100vw - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 34px;
    width: 72px;
  }

  .brand span {
    font-size: .88rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero,
  .page-hero {
    min-height: 46svh;
    padding: 88px 14px 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .hero-slogan,
  .hero-copy,
  .lead {
    font-size: 1rem;
  }

  .hero-slogan {
    line-height: 1.22;
    white-space: normal;
  }

  .button,
  .icon-button {
    min-height: 40px;
    padding: 9px 14px;
  }

  .availability-head {
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }

  .availability-head .button {
    width: 100%;
  }

  .legal-note {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .legal-note span,
  .legal-history-link {
    width: 100%;
  }

  .legal-history-link {
    margin-top: 4px;
  }

  .garage-availability-intro {
    gap: 18px;
  }

  .garage-availability-image {
    aspect-ratio: 16 / 10;
  }

  .garage-card {
    align-items: flex-start;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .selector-wrap {
    margin-inline: -6px;
    padding: 12px;
  }

  .rowhouse-stage {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    overflow: visible;
    padding: 14px;
  }

  .rowhouse-stage::before {
    display: none;
  }

  .house,
  .house:not(.all-units):nth-child(2),
  .house:last-child {
    border: 1px solid #d9cdbb;
    border-radius: 8px;
    height: 144px;
    min-height: 144px;
    min-width: 0;
    padding: 12px 8px;
  }

  .house.all-units {
    grid-column: 1 / -1;
    margin-right: 0;
  }

  .house strong {
    font-size: .86rem;
  }

  .unit-meta {
    font-size: .72rem;
    margin-top: 6px;
  }

  .house small {
    background: rgba(255, 255, 255, .72);
    border-radius: 999px;
    font-size: .72rem;
    margin-top: 3px;
    padding: 3px 8px;
  }

  .house::before {
    right: 8px;
    top: 8px;
  }

  .filters {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field.filter-action {
    grid-column: 1 / -1;
  }

  .availability-tools {
    justify-content: stretch;
    margin: 0 0 14px;
  }

  .availability-tools .button {
    width: 100%;
  }

  .table-wrap {
    margin-inline: -6px;
  }

  table {
    font-size: .88rem;
    min-width: 880px;
  }

  th,
  td {
    padding: 12px 10px;
  }

  .quick-card {
    min-height: 230px;
  }

  .quick-card-content {
    padding: 20px;
  }

  .text-columns {
    gap: 22px;
    text-align: center;
  }

  .gallery-section {
    padding: 56px 0;
  }

  .slider {
    gap: 10px;
    grid-template-columns: 16vw 76vw 16vw;
  }

  .slide {
    border-radius: 8px;
  }

  .gallery-arrow {
    height: 42px;
    width: 42px;
  }

  .gallery-arrow-prev {
    left: 14px;
  }

  .gallery-arrow-next {
    right: 14px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 280px;
    height: 280px;
  }

  .map-card {
    margin: -64px 14px 22px;
    max-width: none;
    padding: 14px;
    width: auto;
  }

  .footer-bottom {
    padding: 0 14px;
    text-align: center;
  }

  .footer-bottom .container {
    align-items: center;
    gap: 6px;
  }

  .admin-card {
    padding: 16px;
  }

  .admin-layout > [data-cms-section],
  .admin-layout > .admin-updates[data-cms-section] {
    grid-column: 1;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-sidebar-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-menu {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .admin-toolbar .button {
    width: 100%;
  }

  .admin-table {
    min-width: 820px;
  }

  .content-group,
  .update-form {
    gap: 12px;
  }

  .plan-card object {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: calc(100vw - 22px);
  }

  .section {
    padding: 50px 12px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .mobile-units {
    grid-template-columns: 1fr;
  }

  .garage-mobile-list {
    grid-template-columns: 1fr;
  }

  .investment-logo {
    width: min(92vw, 420px);
  }

  .feature-icon {
    height: 66px;
    width: 66px;
  }

  .feature-icon svg {
    height: 32px;
    width: 32px;
  }

  .house,
  .house:not(.all-units):nth-child(2),
  .house:last-child {
    min-width: 0;
  }

  .slider {
    grid-template-columns: 12vw 82vw 12vw;
  }

  .page-hero {
    min-height: 42svh;
  }

  .cookie-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

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

  .social-dock {
    bottom: 88px;
    right: 10px;
  }

  .social-dock-trigger {
    height: 46px;
    width: 46px;
  }

  .social-dock-panel {
    padding: 15px;
    right: 56px;
    width: calc(100vw - 84px);
  }

  .plan-card object {
    height: 340px;
  }
}

@media (max-width: 760px) {
  [data-availability] .selector-wrap {
    display: none;
  }

  [data-availability] .legal-note {
    margin-bottom: 16px;
  }

  .mobile-units {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .unit-card {
    border-color: rgba(111, 141, 115, .2);
    box-shadow: 0 12px 28px rgba(30, 42, 36, .07);
    gap: 0;
    overflow: hidden;
    padding: 0;
  }

  .unit-card-head {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 15px 15px 8px;
  }

  .unit-card h3 {
    font-size: 1rem;
    line-height: 1.15;
  }

  .unit-card p {
    font-size: .9rem;
    line-height: 1.25;
  }

  .unit-card .status {
    font-size: .74rem;
    min-width: auto;
    padding: 5px 9px;
    white-space: nowrap;
  }

  .unit-card-price {
    font-size: 1.24rem;
    padding: 0 15px 15px;
  }

  .unit-details {
    background: #fbf8f1;
    border-top: 1px solid #ece6da;
    padding-top: 0;
  }

  .unit-details summary {
    display: block;
    padding: 12px 15px;
  }

  .unit-details dl {
    gap: 0;
    margin: 0;
    padding: 0 15px 12px;
  }

  .unit-details dl div {
    border-top: 1px solid rgba(229, 222, 209, .85);
    display: grid;
    gap: 3px;
    grid-template-columns: 1fr;
    padding: 9px 0;
  }

  .unit-details dt {
    font-size: .72rem;
  }

  .unit-details dd {
    font-size: .92rem;
    text-align: left;
  }

  .unit-details .history-link {
    display: inline-flex;
    margin: 0 15px 15px;
  }
}

@media (max-width: 760px) {
  .footer-map {
    display: grid;
    gap: 0;
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .footer-map iframe {
    display: block;
    height: 260px;
    min-height: 260px;
  }

  .map-card {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 20px 18px;
    position: static;
    transform: none;
    width: 100%;
  }

  .map-card,
  .map-card dl,
  .map-card dd {
    text-align: center;
  }

  .map-card dl {
    justify-items: center;
  }

  .map-card dl {
    gap: 8px;
  }

  .footer-bottom {
    position: relative;
    z-index: 1;
  }

  .gallery-section {
    overflow: hidden;
    padding: 50px 0;
  }

  .slider {
    display: block;
    margin: 0 auto;
    max-width: calc(100vw - 28px);
    position: relative;
  }

  .slide {
    aspect-ratio: 4 / 3;
  }

  .slide.side {
    display: none;
  }

  .gallery-arrow {
    background: rgba(255, 255, 255, .9);
    height: 40px;
    top: 50%;
    width: 40px;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile.is-featured {
    aspect-ratio: 4 / 3;
    grid-column: auto;
    grid-row: auto;
  }

  .location-track {
    display: grid;
    gap: 12px;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .location-card {
    min-height: 0;
    padding: 20px;
    scroll-snap-align: none;
  }

  .location-arrow {
    display: none;
  }
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 50% 0, rgba(111, 141, 115, .14), transparent 34vw),
    var(--paper);
}

:root[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(32, 40, 33, .94);
  box-shadow: 0 14px 36px rgba(5, 9, 7, .3);
}

:root[data-theme="dark"] .brand-logo {
  filter: brightness(1.08) contrast(.96);
}

:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .nav-toggle {
  background: rgba(43, 54, 48, .82);
  border-color: rgba(224, 214, 192, .16);
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  background: var(--paper);
  box-shadow: -2px 0 0 1px var(--paper);
  height: 12px;
  right: -1px;
  top: 0;
  width: 12px;
}

:root[data-theme="dark"] .hero {
  background-image:
    linear-gradient(0deg, rgba(32, 40, 33, .96) 0%, rgba(32, 40, 33, .66) 48%, rgba(32, 40, 33, .34) 100%),
    var(--hero-image, url("assets/visual-drive.jpg"));
}

:root[data-theme="dark"] .hero h1,
:root[data-theme="dark"] .hero-slogan,
:root[data-theme="dark"] .hero-copy {
  color: #fbfff7;
  text-shadow: 0 2px 18px rgba(5, 9, 7, .42);
}

:root[data-theme="dark"] .hero .eyebrow {
  color: #e5f3df;
  text-shadow: 0 2px 16px rgba(5, 9, 7, .38);
}

:root[data-theme="dark"] .hero-slogan {
  color: #eef8e9;
}

:root[data-theme="dark"] .hero::after {
  background: linear-gradient(0deg, var(--paper), rgba(32, 40, 33, 0));
}

:root[data-theme="dark"] .intro-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(144, 170, 143, .16), transparent 36vw),
    linear-gradient(180deg, var(--paper) 0%, #253028 100%);
}

:root[data-theme="dark"] .page-hero {
  background:
    linear-gradient(180deg, rgba(32, 40, 33, .92), rgba(42, 52, 45, .76)),
    url("assets/visual-front.jpg") center/cover;
}

:root[data-theme="dark"] .section.alt,
:root[data-theme="dark"] .why-section,
:root[data-theme="dark"] .footer-map,
:root[data-theme="dark"] .footer-bottom {
  background: #253028;
}

:root[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(224, 214, 192, .16);
  color: #d9e4d7;
}

:root[data-theme="dark"] .footer-link {
  color: #b7d0ad;
}

:root[data-theme="dark"] .footer-link:hover {
  color: #e5f3df;
}

:root[data-theme="dark"] .footer-credit-link:hover {
  color: #cc6ef3;
}

:root[data-theme="dark"] .selector-wrap,
:root[data-theme="dark"] .legal-note,
:root[data-theme="dark"] .table-wrap,
:root[data-theme="dark"] .unit-card,
:root[data-theme="dark"] .garage-card,
:root[data-theme="dark"] .contact-overview,
:root[data-theme="dark"] .contact-form,
:root[data-theme="dark"] .why-details,
:root[data-theme="dark"] .location-card,
:root[data-theme="dark"] .blog-card,
:root[data-theme="dark"] .blog-post,
:root[data-theme="dark"] .gallery-tile,
:root[data-theme="dark"] .privacy-content article,
:root[data-theme="dark"] .admin-card,
:root[data-theme="dark"] .modal-card,
:root[data-theme="dark"] .map-card {
  background: rgba(43, 54, 48, .86);
  border-color: rgba(224, 214, 192, .16);
}

:root[data-theme="dark"] .legal-note {
  background:
    linear-gradient(135deg, rgba(144, 170, 143, .12), rgba(210, 183, 120, .06)),
    rgba(43, 54, 48, .9);
  color: #d9e4d7;
}

:root[data-theme="dark"] .legal-note strong {
  color: #fbfff7;
}

:root[data-theme="dark"] .legal-history-link {
  background: linear-gradient(120deg, #e7f3df, #a9c79b, #d9bc76, #f5fbef);
  background-size: 260% 260%;
  box-shadow: 0 14px 32px rgba(144, 170, 143, .24);
  color: #17231c;
}

:root[data-theme="dark"] .legal-history-link:hover {
  box-shadow: 0 18px 42px rgba(198, 217, 191, .32);
}

:root[data-theme="dark"] .rowhouse-stage {
  background: linear-gradient(180deg, rgba(32, 40, 33, .56), rgba(28, 36, 30, .82));
  border-color: rgba(224, 214, 192, .16);
}

:root[data-theme="dark"] .rowhouse-stage::before {
  opacity: .68;
}

:root[data-theme="dark"] .house {
  background: rgba(242, 237, 224, .9);
  border-color: rgba(210, 183, 120, .28);
  color: #1d2a22;
}

:root[data-theme="dark"] .house.all-units {
  background: rgba(238, 248, 233, .92);
  color: #253b2e;
}

:root[data-theme="dark"] .house.free {
  color: #224c2c;
}

:root[data-theme="dark"] .house.reserved {
  color: #6c4711;
}

:root[data-theme="dark"] .house.sold {
  color: #713028;
}

:root[data-theme="dark"] .house.is-active {
  background:
    linear-gradient(#f8f3e8, #f8f3e8) padding-box,
    linear-gradient(120deg, #e7f3df, #90aa8f, #d2b778) border-box;
  box-shadow: 0 18px 42px rgba(144, 170, 143, .24);
}

:root[data-theme="dark"] .house small,
:root[data-theme="dark"] .unit-meta {
  color: rgba(29, 42, 34, .76);
}

:root[data-theme="dark"] .house-roof {
  background: #d7e4df;
  border-color: rgba(29, 42, 34, .16);
}

:root[data-theme="dark"] .garage-availability-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(144, 170, 143, .12), transparent 34vw),
    #253028;
}

:root[data-theme="dark"] .garage-availability-image {
  border-color: rgba(210, 183, 120, .2);
  box-shadow: 0 22px 58px rgba(5, 9, 7, .24);
}

:root[data-theme="dark"] .feature-icon,
:root[data-theme="dark"] .location-icon,
:root[data-theme="dark"] .contact-info-icon,
:root[data-theme="dark"] .why-detail > span,
:root[data-theme="dark"] .admin-location-icon {
  background: rgba(144, 170, 143, .14);
  border-color: rgba(144, 170, 143, .24);
}

:root[data-theme="dark"] .garage-detail {
  background:
    linear-gradient(135deg, rgba(144, 170, 143, .14), rgba(210, 183, 120, .1)),
    rgba(37, 48, 40, .94);
  border-color: rgba(210, 183, 120, .24);
  box-shadow: inset 0 0 0 1px rgba(144, 170, 143, .1);
}

:root[data-theme="dark"] .garage-detail > span {
  background: linear-gradient(135deg, #e7f3df, #a9c79b, #d9bc76);
  color: #17231c;
}

:root[data-theme="dark"] .quick-card {
  box-shadow:
    inset 0 0 0 1px rgba(144, 170, 143, .34),
    0 22px 54px rgba(5, 9, 7, .22);
  color: #fbfff7;
}

:root[data-theme="dark"] .quick-card::before {
  background:
    linear-gradient(0deg, rgba(13, 20, 16, .82), rgba(13, 20, 16, .18)),
    linear-gradient(135deg, rgba(144, 170, 143, .14), rgba(210, 183, 120, .08));
}

:root[data-theme="dark"] .quick-card h3 {
  color: #fbfff7;
}

:root[data-theme="dark"] .quick-card p {
  color: rgba(251, 255, 247, .86);
}

:root[data-theme="dark"] .quick-card .arrow {
  border-color: rgba(251, 255, 247, .55);
  color: #fbfff7;
}

:root[data-theme="dark"] .slide {
  box-shadow:
    inset 0 0 0 1px rgba(144, 170, 143, .28),
    0 24px 64px rgba(5, 9, 7, .28);
}

:root[data-theme="dark"] .field input,
:root[data-theme="dark"] .field select,
:root[data-theme="dark"] .field textarea,
:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form select,
:root[data-theme="dark"] .contact-form textarea,
:root[data-theme="dark"] .admin-table input,
:root[data-theme="dark"] .admin-table select,
:root[data-theme="dark"] .content-group input,
:root[data-theme="dark"] .content-group textarea {
  background: rgba(32, 40, 33, .92);
  border-color: rgba(224, 214, 192, .18);
  color: var(--ink);
}

:root[data-theme="dark"] tbody tr:hover,
:root[data-theme="dark"] .unit-details {
  background: rgba(37, 48, 40, .95);
}

:root[data-theme="dark"] .button-secondary,
:root[data-theme="dark"] .button-ghost,
:root[data-theme="dark"] .gallery-arrow,
:root[data-theme="dark"] .location-arrow {
  background: rgba(43, 54, 48, .9);
  border-color: rgba(224, 214, 192, .18);
  color: var(--ink);
}

:root[data-theme="dark"] .button-primary,
:root[data-theme="dark"] .button-filter,
:root[data-theme="dark"] .hero-cta {
  background: linear-gradient(120deg, #e7f3df, #a9c79b, #d9bc76, #f5fbef);
  background-size: 260% 260%;
  box-shadow: 0 18px 42px rgba(144, 170, 143, .34);
  color: #17231c;
  text-shadow: none;
}

:root[data-theme="dark"] .button-primary:hover,
:root[data-theme="dark"] .button-filter:hover,
:root[data-theme="dark"] .hero-cta:hover {
  box-shadow: 0 22px 52px rgba(198, 217, 191, .36);
}

:root[data-theme="dark"] .status.free {
  background: rgba(144, 170, 143, .16);
  color: #d8ead3;
}

:root[data-theme="dark"] .status.reserved {
  background: rgba(210, 183, 120, .16);
  color: #f0dba7;
}

:root[data-theme="dark"] .status.sold {
  background: rgba(212, 154, 134, .16);
  color: #f0c2b4;
}

:root[data-theme="dark"] .cookie-panel {
  background: rgba(43, 54, 48, .97);
  border-color: rgba(224, 214, 192, .18);
}

:root[data-theme="dark"] .social-dock-trigger {
  background: #1877f2;
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 18px 42px rgba(24, 119, 242, .32);
  color: #ffffff;
}

:root[data-theme="dark"] .social-dock-trigger:hover,
:root[data-theme="dark"] .social-dock.is-open .social-dock-trigger,
:root[data-theme="dark"] .social-dock-shell:focus-within .social-dock-trigger {
  background: #2d88ff;
  box-shadow: 0 22px 52px rgba(24, 119, 242, .42);
}

:root[data-theme="dark"] .social-dock-panel {
  background: rgba(43, 54, 48, .96);
  border-color: rgba(224, 214, 192, .18);
  box-shadow: 0 24px 64px rgba(5, 9, 7, .3);
}

@media (max-width: 760px) {
  .brand-logo {
    height: 46px;
    width: 112px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 34px;
    width: 82px;
  }

  .theme-toggle {
    height: 38px;
    width: 38px;
  }
}
