:root {
  --ivory: #f4f1ea;
  --ivory-soft: #faf8f3;
  --carbon: #171512;
  --deep: #0e0d0b;
  --champagne: #b9a15f;
  --concrete: #d8d6d0;
  --walnut: #8a5a38;
  --muted: #68645d;
  --line: rgba(23, 21, 18, 0.14);
  --line-light: rgba(244, 241, 234, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --container: min(1200px, calc(100% - 40px));
  --section-space: clamp(6rem, 9vw, 9.5rem);
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--carbon);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }
figure { margin: 0; }
.container { width: var(--container); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-dark { color: var(--ivory); background: var(--deep); }
.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px; padding: .7rem 1rem;
  color: var(--deep); background: var(--champagne); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--walnut);
  font: 600 clamp(.8rem, .75rem + .18vw, .88rem)/1 var(--condensed);
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--champagne); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
h1 {
  max-width: 790px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  line-height: .99;
}
h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 4.55vw, 4.8rem);
  line-height: 1;
}
h2 em { color: var(--walnut); font-style: italic; }
.section-dark h2 em { color: var(--champagne); }
h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
.lead { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.95rem); line-height: 1.3; }
.section-intro { max-width: 780px; margin-bottom: clamp(3rem, 5.25vw, 4.85rem); }
.section-intro > p:last-child { max-width: 610px; margin-bottom: 0; color: var(--muted); }
.section-intro-split { display: grid; max-width: none; gap: 1.5rem; }
.section-intro-split > p { align-self: end; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid var(--carbon);
  background: var(--carbon);
  color: var(--ivory);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { border-color: var(--walnut); background: var(--walnut); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }
.button-compact { min-height: 40px; padding: .55rem 1rem; }
.button-light { border-color: var(--ivory); background: var(--ivory); color: var(--deep); }
.button-outline-light { border-color: rgba(244, 241, 234, .58); background: transparent; color: var(--ivory); }
.button-outline-dark { background: transparent; color: var(--carbon); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.microcopy { margin: 1rem 0 0; color: var(--muted); font-size: .72rem; }
.microcopy-light { color: rgba(244, 241, 234, .65); }
.legal-note { margin: 0; color: #8c877f; font-size: .76rem; }
.text-link {
  display: inline-block;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Official brand assets */
.diamante-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.diamante-logo-header { width: clamp(132px, 12vw, 168px); }
.diamante-logo-hero { width: clamp(210px, 28vw, 320px); margin: 1.1rem 0 2rem; }
.diamante-logo-brochure { width: min(220px, 74vw); }
.diamante-logo-cta { width: clamp(190px, 24vw, 280px); margin-bottom: 2.5rem; }
.diamante-logo-footer { width: min(190px, 70vw); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(14, 13, 11, .88), rgba(14, 13, 11, .55));
  border-bottom: 1px solid rgba(244, 241, 234, .12);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  color: var(--carbon);
  background: rgba(244, 241, 234, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(14, 13, 11, .08);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  width: min(1380px, calc(100% - 32px));
  height: 76px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; min-width: max-content; align-items: center; }
.site-header.is-scrolled .diamante-logo-header,
.site-header.menu-active .diamante-logo-header {
  filter: invert(1);
}
.desktop-nav, .header-cta { display: none; }
.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .25s ease; }
.site-header.menu-active { color: var(--carbon); background: var(--ivory); }
.site-header.menu-active .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.menu-active .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { height: calc(100svh - 76px); padding: 2.5rem 20px; background: var(--ivory); }
.mobile-menu nav { display: flex; height: 100%; flex-direction: column; gap: 1rem; }
.mobile-menu nav > a:not(.button) { font: 500 clamp(1.9rem, 9vw, 3.2rem)/1 var(--serif); }
.mobile-menu .button { margin-top: auto; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(780px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--deep);
}
.hero-background, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-background {
  object-fit: cover;
  object-position: 57% center;
  filter: brightness(1.08) contrast(1.02) saturate(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 13, 11, .7) 0%, rgba(14, 13, 11, .44) 48%, rgba(14, 13, 11, .08) 100%),
    linear-gradient(180deg, rgba(14, 13, 11, .16), rgba(14, 13, 11, .05) 55%, rgba(14, 13, 11, .34));
}
.hero-content { position: relative; z-index: 2; padding-block: 9rem 5.5rem; }
.hero-copy { max-width: 650px; margin-bottom: 0; color: rgba(244, 241, 234, .78); }
.hero-commercial { display: flex; margin-top: 2.3rem; flex-direction: column; align-items: flex-start; gap: 1.6rem; }
.price-block {
  display: inline-flex;
  min-width: 270px;
  padding: .9rem 1.2rem 1rem;
  align-items: center;
  flex-direction: column;
  border-block: 1px solid rgba(185, 161, 95, .3);
  text-align: center;
}
.price-block > span {
  margin-bottom: .5rem;
  color: var(--champagne);
  font: 600 .78rem/1 var(--condensed);
  letter-spacing: .23em;
  text-transform: uppercase;
}
.price-block strong {
  white-space: nowrap;
  font: 500 clamp(2.25rem, 4.2vw, 3.2rem)/1 var(--serif);
  letter-spacing: -.015em;
}
.price-block small { font: 600 .68rem/1 var(--sans); letter-spacing: .14em; }
.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 1.5rem;
  color: rgba(244, 241, 234, .65);
  font: 600 .65rem/1 var(--condensed);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll span { margin-left: .55rem; color: var(--champagne); }

/* Editorial statement */
.editorial-statement { padding-block: clamp(5.5rem, 9vw, 8.5rem); background: var(--ivory-soft); }
.statement-content { max-width: 940px; text-align: center; }
.statement-content blockquote {
  margin: 0 auto 1.8rem;
  font: 500 clamp(2.4rem, 4.8vw, 4.6rem)/1.05 var(--serif);
  letter-spacing: -.02em;
}
.statement-content > p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); }

/* Project */
.project-layout { display: grid; gap: 3rem; }
.project-visual { position: relative; }
.project-visual img { aspect-ratio: 4/4.5; object-fit: cover; }
.project-visual figcaption, .equipment-visual figcaption {
  margin-top: .75rem;
  color: var(--muted);
  font: 600 .75rem/1.4 var(--condensed);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-copy { align-self: center; }
.project-copy > p:not(.lead) { color: var(--muted); }
.fact-list { margin: 2.25rem 0 0; border-top: 1px solid var(--line); }
.fact-list div {
  display: grid;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 40% 60%;
}
.fact-list dt {
  color: var(--muted);
  font: 600 .68rem/1.5 var(--condensed);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fact-list dd { margin: 0; font-weight: 500; }

/* Apartments */
.apartments-section { background: var(--concrete); }
.apartment-photo { position: relative; margin-bottom: 2rem; overflow: hidden; }
.apartment-photo img { min-height: 460px; aspect-ratio: 16/8; object-fit: cover; object-position: center; }
.photo-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(88%, 390px);
  padding: 1.25rem 1.4rem;
  color: var(--ivory);
  background: rgba(14, 13, 11, .93);
}
.photo-note span {
  display: block;
  margin-bottom: .45rem;
  color: var(--champagne);
  font: 600 .68rem/1 var(--condensed);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.photo-note strong { font: 500 1.35rem/1.2 var(--serif); }
.feature-cards { display: grid; gap: 1.05rem; }
.feature-card {
  display: flex;
  min-height: 230px;
  padding: 1.9rem;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(23, 21, 18, .13);
  background: rgba(244, 241, 234, .82);
  box-shadow: 0 12px 34px rgba(23, 21, 18, .035);
  transition: background .25s ease, transform .25s ease;
}
.feature-card:hover { background: var(--ivory-soft); transform: translateY(-3px); }
.feature-card h3 { margin: auto 0 .4rem; padding-top: 1.5rem; font-size: 1.42rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .78rem; }
.feature-card-accent { color: var(--ivory); background: var(--carbon); }
.feature-card-accent:hover { background: var(--deep); }
.feature-card-accent p { color: rgba(244, 241, 234, .62); }
.feature-card-accent .feature-icon { color: var(--champagne); }

/* Pure CSS line icons */
.feature-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  color: var(--walnut);
  opacity: 1;
}
.icon-area { border: 1px solid currentColor; }
.icon-area::before, .icon-area::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: currentColor;
}
.icon-area::before { top: 5px; left: 5px; border-top: 1px solid; border-left: 1px solid; }
.icon-area::after { right: 5px; bottom: 5px; border-right: 1px solid; border-bottom: 1px solid; }
.icon-bed::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 9px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 2px 6px 0 0;
}
.icon-bed::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 13px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 3px;
  box-shadow: 21px 0 0 -1px transparent, 21px 0 0 0 currentColor;
}
.icon-bath::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 10px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 3px 3px 15px 15px;
}
.icon-bath::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 12px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 10px 0 0 0;
}
.icon-sofa::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 10px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 7px 7px 2px 2px;
}
.icon-sofa::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 7px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: var(--ivory);
}
.feature-card-accent .icon-sofa::after { background: var(--carbon); }
.icon-dining::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 19px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}
.icon-dining::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 24px;
  width: 1px;
  height: 20px;
  background: currentColor;
  box-shadow: 22px 0 0 currentColor, -8px 4px 0 currentColor, 30px 4px 0 currentColor;
}
.icon-kitchen { border: 1px solid currentColor; }
.icon-kitchen::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 25px 0 0 -1px transparent, 25px 0 0 0 currentColor;
}
.icon-kitchen::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 20px;
  border: 1px solid currentColor;
}
.icon-washer { border: 1px solid currentColor; border-radius: 3px; }
.icon-washer::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 11px;
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.icon-washer::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 6px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.icon-garage::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 13px;
  left: 4px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 7px 7px 2px 2px;
  transform: skew(-8deg);
}
.icon-garage::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 25px 0 0 -1px var(--ivory), 25px 0 0 0 currentColor;
}
.icon-lockoff { border: 1px solid currentColor; }
.icon-lockoff::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: currentColor;
}
.icon-lockoff::after {
  content: "··";
  position: absolute;
  top: 9px;
  left: 0;
  width: 100%;
  color: currentColor;
  font-size: 1.3rem;
  letter-spacing: 13px;
  text-align: center;
  transform: translateX(6px);
}

/* Lock-Off */
.lockoff-layout { display: grid; gap: 3.5rem; }
.lockoff-heading h2 { max-width: 620px; }
.lockoff-heading .lead { max-width: 410px; color: rgba(244, 241, 234, .68); }
.lockoff-content > p { max-width: 610px; color: rgba(244, 241, 234, .68); }
.premium-list { margin: 2.2rem 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.premium-list li { padding: .9rem 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 1.25rem; }
.premium-list li::before { content: "◆"; margin-right: 1rem; color: var(--champagne); font-size: .45rem; vertical-align: middle; }
.lockoff-content blockquote {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  border-left: 1px solid var(--champagne);
  color: var(--champagne);
  font: italic 500 1.45rem/1.3 var(--serif);
}

/* Equipment */
.equipment-layout { display: grid; gap: 3rem; }
.equipment-visual img { aspect-ratio: 4/4.6; object-fit: cover; }
.equipment-copy { align-self: center; }
.equipment-copy > p:not(.eyebrow) { color: var(--muted); }
.equipment-list { display: grid; margin: 2.25rem 0 0; padding: 0; list-style: none; }
.equipment-list li { position: relative; padding: .75rem 0 .75rem 1.5rem; border-bottom: 1px solid var(--line); }
.equipment-list li::before { content: ""; position: absolute; top: 1.35rem; left: 0; width: 6px; height: 6px; border: 1px solid var(--champagne); transform: rotate(45deg); }

/* Interiors */
.interiors-section { background: #dedbd3; }
.editorial-gallery { display: grid; gap: 2rem; }
.image-crop { overflow: hidden; }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.image-crop-watermark img { transform: scale(1.16); }
.gallery-item:hover .image-crop-watermark img { transform: scale(1.18); }
.gallery-item figcaption, .amenity-card figcaption {
  margin-top: .7rem;
  font: 500 1.15rem/1.2 var(--serif);
}

/* Amenities */
.amenity-hero { position: relative; margin-bottom: 2rem; overflow: hidden; }
.amenity-hero img { min-height: 500px; aspect-ratio: 4/4.5; object-fit: cover; }
.amenity-hero figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(88%, 390px);
  padding: 1.3rem 1.4rem;
  flex-direction: column;
  color: var(--ivory);
  background: rgba(14, 13, 11, .94);
}
.amenity-hero figcaption strong { font: 500 1.5rem/1.15 var(--serif); }
.amenity-hero figcaption span { color: rgba(244, 241, 234, .66); font-size: .78rem; }
.amenity-grid { display: grid; gap: 2rem; }
.amenity-card { display: flex; min-width: 0; flex-direction: column; }
.amenity-card img { aspect-ratio: 4/3; object-fit: cover; }
.amenity-elevator-card {
  position: relative;
  overflow: hidden;
}
.amenity-elevator-card img { object-position: center 48%; }
.amenity-elevator-card figcaption {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  left: .9rem;
  display: flex;
  margin: 0;
  padding: 1rem 1.1rem;
  align-items: center;
  gap: .9rem;
  color: var(--ivory);
  background: rgba(14, 13, 11, .88);
  border: 1px solid rgba(185, 161, 95, .34);
  backdrop-filter: blur(8px);
}
.elevator-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--champagne);
}
.elevator-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 8px;
  bottom: 7px;
  left: 8px;
  border: 1px solid currentColor;
  color: var(--champagne);
  background: linear-gradient(90deg, transparent 49%, currentColor 49%, currentColor 51%, transparent 51%);
}
.elevator-icon::after {
  content: "↑  ↓";
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  color: var(--champagne);
  font: 600 .5rem/1 var(--sans);
  letter-spacing: .32em;
  text-align: center;
}
.elevator-copy { display: flex; min-width: 0; flex-direction: column; }
.elevator-copy strong { color: var(--champagne); font: 500 1.35rem/1.1 var(--serif); }
.elevator-copy small {
  margin-top: .35rem;
  color: rgba(244, 241, 234, .72);
  font: 400 .7rem/1.4 var(--sans);
}
.amenity-tags { display: flex; margin-top: 2.5rem; flex-wrap: wrap; gap: .65rem; }
.amenity-tags span { padding: .75rem 1rem; border: 1px solid var(--line); font-size: .76rem; }

/* Location */
.location-section { background: var(--concrete); }
.location-heading { display: grid; margin-bottom: 3.4rem; gap: 1.5rem; }
.location-heading > p { max-width: 610px; margin-bottom: 0; color: var(--muted); align-self: end; }
.map-layout { display: grid; margin-bottom: 3rem; background: var(--ivory); box-shadow: var(--shadow); }
.map-frame { min-height: 420px; overflow: hidden; }
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.78) sepia(.1) contrast(.95);
}
.map-copy { display: flex; padding: 2rem; flex-direction: column; align-items: flex-start; justify-content: center; }
.map-pin {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--walnut);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--champagne);
}
.map-copy h3 { margin-bottom: .7rem; font-size: 1.8rem; }
.map-copy address { margin-bottom: 1.5rem; color: var(--muted); }
.location-cards { display: grid; gap: 1.15rem; }
.location-card {
  display: flex;
  min-height: 250px;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(23, 21, 18, .13);
  background: rgba(244, 241, 234, .72);
  box-shadow: 0 12px 34px rgba(23, 21, 18, .035);
}
.location-card h3 { margin: auto 0 .8rem; padding-top: 1.25rem; font-size: 1.45rem; }
.location-card p { margin: 0; color: var(--muted); font-size: .83rem; }
.location-card-accent { color: var(--ivory); background: var(--carbon); }
.location-card-accent p { color: rgba(244, 241, 234, .63); }
.location-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(138, 90, 56, .42);
  border-radius: 50%;
  color: var(--walnut);
}
.location-card-accent .location-icon {
  border-color: rgba(185, 161, 95, .55);
  color: var(--champagne);
}
.location-icon::before, .location-icon::after { content: ""; position: absolute; }
.location-icon-shopping::before {
  inset: 13px 10px 9px;
  border: 1px solid currentColor;
  border-radius: 1px 1px 4px 4px;
}
.location-icon-shopping::after {
  top: 9px;
  left: 13px;
  width: 10px;
  height: 8px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}
.location-icon-education::before {
  top: 12px;
  left: 9px;
  width: 18px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 1px 1px 4px 4px;
}
.location-icon-education::after {
  top: 12px;
  left: 18px;
  width: 1px;
  height: 14px;
  background: currentColor;
}
.location-icon-health::before {
  top: 10px;
  bottom: 10px;
  left: 18px;
  width: 1px;
  background: currentColor;
}
.location-icon-health::after {
  top: 18px;
  right: 10px;
  left: 10px;
  height: 1px;
  background: currentColor;
}
.location-icon-connectivity::before {
  top: 9px;
  right: 9px;
  bottom: 9px;
  left: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.location-icon-connectivity::after {
  top: 7px;
  left: 18px;
  width: 1px;
  height: 23px;
  background: currentColor;
  transform: rotate(40deg);
}
.location-icon-lifestyle::before {
  top: 10px;
  left: 13px;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.location-icon-lifestyle::after {
  right: 9px;
  bottom: 10px;
  left: 9px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewY(-8deg);
}
.location-icon-investment::before {
  top: 11px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.location-icon-investment::after {
  top: 14px;
  left: 13px;
  width: 14px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewY(-28deg);
}

/* Investment */
.investment-layout { display: grid; gap: 3rem; }
.investment-layout h2 { max-width: 780px; }
.investment-layout > div:first-child > p:not(.eyebrow) { max-width: 620px; color: rgba(244, 241, 234, .65); }
.investment-layout .button { margin-top: .8rem; }
.investment-formula { display: flex; padding-block: 2rem; flex-wrap: wrap; align-items: center; gap: .55rem 1rem; border-block: 1px solid var(--line-light); }
.investment-formula span { font: 500 clamp(1.65rem, 3.5vw, 3.2rem)/1 var(--serif); }
.investment-formula b { color: var(--champagne); font-weight: 400; }

/* Certainty */
.certainty-section { background: var(--ivory-soft); }
.certainty-layout { display: grid; gap: 1rem; }
.certainty-cards { display: grid; border-top: 1px solid var(--line); }
.certainty-card { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.certainty-card h3 { margin-bottom: .5rem; font-size: 1.35rem; }
.certainty-card p { margin: 0; color: var(--muted); font-size: .84rem; }

/* Presale & brochure */
.presale-card {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: var(--ivory-soft);
  gap: 2.5rem;
}
.presale-card h2 { max-width: 760px; font-size: clamp(2.45rem, 4vw, 4rem); }
.presale-card h2 em { color: var(--walnut); }
.presale-card > div:first-child > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.presale-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.brochure-section { padding-bottom: var(--section-space); }
.brochure-card {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ivory);
  background: var(--walnut);
  gap: 2rem;
}
.brochure-card h2 { max-width: 620px; font-size: clamp(2.45rem, 4vw, 4rem); }
.brochure-card > div:nth-child(2) > p:last-child { color: rgba(244, 241, 234, .73); }
.brochure-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.brochure-card > .legal-note { padding-top: 1.2rem; border-top: 1px solid rgba(244, 241, 234, .22); color: rgba(244, 241, 234, .62); }

/* Final CTA */
.final-cta { position: relative; display: flex; min-height: 720px; align-items: center; overflow: hidden; color: var(--ivory); background: var(--deep); }
.final-cta > img, .final-cta-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; object-position: 58% center; }
.final-cta-overlay {
  background:
    linear-gradient(90deg, rgba(14, 13, 11, .94), rgba(14, 13, 11, .68) 52%, rgba(14, 13, 11, .22)),
    linear-gradient(180deg, rgba(14, 13, 11, .12), rgba(14, 13, 11, .5));
}
.final-cta-content { position: relative; z-index: 2; padding-block: 6rem; }
.final-cta-content h2 { max-width: 750px; }
.final-cta-content > p:not(.eyebrow) { max-width: 620px; color: rgba(244, 241, 234, .73); }
.final-price { display: block; margin: 2rem 0; color: var(--champagne); font: 500 clamp(1.7rem, 3.4vw, 2.5rem)/1 var(--serif); }

/* Footer */
.site-footer { padding: 5rem 0 2rem; color: var(--ivory); background: var(--deep); }
.footer-main { display: grid; gap: 2.5rem; }
.footer-brand > p { margin: .9rem 0 1.5rem; color: rgba(244, 241, 234, .55); font-size: .72rem; }
.valusa-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
  color: rgba(244, 241, 234, .55);
  font: 500 .58rem/1 var(--condensed);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.valusa-lockup > div { display: flex; align-items: center; gap: .65rem; }
.valusa-lockup img {
  display: block;
  width: 37px;
  height: 37px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.valusa-lockup-copy { display: flex; flex-direction: column; color: var(--champagne); }
.valusa-lockup-copy strong { font: 600 .95rem/1 var(--sans); letter-spacing: .2em; }
.valusa-lockup-copy small { margin-top: .25rem; font-size: .48rem; letter-spacing: .23em; }
.footer-main address { color: rgba(244, 241, 234, .58); font-size: .8rem; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; font-size: .8rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; color: var(--champagne); font-size: .74rem; }
.footer-bottom { display: grid; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); gap: 1rem; }
.footer-bottom p { margin: 0; color: #77736c; font-size: .65rem; line-height: 1.55; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  min-width: 218px;
  height: 68px;
  padding: 8px 18px 8px 9px;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(185, 161, 95, .5);
  border-radius: 17px;
  color: var(--ivory);
  background: rgba(23, 21, 18, .97);
  box-shadow: 0 16px 42px rgba(14, 13, 11, .26);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.whatsapp-float:hover { border-color: var(--champagne); background: var(--deep); transform: translateY(-3px); }
.whatsapp-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, .58);
  border-radius: 50%;
  color: #25d366;
}
.whatsapp-icon svg { width: 24px; height: 24px; overflow: visible; }
.whatsapp-icon svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}
.whatsapp-icon svg path:last-child { fill: currentColor; }
.whatsapp-label { display: flex; flex-direction: column; line-height: 1.1; }
.whatsapp-label strong { font-family: var(--serif); font-size: 1.06rem; font-weight: 600; letter-spacing: .01em; }
.whatsapp-label small {
  margin-top: .35rem;
  color: var(--champagne);
  font: 600 .56rem/1 var(--condensed);
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (min-width: 680px) {
  :root { --container: min(1200px, calc(100% - 72px)); }
  .section-intro-split, .location-heading { grid-template-columns: 1.15fr .85fr; }
  .hero-commercial { flex-direction: row; align-items: flex-end; gap: 2.5rem; }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .equipment-list { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
  .editorial-gallery { grid-template-columns: 1.2fr .8fr; }
  .gallery-primary { grid-row: 1/3; }
  .gallery-primary .image-crop, .gallery-primary img { height: 100%; min-height: 660px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card:last-child { grid-column: 1/-1; }
  .amenity-card:last-child img { aspect-ratio: 16/7; }
  .location-cards { grid-template-columns: repeat(2, 1fr); }
  .certainty-cards { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); }
  .certainty-card { padding: 1.5rem; border-right: 1px solid var(--line); }
  .presale-card { grid-template-columns: 1.35fr .65fr; align-items: end; }
  .brochure-card { grid-template-columns: .65fr 1.1fr .75fr; align-items: center; }
  .brochure-card > .legal-note { grid-column: 1/-1; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr .8fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .whatsapp-label { display: flex; }
}

@media (min-width: 900px) {
  .project-layout { grid-template-columns: 1.05fr .95fr; gap: clamp(4rem, 7vw, 7rem); }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .lockoff-layout { grid-template-columns: 1fr 1fr; gap: clamp(4rem, 8vw, 8rem); }
  .lockoff-heading { position: sticky; top: 130px; align-self: start; }
  .equipment-layout { grid-template-columns: 1.05fr .95fr; gap: clamp(4rem, 8vw, 8rem); }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-card:last-child { grid-column: auto; }
  .amenity-card:last-child img { aspect-ratio: 4/3; }
  .map-layout { grid-template-columns: 1.4fr .6fr; }
  .location-cards { grid-template-columns: repeat(3, 1fr); }
  .certainty-layout { grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); }
  .certainty-layout .section-intro { margin-bottom: 0; }
}

@media (min-width: 1080px) {
  .header-inner { height: 84px; }
  .desktop-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.5vw, 1.7rem); }
  .desktop-nav a {
    position: relative;
    padding-block: .5rem;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
  }
  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transition: transform .25s ease;
  }
  .desktop-nav a:hover::after { transform: scaleX(1); }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero-content { padding-top: 10rem; }
  .hero-scroll { right: 3.5rem; bottom: 2.2rem; }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .amenity-hero img { aspect-ratio: 16/8; }
}

@media (min-width: 1320px) {
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 679px) {
  .hero { min-height: 860px; }
  .hero-background {
    object-position: 66% center;
    filter: brightness(1.14) contrast(1.02) saturate(1.03);
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 13, 11, .62) 0%, rgba(14, 13, 11, .38) 45%, rgba(14, 13, 11, .08) 82%, rgba(14, 13, 11, .02) 100%),
      linear-gradient(180deg, rgba(14, 13, 11, .08) 0%, rgba(14, 13, 11, .02) 52%, rgba(14, 13, 11, .24) 100%);
  }
  .hero-content { padding-top: 8.6rem; padding-bottom: 6.5rem; }
  .hero-content h1, .hero-copy { text-shadow: 0 2px 24px rgba(14, 13, 11, .5); }
  .diamante-logo-hero { margin: 1rem 0 1.6rem; }
  .hero-commercial .button-row, .hero-commercial .button { width: 100%; }
  .price-block { align-self: center; }
  .apartment-photo img { min-height: 520px; aspect-ratio: 4/5; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card { min-height: 190px; }
  .amenity-hero img { min-height: 540px; }
  .map-copy { padding: 1.6rem; }
  .whatsapp-float {
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-width: 202px;
    height: 64px;
    padding: 7px 15px 7px 8px;
    border-radius: 16px;
  }
  .whatsapp-icon { width: 42px; height: 42px; flex-basis: 42px; }
  .whatsapp-icon svg { width: 24px; height: 24px; }
  .whatsapp-label strong { font-size: 1rem; }
  .whatsapp-label small { margin-top: .3rem; font-size: .54rem; }
  .final-cta { min-height: 760px; }
  .final-cta-content .button-row, .final-cta-content .button { width: 100%; }
}
