:root {
  --navy: #071a2f;
  --navy-soft: #0d2946;
  --gold: #c9a45c;
  --gold-dark: #9f7c35;
  --green: #0d6b52;
  --green-soft: #e8f4ed;
  --cream: #f8f6ef;
  --white: #ffffff;
  --ink: #162235;
  --muted: #667085;
  --line: rgba(7, 26, 47, 0.12);
  --shadow: 0 24px 60px rgba(7, 26, 47, 0.14);
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(7, 26, 47, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: min(192px, 44vw);
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.55rem 0.7rem;
}

.footer-brand-logo {
  width: 192px;
  max-width: 100%;
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.55rem 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 164, 92, 0.7);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-cta {
  border: 1px solid rgba(201, 164, 92, 0.7);
  padding: 0.75rem 1rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy);
  color: var(--white);
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  gap: 0.5rem;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: cinematic 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.56), rgba(7, 26, 47, 0.66) 42%, rgba(7, 26, 47, 0.9)),
    linear-gradient(90deg, rgba(7, 26, 47, 0.84), rgba(7, 26, 47, 0.38) 48%, rgba(7, 26, 47, 0.52));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 430px);
  align-items: center;
  gap: 4rem;
  padding: 7rem 6vw 4rem;
}

.hero-showcase {
  grid-template-columns: 1fr;
  align-items: end;
  text-align: center;
  padding-top: 8rem;
}

.hero-showcase .hero-copy {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-showcase h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.hero-showcase .hero-subtitle,
.hero-showcase .trust-statement {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.35rem);
  margin-bottom: 1rem;
}

h3 {
  line-height: 1.2;
  font-size: 1.15rem;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.hero-actions-wide {
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem auto 0.75rem;
}

.hero-actions-wide .btn {
  min-width: min(350px, 100%);
  min-height: 58px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 3vw, 2.5rem);
  margin: clamp(1.6rem, 4vw, 3rem) auto 0;
}

.hero-stat-card {
  min-height: 136px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.25rem;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(201, 164, 92, 0.42);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.hero-stat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  font-size: 0.86rem;
  clip-path: polygon(50% 0, 100% 34%, 86% 100%, 14% 100%, 0 34%);
}

.hero-stat-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.1;
}

.hero-stat-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-gold-line {
  margin: 1.05rem 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 3rem);
  line-height: 1.08;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.trust-badges,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-badges span,
.feature-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
}

.trust-statement {
  max-width: 680px;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.lead-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-heading span {
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
}

.form-heading h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  min-height: 48px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(201, 164, 92, 0.35);
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.consent,
.form-status {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.section {
  padding: 6.8rem 6vw;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 4rem;
  align-items: center;
}

.section-copy p,
.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.overview {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.overview .feature-list span {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.visual-stack {
  position: relative;
}

.visual-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-card {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  width: min(300px, 82%);
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.stats-grid article {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section-title {
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.location-section {
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: 1.5rem;
}

.location-points {
  display: grid;
  gap: 0.7rem;
}

.location-points button {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  cursor: pointer;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.location-points button:hover,
.location-points button.active {
  transform: translateX(4px);
  border-color: rgba(201, 164, 92, 0.65);
  background: var(--green-soft);
}

.location-points span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.map-card {
  min-height: 520px;
  background: var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-toolbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  padding: 0 1.2rem;
}

.map-toolbar span {
  color: var(--gold);
}

.map-card iframe {
  width: 100%;
  height: calc(100% - 64px);
  min-height: 456px;
  border: 0;
  filter: saturate(0.8) contrast(1.04);
}

.amenities {
  background: var(--navy);
  color: var(--white);
}

.amenities .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-card {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(201, 164, 92, 0.5);
}

.amenity-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.55);
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.78rem;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.floor-plans {
  background: var(--cream);
}

.plan-carousel {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 1rem;
  align-items: stretch;
}

.carousel-arrow {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 2.2rem;
  cursor: pointer;
}

.plan-track {
  display: grid;
}

.plan-card {
  display: none;
  min-height: 330px;
  padding: 2rem;
  background:
    linear-gradient(rgba(7, 26, 47, 0.5), rgba(7, 26, 47, 0.82)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=78") center/cover;
  color: var(--white);
  align-content: end;
}

.plan-card.active {
  display: grid;
}

.plan-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  margin: 0.35rem 0 0.75rem;
}

.plan-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 260px;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.07);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  background: rgba(7, 26, 47, 0.72);
  padding: 0.55rem 0.75rem;
  font-weight: 800;
}

.investment {
  background: linear-gradient(180deg, #fff, var(--green-soft));
}

.investment-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.investment-list li {
  padding: 0.8rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.06);
}

.graph-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  min-height: 420px;
  display: grid;
  align-content: end;
  box-shadow: var(--shadow);
}

.graph-line {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.graph-line span {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--green));
  min-height: 20%;
}

.graph-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.graph-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0.5rem 0 0;
}

.testimonials {
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.testimonial {
  display: none;
  max-width: 860px;
}

.testimonial.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.25;
}

.testimonial strong {
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--gold);
}

.final-cta {
  padding: 7rem 6vw;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 26, 47, 0.86), rgba(7, 26, 47, 0.9)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=78") center/cover fixed;
  text-align: center;
}

.final-cta-inner {
  max-width: 980px;
  margin: 0 auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

details p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.site-footer {
  background: #061525;
  color: rgba(255, 255, 255, 0.74);
  padding-bottom: 8rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-contact a {
  color: var(--white);
}

.disclaimer {
  padding: 1.5rem 6vw 0;
}

.disclaimer p {
  max-width: 1180px;
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 6vw 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.legal-page {
  background: var(--cream);
}

.legal-header {
  background: rgba(7, 26, 47, 0.96);
}

.legal-main {
  padding: 8rem 6vw 5rem;
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto 2rem;
}

.legal-hero h1 {
  color: var(--navy);
}

.legal-hero p {
  color: var(--muted);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.legal-footer {
  padding-bottom: 2rem;
}

.floating-whatsapp {
  position: fixed;
  right: 21rem;
  bottom: 1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(13, 107, 82, 0.34);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 91;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 26, 47, 0.22);
}

.sticky-form {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 92;
  width: 300px;
  display: grid;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 164, 92, 0.34);
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(14px);
}

.sticky-form strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.sticky-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fbfcfd;
  padding: 0.65rem 0.75rem;
}

.sticky-form .btn {
  min-height: 42px;
  width: 100%;
}

.sticky-form .form-status {
  margin: 0;
  font-size: 0.72rem;
}

.sticky-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 104px;
  text-align: center;
}

.sticky-cta a:last-child {
  background: var(--green);
  border-right: 0;
  border-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematic {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-1.2%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .section-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 2rem;
    padding-top: 6.5rem;
  }

  .lead-form {
    max-width: 620px;
  }

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

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 1rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 156px;
    padding: 0.45rem 0.55rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 26, 47, 0.92), rgba(7, 26, 47, 0.7) 55%, rgba(7, 26, 47, 0.96)),
      linear-gradient(0deg, rgba(7, 26, 47, 0.84), transparent 50%);
  }

  .hero-inner {
    min-height: auto;
    padding: 6rem 1rem 10.5rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .feature-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .feature-list span {
    width: 100%;
  }

  .hero-stat-grid {
    gap: 0.7rem;
  }

  .hero-stat-card {
    min-height: 116px;
    padding: 0.9rem 0.65rem;
  }

  .hero-stat-card strong {
    font-size: 1.2rem;
  }

  .hero-stat-card small {
    font-size: 0.68rem;
  }

  .hero-actions-wide {
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .hero-actions-wide .btn {
    min-height: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .hero-gold-line {
    font-size: 1.65rem;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  .mini-card {
    position: static;
    width: 100%;
  }

  .stats-grid,
  .amenity-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .map-card {
    min-height: 420px;
  }

  .map-card iframe {
    min-height: 356px;
  }

  .plan-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 0.5rem;
  }

  .plan-card {
    padding: 1.2rem;
    min-height: 380px;
  }

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

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-main {
    display: grid;
    padding: 2rem 1rem;
  }

  .disclaimer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-bottom {
    display: grid;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .legal-main {
    padding: 7rem 1rem 4rem;
  }

  .sticky-cta {
    display: none;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 10.4rem;
  }

  .sticky-form {
    display: grid;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-right: 0;
    padding: 0.7rem;
  }

  .sticky-form strong,
  .sticky-form .form-status {
    grid-column: 1 / -1;
  }

  .sticky-form input,
  .sticky-form .btn {
    min-height: 38px;
    font-size: 0.82rem;
  }
}
