/* ============================================================
   HERITAGE RIVIERA PORTO FELIZ — Landing Page
   Paleta extraída da marca (logo + material oficial Cyrela)
   ============================================================ */

:root {
  --navy-900: #052a3d;
  --navy-800: #073a54;
  --navy-700: #034e77;
  --navy-600: #0c6089;
  --navy-500: #1a7ba8;
  --turquoise: #2fb9d6;
  --turquoise-soft: #bfeaf1;
  --sand-100: #faf7f1;
  --sand-200: #f3ead9;
  --sand-300: #e6d3ab;
  --gold: #ad8a52;
  --gold-soft: #d9c39a;
  --ink: #1b2a30;
  --ink-soft: #4b5c62;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--sand-100);
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background: var(--sand-100);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-800);
  margin: 0;
  letter-spacing: .01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--turquoise-soft); }

.section-title {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.12;
}

.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  font-weight: 300;
}

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 26px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}
.btn-primary:hover { background: var(--navy-800); border-color: var(--navy-800); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #96773f; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-navy {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.btn-outline-navy:hover { background: var(--navy-700); color: #fff; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 241, .96);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(5,42,61,.08);
}
/* backdrop-filter cria um novo containing block para os descendentes position:fixed
   (o painel do menu e o scrim) — isso fazia o menu "encolher" pra dentro da barra
   fina do header quando a página estava rolada. Desligamos o filtro enquanto o
   menu está aberto para o menu voltar a ocupar a tela inteira. */
.nav.scrolled.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 34px; transition: filter .4s; }
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: opacity .3s, color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--navy-800); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav .btn-primary { padding: 12px 24px; font-size: 11px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 501;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: #fff;
  transition: all .3s;
}
.nav.scrolled .nav-toggle span { background: var(--navy-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,26,38,.55) 0%, rgba(3,30,45,.28) 38%, rgba(3,22,32,.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero-brand {
  width: min(360px, 62vw);
  margin: 0 auto 30px;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.hero-kicker {
  font-size: 13px;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--turquoise-soft);
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 74px);
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--turquoise-soft); }
.hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.88);
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 46px;
  background: rgba(255,255,255,.5);
  overflow: hidden;
  position: relative;
}
.hero-scroll .line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--turquoise-soft);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Stat strip ---------- */
.stats {
  background: var(--navy-800);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: 46px 20px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--turquoise-soft);
  font-weight: 500;
}
.stat-label {
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* ---------- Manifesto / Conceito ---------- */
.manifesto {
  padding: 100px 0;
  background: var(--sand-100);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.35;
}
.manifesto-body p { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 18px; }

/* ---------- Filme ---------- */
.film { padding: 0 0 100px; background: var(--sand-100); }
.film-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-900);
  box-shadow: 0 30px 70px rgba(5,42,61,.22);
}
.film-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.film-frame:hover .film-thumb { transform: scale(1.03); }
.film-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,20,30,.15) 0%, rgba(3,20,30,.45) 100%);
  pointer-events: none;
}
.film-play {
  position: absolute; inset: 0;
  margin: auto;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(5,42,61,.55);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s;
  z-index: 2;
}
.film-play svg { width: 28px; height: 28px; margin-left: 4px; }
.film-play:hover { transform: scale(1.1); background: var(--gold); border-color: var(--gold); }
.film-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 620px) {
  .film-play { width: 68px; height: 68px; }
  .film-play svg { width: 22px; height: 22px; }
}

.duo {
  margin-top: 0;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.duo-panel {
  position: relative;
  height: 62vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.duo-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,26,38,0) 40%, rgba(3,20,30,.78) 100%);
}
.duo-panel-content {
  position: relative; z-index: 2;
  padding: 44px;
  color: #fff;
}
.duo-panel-content .eyebrow { color: var(--turquoise-soft); }
.duo-panel-content h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

/* ---------- Amenities ---------- */
.amenities { padding: 100px 0 90px; background: var(--sand-100); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}
.section-head .section-lede { max-width: 100%; margin: 18px auto 0; }
.section-head.left { text-align: left; margin-left: 0; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--navy-900);
}
.amenity-card {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.amenity-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.amenity-card:hover img { transform: scale(1.09); }
.amenity-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,30,44,.05) 30%, rgba(4,20,30,.92) 100%);
  transition: background .4s;
}
.amenity-num {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.amenity-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px;
  color: #fff;
}
.amenity-info h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.amenity-info p {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.amenity-card:hover .amenity-info p { max-height: 80px; opacity: 1; margin-top: 6px; }

@media (min-width: 900px) {
  .amenity-card.tall { grid-row: span 2; aspect-ratio: auto; }
}

/* ---------- Full gallery ---------- */
.full-gallery { padding: 90px 0; background: var(--sand-100); }
.fg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}
.fg-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.fg-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.fg-grid a:hover img { transform: scale(1.07); }
.fg-big { grid-column: span 2; grid-row: span 2; }
.fg-tall { grid-row: span 2; }
.gal-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 22px;
  letter-spacing: .04em;
}
@media (max-width: 860px) {
  .fg-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .fg-big { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; height: auto; }
  .fg-tall { grid-row: span 1; }
}

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--sand-200); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid var(--sand-300);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-800);
  font-weight: 500;
  position: relative;
  padding-right: 34px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: -2px;
  font-size: 24px;
  color: var(--gold);
  transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 68ch;
}

/* ---------- Carousel (auto-playing photo strip) ---------- */
.carousel-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carouselScroll linear infinite;
  animation-duration: var(--cdur, 60s);
}
.carousel-track.paused { animation-play-state: paused; }
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.carousel-slide {
  flex: 0 0 auto;
  width: 420px;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  display: block;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.carousel-slide:hover img { transform: scale(1.06); }
.carousel-slide .cs-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px 13px;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.94);
  background: linear-gradient(transparent, rgba(5,42,61,.72));
}
.carousel-hint {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  letter-spacing: .03em;
}
@media (max-width: 620px) {
  .carousel-slide { width: 78vw; height: 230px; }
}

/* ---------- Products ---------- */
.products-intro { padding: 100px 0 0; background: var(--sand-100); }

.product-block {
  padding: 90px 0;
  border-top: 1px solid var(--sand-300);
}
.product-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 54px;
}
.product-tag {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .05em;
}
.product-facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.product-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  background: var(--turquoise);
  border-radius: 50%;
}
.product-facts strong { color: var(--navy-800); font-weight: 500; }

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.product-gallery a {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.product-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.product-gallery a:hover img { transform: scale(1.08); }
.product-gallery a.big { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }

.plans-row {
  margin-top: 54px;
}
.plans-row h4 {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.plans-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.plans-scroll::-webkit-scrollbar { height: 6px; }
.plans-scroll::-webkit-scrollbar-thumb { background: var(--sand-300); border-radius: 4px; }
.plan-card {
  flex: 0 0 auto;
  width: 260px;
  background: #fff;
  border: 1px solid var(--sand-300);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}
.plan-card:hover { box-shadow: 0 18px 40px rgba(5,42,61,.14); transform: translateY(-4px); }
.plan-card img { width: 100%; height: 190px; object-fit: contain; background: #fff; padding: 14px; }
.plan-card-label {
  padding: 12px 16px 16px;
  font-size: 13px;
  color: var(--navy-800);
  border-top: 1px solid var(--sand-200);
}

.price-table {
  margin: 28px 0 0;
  border-top: 1px solid var(--sand-300);
  border-bottom: 1px solid var(--sand-300);
}
.price-table-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  padding-top: 18px;
  display: block;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--sand-200);
}
.price-row:first-of-type { border-top: none; margin-top: 6px; }
.price-typ {
  font-size: 15px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.price-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-800);
  text-align: right;
}
.price-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: .75;
  padding: 10px 0 16px;
}
@media (max-width: 640px) {
  .price-val { font-size: 17px; }
}

.product-cta { margin-top: 40px; }

/* alt reverse layout */
.product-block.reverse .product-head { direction: rtl; }
.product-block.reverse .product-head > * { direction: ltr; }

/* ---------- Location ---------- */
.location {
  padding: 100px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.location::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(47,185,214,.14), transparent 60%);
}
.location-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.location h2 { color: #fff; }
.location .section-lede { color: rgba(255,255,255,.72); }
.location-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.location-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.location-list strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--turquoise-soft);
  font-weight: 500;
}
.location-map {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  padding: 40px;
  position: relative;
}
.location-map svg { width: 100%; height: auto; }

/* ---------- Broker / contato ---------- */
.contact {
  padding: 100px 0;
  background: var(--sand-200);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.broker-card {
  background: #fff;
  border: 1px solid var(--sand-300);
  padding: 46px;
}
.broker-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 22px;
}
.broker-name { font-size: 26px; }
.broker-role {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.broker-meta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.broker-actions { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.broker-actions .btn { justify-content: center; }

.contact-copy h2 { margin-bottom: 4px; }
.contact-copy p { color: var(--ink-soft); font-size: 16px; max-width: 60ch; margin-top: 20px; }
.contact-copy-solo {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-copy-solo p { margin-left: auto; margin-right: auto; }
.contact-copy-solo .contact-chips { justify-content: center; }
.contact-copy-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.contact-chips {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px;
}
.chip {
  padding: 12px 20px;
  border: 1px solid var(--navy-700);
  color: var(--navy-700);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  background: transparent;
}
.chip:hover { background: var(--navy-700); color: #fff; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.55);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { height: 30px; filter: brightness(0) invert(1); opacity: .85; }
.footer-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--turquoise-soft); }
.footer-legal {
  padding-top: 30px;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,.4);
  max-width: 980px;
}
.footer-bottom {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp floating ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 400;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(5,42,61,.35);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(3,20,30,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  color: #fff; font-size: 30px; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-caption {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,.8);
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
}
.lightbox-count {
  position: absolute; top: 28px; left: 32px;
  color: rgba(255,255,255,.6);
  font-size: 12px; letter-spacing: .1em;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 620px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 18px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-count { left: 16px; top: 16px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open { background: transparent; padding: 18px 0; }
  .nav.menu-open::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(5, 15, 20, .55); opacity: 1; z-index: 498;
  }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; right: 0; bottom: 0; width: 78vw; max-width: 340px;
    background: var(--navy-900); opacity: 1; padding: 100px 36px 40px; gap: 26px; z-index: 499;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    box-shadow: -18px 0 50px rgba(0,0,0,.35);
  }
  .nav.menu-open .nav-links a { color: #fff; font-size: 14px; }
  .nav-cta .btn-primary { display: none; }
  .nav.menu-open .nav-toggle { z-index: 500; }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 860px) {
  .manifesto-grid, .duo-grid, .product-head, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .duo-panel { height: 46vh; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card.tall { grid-row: auto; aspect-ratio: 3/4; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .product-gallery a.big { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .manifesto, .amenities, .location, .contact, .product-block,
  .full-gallery, .faq { padding-top: 60px; padding-bottom: 60px; }
  .products-intro { padding-top: 60px; padding-bottom: 0; }
  .section-head { margin-bottom: 40px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-height: 720px) {
  .hero-scroll { display: none; }
  .hero-actions { margin-top: 28px; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-copy-actions { flex-direction: column; width: 100%; }
  .contact-copy-actions .btn,
  .product-cta .btn { width: 100%; justify-content: center; }
  .btn { white-space: normal; text-align: center; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .product-gallery { grid-template-columns: 1fr 1fr; }
  .manifesto, .amenities, .location, .contact, .product-block,
  .full-gallery, .faq { padding-top: 48px; padding-bottom: 48px; }
  .products-intro { padding-top: 48px; }
  .section-head { margin-bottom: 32px; }
  .product-head { margin-bottom: 36px; }
  .plans-row { margin-top: 36px; }
  .duo-panel { height: 38vh; min-height: 320px; }
}
