/* =================================================================
   SMART BRICKELL LUXE — landing page styles
   Aesthetic: refined editorial luxury · navy + gold + cream
   Type: Cormorant Garamond (display) + Inter (body)
   ================================================================= */

:root {
  --navy:        #0a1828;
  --navy-deep:   #060e1a;
  --navy-soft:   #16273f;
  --gold:        #c9a227;
  --gold-warm:   #d4b342;
  --gold-soft:   rgba(201, 162, 39, .14);
  --cream:       #f5efe3;
  --cream-warm:  #f9f4ea;
  --paper:       #ffffff;
  --ink:         #1b2434;
  --ink-soft:    #4a5468;
  --line:        rgba(10, 24, 40, .12);
  --line-soft:   rgba(10, 24, 40, .06);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-card:  0 30px 80px rgba(10, 24, 40, .12);
  --shadow-deep:  0 50px 120px rgba(10, 24, 40, .25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Skip-link for accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  padding: 12px 18px; background: var(--navy); color: #fff;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 6vw;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(10, 24, 40, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.brand { display: flex; gap: 12px; align-items: center; color: #fff; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  letter-spacing: .02em;
}
.brand-text strong {
  display: block; font-family: var(--font-display);
  font-weight: 500; font-size: 18px; line-height: 1.1;
  letter-spacing: .02em;
}
.brand-text small {
  display: block; font-size: 11px; letter-spacing: .14em;
  color: rgba(255, 255, 255, .55); text-transform: uppercase;
  margin-top: 2px;
}
.top-nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: rgba(255, 255, 255, .8);
  letter-spacing: .02em;
}
.top-nav a:not(.top-cta) {
  position: relative;
  transition: color .25s ease;
}
.top-nav a:not(.top-cta):hover { color: var(--gold-warm); }
.top-nav a:not(.top-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold-warm);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.top-nav a:not(.top-cta):hover::after { transform: scaleX(1); }
.top-cta {
  padding: 10px 22px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}
.top-cta:hover { background: var(--gold-warm); transform: translateY(-1px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  padding: 120px 6vw 80px;
  background: var(--navy-deep);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(6, 14, 26, .85) 0%, rgba(6, 14, 26, .55) 35%, rgba(6, 14, 26, .65) 100%),
    radial-gradient(ellipse at top right, rgba(201, 162, 39, .15), transparent 60%);
}
.hero-frame {
  position: relative; z-index: 2;
  max-width: 720px;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .15s;
}
.hero-eyebrow {
  display: flex; gap: 14px; align-items: center;
  font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 32px;
}
.hero-eyebrow .line {
  width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(58px, 9vw, 124px);
  line-height: .92;
  letter-spacing: -.01em;
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold-warm);
}
.hero-title .luxe {
  display: inline-block; font-style: italic;
  font-weight: 500;
  color: var(--gold-warm);
  letter-spacing: .04em;
}
.hero-lede {
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 40px;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex; gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 560px;
}
.hero-stats > div { line-height: 1.2; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--gold-warm);
  margin-bottom: 4px;
}
.hero-stats span {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  z-index: 3;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 3px; height: 8px;
  background: var(--gold-warm);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 14px 40px rgba(201, 162, 39, .35);
}
.btn-primary:hover {
  background: var(--gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(201, 162, 39, .45);
}
.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .55); }
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }
.btn-call {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-call:hover { background: var(--navy); color: #fff; }

/* =====================================================
   SECTION SHELL
   ===================================================== */
.section { padding: 120px 0; }
.section.intro { padding-top: 120px; padding-bottom: 80px; background: var(--paper); }
.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow.gold { color: var(--gold-warm); }
.eyebrow.centered { display: block; text-align: center; }
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--navy);
  margin: 0 0 24px;
}
h2.centered { text-align: center; max-width: 820px; margin: 0 auto 24px; }
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 28px;
}
.lead.centered {
  text-align: center; max-width: 720px;
  margin: 0 auto 56px;
}

/* Reveal animation - only applies if JS adds the class (handled in JS) */
.reveal-ready { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-ready.in { opacity: 1; transform: translateY(0); }

/* =====================================================
   INTRO
   ===================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-copy p { color: var(--ink-soft); margin: 0 0 18px; font-size: 16px; }
.intro-bullets {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.intro-bullets li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
}
.intro-bullets li:last-child { border-bottom: 1px solid var(--line-soft); }
.intro-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--gold);
}
.intro-visual { position: relative; }
.intro-visual::before {
  content: ''; position: absolute;
  top: 24px; right: -24px; bottom: -24px; left: 24px;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.intro-visual img {
  position: relative; z-index: 1;
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
}

/* =====================================================
   TOWERS
   ===================================================== */
.towers { background: var(--cream-warm); }
.tower-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.tower-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 4px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tower-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.tower-card.highlight {
  background: var(--navy);
  color: #fff;
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}
.tower-card.highlight::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 140px; height: 140px;
  background: radial-gradient(circle at top right, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.tower-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  margin-bottom: 16px;
}
.tower-tag.gold { color: var(--gold-warm); }
.tower-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: inherit;
}
.tower-meta {
  font-size: 14px; color: var(--ink-soft);
  margin: 0 0 14px;
}
.tower-card.highlight .tower-meta { color: rgba(255, 255, 255, .7); }
.tower-status {
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  margin: 0;
  color: var(--navy);
}
.tower-card.highlight .tower-status { color: var(--gold-warm); }
.tower-status.delivered { color: #2e7d4f; }
.tower-emphasis {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  color: var(--gold-warm);
  letter-spacing: .04em;
  text-transform: uppercase; font-weight: 600;
}

/* =====================================================
   INVEST
   ===================================================== */
.invest { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.invest::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.invest h2 { color: #fff; }
.invest .eyebrow { color: var(--gold-warm); }
.invest-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.invest-head h2 { margin-left: auto; margin-right: auto; }
.invest-head .lead { color: rgba(255, 255, 255, .75); }
.invest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.invest-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  padding: 40px 32px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.invest-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(22, 39, 63, .9);
}
.invest-card.featured {
  background: linear-gradient(160deg, rgba(201, 162, 39, .14), rgba(22, 39, 63, .8));
  border-color: var(--gold);
}
.invest-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-warm);
  margin-bottom: 24px;
}
.invest-icon svg { width: 28px; height: 28px; }
.invest-card h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 26px;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.2;
}
.invest-card p {
  margin: 0; font-size: 15px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
}

/* =====================================================
   AMENITIES
   ===================================================== */
.amenities { background: var(--cream-warm); }
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.amenities-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
.amenity-floor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.amenity-floor:first-of-type { margin-top: 28px; }
.amenity-floor:last-of-type { border-bottom: 1px solid var(--line-soft); }
.amenity-level {
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold);
}
.amenity-floor ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
}
.amenity-floor li {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--navy);
}
.amenity-floor li:not(:last-child)::after {
  content: '·'; color: var(--gold); margin-left: 16px;
}

/* =====================================================
   WHY BRICKELL
   ===================================================== */
.why-brickell {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
}
.why-brickell h2 { color: #fff; }
.why-brickell .lead { color: rgba(255, 255, 255, .75); }
.why-brickell .eyebrow { color: var(--gold-warm); }

.brickell-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 64px 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}
.brickell-stats article {
  background: var(--navy-deep);
  padding: 44px 32px;
  text-align: left;
  transition: background .3s ease;
}
.brickell-stats article:hover { background: var(--navy-soft); }
.brickell-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 14px;
}
.brickell-stats span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.55;
}
.brickell-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin: 0 auto 56px;
  max-width: 800px;
  line-height: 1.4;
}
.brickell-quote em { color: var(--gold-warm); font-style: normal; font-size: .8em; letter-spacing: .04em; }
.brickell-companies {
  text-align: center;
}
.brickell-companies p {
  color: rgba(255, 255, 255, .55);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  margin: 0 0 24px;
}
.company-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 36px;
}
.company-list span {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
  transition: color .25s ease;
}
.company-list span:hover { color: var(--gold-warm); }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 32px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: zoom-in;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid .gal-large { grid-column: span 2; grid-row: span 2; }

/* =====================================================
   LOCATION
   ===================================================== */
.location { background: var(--cream-warm); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.location-list {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.location-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.location-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.location-list li span:first-child {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--gold);
}
.location-list li span:last-child {
  color: var(--navy);
  font-size: 16px;
}
.location-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

/* =====================================================
   TEAM
   ===================================================== */
.team { background: var(--paper); }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 56px 0 32px;
}
.team-card {
  background: var(--cream-warm);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.team-image { aspect-ratio: 16 / 9; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-content { padding: 36px 32px; }
.team-role {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin: 0 0 12px;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 32px;
  margin: 0 0 16px;
  color: var(--navy);
  line-height: 1.1;
}
.team-content p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }
.team-projects { font-size: 14px; }
.team-projects strong { color: var(--navy); }
.team-architects {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 24px 0 0;
}
.team-architects strong { color: var(--navy); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  padding: 64px;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-warm) 50%, var(--gold) 100%);
}
.contact-copy h2 { color: var(--navy); margin-top: 0; font-size: clamp(28px, 3vw, 38px); }
.contact-copy p { color: var(--ink-soft); margin: 0 0 24px; }
.contact-perks {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.contact-perks li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
}
.contact-perks li:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-perks li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--gold);
  font-weight: 700;
}
.contact-direct {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 8px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 28px;
  margin: 0 0 24px;
  color: var(--navy);
}
.field { display: block; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream-warm);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.btn-submit {
  width: 100%;
  padding: 18px 28px;
  font-size: 15px;
  margin-top: 8px;
}
.form-note {
  font-size: 12px; color: var(--ink-soft);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-grid strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.footer-grid a { color: rgba(255, 255, 255, .8); text-decoration: underline; text-underline-offset: 3px; transition: color .25s ease; }
.footer-grid a:hover { color: var(--gold-warm); }
.footer-grid .legal {
  font-size: 11px; line-height: 1.6;
  color: rgba(255, 255, 255, .55);
}
.footer-meta {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .35); }
  60%      { box-shadow: 0 12px 30px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .top-nav a:not(.top-cta) { display: none; }
  .intro-grid, .amenities-grid, .location-grid, .team-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .amenities-grid > .amenities-image { order: -1; }
  .location-grid > .location-image { order: -1; }
  .tower-cards, .invest-grid { grid-template-columns: 1fr; gap: 16px; }
  .brickell-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .gal-large { grid-column: span 2; grid-row: span 2; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 760px) {
  .top-bar { padding: 12px 5vw; }
  .brand-mark { width: 36px; height: 36px; font-size: 15px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 10px; }
  .top-cta { padding: 8px 16px; font-size: 12px; }

  .hero { padding: 100px 5vw 60px; min-height: 90vh; }
  .hero-stats { gap: 24px; }
  .hero-stats span { font-size: 11px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; }

  .section { padding: 80px 0; }
  h2 { font-size: clamp(28px, 7vw, 36px); }
  .lead { font-size: 16px; }

  .intro-visual::before { display: none; }
  .intro-bullets li { padding-left: 28px; }

  .amenity-floor { grid-template-columns: 1fr; gap: 8px; }
  .amenity-floor li { font-size: 17px; }

  .brickell-stats { grid-template-columns: 1fr; }
  .brickell-stats article { padding: 32px 28px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-grid .gal-large { grid-column: span 2; grid-row: span 1; }

  .contact-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-direct { flex-direction: column; }
  .contact-direct .btn { width: 100%; }

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

  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }

  .hero-scroll { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero { background: var(--navy); }
}
