@font-face {
  font-family: "XGruppo";
  src: url("../fonts/Gruppo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XZalando";
  src: url("../fonts/ZalandoSansExpanded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XZalando";
  src: url("../fonts/ZalandoSansExpanded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "XZalando";
  src: url("../fonts/ZalandoSansExpanded-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XNunit";
  src: url("../fonts/NunitoSans.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #004c72;
  --navy-2: #003c5c;
  --deep: #001522;
  --cyan: #9bdcff;
  --cyan-2: #bfefff;
  --pink: #df007f;
  --pink-2: #a30a72;
  --purple: #6b2a84;
  --paper: #ffffff;
  --mist: #eef4f8;
  --soft: #f6f9fb;
  --ink: #00364f;
  --muted: #627789;
  --line: rgba(0, 76, 114, .13);
  --shadow: 0 24px 70px rgba(0, 36, 55, .16);
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "XNunit", "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--pink);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  min-height: 56px;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  display: grid;
  grid-template-columns: 210px 1fr 150px;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  pointer-events: auto;
}

.brand-link {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  text-decoration: none;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 46px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: "XZalando", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.main-nav a {
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  color: var(--cyan);
  transform: translateY(-1px);
}

.nav-cta {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  text-decoration: none;
  text-transform: uppercase;
  font-family: "XZalando", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(223,0,127,.38);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 138px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
  background: var(--deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 18, 30, .68), rgba(0, 30, 47, .28), rgba(0, 0, 0, .44)),
    url("../img/renders/exteriores/exterior-01.webp") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(155,220,255,.24), transparent 26%),
    radial-gradient(circle at 80% 40%, rgba(223,0,127,.17), transparent 32%);
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0, 21, 34, .58) 76%, rgba(0, 21, 34, .88) 100%);
}

.hero-content {
  padding-bottom: 88px;
}

.hero-logo {
  width: min(610px, 80vw);
  margin: 18px 0 24px;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.35));
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "XZalando", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-highlights {
  width: 100%;
  min-height: 105px;
  padding: 18px max(20px, calc((100vw - var(--container)) / 2)) 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  box-shadow: 0 -8px 26px rgba(0,0,0,.14);
}

.highlight-item {
  min-height: 70px;
  padding: 10px clamp(12px, 3vw, 32px);
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.14);
}

.highlight-item:last-child {
  border-right: 0;
}

.highlight-item span {
  color: var(--cyan-2);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.highlight-item strong {
  display: block;
  margin-top: 2px;
  font-family: "XZalando", system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: -.04em;
}

.section {
  padding: clamp(74px, 9vw, 132px) 0;
}

.section-project {
  background: #fff;
}

.section-models {
  background: linear-gradient(180deg, var(--mist), #f9fcff);
}

.section-amenities {
  background: #fff;
}

.section-location {
  background: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: "XZalando", system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--cyan);
}

h2,
h3 {
  font-family: "XZalando", system-ui, sans-serif;
  letter-spacing: -.06em;
  line-height: .96;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
}

.section-intro {
  max-width: 770px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy h2::after,
.hotel-content h2::after,
.contact-grid h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--pink);
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
}

.project-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 470px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .86rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  text-decoration: none;
  font-family: "XZalando", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 16px 32px rgba(223,0,127,.24);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0, 76, 114, .78);
  backdrop-filter: blur(10px);
}

.btn-accent {
  width: 100%;
  color: var(--deep);
  background: linear-gradient(135deg, var(--cyan), #d9f8ff);
  box-shadow: 0 16px 32px rgba(155,220,255,.2);
}

.full-width {
  width: 100%;
}

.sub-section {
  margin-top: clamp(70px, 8vw, 110px);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading-row p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 2rem;
  line-height: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(0, 76, 114, .08);
}

.carousel-btn:hover {
  color: #fff;
  background: var(--navy);
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 420px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}

.gallery-card,
.amenity-card {
  scroll-snap-align: start;
}

.gallery-card {
  border-radius: 26px;
  overflow: hidden;
  min-height: 260px;
  background: var(--mist);
  box-shadow: 0 18px 42px rgba(0, 76, 114, .12);
}

.gallery-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.models-shell {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
}

.model-selector {
  display: grid;
  gap: 14px;
}

.model-option {
  width: 100%;
  min-height: 78px;
  padding: 16px 18px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  box-shadow: 0 14px 30px rgba(0, 76, 114, .08);
  transition: transform .2s ease, border .2s ease, box-shadow .2s ease;
}

.model-option:hover,
.model-option.is-active {
  transform: translateX(6px);
  border-color: var(--pink);
  box-shadow: 0 18px 38px rgba(223,0,127,.14);
}

.model-option span {
  display: block;
  font-weight: 900;
}

.model-option strong {
  color: var(--pink);
  white-space: nowrap;
  font-family: "XZalando", system-ui, sans-serif;
  letter-spacing: -.04em;
}

.model-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(14px, 2vw, 22px);
}

.model-media {
  position: relative;
  min-height: 480px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--mist);
}

.model-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.model-view-tabs {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
}

.model-view {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--ink);
  background: transparent;
  font-size: .85rem;
  font-weight: 900;
}

.model-view.is-active {
  color: #fff;
  background: var(--navy);
}

.model-info {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 14px;
  align-items: center;
  margin: 16px 0;
}

.model-info img {
  width: 86px;
  justify-self: center;
}

.model-stat {
  min-height: 86px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--mist);
}

.model-stat span {
  color: var(--muted);
  font-size: .83rem;
  font-weight: 800;
}

.model-stat strong {
  color: var(--ink);
  font-family: "XZalando", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  letter-spacing: -.06em;
}

.amenities-track {
  grid-auto-columns: minmax(250px, 325px);
}

.amenity-card {
  position: relative;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 18px 42px rgba(0, 76, 114, .1);
}

.amenity-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .45s ease;
}

.amenity-card:hover img {
  transform: scale(1.04);
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 21, 34, .72));
  pointer-events: none;
}

.amenity-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.amenity-placeholder {
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(155,220,255,.45), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--purple));
}

.amenity-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 70px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  font-family: "XZalando", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.hotel-band {
  padding: clamp(78px, 9vw, 130px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(155,220,255,.14), transparent 26%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.hotel-content {
  max-width: 980px;
}

.hotel-content h2,
.contact-grid h2 {
  color: #fff;
}

.hotel-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
}

.hotel-lock {
  width: min(520px, 100%);
  margin: 38px auto 0;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink-2));
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.hotel-lock strong {
  text-align: center;
  font-family: "XZalando", system-ui, sans-serif;
  letter-spacing: -.04em;
}

.location-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
}

.map-card {
  min-height: 515px;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 26px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(0, 21, 34, .05), rgba(0, 21, 34, .72)),
    url("../img/renders/exteriores/exterior-04.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.map-card span {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.interest-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.interest-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.interest-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 76, 114, .06);
}

.interest-list li::before {
  content: "■";
  color: var(--pink);
  font-size: .74rem;
  grid-row: 1;
}

.interest-list strong {
  grid-column: 1;
}

.interest-list span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.contact-band {
  padding: clamp(78px, 8vw, 120px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(155,220,255,.16), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.contact-grid p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255,255,255,.82);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.9);
}

.contact-list a {
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 13px 15px;
  outline: 0;
  color: #fff;
  background: rgba(0, 30, 47, .48);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.contact-form select option {
  color: var(--ink);
}

.site-footer {
  padding: 38px 0;
  color: #fff;
  background: #02070b;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-content img {
  width: 250px;
}

.back-top {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}

.back-top:hover {
  background: var(--pink);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .32);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  padding: 68px 24px 24px;
  display: grid;
  place-items: center;
  background: rgba(0, 10, 16, .88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 82vh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.lightbox-close {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 2rem;
  line-height: 1;
}

.js-lightbox {
  cursor: zoom-in;
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    border-radius: 26px;
  }

  .brand-link img {
    width: 130px;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell.is-open {
    grid-template-columns: 1fr auto;
  }

  .nav-shell.is-open .main-nav,
  .nav-shell.is-open .nav-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .nav-shell.is-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 4px;
  }

  .nav-shell.is-open .main-nav a {
    padding: 13px 10px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav-shell.is-open .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 720px;
    padding-top: 120px;
  }

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

  .highlight-item:nth-child(2) {
    border-right: 0;
  }

  .project-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .models-shell {
    grid-template-columns: 1fr;
  }

  .model-panel {
    order: 1;
  }

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

  .model-option {
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .model-option:hover,
  .model-option.is-active {
    transform: translateY(-3px);
  }

  .model-media,
  .model-media img {
    min-height: 430px;
    height: 430px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    inset-top: 10px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-logo {
    width: min(430px, 92vw);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 190px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .highlight-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .project-card,
  .project-card img {
    min-height: 320px;
  }

  .carousel {
    grid-auto-columns: minmax(78vw, 88vw);
  }

  .gallery-card img {
    height: 245px;
  }

  .model-selector {
    grid-template-columns: 1fr;
  }

  .model-option {
    min-height: 74px;
    flex-direction: row;
    align-items: center;
  }

  .model-media,
  .model-media img {
    min-height: 330px;
    height: 330px;
  }

  .model-view-tabs {
    left: 10px;
    right: 10px;
    bottom: 10px;
    overflow-x: auto;
  }

  .model-view {
    flex: 1;
  }

  .model-info {
    grid-template-columns: 1fr;
  }

  .model-info img {
    display: none;
  }

  .amenities-track {
    grid-auto-columns: minmax(76vw, 84vw);
  }

  .amenity-card,
  .amenity-card img {
    min-height: 330px;
  }

  .hotel-lock {
    align-items: center;
  }

  .interest-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .interest-list li::before {
    display: none;
  }

  .interest-list span {
    white-space: normal;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content img {
    width: 220px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

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