/* === VARIABLES === */
:root {
  --green: #1a302a;
  --green-95: rgba(26,48,42,0.95);
  --gold: #c9a96e;
  --gold-light: #ddc699;
  --gold-dark: #a8873f;
  --cream: #f5f3ef;
  --white: #ffffff;
  --text: #1a1a1c;
  --muted: #5c5c5c;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --container: 1080px;
  --pad: clamp(1rem, 4vw, 2rem);
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn--sm { padding: 0.625rem 1.375rem; font-size: 0.8125rem; }

.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.btn--outline-dark { border: 1.5px solid var(--green); color: var(--green); background: transparent; }
.btn--outline-dark:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.btn--wa { background: #25d366; color: var(--white); }
.btn--wa:hover { background: #1fb855; transform: translateY(-2px); }

.btn--wa-full {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: var(--radius);
}

/* === FORM DIVIDER === */
.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26,48,42,0.1);
}

.form-divider span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

/* === PROMO BAR === */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  transition: height 0.35s var(--ease), opacity 0.35s var(--ease);
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0.5rem var(--pad);
  min-height: 44px;
}

.promo-bar__text {
  font-size: 0.8125rem;
  text-align: center;
  flex: 1;
  line-height: 1.4;
}

.promo-bar__sep {
  opacity: 0.5;
  margin: 0 0.125rem;
}

@media (max-width: 640px) { .promo-bar__extra { display: none; } }

.promo-bar__cta {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(0,0,0,0.18);
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.promo-bar__cta:hover { background: rgba(0,0,0,0.3); }

.promo-bar__close {
  flex-shrink: 0;
  color: rgba(255,255,255,0.75);
  padding: 0.25rem;
  transition: color 0.2s;
  line-height: 0;
}
.promo-bar__close:hover { color: var(--white); }

/* === HEADER === */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--promo-height, 0px);
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease), top 0.35s var(--ease);
}

/* Blur en pseudo-elemento para que backdrop-filter NO cree un containing block
   en el header y rompa el position:fixed del nav overlay en mobile */
.header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.header.scrolled::after {
  opacity: 1;
}

.header.scrolled {
  padding: 0.875rem 0;
  box-shadow: 0 1px 24px rgba(0,0,0,0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.header__logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.header.scrolled .header__logo img { height: 56 px; }

.nav { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav { display: flex; align-items: center; } }

.nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

.header__lang {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: all 0.2s;
}
.header__lang:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
@media (min-width: 768px) { .header__toggle { display: none; } }

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.25s;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.header.nav-open { z-index: 120; }

.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--green);
  padding: 6rem var(--pad) 2rem;
  gap: 1.75rem;
  z-index: 99;
}
.nav.open .nav__link { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.01em; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--green);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(26,48,42,0.88) 0%, rgba(26,48,42,0.35) 55%, rgba(26,48,42,0.12) 100%);
}

.hero__content { position: relative; z-index: 2; color: var(--white); max-width: 680px; }

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.65;
  opacity: 0.82;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* === STATS === */
.stats {
  background: var(--green);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

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

@media (min-width: 580px) { .stats__list { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; }

.stat__num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

/* === PROJECT === */
.project {
  background: var(--cream);
  padding: 6rem 0;
}

.project__inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 768px) { .project__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.project__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.project__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

.project__content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.project__content p strong { color: var(--text); font-weight: 600; }
.project__content p em { font-style: italic; color: var(--gold-dark); }

.project__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 1.5rem 0;
}
.project__address svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.video-thumb img {
  width: 100%;
  display: block;
  opacity: 0.88;
  transition: opacity 0.35s, transform 0.6s var(--ease);
}
.video-thumb:hover img { opacity: 0.7; transform: scale(1.03); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
}
.play-btn svg { margin-left: 3px; }
.video-thumb:hover .play-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}

/* === AMENITIES === */
.amenities {
  background: var(--white);
  padding: 6rem 0 0;
}

.amenities__header { text-align: center; margin-bottom: 3rem; padding: 0 var(--pad); }

.amenities__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

@media (min-width: 768px) { .amenities__grid { grid-template-columns: repeat(5, 1fr); } }

.amenity-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--green);
}

@media (min-width: 768px) { .amenity-item { aspect-ratio: auto; min-height: 440px; } }

@media (max-width: 767px) { .amenity-item:last-child { grid-column: span 2; aspect-ratio: 16/9; } }

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.amenity-item:hover img { transform: scale(1.05); }

.amenity-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(26,48,42,0.9) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === LOCATION === */
.location {
  background: var(--cream);
  padding: 6rem 0;
}

.location__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) { .location__inner { grid-template-columns: 1fr 1.4fr; gap: 5rem; } }

.location__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--green);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.location__content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

.location__list { display: flex; flex-direction: column; gap: 1rem; }

.location__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.location__list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.location__map img { width: 100%; }

/* === CONTACT === */
.contact {
  background: var(--white);
  padding: 6rem 0;
}

.contact__inner {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 768px) { .contact__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.contact__info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.contact__info > p { color: var(--muted); margin-bottom: 2rem; }

.contact__list { display: flex; flex-direction: column; gap: 1rem; }

.contact__list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.contact__list a:hover { color: var(--gold-dark); }
.contact__list svg { color: var(--gold); flex-shrink: 0; }

.contact__form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* === FOOTER === */
.footer { background: var(--green); color: rgba(255,255,255,0.6); }

.footer__inner {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr auto; align-items: start; } }

.footer__brand img {
  height: 30px;
  width: auto;
  margin-bottom: 0.625rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__brand p { font-size: 0.8125rem; }

.footer__nav,
.footer__contact { display: flex; flex-direction: column; gap: 0.625rem; }

.footer__nav a,
.footer__contact a { font-size: 0.875rem; transition: color 0.2s; }
.footer__nav a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__socials { display: flex; gap: 0.625rem; align-items: flex-start; }

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer__socials a:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,169,110,0.12);
}

.footer__bottom { padding: 1.25rem 0; }

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-inner p,
.footer__bottom-inner a { font-size: 0.8125rem; }

.footer__bottom-inner div { display: flex; gap: 1.5rem; }
.footer__bottom-inner a { transition: color 0.2s; }
.footer__bottom-inner a:hover { color: var(--white); }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* === HERO BULLETS === */
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}

.hero__bullets svg { color: var(--gold); flex-shrink: 0; }

/* === ¿ES PARA TI? === */
.for-you {
  background: var(--white);
  padding: 6rem 0;
}

.for-you__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.for-you__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.for-you__intro {
  color: var(--muted);
  font-size: 1rem;
}

.for-you__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .for-you__cards { grid-template-columns: 1fr 1fr; } }

.for-you__card {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.for-you__card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 32px rgba(201,169,110,0.12);
}

.for-you__num {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(201,169,110,0.22);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.for-you__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.for-you__card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.for-you__close {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}

.for-you__close strong { color: var(--green); font-weight: 600; }

/* === PROJECT FEATURES & MINI STATS === */
.project__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}

.project__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.project__features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.project__mini-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(26,48,42,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mini-stat {
  padding: 0.875rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.mini-stat:last-child { border-right: none; }

.mini-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.mini-stat span {
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

/* === AMENIDADES EXTENDED === */
.amenities__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

.amenities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2.5rem 0 4rem;
  justify-content: center;
}

.amenities__list li {
  padding: 0.4375rem 1rem;
  border: 1px solid rgba(26,48,42,0.14);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.amenities__list li:hover { border-color: var(--gold); color: var(--green); }

/* === LOCATION — EXTENDED === */
.location__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === OFFER (dentro de location) === */
.offer {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin-top: 4rem;
  text-align: center;
  color: var(--white);
}

@media (max-width: 580px) { .offer { padding: 3rem 1.5rem; } }

.offer__header { margin-bottom: 3rem; }

.offer__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.offer__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.offer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.offer__item { padding: 1.5rem 2.5rem; }

@media (max-width: 580px) { .offer__item { padding: 1.25rem 1.5rem; } }

.offer__sep {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 580px) { .offer__sep { display: none; } }

.offer__num {
  display: block;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.offer__unit {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.offer__item p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* === CONTACT EXTENDED === */
.contact__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.contact__benefits li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact__benefits li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.contact__closing {
  font-size: 0.9375rem;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.75;
}

/* === VIDEO MODAL === */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal[hidden] { display: none; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 400px;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem;
  line-height: 0;
  transition: color 0.2s, transform 0.2s;
}
.video-modal__close:hover { color: var(--white); transform: rotate(90deg); }

.video-modal__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === HUBSPOT FORM RESETS === */
/* HubSpot form resets */
.contact__form .hs-form-frame {
  width: 100%;
}

/* === FALLBACK FORM === */
.fallback-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.fallback-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) { .fallback-form__row { grid-template-columns: 1fr; } }

.fallback-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.fallback-form__field label,
.fallback-form__fieldset legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.fallback-form__req { color: #c0392b; }

.fallback-form__field input[type="text"],
.fallback-form__field input[type="email"],
.fallback-form__field input[type="tel"] {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(26,48,42,0.2);
  border-radius: 0.375rem;
  outline: none;
  transition: border-color 0.2s;
}

.fallback-form__field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.fallback-form__field input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.fallback-form__phone {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(26,48,42,0.2);
  border-radius: 0.375rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.fallback-form__phone:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.fallback-form__prefix {
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(26,48,42,0.04);
  border-right: 1px solid rgba(26,48,42,0.12);
  white-space: nowrap;
  flex-shrink: 0;
}

.fallback-form__phone input {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.fallback-form__fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fallback-form__fieldset legend {
  margin-bottom: 0.375rem;
}

.fallback-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.fallback-form__check input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.fallback-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.fallback-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.fallback-form__legal {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.fallback-form__error {
  font-size: 0.8125rem;
  color: #c0392b;
  background: rgba(192,57,43,0.07);
  border-radius: 0.375rem;
  padding: 0.625rem 0.875rem;
}

.fallback-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  text-align: center;
}

.fallback-form__success svg { color: var(--gold); }

.fallback-form__success p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.6;
}

