﻿:root {
  --ink: #101724;
  --muted: #586170;
  --soft: #f6f0e7;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(16, 23, 36, 0.12);
  --gold: #c98222;
  --gold-dark: #9f6118;
  --charcoal: #1d252b;
  --shadow: 0 22px 70px rgba(19, 24, 31, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --edge-pad: clamp(1.25rem, 3vw, 3.8rem);
  --page-pad: clamp(2.25rem, 5.4vw, 6.5rem);
  --wide: min(1680px, calc(100vw - (var(--page-pad) * 2)));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: #f4eee6;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: var(--sans);
  background: linear-gradient(145deg, #fffaf2 0%, #f4eee6 48%, #fbf7ef 100%);
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  padding: 0.35rem var(--edge-pad);
  transition: background 550ms ease, box-shadow 550ms ease, backdrop-filter 550ms ease;
}

.site-header:not(.is-scrolled):not(.is-open) {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 8px 30px rgba(16, 23, 36, 0.07);
  backdrop-filter: blur(14px);
}

.site-header.is-open {
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 40px rgba(16, 23, 36, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  height: 81px;
  width: auto;
  filter: invert(1);
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3vw, 2.45rem);
  font-size: 1.1rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.language {
  border: 0;
  color: var(--ink);
  font-weight: 800;
  background: transparent;
}

.contact-button,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  border: 1px solid rgba(159, 97, 24, 0.25);
  border-radius: 6px;
  padding: 0 1.45rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #d59436, #bd771d);
  box-shadow: 0 12px 24px rgba(189, 119, 29, 0.2);
  cursor: pointer;
}

.contact-button {
  min-height: 2.75rem;
}

.nav-toggle {
  display: none;
}

.nav-dropdown {
  display: contents;
}

.hero {
  position: relative;
  display: block;
  min-height: 975px;
  padding: clamp(11rem, 17vh, 14rem) var(--page-pad) 5.5rem;
  margin-bottom: -13rem;
  isolation: isolate;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 72% 115% at 100% 28%, rgba(255,250,242,1) 0%, rgba(255,250,242,0.95) 22%, rgba(255,250,242,0.78) 40%, rgba(255,250,242,0.35) 60%, transparent 76%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 38rem);
  margin-left: auto;
  margin-right: 0;
  margin-top: 3rem;
}

.hero .lead {
  text-shadow: 0 1px 8px rgba(255,250,242,0.95), 0 2px 16px rgba(255,250,242,0.75);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--gold-dark);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 22ch;
  font-size: clamp(3.25rem, 4.55vw, 5.05rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.05rem, 4.5vw, 3.05rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.12;
}

.lead {
  width: min(100%, 30rem);
  margin: 1.55rem 0 0;
  color: #27303a;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  text-shadow: none;
  font-weight: 600;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.35rem;
}

.primary-cta.full {
  width: 100%;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.secondary-cta.compact {
  min-height: 2.2rem;
}

.hero-visual {
  position: absolute;
  inset: 0 auto -4rem 0;
  z-index: -2;
  width: 100%;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  transform: translateY(-8%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32rem;
  background: linear-gradient(
    to top,
    rgba(248, 244, 238, 1) 0%,
    rgba(248, 244, 238, 0.96) 8%,
    rgba(248, 244, 238, 0.78) 22%,
    rgba(248, 244, 238, 0.48) 42%,
    rgba(248, 244, 238, 0.18) 62%,
    rgba(248, 244, 238, 0.04) 80%,
    rgba(248, 244, 238, 0) 100%
  );
}

.hero-facts {
  position: absolute;
  z-index: 4;
  left: var(--edge-pad);
  top: 9rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
}

.hero-facts article {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.5rem;
}

.hero-facts article:first-child {
  padding-left: 0;
}

.hero-facts article:not(:first-child) {
  border-left: 1px solid rgba(16, 23, 36, 0.12);
}

.hero-facts span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-facts strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section {
  width: var(--wide);
  margin: 0 auto;
  padding: 4.8rem 0;
}

.availability {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 2.55fr) minmax(16rem, 0.72fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}

.availability,
.feature-sections,
.location,
.progress-section,
.gallery,
.site-footer {
  content-visibility: auto;
}

.availability {
  contain-intrinsic-size: 900px;
}

.feature-sections {
  contain-intrinsic-size: 900px;
}

.location {
  contain-intrinsic-size: 520px;
}

.progress-section {
  contain-intrinsic-size: 360px;
}

.gallery {
  contain-intrinsic-size: 360px;
}

.site-footer {
  contain-intrinsic-size: 420px;
}

.section-intro p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
}

.floor-panel {
  min-width: 0;
}

.floor-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0;
  width: fit-content;
}

.floor-tabs button {
  border: 1.5px solid rgba(16, 23, 36, 0.12);
  border-bottom: none;
  padding-inline: 1.15rem;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 250, 242, 0.6);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

/* Ascending step heights — like building floors */
.floor-tabs [data-floor="1"] { padding-block: 0.35rem; }
.floor-tabs [data-floor="2"] { padding-block: 0.65rem; }
.floor-tabs [data-floor="3"] { padding-block: 0.95rem; }

.floor-tabs button:hover {
  color: var(--ink);
  background: rgba(201, 130, 34, 0.07);
}

.floor-tabs .is-selected {
  background: rgba(201, 130, 34, 0.12);
  color: var(--gold-dark);
  border-color: rgba(201, 130, 34, 0.3);
}

.price-contact {
  color: var(--muted);
  font-size: 1.1rem;
}

.floor-plan-wrap {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(16, 23, 36, 0.13);
}

.floor-plan-img {
  width: 100%;
  display: block;
  pointer-events: none;
}

.floor-plan-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fp-svg-unit {
  fill: rgba(44, 47, 53, 0.42);
  stroke: rgba(44, 47, 53, 0.15);
  stroke-width: 4;
  cursor: pointer;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

.fp-svg-unit.fp-svg-free:hover {
  fill: rgba(44, 47, 53, 0.62);
}

.fp-svg-unit.fp-svg-reserved {
  fill: rgba(199, 165, 106, 0.62);
  stroke: rgba(160, 130, 80, 0.32);
}

.fp-svg-unit.fp-svg-sold {
  fill: rgba(142, 75, 66, 0.58);
  stroke: rgba(110, 55, 50, 0.25);
  cursor: default;
}

.fp-svg-unit.fp-svg-active {
  fill: rgba(44, 47, 53, 0.78) !important;
  stroke: var(--gold);
  stroke-width: 7;
}

.floor-grid {
  border: 1.5px solid rgba(16, 23, 36, 0.13);
  border-radius: 10px;
  padding: 0.6rem;
  display: flex;
  flex-direction: row;
  gap: 4px;
  width: 100%;
  min-height: 19rem;
  background: #f0ede8;
  box-shadow: 0 4px 28px rgba(17, 24, 38, 0.09);
}

/* Zone = vertical column inside floor-grid */
.fp-zone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

/* Row inside a zone */
.fp-zone-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex: 1 1 0;
  min-height: 3rem;
}

/* Stacked pair of small units (column) */
.fp-stack-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 1.6rem;
}

/* Interior wall / separator between row groups */
.fp-wall {
  background: rgba(16, 23, 36, 0.5);
  border-radius: 1px;
  flex-shrink: 0;
  min-height: 6px;
  max-height: 6px;
  align-self: stretch;
}

.fp-row {
  display: flex;
  gap: 5px;
  min-height: 3.4rem;
}

.fp-unit {
  flex: 1 1 0;
  min-width: 1.4rem;
  min-height: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  border-radius: 4px;
  color: rgba(255,255,255,0.95);
  background: linear-gradient(145deg, #2c2f35, #1a1d22);
  cursor: pointer;
  transition: filter 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  user-select: none;
  text-align: center;
  padding: 0.15rem 0.1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}

.fp-unit-id {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.fp-unit-type {
  font-size: 0.5rem;
  font-weight: 600;
  opacity: 0.6;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fp-unit-size {
  font-size: 0.56rem;
  font-weight: 600;
  opacity: 0.82;
  line-height: 1;
}

.fp-unit:hover:not(.fp-sold) {
  filter: brightness(1.14);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
}

.fp-unit.fp-active {
  background: linear-gradient(145deg, #2c2f35, #1a1d22) !important;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 0 2.5px var(--gold), 0 4px 16px rgba(0,0,0,0.3);
}

.fp-unit.fp-reserved.fp-active {
  background: linear-gradient(145deg, #d4b87a, #b08c4f) !important;
  filter: brightness(1.08);
}

.fp-unit.fp-sold.fp-active {
  background: linear-gradient(145deg, #a0594d, #7c3f37) !important;
  filter: brightness(1.18);
}

.fp-unit.fp-reserved {
  background: linear-gradient(145deg, #d4b87a, #b08c4f);
}

.fp-unit.fp-utility {
  background: linear-gradient(145deg, #3a3d42, #2a2d32);
  cursor: default;
  opacity: 0.45;
}

.fp-unit.fp-sold {
  background: linear-gradient(145deg, #a0594d, #7c3f37);
  cursor: default;
  opacity: 0.75;
}

.fp-stair {
  flex: 0 0 0.7rem;
  align-self: stretch;
  border-radius: 2px;
  background: rgba(14, 12, 10, 0.82);
}

.fp-gap {
  flex: 1 1 0;
  align-self: stretch;
  min-width: 1rem;
  background: rgba(20, 18, 15, 0.15);
  border-radius: 3px;
}

.fp-service-core {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: 0;
  min-width: 0.8rem;
  background: rgba(120, 112, 96, 0.28);
  border-radius: 4px;
}

/* Empty corridor/stairwell sections on floor 2 */
.fp-corridor {
  flex-shrink: 0;
  border-radius: 3px;
  background: rgba(120, 112, 96, 0.28);
}

.fp-zone-cols {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex-shrink: 0;
  flex-basis: 0;
  min-width: 0;
}

.fp-zone-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-basis: 0;
  min-width: 1.4rem;
}

.fp-col-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  min-height: 2rem;
  flex-basis: 0;
}

.fp-depth-col {
  display: flex;
  flex-direction: column;
  min-width: 1.4rem;
}

.fp-south-corridor {
  background: rgba(16, 23, 36, 0.07);
  border-radius: 4px 4px 0 0;
  border-bottom: 1.5px solid rgba(16, 23, 36, 0.22);
  flex-shrink: 0;
}

.fp-depth-unit {
  border-radius: 0 0 4px 4px !important;
}

.fp-placeholder {
  padding: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}

.floor-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.3rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.legend-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 3px;
}

.legend-free { background: linear-gradient(145deg, #2c2f35, #1a1d22); }
.legend-reserved { background: #c7a56a; }
.legend-sold { background: linear-gradient(145deg, #a0594d, #7c3f37); }

.floor-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.unit-card,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 12px 44px rgba(17, 24, 38, 0.07);
}


.unit-card {
  padding: 1.5rem;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
}

.unit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-badge.free {
  background: rgba(22, 131, 72, 0.1);
  color: #168348;
}

.status-badge.sold {
  background: rgba(142, 75, 66, 0.12);
  color: #8e4b42;
}

.status-badge.reserved {
  background: rgba(199, 165, 106, 0.16);
  color: #8c6a2e;
}

.price-contact-sm {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.unit-card dl {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}

.unit-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.unit-card dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.unit-card dt svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}

.unit-card dd {
  margin: 0;
  color: var(--ink);
}

.price {
  display: block;
  margin-top: 1.25rem;
  color: var(--gold-dark);
  font-size: 1.22rem;
}

.price-vat {
  font-size: 0.7em;
  font-weight: 600;
  opacity: 0.65;
  margin-left: 0.25em;
}

.unit-card p {
  margin: 0.4rem 0 1.2rem;
  font-weight: 800;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: border-color 150ms, background 150ms;
}
.download-link:hover {
  border-color: var(--gold-dark);
  background: rgba(201, 130, 34, 0.06);
  color: var(--gold-dark);
}

.table-wrap {
  grid-column: 1 / -1;
  overflow-x: auto;
  padding: 0.65rem;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

th,
td {
  padding: 0.82rem 1rem;
  text-align: left;
  white-space: nowrap;
}

th {
  color: #4a535f;
  font-size: 0.72rem;
  text-transform: uppercase;
}

td {
  border-top: 1px solid rgba(16, 23, 36, 0.08);
  font-weight: 700;
}

tr.highlight td {
  background: rgba(201, 130, 34, 0.12);
}

.table-wrap tbody tr[data-unit-id] {
  cursor: pointer;
  transition: background 0.12s;
}

.table-wrap tbody tr[data-unit-id]:hover {
  background: rgba(16, 23, 36, 0.04);
}

.table-wrap tbody tr.tr-active td {
  background: rgba(201, 130, 34, 0.10);
}

.table-wrap tbody tr.tr-active td:first-child strong {
  color: var(--gold-dark);
}

.status {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 999px;
}

.status.free {
  background: #168348;
}

.status.reserved {
  background: #c7a56a;
}

.status.sold {
  background: #8e4b42;
}

.table-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-toggle {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-top: 1px solid var(--line);
  background: none;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.table-toggle:hover {
  background: rgba(16, 23, 36, 0.03);
}

.table-contact-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.table-contact-link:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.feature-row .feature-img-block.reveal { transition-delay: 80ms; }
.feature-row .feature-copy.reveal { transition-delay: 200ms; }

.feature-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 20rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0, transparent 10rem, rgba(255,250,242,0.65) 21rem, var(--bg) 34rem);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.feature-row--flip {
  grid-template-columns: 1fr 1fr;
}

.feature-img-block {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.feature-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  display: block;
  transition: opacity 0.65s ease, transform 300ms ease;
}

.feature-img-block img.loaded {
  opacity: 1;
}

.feature-img-block:hover img {
  transform: scale(1.03);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-copy h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.18;
  margin: 0;
}

.feature-body {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 38ch;
  margin: 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 2fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  border-top: 1px solid rgba(16, 23, 36, 0.08);
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}

.map-card {
  position: relative;
  min-height: clamp(18rem, 22vw, 26rem);
  overflow: hidden;
  border: 1px solid rgba(16, 23, 36, 0.1);
  border-radius: 8px;
  background: #edf0e8;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


.location-cta-mobile { display: none; }

.location-copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 1.7rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  list-style: none;
}

.location-copy li {
  display: flex;
  align-items: center;
}

.loc-dot {
  flex-shrink: 0;
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
}


.progress-section {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 1rem 4.65rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92) 0%, rgba(255, 250, 242, 0.66) 42%, rgba(255, 250, 242, 0.96) 100%),
    url("assets/optimized/wood-progress-bg.webp") center bottom / 100% auto no-repeat;
}

.progress-section::before,
.progress-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.progress-section::before {
  top: 0;
  height: 4rem;
  background: linear-gradient(180deg, #f6f0e7, rgba(255, 250, 242, 0));
}

.progress-section::after {
  bottom: 0;
  height: 4rem;
  background: linear-gradient(0deg, #f6f0e7, rgba(255, 250, 242, 0));
}

.progress-section > * {
  position: relative;
  z-index: 1;
}

.progress-section p {
  margin: 0.7rem 0 2.6rem;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(760px, 100%);
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(16, 23, 36, 0.16);
}

.timeline article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.timeline span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(16, 23, 36, 0.18);
  border-radius: 50%;
  background: #f8f4ec;
}

.timeline span::after {
  content: "✓";
  font-size: 1rem;
  font-weight: 700;
  color: rgba(16, 23, 36, 0.35);
}

.timeline .done span {
  border-color: var(--gold);
  background: var(--gold);
}

.timeline .done span::after {
  color: #fff;
}

.timeline strong {
  color: var(--gold-dark);
  font-size: 0.86rem;
}

.timeline small {
  color: var(--ink);
  font-size: 0.75rem;
}

.combined-callout {
  padding: 4.5rem 1rem 4.65rem;
}

.callout-intro {
  position: relative;
  width: min(var(--wide), 100%);
  margin: 0 auto 1.6rem;
  padding: 0 1rem;
  display: grid;
  isolation: isolate;
}

.callout-intro > * {
  grid-column: 1;
  grid-row: 1;
}

.callout-intro h2 {
  margin: 0 auto;
  max-width: 100%;
}

.callout-intro-content {
  z-index: 1;
  align-self: center;
  justify-self: center;
  text-align: center;
  padding: 1.5% 1rem 1%;
  max-width: 42rem;
}

.callout-roof {
  display: block;
  width: 100%;
  height: auto;
  align-self: stretch;
  justify-self: stretch;
  z-index: 0;
  stroke: var(--charcoal);
  stroke-width: 1.8;
  stroke-linecap: round;
  fill: none;
  pointer-events: none;
}

.combined-callout .callout-eyebrow-top {
  margin: 0 0 0.7rem;
  color: var(--gold-dark);
}

.combined-callout .callout-subtitle {
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 460px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .callout-intro {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 0;
    margin-bottom: 0.2rem;
  }
  .callout-intro-content {
    order: 0;
    padding: 0;
    max-width: none;
  }
  .callout-roof {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0.4rem auto 0;
  }
}

.br-mobile {
  display: none;
}

.br-desktop {
  display: inline;
}

@media (max-width: 480px) {
  .br-mobile {
    display: inline;
  }
  .br-desktop {
    display: none;
  }
}

.callout-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  width: min(var(--wide), 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

.callout-card {
  display: grid;
  grid-template-rows: auto auto;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(16, 23, 36, 0.08);
  box-shadow: 0 8px 30px rgba(16, 23, 36, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.callout-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(16, 23, 36, 0.12);
  border-color: rgba(166, 124, 60, 0.45);
}

.callout-card-text {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.6rem 1.2rem;
}

.callout-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.callout-card-text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}

.callout-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.callout-arrow {
  margin-top: 0.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.callout-arrow span {
  display: inline-block;
  transition: transform 200ms ease;
}

.callout-card:hover .callout-arrow span {
  transform: translateX(4px);
}

.callout-card-imgs {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  background: #f6f0e7;
  overflow: hidden;
}

.callout-card-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.callout-img-a {
  clip-path: polygon(0 0, 58% 0, 38% 100%, 0 100%);
}

.callout-img-b {
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 42% 100%);
}

.combined-callout .gallery-disclaimer {
  width: min(var(--wide), 100%);
  margin: 1.4rem auto 0;
  padding: 0 1rem;
  text-align: center;
}

@media (max-width: 760px) {
  .callout-pair {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .callout-card {
    grid-template-rows: auto auto;
  }
  .callout-card-imgs {
    aspect-ratio: 16/9;
    order: 0;
  }
  .callout-card-text {
    order: 1;
    text-align: left;
    padding: 1.1rem 1.3rem 1.3rem;
  }
  .callout-card-text strong {
    font-size: 1.4rem;
  }
}

.section-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery h2 {
  max-width: 720px;
  margin-bottom: 1.45rem;
}

.gallery-cta-mobile {
  display: none;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 0.9rem;
  cursor: pointer;
}

.gallery-strip img {
  transition: opacity 200ms ease;
}

.gallery-strip:hover img {
  opacity: 0.85;
}

.gallery-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: rgba(16, 23, 36, 0.38);
  font-style: italic;
}

.gallery-strip img {
  width: 100%;
  height: clamp(8.6rem, 9vw, 11rem);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(17, 24, 38, 0.12);
}


.form-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1.5rem);
  z-index: 999;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
  white-space: normal;
  text-align: center;
}

.form-toast--success { background: #2d7a4f; }
.form-toast--error   { background: #b83232; }

.form-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(18rem, 1.3fr) minmax(13rem, 0.65fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  padding: 3.4rem var(--page-pad) 2rem;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    linear-gradient(90deg, rgba(29, 37, 43, 0.96), rgba(29, 37, 43, 0.9)),
    url("assets/optimized/footer-bg.webp") center 30%/cover;
}

.site-footer .eyebrow {
  color: #e5a64b;
}

.footer-copy h2 {
  font-size: clamp(2.05rem, 4.5vw, 3.05rem);
}

.footer-copy p {
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-self: start;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  padding: 0.86rem 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(213, 148, 54, 0.75);
}

.message-field {
  grid-column: 1 / -1;
}

.contact-form button {
  width: min(100%, 17rem);
}

.footer-contact {
  display: grid;
  gap: 1rem;
  align-content: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-contact-nav a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-developer {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.footer-bottom-nav a {
  white-space: nowrap;
}

.footer-bottom-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-bottom-nav a:hover { color: #fff; }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 90vw;
  cursor: default;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  border-radius: 4px;
  transition: color 150ms;
}
.lightbox-close:hover { color: #fff; }

@media (min-width: 1021px) and (max-width: 1600px) {
  .hero {
    min-height: 780px;
  }
  .hero-copy {
    width: min(100%, 34rem);
    margin-right: calc(var(--page-pad) * -1 + 1rem);
  }
  .hero-visual img {
    object-position: 50% 100%;
    transform: translateY(-40px);
  }
  .hero-facts {
    top: 6.5rem;
  }
}

@media (max-width: 1440px) {
  .availability {
    grid-template-columns: 1fr;
  }
  .floor-panel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    padding: 1rem;
  }

  .nav-toggle {
    display: inline-grid;
    width: 2.85rem;
    height: 2.85rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.82);
  }

  .nav-toggle span {
    width: 1.1rem;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle span + span {
    margin-top: -1rem;
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(16, 23, 36, 0.1);
    overflow: hidden;
  }

  .site-header.is-open .nav-dropdown {
    display: flex;
  }

  .site-nav,
  .header-actions {
    position: static;
    display: flex;
    background: transparent;
    left: auto;
    right: auto;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0.55rem;
  }

  .site-nav a {
    padding: 0.95rem;
  }

  .site-nav a.is-active {
    background: rgba(201, 130, 34, 0.1);
    color: var(--gold-dark);
    border-radius: 4px;
  }

  .header-actions {
    justify-content: space-between;
    border: none;
    border-radius: 0;
    padding: 0.8rem;
  }

  .brand-logo {
    height: 44px;
  }

  .page-hero {
    min-height: 14rem;
    padding: 5rem 1rem 1.5rem;
  }

  .hero {
    display: block;
    min-height: 95svh;
    padding: 5.5rem 1rem 6rem;
    margin-bottom: -3rem;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 45%,
      rgba(255,250,242,0.1) 58%,
      rgba(255,250,242,0.4) 72%,
      rgba(255,250,242,0.78) 86%,
      rgba(255,250,242,0.97) 100%
    );
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    margin-top: calc(1.55rem + 380px);
  }

  .hero-visual::after {
    height: 25rem;
  }

  .hero .lead {
    margin-top: 1.55rem;
  }

  h1 {
    max-width: 16ch;
  }

  .hero-visual {
    inset: -120px 0 auto 0;
    height: calc(72svh + 120px);
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    margin-left: 0%;
    object-fit: cover;
    object-position: 20% 40%;
    transform: translateY(0%);
  }

  .hero-facts {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: row;
    margin-top: 1.8rem;
  }

  .availability,
  .location,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .location-cta-mobile { display: flex; }
  .location-cta-desktop { display: none; }

  .location-cta-mobile {
    grid-column: 1;
    order: 3;
  }

  .map-card { order: 2; }
  .location-copy { order: 1; }

  .unit-card {
    order: 2;
  }

  .table-wrap {
    order: 3;
  }

  .feature-sections {
    padding-top: 28rem;
  }

  .floor-panel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .floor-grid {
    width: 1100px;
    min-height: 19rem;
    border: none;
    box-shadow: none;
  }

  .floor-legend {
    margin-top: 2rem;
  }

  .feature-row,
  .feature-row--flip {
    grid-template-columns: 1fr;
  }

  .feature-row--flip .feature-copy {
    order: 2;
  }

  .feature-row--flip .feature-img-block {
    order: 1;
  }

  .feature-copy {
    text-align: center;
    align-items: center;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip img,
  .gallery-strip img:first-child {
    height: 12rem;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 5.6rem;
    height: 1.45rem;
  }

  .brand {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    line-height: 1.58;
  }

  .hero .lead {
    margin-top: 1.55rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero-facts {
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 1.5rem;
  }

  .hero-facts article {
    padding-right: 0.75rem;
    flex: 1;
  }

  .hero-facts article:not(:first-child) {
    padding-left: 0.75rem;
    border-top: none;
    border-left: 1px solid rgba(16, 23, 36, 0.12);
  }

  .section {
    width: min(100% - 1rem, 1180px);
    padding: 3.4rem 0;
  }

.case-grid,
  .gallery-strip,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 1.1rem;
    bottom: 1.1rem;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .timeline article {
    display: grid;
    justify-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0;
  }

  .timeline strong,
  .timeline small {
    text-align: center;
  }

  .table-wrap th:nth-child(3),
  .table-wrap td:nth-child(3),
  .table-wrap th:nth-child(5),
  .table-wrap td:nth-child(5) {
    display: none;
  }

  .table-wrap table {
    table-layout: fixed;
    width: 100%;
    min-width: unset;
    font-size: 0.78rem;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 0.55rem 0.4rem;
  }

  .section-headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-headline .secondary-cta {
    display: none;
  }

  .gallery-cta-mobile {
    display: inline-flex;
    margin-top: 1rem;
  }

  .map-card {
    min-height: 23rem;
  }


  .map-pin {
    top: 2.5rem;
    right: 1rem;
    left: 1rem;
  }
}

/* === INNER PAGES === */

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(22rem, 50vh, 36rem);
  padding: 7rem var(--page-pad) 3rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 18rem;
    padding: 5rem 1rem 1.5rem;
  }
  .page-hero--tall {
    min-height: 22rem;
  }
  .page-hero--tall img[src*="manniva_1920"] {
    object-position: 45% 30% !important;
  }
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent 0%, rgba(16,23,36,0.44) 50%, rgba(16,23,36,0.88) 100%);
  pointer-events: none;
}

.page-hero::before { content: none; }

.page-hero--tall {
  min-height: clamp(26rem, 52vh, 37rem);
}

.page-hero--tall::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 14rem;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(248, 244, 238, 1) 0%,
    rgba(248, 244, 238, 0.96) 12%,
    rgba(248, 244, 238, 0.78) 28%,
    rgba(248, 244, 238, 0.48) 50%,
    rgba(248, 244, 238, 0.2) 75%,
    transparent 100%
  );
  pointer-events: none;
}

@media (max-width: 480px) {
  .page-hero--tall {
    min-height: 22rem;
  }
  .page-hero--tall::before {
    height: 8rem;
  }
}


.page-hero .crumb {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.page-hero h1 {
  color: #fff;
  max-width: 22ch;
  text-shadow: none;
  position: relative;
  padding-bottom: 1rem;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-top: 1rem;
  border-radius: 2px;
}

.page-hero .lead {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  text-shadow: none;
}

.page-section {
  width: var(--wide);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.split-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro-split {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 0;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  grid-template-columns: 0.85fr 1.05fr;
}

.intro-figure {
  margin: 0 -4rem -4rem 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 10;
  max-height: 340px;
  box-shadow: 0 22px 50px rgba(16, 23, 36, 0.22);
  position: relative;
  z-index: 1;
}

.intro-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prose--hero h2 {
  position: relative;
  overflow-wrap: normal;
  word-break: normal;
}

.prose--hero h2 .dot-gold {
  color: var(--ink);
}

.prose--hero h2::after {
  content: none;
}

.prose--hero p {
  max-width: 560px;
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: var(--wide);
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
}

.info-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.78);
}

.info-card .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  background: rgba(201, 130, 34, 0.14);
  color: var(--gold-dark);
}

.info-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.info-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.prose p {
  color: #2b3440;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.spec-list li {
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.spec-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.prose-wide {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tech-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.split-2 + .tech-section {
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
}

section.split-2 {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-top: 2.5rem;
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.tech-card {
  background: rgba(255, 250, 242, 0.55);
  border: 1px solid rgba(166, 124, 60, 0.06);
  border-radius: 12px;
  padding: 1.1rem 1.5rem 1.2rem;
  box-shadow: 0 1px 2px rgba(16, 23, 36, 0.02);
  align-self: start;
}

.tech-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(201, 130, 34, 0.14);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.tech-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.tech-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

.tech-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.tech-card li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}

.tech-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1.65;
}

.tech-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.8rem;
  align-items: center;
  padding: 2.2rem 2.4rem;
}

.tech-card--dark {
  background: var(--ink);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(16, 23, 36, 0.18);
}

.tech-card--dark .tech-wide-head h3,
.tech-card--dark h3 {
  color: #fff;
}

.tech-card--dark .tech-icon {
  background: rgba(201, 130, 34, 0.18);
  color: var(--gold);
}

.tech-card--dark .tech-wide-items li {
  color: rgba(255, 255, 255, 0.78);
}

.tech-card--dark .tech-wide-items li::before {
  color: var(--gold);
}

/* STATS CARD */
.stats-section {
  padding-top: 0;
  padding-bottom: 0;
}

.stats-card {
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid rgba(166, 124, 60, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.8rem 1.6rem;
  position: relative;
  z-index: 2;
  margin-top: 0;
  box-shadow: 0 18px 40px rgba(16, 23, 36, 0.1);
}

.stats-card .eyebrow {
  margin: 0 0 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  gap: 1rem 1.4rem;
  align-items: center;
}

.stat-num-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  padding-right: 0.8rem;
  border-right: 1px solid rgba(16, 23, 36, 0.08);
  min-height: 5rem;
}

.stats-grid > div:nth-child(3) {
  border-right: 1px solid rgba(16, 23, 36, 0.08);
}

.stat-num-item .tech-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.stat-num-item .tech-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.stat-unit {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.stat-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1.6rem;
}

.stat-feature .tech-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.stat-feature .tech-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.stat-feature > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-feature strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.stat-feature span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.tech-wide-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tech-wide-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.tech-icon--lg {
  width: 3.4rem;
  height: 3.4rem;
}

.tech-icon--lg svg {
  width: 1.6rem;
  height: 1.6rem;
}

.tech-card ul.tech-wide-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.55rem 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-wide-items li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
  padding-left: 1.05rem;
  position: relative;
}

.tech-wide-items li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Park card — icon+label pairs, horizontal */
.park-card {
  grid-template-columns: auto 1fr;
  gap: 1.4rem 2.4rem;
  align-items: center;
  padding: 1.6rem 2.2rem;
}

.park-card .tech-wide-head {
  gap: 1rem;
}

.park-card h3 {
  font-size: 1.75rem;
}

.park-card .tech-icon--lg {
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border: 1.5px solid rgba(217, 160, 74, 0.5);
}

.park-card .tech-icon--lg svg {
  width: 1.85rem;
  height: 1.85rem;
}

.tech-card ul.park-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: space-between;
}

.tech-card ul.park-items li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 1rem;
  position: relative;
}

.tech-card ul.park-items li::before {
  content: none;
}

.tech-card ul.park-items li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.12);
}

.park-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(201, 130, 34, 0.28);
  color: #d9a04a;
  flex-shrink: 0;
}

.park-ico svg {
  width: 1.65rem;
  height: 1.65rem;
}

.building-side {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.building-img {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  max-height: 360px;
}

.building-img img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.building-tech-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.tech-block h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.tech-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tech-block li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}

.tech-block li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0;
}

.feature-strip-main {
  grid-row: 1;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-strip-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-strip-side {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-strip-side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  min-height: 0;
}

.feature-strip-wide {
  grid-column: 1 / -1;
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.kaane-collage { display: flex; flex-direction: column; gap: 0.75rem; }
.kaane-top-wrap { position: relative; border-radius: 10px; overflow: hidden; }
.kaane-top-wrap img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.kaane-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.kaane-thumb { position: relative; border-radius: 10px; overflow: hidden; }
.kaane-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.plan-grid figure {
  margin: 0;
}

.plan-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan-grid figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.plan-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.form-light span { color: var(--muted); }

.form-light input,
.form-light textarea {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.contact-hours-label { display: block; font-size: 0.95rem; }

.contact-block h2 { margin-bottom: 0.4rem; }

.contact-block .row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.contact-block .row .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(201, 130, 34, 0.14);
  color: var(--gold-dark);
}

.contact-block .row strong { display: block; font-size: 0.95rem; }
.contact-block .row span { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

.cta-band {
  width: var(--wide);
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 14px;
  background: linear-gradient(135deg, #1d252b, #2f3a42);
  color: #fff;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0.6rem 0 1.6rem; }

@media (max-width: 900px) {
  .split-2 { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .plan-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .tech-cards { grid-template-columns: 1fr 1fr; }
  .tech-wide-items { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-grid > div:nth-child(3) { border-right: none; }
  .stats-grid .stat-feature { grid-column: span 2; flex-direction: row; padding-left: 0; }
  .stat-num-item { border-right: none; min-height: auto; padding-right: 0; }

  .intro-figure { margin: 0 0 -3rem 0; aspect-ratio: 16 / 10; max-height: 320px; }
  .intro-split { padding-top: clamp(1.5rem, 4vw, 2.5rem); gap: 1.4rem; }
  .prose--hero h2 { font-size: clamp(2rem, 7vw, 2.6rem); }

  .tech-card ul.park-items { grid-template-columns: repeat(2, 1fr); gap: 0.8rem 0; }
  .tech-card ul.park-items li:nth-child(2n)::after { display: none; }
  .park-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem 1.4rem; }
}

@media (max-width: 640px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-cards { grid-template-columns: 1fr; }
  .tech-card--wide { grid-template-columns: 1fr; }
  .tech-wide-items { grid-template-columns: 1fr; }
  .tech-wide-head { flex-direction: row; text-align: left; }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div:nth-child(3) { border-right: none; }
  .stats-grid .stat-feature { grid-column: span 1; flex-direction: column; align-items: flex-start; padding-left: 0; gap: 0.5rem; }
  .stat-num-item { border-right: none; min-height: auto; padding-right: 0; }
  .tech-card ul.park-items { grid-template-columns: 1fr; }
  .tech-card ul.park-items li::after { display: none !important; }
  .tech-card ul.park-items li { justify-content: flex-start; padding: 0; }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

