:root {
  --bg: #ffffff;
  --secondary: #f5f2ed;
  --text: #171715;
  --muted: #67615a;
  --accent: #b99b62;
  --accent-dark: #7f6840;
  --sage: #526756;
  --border: rgba(0,0,0,0.08);
  --dark: #11100e;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: -.01em;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--text);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
}
.brand {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .86rem;
  font-weight: 900;
}
.brand small {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .32em;
}
.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}
.site-nav a:hover::after { right: 0; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34) 48%, rgba(0,0,0,.52));
}
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  padding: 68px 0 116px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}
h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
}
h2 { font-size: clamp(2.25rem, 4.2vw, 4.5rem); }
h3 { font-size: 1.45rem; }
.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.86);
}
.hero-actions,
.developer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline { border-color: var(--border); color: var(--text); }
.btn-whatsapp {
  gap: 10px;
}
.btn-whatsapp svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}
.hero-meta {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-chips {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(16,15,14,.34);
  backdrop-filter: blur(12px);
}
.hero-chips span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px 12px;
  border-right: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.hero-chips span:last-child { border-right: 0; }

.concept-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d9d1c3;
}
.concept-item {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 4vw, 54px);
  background: var(--dark);
  color: #fff;
}
.concept-item span {
  margin-bottom: 48px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.concept-item h2 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}
.concept-item p {
  max-width: 270px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
}

.section {
  padding: clamp(84px, 12vw, 150px) clamp(20px, 5vw, 64px);
}
.section-grid,
.location-layout,
.contact {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.section-copy p,
.contact-copy p,
.developer-copy p,
.feature-row p,
.section-heading {
  color: var(--muted);
  font-size: 1rem;
}
.section-copy p:first-of-type { margin-top: 28px; }
.editorial-image,
.location-image,
.feature-row picture {
  overflow: hidden;
  background: var(--secondary);
}
.editorial-image img,
.location-image img,
.feature-row img,
.carousel img {
  transition: transform 1s ease;
}
.editorial-image:hover img,
.location-image:hover img,
.feature-row:hover img,
.carousel:hover img {
  transform: scale(1.04);
}
.story { background: var(--secondary); }
.story .section-grid {
  width: min(1320px, 100%);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(42px, 5.2vw, 76px);
}
.story .section-copy h2 {
  max-width: 620px;
  font-size: clamp(2.45rem, 3.8vw, 4.2rem);
}
.story .editorial-image {
  align-self: stretch;
  min-height: clamp(420px, 42vw, 620px);
}
.story .editorial-image img {
  height: 100%;
  object-fit: cover;
}

.brochure-cta {
  background: #fff;
}
.brochure-panel {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  min-height: 560px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
}
.brochure-media,
.brochure-media img {
  height: 100%;
}
.brochure-media {
  position: relative;
  min-width: 0;
}
.brochure-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,16,14,.06), rgba(17,16,14,.82));
}
.brochure-media img {
  object-fit: cover;
}
.brochure-copy {
  position: relative;
  margin-left: -78px;
  display: grid;
  align-content: center;
  padding: clamp(38px, 6vw, 82px) clamp(34px, 5vw, 78px);
  background: linear-gradient(90deg, rgba(17,16,14,.94), #11100e 18%);
}
.brochure-copy h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.7vw, 5.4rem);
  letter-spacing: -.015em;
}
.brochure-copy p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
}
.brochure-copy .btn {
  justify-self: start;
  margin-top: 18px;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 44px;
}
.section-heading h2 {
  max-width: 880px;
  color: var(--text);
}
.location-layout { align-items: stretch; }
.location-image img { height: 100%; object-fit: cover; }
.icon-grid,
.why-grid,
.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.icon-grid article,
.why-grid article,
.unit-grid article {
  background: #fff;
  padding: 28px;
}
.icon-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 900;
}
.icon-grid p,
.why-grid p,
.unit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.essentials {
  background: #fff;
}
.unit-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.essentials-accordion {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.essential-item {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.essential-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 26px 4px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.essential-item button span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}
.essential-item button b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s ease;
}
.essential-item.is-open button b {
  transform: rotate(45deg);
}
.essential-item ul {
  margin: 0;
  padding: 0 0 28px;
  list-style: none;
  color: var(--muted);
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.essential-item.is-open ul {
  display: grid;
}
.essential-item li {
  padding: 14px 16px;
  background: var(--secondary);
  border: 1px solid var(--border);
  color: #544f49;
}

.connectivity {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2a2723;
  color: #fff;
}
.stat {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px 20px;
  background: var(--dark);
  text-align: center;
}
.stat strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 500;
}
.stat span {
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.facilities { background: var(--secondary); overflow: hidden; }
.carousel {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
}
.carousel-track {
  position: relative;
  min-height: clamp(380px, 60vw, 680px);
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.slide img {
  height: 100%;
  object-fit: cover;
}
.slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 16px;
  background: rgba(255,255,255,.9);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 900;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(0,0,0,.34);
  color: #fff;
  cursor: pointer;
}
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

.architecture {
  display: grid;
  gap: clamp(54px, 8vw, 110px);
}
.feature-row {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.feature-row.reverse {
  grid-template-columns: .82fr 1.18fr;
}
.feature-row.reverse picture { order: 2; }
.feature-row p:last-child { margin-bottom: 0; }

.gallery {
  background: var(--secondary);
}
.gallery-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #ddd5ca;
}
.gallery-grid .wide {
  grid-column: span 2;
}
.gallery-grid .tall {
  grid-row: span 2;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
}
.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plans {
  background: #fff;
}
.layout-selector {
  width: min(1320px, 100%);
  margin: 0 auto;
}
.layout-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.layout-buttons button {
  min-height: 86px;
  border: 1px solid rgba(82,103,86,.2);
  background: #f7faef;
  color: var(--sage);
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.layout-buttons button:hover {
  transform: translateY(-2px);
}
.layout-buttons button.is-active {
  background: var(--sage);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  outline: 2px solid rgba(82,103,86,.35);
}
.layout-buttons span,
.layout-buttons strong {
  display: block;
}
.layout-buttons span {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.layout-buttons strong {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.layout-panel {
  display: none;
  grid-template-columns: minmax(270px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 560px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(82,103,86,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fbfaf7);
  box-shadow: 0 22px 80px rgba(0,0,0,.06);
}
.layout-panel.is-active { display: grid; }
.layout-info {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 38px);
  border-radius: 14px;
  background: var(--sage);
  color: #fff;
}
.layout-info .eyebrow {
  color: rgba(255,255,255,.7);
}
.layout-info h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.layout-info ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.layout-info li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
}
.layout-panel picture {
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.layout-panel img {
  width: 100%;
  height: min(58vw, 680px);
  object-fit: contain;
  background: #fff;
}
.unit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}
.unit-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.unit-grid strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.why { background: var(--secondary); }
.why-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.developer {
  padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.78)), url("../images/central-park.jpg") center/cover;
  color: #fff;
}
.developer-copy {
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}
.developer-copy p { color: rgba(255,255,255,.76); }
.developer-points {
  justify-content: center;
}
.developer-points span {
  border: 1px solid rgba(255,255,255,.22);
  padding: 12px 18px;
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact {
  align-items: start;
}
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4.4vw, 54px);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f7f4ef, #fff);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184,156,101,.22);
  pointer-events: none;
}
.contact-card > * {
  position: relative;
  z-index: 1;
}
.contact-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.contact-card p {
  color: var(--muted);
}
.contact-label {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-whatsapp {
  width: 100%;
  margin-top: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.mobile-cta { display: none; }
.site-footer {
  padding: 58px clamp(20px, 5vw, 64px);
  background: var(--dark);
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  text-align: center;
}
.site-footer p {
  width: min(1040px, 100%);
  margin: 18px auto 0;
}
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
}
.footer-links button {
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  background: transparent;
  padding: 6px 20px;
  color: rgba(255,255,255,.62);
  cursor: pointer;
  font-size: .92rem;
}
.footer-links button:last-child { border-right: 0; }
.footer-links button:hover,
.footer-links button:focus {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(34px, 6vw, 78px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}
.modal-panel h2 {
  margin-bottom: 36px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.modal-panel h3 {
  margin: 34px 0 16px;
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.modal-panel p {
  color: #85858b;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.9;
}
.modal-close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #7d7d82;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255,255,255,.97);
    color: var(--text);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a { padding: 14px 16px; }
  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    place-content: center;
  }
  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }
  .section-grid,
  .location-layout,
  .feature-row,
  .feature-row.reverse,
  .contact,
  .layout-panel,
  .brochure-panel {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-bottom: 210px;
  }
  .hero-chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-chips span {
    min-height: 58px;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .hero-chips span:nth-child(2n) {
    border-right: 0;
  }
  .hero-chips span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .concept-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-item {
    min-height: 270px;
  }
  .brochure-panel {
    min-height: 0;
  }
  .brochure-media {
    min-height: 360px;
  }
  .brochure-copy {
    margin-left: 0;
  }
  .layout-buttons {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
  .layout-panel {
    min-height: 0;
  }
  .layout-panel img {
    height: auto;
    max-height: 620px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .story .section-grid {
    grid-template-columns: 1fr;
  }
  .story .editorial-image {
    min-height: 360px;
  }
  .feature-row.reverse picture { order: 0; }
  .connectivity { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .unit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .site-header { padding: 16px 18px; }
  .hero {
    min-height: 1100px;
    place-items: start center;
  }
  .hero-content {
    width: calc(100% - 34px);
    padding: 118px 0 280px;
  }
  h1 { font-size: clamp(2.8rem, 14.5vw, 4.2rem); }
  h2,
  .story .section-copy h2 { font-size: clamp(2.15rem, 10vw, 3.05rem); }
  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-meta {
    display: grid;
    gap: 8px;
    font-size: .68rem;
  }
  .hero-actions .btn { width: 100%; }
  .hero-chips {
    left: 17px;
    right: 17px;
    bottom: 80px;
    grid-template-columns: 1fr;
  }
  .hero-chips span,
  .hero-chips span:nth-child(2n) {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    font-size: .66rem;
  }
  .hero-chips span:last-child {
    border-bottom: 0;
  }
  .concept-strip {
    grid-template-columns: 1fr;
  }
  .concept-item {
    min-height: 220px;
  }
  .concept-item span {
    margin-bottom: 28px;
  }
  .section { padding: 74px 18px; }
  .story .editorial-image {
    min-height: 280px;
  }
  .brochure-media {
    min-height: 260px;
  }
  .brochure-copy {
    padding: 34px 24px 38px;
  }
  .brochure-copy .btn {
    width: 100%;
  }
  .essential-item ul {
    grid-template-columns: 1fr;
  }
  .layout-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .layout-buttons button {
    min-height: 76px;
  }
  .layout-buttons span {
    font-size: .86rem;
  }
  .layout-buttons strong {
    font-size: .9rem;
  }
  .layout-panel {
    padding: 16px;
    border-radius: 14px;
  }
  .layout-info {
    padding: 24px;
  }
  .layout-info ul {
    margin-top: 18px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 10px;
  }
  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }
  .contact-card {
    padding: 30px 24px;
  }
  .contact-card::before {
    inset: 12px;
  }
  .contact-card h3 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }
  .icon-grid,
  .why-grid,
  .unit-grid,
  .connectivity {
    grid-template-columns: 1fr;
  }
  .stat { min-height: 190px; }
  .carousel-track { min-height: 420px; }
  .carousel-btn { top: auto; bottom: 18px; }
  .floating-whatsapp { display: none; }
  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark);
  }
  .mobile-cta a {
    min-height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-cta a:first-child { background: var(--accent); }
  .site-footer {
    padding: 48px 18px 34px;
  }
  .footer-brand {
    font-size: 1.05rem;
  }
  .footer-links {
    display: grid;
    gap: 8px;
  }
  .footer-links button {
    border: 1px solid rgba(255,255,255,.1);
    padding: 10px 14px;
  }
  .modal {
    padding: 10px;
  }
  .modal-panel {
    max-height: 88vh;
    border-radius: 18px;
    padding: 38px 24px;
  }
  .modal-panel h2 {
    margin-bottom: 24px;
    letter-spacing: .1em;
  }
  .modal-panel h3 {
    letter-spacing: .09em;
  }
  .modal-close {
    top: 12px;
    right: 12px;
  }
}

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