:root {
  --ink: #111118;
  --ink-2: #242431;
  --paper: #f7f1ea;
  --paper-2: #fffaf3;
  --muted: #6f665f;
  --gold: #c99b67;
  --gold-2: #e8caa4;
  --river: #26394a;
  --sage: #71806b;
  --line: rgba(17, 17, 24, 0.12);
  --shadow: 0 24px 70px rgba(34, 28, 22, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, Inter, Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px clamp(20px, 4vw, 48px);
  color: white;
  background: rgba(17, 17, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(17, 17, 24, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand img {
  width: clamp(150px, 17vw, 220px);
  max-height: 42px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border-radius: 50%;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 1.35rem;
}

.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17120e;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 36px rgba(201, 155, 103, 0.26);
}

.btn-soft {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-outline.light {
  color: white;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  padding: clamp(58px, 7vw, 96px) 0 56px;
  overflow: hidden;
  color: white;
  background: #050506;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
  background:
    radial-gradient(circle at 10% 8%, rgba(232, 202, 164, 0.33), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(38, 57, 74, 0.8), transparent 22%),
    linear-gradient(135deg, #050506 0%, #15151f 56%, #040404 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: 8%;
  width: 46vw;
  min-width: 360px;
  aspect-ratio: 1.7;
  z-index: -1;
  opacity: 0.34;
  border: 1px solid rgba(232, 202, 164, 0.42);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 4.2vw, 4.2rem);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Abril Fatface", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.1rem, 6.2vw, 6rem);
  line-height: 1.08;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.8vw, 4.7rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-subtitle span,
.section-copy span,
.register-grid p span {
  display: block;
  margin-top: 0.4rem;
  color: inherit;
}

.hero-actions,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 560px;
  margin: 2.2rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.hero-stats strong {
  display: block;
  margin-top: 0.2rem;
  color: white;
  font-weight: 800;
}

.hero-visual {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-visual img,
.gallery-large img {
  width: 100%;
  border-radius: 6px;
}

.hero-visual figcaption {
  padding: 0.75rem 0.25rem 0.1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.intro-band {
  background: var(--paper-2);
}

.price-band {
  background: var(--paper-2);
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.price-card {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  color: white;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 16%, rgba(232, 202, 164, 0.28), transparent 34%),
    var(--ink);
  box-shadow: var(--shadow);
}

.price-card span {
  color: var(--gold-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.price-card strong {
  display: block;
  margin: 0.4rem 0 0.8rem;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.split-intro h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.split-intro p:last-child,
.section-copy,
.register-grid p {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.feature-card,
.facility,
.info-grid div,
.calculator,
.register-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 20px 55px rgba(30, 24, 18, 0.08);
}

.feature-card {
  min-height: 260px;
  padding: 1.35rem;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.3rem;
  color: var(--gold);
  border: 1px solid rgba(201, 155, 103, 0.4);
  border-radius: 50%;
  font-size: 1.3rem;
}

.feature-card p,
.facility p {
  color: var(--muted);
}

.feature-card small {
  color: var(--river);
  font-weight: 800;
}

.dark-section,
.cta-section,
.site-footer {
  color: white;
  background: var(--ink);
}

.dark-section {
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 12% -18% auto auto;
  width: 52vw;
  aspect-ratio: 1.8;
  border: 1px solid rgba(232, 202, 164, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.location-grid,
.layout-grid,
.loan-grid,
.register-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.dark-section .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.map-card {
  margin: 1.8rem 0 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.map-card img {
  width: 100%;
  border-radius: 6px;
}

.location-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.tab {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  opacity: 0.76;
}

.tab.is-active {
  color: #17120e;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  opacity: 1;
}

.location-content,
.layout-content {
  display: none;
}

.location-content.is-active {
  display: block;
}

.location-content h3 {
  color: white;
}

.location-content ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-content li {
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.location-content strong {
  display: inline-block;
  min-width: 64px;
  color: var(--gold-2);
}

.media-section {
  background: #eee4d9;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 20px 55px rgba(30, 24, 18, 0.08);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.media-card div {
  padding: 1.1rem;
}

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

.distance-list {
  display: grid;
  gap: 0.85rem;
}

.distance-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.distance-list strong {
  color: var(--gold-2);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

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

.info-grid div {
  padding: 1.35rem;
}

.info-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.info-grid strong {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.layout-section,
.loan-section {
  background: var(--paper-2);
}

.layout-tabs {
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.76);
  box-shadow: var(--shadow);
}

.layout-tab-list {
  color: var(--ink);
}

.layout-content.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.layout-content img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
  background: #0b0b0f;
}

.layout-copy {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.layout-copy h3 {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.layout-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0;
}

.layout-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-weight: 800;
}

.layout-specs svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.layout-price {
  display: inline-flex;
  padding: 0.85rem 1rem;
  color: white;
  border-radius: var(--radius);
  background: var(--ink);
}

.facilities-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.facility-list span {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  font-weight: 800;
}

.facility-photo {
  margin: 0;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.facility-photo img {
  width: 100%;
  border-radius: 6px;
}

.facility {
  min-height: 170px;
  padding: 1.25rem;
}

.gallery-section {
  background: #eee4d9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(30, 24, 18, 0.1);
}

.gallery-large {
  grid-row: span 2;
  margin: 0;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.gallery-large figcaption {
  padding: 0.8rem 0.2rem 0.1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.gallery-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 1rem;
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  background: var(--river);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 20% 20%, rgba(232, 202, 164, 0.45), transparent 28%);
}

.gallery-tile.home {
  background: var(--sage);
}

.gallery-tile.dusk {
  background: #56463d;
}

.gallery-tile span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.calculator,
.register-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-2);
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 24, 0.16);
  border-radius: var(--radius);
  background: white;
}

.loan-output {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem;
  color: white;
  border-radius: var(--radius);
  background: var(--ink);
}

.loan-output span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.loan-output strong {
  color: var(--gold-2);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.cta-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 155, 103, 0.2), transparent 30%),
    var(--ink);
}

.register-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.register-form {
  background: rgba(255, 250, 243, 0.96);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  color: var(--ink-2);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  color: white;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer nav a,
.socials a {
  color: rgba(255, 255, 255, 0.72);
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 75px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(17, 17, 24, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem;
  }

  .hero-grid,
  .location-grid,
  .layout-grid,
  .loan-grid,
  .register-grid,
  .split-intro,
  .price-grid,
  .facilities-grid,
  .layout-content.is-active {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .gallery-large {
    grid-column: span 2;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 14px;
  }

  .btn-soft {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.2rem);
  }

  .hero-actions,
  .cta-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .facility-grid,
  .info-grid,
  .gallery-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 150px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab {
    width: 100%;
  }

  .gallery-large {
    grid-column: auto;
  }

  .distance-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .plan-card {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .living,
  .suite,
  .balcony {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Refined single-language property landing overrides */
h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.site-header {
  background: rgba(15, 15, 16, 0.68);
}

.site-header.is-scrolled {
  background: rgba(15, 15, 16, 0.92);
}

.hero-full {
  display: grid;
  min-height: 92vh;
  align-items: end;
  padding: 0 0 clamp(56px, 9vw, 110px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
}

.hero-full::after,
.hero-full .hero-bg {
  display: none;
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-full .hero-subtitle {
  max-width: 560px;
}

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

.feature-grid-six .feature-card {
  min-height: 220px;
}

.section-cta {
  width: fit-content;
  margin-top: 1.25rem;
}

.location-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-info {
  background: var(--paper-2);
}

.layout-tabs {
  background: #fffdf8;
}

.layout-content.is-active {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
}

.layout-content img {
  height: min(58vw, 540px);
  max-height: 540px;
  padding: clamp(0.7rem, 2vw, 1.2rem);
  object-fit: contain;
  background: #f8f3ec;
  border: 1px solid rgba(17, 17, 24, 0.1);
}

.layout-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.layout-copy .btn {
  width: fit-content;
}

.facilities-grid {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.facility-photo {
  background: #fffdf8;
}

.facility-photo img {
  max-height: 560px;
  object-fit: contain;
  background: #fffdf8;
}

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

.gallery-mosaic img {
  aspect-ratio: 1.65;
  min-height: 220px;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) 1fr;
  gap: 1rem;
}

.register-grid {
  align-items: start;
}

@media (max-width: 980px) {
  .feature-grid-six,
  .gallery-mosaic,
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .layout-content.is-active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .hero-full {
    min-height: 82vh;
    background-position: center;
  }

  .feature-grid-six,
  .gallery-mosaic,
  .facilities-grid,
  .phone-row,
  .location-tab-list {
    grid-template-columns: 1fr;
  }

  .layout-content img {
    height: 360px;
  }
}

/* Current brief refinements */
:root {
  --radius: 18px;
}

.btn {
  min-height: 48px;
  padding-inline: 1.35rem;
  border-radius: 999px;
}

.hero-price {
  margin: 0 0 0.85rem;
  color: var(--gold-2);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.btn-primary,
.btn-secondary {
  box-shadow: 0 18px 42px rgba(201, 155, 103, 0.34);
}

.btn-secondary {
  color: white;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-grid-six .feature-card {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.feature-grid-six .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.66)),
    var(--hover-img) center / cover no-repeat;
  transition: opacity 220ms ease;
}

.feature-grid-six .feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-grid-six .feature-card:hover::before,
.feature-grid-six .feature-card:focus-within::before {
  opacity: 1;
}

.feature-grid-six .feature-card:hover,
.feature-grid-six .feature-card:focus-within {
  color: white;
}

.feature-grid-six .feature-card:hover p,
.feature-grid-six .feature-card:focus-within p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-grid-six .icon {
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: rgba(232, 202, 164, 0.92);
  border-color: transparent;
  font-size: 1rem;
}

.feature-grid-six .icon img {
  width: 26px;
  height: 26px;
}

.location-section {
  background: #f2eadf;
}

.location-section .section-kicker,
.location-section h2 {
  color: var(--ink);
}

.location-grid-wide {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: start;
}

.location-section .map-card {
  background: white;
  border-color: rgba(17, 17, 24, 0.1);
  box-shadow: var(--shadow);
}

.location-section .map-card img {
  max-height: 760px;
  object-fit: contain;
}

.location-accordion {
  color: var(--ink);
  border-color: rgba(17, 17, 24, 0.12);
  background: white;
}

.location-accordion details {
  background: transparent;
  border-color: rgba(17, 17, 24, 0.1);
  box-shadow: none;
}

.location-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
}

.location-accordion summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
}

.location-accordion details[open] summary::after {
  content: "-";
}

.location-accordion ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 1rem 1rem;
  list-style: none;
}

.location-accordion li {
  color: var(--muted);
  font-size: 0.86rem;
}

.location-accordion strong {
  display: inline-block;
  min-width: 58px;
  color: var(--gold);
}

.project-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.project-table div {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.project-table div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.project-table span {
  color: var(--muted);
  font-size: 0.88rem;
}

.project-table strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.layout-arden {
  padding: 0;
  overflow: hidden;
  background: white;
}

.layout-arden .layout-tab-list {
  margin: 0;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: #f7f1ea;
}

.layout-arden .layout-content.is-active {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  padding: clamp(1rem, 3vw, 1.8rem);
}

.layout-arden .layout-content img {
  height: min(58vw, 540px);
  max-height: 540px;
  padding: clamp(0.7rem, 2vw, 1.2rem);
  object-fit: contain;
  background: #f8f3ec;
  border: 1px solid rgba(17, 17, 24, 0.1);
}

.layout-arden .layout-copy h3 {
  margin-bottom: 1rem;
  font-family: Lato, Inter, system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 900;
}

.layout-arden .layout-specs {
  display: grid;
  grid-template-columns: 1fr;
}

.layout-arden .layout-specs span {
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-weight: 800;
}

.layout-arden .layout-specs .size-spec {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.layout-arden .layout-specs svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.layout-arden .layout-copy .btn {
  width: fit-content;
  margin-top: 1.1rem;
}

.layout-arden .layout-price {
  display: block;
  width: fit-content;
  margin-top: 0.15rem;
  color: var(--gold);
  background: transparent;
  padding: 0;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.price-label {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.centered-cta {
  display: flex;
  justify-content: center;
}

.facility-photo img {
  object-fit: contain;
  background: #fffdf8;
}

.facility-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.facility-index span {
  padding: 0.75rem 0.85rem;
  color: var(--ink-2);
  border: 1px solid rgba(113, 128, 107, 0.26);
  border-radius: 999px;
  background: #eef1e9;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-grid {
  grid-template-columns: 1.4fr auto;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-contact a {
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .location-grid-wide,
  .project-table,
  .layout-arden .layout-content.is-active {
    grid-template-columns: 1fr;
  }

  .project-table div:nth-child(odd) {
    border-right: 0;
  }

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

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

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .project-table div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .facility-index {
    grid-template-columns: 1fr;
  }

  .layout-arden .layout-content img {
    height: 360px;
  }
}
