﻿:root {
  --color-navy: #1a2332;
  --color-ink: #1c2431;
  --color-slate: #606977;
  --color-line: #d9dde3;
  --color-paper: #ffffff;
  --color-warm: #f7f5f0;
  --color-warm-2: #efeee8;
  --color-green: #176c72;
  --color-whatsapp: #0b7a45;
  --shadow-soft: 0 18px 45px rgba(26, 35, 50, 0.08);
  --radius: 4px;
  --header-height: 76px;
  --page-gutter: 44px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Aptos", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: calc(100% - var(--page-gutter));
  max-width: 1160px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
  padding: 12px 30px;
  color: var(--color-paper);
  background: rgba(26, 35, 50, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(26, 35, 50, 0.18);
}

.brand,
.project-wordmark {
  display: inline-flex;
  align-items: center;
}

.project-wordmark {
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
}

.brand__logo,
.project-wordmark__logo {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  justify-self: start;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.site-nav {
  grid-column: 1;
  grid-row: 1;
  margin-left: 178px;
}

.button--header {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.gallery-item:focus-visible,
.modal__close:focus-visible,
.video-float:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(26, 35, 50, 0.22);
  outline-offset: 3px;
}

.button--primary,
.button--secondary {
  color: var(--color-paper);
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.button--primary:hover,
.button--secondary:hover {
  color: var(--color-paper);
  background: #263248;
  border-color: #263248;
}

.button--ghost {
  color: var(--color-navy);
  background: transparent;
  border-color: rgba(26, 35, 50, 0.38);
}

.button--ghost:hover {
  color: var(--color-paper);
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.button--video {
  gap: 10px;
  color: var(--color-paper);
  background: var(--color-navy);
  border-color: var(--color-navy);
  box-shadow: 0 12px 24px rgba(26, 35, 50, 0.14);
}

.button--video:hover {
  color: var(--color-paper);
  background: #263248;
  border-color: #263248;
}

.button--video svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button--header {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--color-navy);
  background: var(--color-paper);
  border-color: var(--color-paper);
  font-size: 0.9rem;
}

.button--header:hover {
  color: var(--color-navy);
  background: var(--color-warm);
}

.button--whatsapp {
  color: var(--color-paper);
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
}

.button--whatsapp:hover {
  color: var(--color-paper);
  background: #09663b;
  border-color: #09663b;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns:
    minmax(22px, 1fr)
    minmax(0, 560px)
    minmax(36px, 72px)
    minmax(0, 560px)
    minmax(22px, 1fr);
  align-items: center;
  column-gap: 0;
  min-height: min(760px, calc(100svh - 76px));
  overflow: hidden;
  color: var(--color-ink);
  background:
    linear-gradient(90deg, transparent 0, transparent 49.8%, rgba(26, 35, 50, 0.08) 49.9%, rgba(26, 35, 50, 0.08) 50.1%, transparent 50.2%),
    var(--color-paper);
  border-bottom: 1px solid var(--color-line);
}

.hero::before {
  position: absolute;
  left: 40px;
  top: 112px;
  bottom: 72px;
  width: 1px;
  background: var(--color-line);
  content: "";
}

.hero__media {
  position: relative;
  grid-column: 4;
  align-self: center;
  z-index: 0;
  width: 100%;
  height: min(520px, calc(100svh - 190px));
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-warm);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(0.98);
}

.hero__shade {
  display: none;
}

.hero__content {
  position: relative;
  grid-column: 2;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 118px 0 92px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--color-slate);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

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

h1,
h2 {
  color: inherit;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 3.58rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 20px;
  color: var(--color-ink);
  font-size: 2.65rem;
  line-height: 1.08;
}

.hero__subtitle {
  max-width: 470px;
  margin-bottom: 34px;
  color: var(--color-slate);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.hero__highlights div {
  min-width: 0;
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--color-line);
}

.hero__highlights div + div {
  padding-left: 18px;
}

.hero__highlights div:last-child {
  border-right: 0;
}

.hero__highlights dt {
  margin-bottom: 6px;
  color: var(--color-slate);
  font-size: 0.78rem;
}

.hero__highlights dd {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.1;
}

.section {
  padding: 116px 0;
  background: var(--color-paper);
  scroll-margin-top: 104px;
}

.section--muted {
  background: var(--color-warm);
}

.section--facts-compact {
  padding: 64px 0;
  background: var(--color-warm);
}

.facts-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--color-line);
}

.facts-teaser h2 {
  margin-bottom: 12px;
  font-size: 2.08rem;
}

.facts-teaser p {
  max-width: 620px;
  margin: 0;
  color: var(--color-slate);
}

.section--statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 116px 0 124px;
  color: var(--color-paper);
  background:
    linear-gradient(rgba(26, 35, 50, 0.58), rgba(26, 35, 50, 0.66)),
    url("images/render-6.jpg") center center / cover no-repeat;
}

.section--statement::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.statement {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
}

.statement h2 {
  margin-bottom: 16px;
  color: var(--color-paper);
  font-size: 2.58rem;
  line-height: 0.98;
}

.statement__icon {
  display: block;
  width: 92px;
  height: auto;
  margin: 0 auto 24px;
  color: var(--color-paper);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.statement__lead {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.statement__lead::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
  content: "";
  transform: translateX(-50%);
}

.statement p {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.58;
}

.statement strong {
  color: var(--color-paper);
  font-weight: 700;
}

.statement__closing {
  max-width: 420px;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--color-paper);
  font-family: var(--font-serif);
  font-size: 1.62rem;
  line-height: 1.08;
}

.section--intro {
  padding-top: 104px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) 1fr;
  gap: 78px;
  border-top: 1px solid var(--color-line);
  padding-top: 34px;
}

.intro-copy {
  max-width: 820px;
}

.intro-copy p,
.section-heading p,
.location-copy p,
.contact-copy p {
  color: var(--color-slate);
  font-size: 1rem;
}

.intro-copy p {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
  border-top: 1px solid var(--color-line);
  padding-top: 30px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  align-items: end;
  gap: 48px;
  max-width: none;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.fact-card {
  position: relative;
  min-height: 158px;
  padding: 26px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.fact-card::before {
  position: absolute;
  top: 66px;
  left: 26px;
  width: 38px;
  height: 1px;
  background: var(--color-navy);
  content: "";
  opacity: 0.48;
}

.fact-card--wide {
  grid-column: span 2;
}

.fact-card__label {
  display: block;
  margin-bottom: 28px;
  color: var(--color-slate);
  font-size: 0.78rem;
  line-height: 1.25;
}

.fact-card strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
}

.section--units {
  background: var(--color-paper);
}

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

.unit-card {
  padding: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-warm);
}

.unit-card__kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--color-slate);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
}

.unit-card h3 {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.08;
}

.unit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.unit-card li {
  position: relative;
  padding-left: 20px;
  color: var(--color-slate);
}

.unit-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--color-navy);
  content: "";
}

.section--amenities {
  background: var(--color-paper);
}

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

.amenity-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-slate);
}

.amenity-item svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-item span {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.2;
}

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

.gallery-item {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-paper);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
  filter: saturate(0.9);
}

.gallery-item:first-child,
.gallery-item:nth-child(2) {
  grid-column: span 3;
}

.gallery-item:first-child img,
.gallery-item:nth-child(2) img {
  aspect-ratio: 16 / 9;
}

.gallery-item:nth-child(4) img {
  object-position: center 62%;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(0.98);
}

.section--map {
  background: var(--color-paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  align-items: center;
  gap: 70px;
  border-top: 1px solid var(--color-line);
  padding-top: 34px;
}

.location-copy {
  max-width: 500px;
}

.location-copy p {
  margin-bottom: 30px;
}

.map-panel {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-warm);
  box-shadow: inset 0 0 0 1px rgba(26, 35, 50, 0.04);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(247, 245, 240, 0.18), rgba(247, 245, 240, 0.08));
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.map-canvas,
.map-fallback,
.map-panel--embed iframe {
  display: block;
  width: 100%;
  min-height: 370px;
  height: 100%;
}

.map-fallback,
.map-panel--embed iframe {
  border: 0;
  opacity: 0.94;
  filter: grayscale(1) sepia(0.12) saturate(0.34) hue-rotate(172deg) contrast(0.9)
    brightness(1.08);
}

.map-canvas.is-api-map {
  filter: none;
}

.section--faq {
  background: var(--color-paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-list details {
  border-bottom: 1px solid var(--color-line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.2;
  cursor: pointer;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--color-slate);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

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

.faq-list p {
  max-width: 720px;
  margin: -4px 0 22px;
  color: var(--color-slate);
}

.section--contact {
  color: var(--color-ink);
  background: var(--color-warm);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 520px);
  gap: 70px;
  align-items: start;
}

.contact-copy {
  max-width: 580px;
  border-top: 1px solid var(--color-line);
  padding-top: 30px;
}

.contact-copy h2 {
  color: var(--color-ink);
}

.contact-copy p {
  margin-bottom: 30px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-paper);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: var(--color-paper);
}

.form-field input {
  min-height: 50px;
  padding: 12px 14px;
}

.form-field textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px 14px;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: #a84a4a;
}

.form-error {
  display: none;
  color: #8c2e2e;
  font-size: 0.82rem;
}

.form-field.is-invalid .form-error {
  display: block;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(11, 122, 69, 0.25);
  border-radius: var(--radius);
  color: #0b5f38;
  background: rgba(11, 122, 69, 0.08);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px 44px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--color-paper);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:nth-child(3) svg,
.footer-social a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.legal {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(26, 35, 50, 0.18);
  border-radius: 999px;
  color: var(--color-paper);
  background: var(--color-navy);
  box-shadow: 0 12px 24px rgba(26, 35, 50, 0.18);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.video-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px 10px 11px;
  border: 1px solid rgba(26, 35, 50, 0.18);
  border-radius: 999px;
  color: var(--color-paper);
  background: var(--color-navy);
  box-shadow: 0 12px 24px rgba(26, 35, 50, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.video-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--color-navy);
  background: var(--color-paper);
}

.video-float svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.video-float:hover {
  background: #263248;
  transform: translateY(-1px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.78);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.modal__panel h2 {
  margin-right: 46px;
  font-size: 1.75rem;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: var(--color-paper);
  font-size: 1.6rem;
  line-height: 1;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-navy);
}

.video-frame iframe {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.has-video iframe {
  display: block;
}

.video-frame.has-video .video-frame__placeholder {
  display: none;
}

.video-frame__placeholder {
  margin: 0;
  color: var(--color-paper);
  font-weight: 600;
}

.modal__panel--image {
  width: min(1100px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.modal__panel--image img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: var(--color-paper);
}

.modal__panel--facts {
  width: min(980px, 100%);
  padding: 34px;
}

.modal__panel--facts .section-kicker {
  margin-bottom: 14px;
}

.modal__panel--facts h2 {
  margin-bottom: 26px;
}

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

.facts-grid--modal .fact-card {
  min-height: 134px;
  padding: 22px;
  background: var(--color-paper);
}

.facts-grid--modal .fact-card::before {
  top: 58px;
  left: 22px;
}

.facts-grid--modal .fact-card__label {
  margin-bottom: 24px;
}

.lightbox-title {
  position: absolute;
  top: 12px;
  right: 64px;
  z-index: 3;
  max-width: min(420px, calc(100% - 132px));
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--color-paper);
  background: rgba(26, 35, 50, 0.86);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
  backdrop-filter: blur(10px);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--color-paper);
  background: rgba(26, 35, 50, 0.72);
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
  backdrop-filter: blur(10px);
}

.lightbox-arrow:hover {
  background: rgba(26, 35, 50, 0.92);
  transform: translateY(-50%) scale(1.02);
}

.lightbox-arrow--prev {
  left: 12px;
}

.lightbox-arrow--next {
  right: 12px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand project"
      "nav nav";
    gap: 8px 16px;
  }

  .brand {
    grid-area: brand;
  }

  .project-wordmark {
    grid-area: project;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    justify-self: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-left: 0;
    gap: 20px;
    overflow-x: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .button--header {
    display: none;
  }

  .hero {
    grid-template-columns:
      minmax(22px, 1fr)
      minmax(0, 1.05fr)
      minmax(24px, 40px)
      minmax(0, 0.95fr)
      minmax(22px, 1fr);
    min-height: auto;
  }

  .hero__media {
    grid-column: 4;
    height: 430px;
    min-height: 360px;
  }

  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .intro-grid,
  .location-grid,
  .contact-grid,
  .faq-grid,
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__highlights {
    width: 100%;
  }

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

  .facts-teaser {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .amenities-grid {
    gap: 0 24px;
  }

  .units-grid {
    gap: 18px;
  }

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

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 62px;
    --page-gutter: 48px;
  }

  .container {
    width: calc(100% - var(--page-gutter));
    max-width: 1160px;
  }

  .site-header {
    gap: 6px 12px;
    padding: 8px calc(var(--page-gutter) / 2) 9px;
  }

  .brand__logo {
    height: 36px;
  }

  .project-wordmark {
    max-width: 156px;
  }

  .project-wordmark__logo {
    height: 36px;
  }

  .site-nav {
    gap: 18px;
    padding-top: 7px;
    font-size: 0.84rem;
  }

  .site-nav a {
    padding: 5px 0;
  }

  .hero {
    display: block;
    padding-bottom: 0;
    background: var(--color-paper);
  }

  .hero::before {
    display: none;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: calc(100% - var(--page-gutter));
    max-width: 1160px;
    height: 238px;
    margin: 14px auto 0;
  }

  .hero__content {
    width: calc(100% - var(--page-gutter));
    max-width: none;
    margin: 0 auto;
    padding: 34px 0 38px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.02rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__subtitle,
  .intro-copy p,
  .section-heading p,
  .location-copy p,
  .contact-copy p {
    font-size: 0.94rem;
  }

  .hero__subtitle {
    margin-bottom: 22px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero__actions .button {
    min-height: 44px;
  }

  .hero__actions .button--primary {
    width: 100%;
  }

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

  .hero__highlights div,
  .hero__highlights div + div {
    padding: 11px 8px;
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .hero__highlights div:first-child {
    padding-left: 0;
  }

  .hero__highlights div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .hero__highlights dt {
    margin-bottom: 4px;
    font-size: 0.66rem;
  }

  .hero__highlights dd {
    font-size: 1.02rem;
  }

  .section {
    padding: 66px 0;
  }

  .section--statement {
    padding: 76px 0 82px;
    background:
      linear-gradient(rgba(26, 35, 50, 0.64), rgba(26, 35, 50, 0.74)),
      url("images/render-6.jpg") center center / cover no-repeat;
  }

  .section--statement::after {
    inset: 12px;
  }

  .statement h2 {
    font-size: 2rem;
  }

  .statement__icon {
    width: 76px;
    margin-bottom: 20px;
  }

  .statement p {
    font-size: 0.94rem;
  }

  .statement__closing {
    font-size: 1.38rem;
  }

  .intro-grid,
  .location-grid {
    padding-top: 26px;
  }

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

  .section--facts-compact {
    padding: 48px 0;
  }

  .facts-teaser {
    gap: 22px;
  }

  .facts-teaser h2 {
    font-size: 1.72rem;
  }

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

  .unit-card {
    padding: 22px;
  }

  .unit-card h3 {
    font-size: 1.42rem;
  }

  .faq-list summary {
    gap: 16px;
    padding: 18px 0;
    font-size: 1.08rem;
  }

  .faq-list p {
    margin-bottom: 18px;
    font-size: 0.94rem;
  }

  .amenity-item {
    grid-template-columns: 54px 1fr;
    min-height: 78px;
  }

  .amenity-item svg {
    width: 31px;
    height: 31px;
  }

  .amenity-item span {
    font-size: 1.05rem;
  }

  .fact-card,
  .fact-card--wide {
    grid-column: auto;
  }

  .map-panel,
  .map-panel--embed iframe {
    min-height: 286px;
  }

  .lead-form {
    gap: 14px;
    padding: 18px;
  }

  .form-field input {
    min-height: 46px;
  }

  .form-field textarea {
    min-height: 104px;
  }

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

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float svg {
    width: 21px;
    height: 21px;
  }

  .video-float {
    left: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 8px 12px 8px 8px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .video-float__icon {
    width: 26px;
    height: 26px;
  }

  .video-float svg {
    width: 13px;
    height: 13px;
  }

  .modal {
    padding: 12px;
  }

  .modal__panel {
    padding: 18px;
  }

  .modal__panel--facts {
    padding: 20px;
  }

  .modal__panel--image {
    padding: 0;
  }

  .lightbox-title {
    top: 10px;
    right: 58px;
    max-width: calc(100% - 116px);
    font-size: 0.78rem;
  }

  .lightbox-arrow {
    width: 38px;
    height: 54px;
    font-size: 2.1rem;
  }

  .lightbox-arrow--prev {
    left: 8px;
  }

  .lightbox-arrow--next {
    right: 8px;
  }
}

