/* ═══════════════════════════════════════════════════════
   CARLA CHRISTENSON — Luxury Real Estate
   Full Redesign · Vertical Scroll · Editorial Luxury
   ═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #0891b2;
  --gold-lt:     #06b6d4;
  --gold-pale:   #e0f7fa;
  --navy:        #0c4a6e;
  --navy-mid:    #075985;
  --navy-soft:   #0369a1;
  --section-alt: #f0f9ff;
  --cream:       #f7fdff;
  --off-white:   #FFFFFF;
  --white:       #FFFFFF;
  --stone:       #e0f2fe;
  --text-dark:   #0c2340;
  --text-mid:    #334e68;
  --text-light:  #627d98;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Raleway', Arial, sans-serif;
  --script:      'Cormorant Garamond', Georgia, serif;
  --nav-h:       80px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }
body { font-family: var(--sans); background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.center { text-align: center; }
.center-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.mt-lg { margin-top: 36px; }
.mt-xl { margin-top: 56px; }
.w-full { width: 100%; }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.eyebrow-light { color: var(--gold-lt); }
.eyebrow-gold  { color: var(--gold); }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-heading em { font-style: italic; color: var(--gold); display: block; }
.section-heading.light { color: var(--white); }
.section-heading.light em { color: var(--gold-lt); }

.section-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

.body-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.body-text.light { color: rgba(255,255,255,0.72); }

.rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0 32px;
}
.rule-gold { background: var(--gold); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 16px 38px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 15px 36px;
  /* Solid semi-opaque dark background so text always reads over photo */
  background: rgba(13,27,42,0.65);
  border: 1.5px solid rgba(255,255,255,0.85);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  background: rgba(8,145,178,0.2);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.45);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-dark:hover { background: rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.75); transform: translateY(-2px); }

.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ── Reveal animations ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ════════════════════════════════════════════
   STICKY NAV
   ════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  overflow: visible;    /* never clip logo rows */
  /* Always show a solid dark base so nav text is always readable */
  background: rgba(12,74,110,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,145,178,0.3);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(12,74,110,0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(8,145,178,0.35);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Avatar-only nav logo — clean, uncluttered */
.nav-logo-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-logo:hover .nav-logo-avatar {
  transform: scale(1.07);
  box-shadow: 0 4px 20px rgba(8,145,178,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  padding: 8px 10px;
  border-radius: 2px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-lt); }
.nav-link.active { color: var(--gold); }
.nav-link-cta {
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 800;
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: 2px;
  transition: background var(--transition);
}
.nav-link-cta:hover { background: var(--gold-lt); }

/* Nav Social Icons */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav-soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
}
.nav-soc-link:hover {
  color: var(--gold-lt);
  background: rgba(183,144,59,0.12);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: #0c4a6e;
  z-index: 300;
  padding: 60px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--white); }
.drawer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 36px;
}
.drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.drawer-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.drawer-link:hover { color: var(--gold-lt); }
/* Drawer Social Icons */
.drawer-social {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.drawer-soc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.drawer-soc-link:hover {
  color: var(--gold-lt);
  background: rgba(183,144,59,0.1);
}
.drawer-soc-link svg { flex-shrink: 0; }

.drawer-contact { display: flex; flex-direction: column; gap: 12px; }
.drawer-contact a {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--gold-lt);
  transition: color var(--transition);
}
.drawer-contact a:hover { color: var(--white); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  /* Show hero + stats bar all visible without scrolling */
  height: calc(100vh - 200px);
  height: calc(100dvh - 200px);
  min-height: 420px;
  max-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── SPLIT HERO (homepage redesign) ───────────────────────── */
.hero.hero-split {
  background:
    linear-gradient(125deg,
      #030d1a 0%,
      #061e36 40%,
      #082a4a 70%,
      #061828 100%
    );
  height: auto;
  max-height: none;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* LEFT panel */
.hero-split-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 48px 64px;
  z-index: 2;
  position: relative;
}
/* Ambient glow */
.hero-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(8,145,178,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-split-left > * { position: relative; z-index: 1; }

/* RIGHT panel */
.hero-split-right {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
/* Gradient bleed from left edge of photo into left panel */
.hero-split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3,13,26,0.55) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* Stats bar spans full width */
.hero.hero-split .hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
}

/* Brokerage logo */
.hero-logo-row { margin-bottom: 28px; }
.hero.hero-split .hero-sothebys-img {
  width: clamp(160px, 28vw, 280px);
  mix-blend-mode: screen;
  opacity: 0.92;
}

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

/* Override hero-name for split layout */
.hero.hero-split .hero-name {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.0;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  white-space: normal;
  text-shadow: none;
}

/* Division tag (smaller, subdued version) */
.hero-division-tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

/* Territory */
.hero-territory {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

/* Credential pills */
.hero-cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-cred-pill {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(8,145,178,0.45);
  background: rgba(8,145,178,0.08);
  border-radius: 40px;
  padding: 6px 14px;
}

/* Outline CTA button */
.btn-hero-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-hero-outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  background: rgba(8,145,178,0.08);
}

/* Override hero-actions alignment for split layout */
.hero.hero-split .hero-actions {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 14px;
}

/* Valuation link */
.hero-valuation-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
  display: inline-block;
}
.hero-valuation-link:hover { color: var(--gold-lt); }

/* Google Reviews inline row */
.hero-reviews-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 4px;
}
.hero-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; }
.hero-reviews-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.hero-reviews-text strong { color: rgba(255,255,255,0.85); }
.hero-reviews-row:hover .hero-reviews-text { color: rgba(255,255,255,0.85); }

/* Portrait photo */
.hero-portrait-wrap {
  position: absolute;
  inset: 0;
}
.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(8%) contrast(1.04);
}
/* Gold vertical accent line on left edge of photo */
.hero-portrait-frame {
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8,145,178,0.8) 25%,
    rgba(8,145,178,0.8) 75%,
    transparent
  );
  border-radius: 2px;
  z-index: 2;
}
/* Bottom fade so photo dissolves into stats bar */
.hero-split-right::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(3,13,26,0.75) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Responsive ── */
@media(max-width:900px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }
  .hero-split-right {
    grid-column: 1;
    grid-row: 1;
    min-height: 340px;
    max-height: 420px;
  }
  .hero-split-left {
    grid-column: 1;
    grid-row: 2;
    padding: 40px 28px 32px;
    text-align: center;
  }
  .hero-split-left::before { display: none; }
  .hero-portrait-frame { display: none; }
  .hero-split-right::before { display: none; }
  .hero.hero-split .hero-stats {
    grid-column: 1;
    grid-row: 3;
  }
  .hero.hero-split .hero-actions { justify-content: center; }
  .hero-cred-row { justify-content: center; }
  .hero-logo-row { display: flex; justify-content: center; }
}
@media(max-width:640px) {
  .hero-split-left { padding: 32px 20px 28px; }
  .hero-split-right { min-height: 280px; max-height: 340px; }
  .hero.hero-split .hero-name { font-size: clamp(2.4rem, 10vw, 3.4rem); }
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 110%; /* slightly oversized for subtle parallax breathing room */
  object-fit: cover;
  object-position: center center;
  transform: translateY(-5%);
  /* Smooth fade-in when video loads */
  animation: videoFadeIn 2s ease-out both;
}
@keyframes videoFadeIn {
  from { opacity: 0; transform: translateY(-5%) scale(1.03); }
  to   { opacity: 1; transform: translateY(-5%) scale(1); }
}
.hero-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Show fallback only if video fails */
.hero-video:not([src]) + .hero-img-fallback,
.hero-video[src=""] + .hero-img-fallback { display: block; }

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Cinematic gradient overlay — dark edges, clear center for video to shine */
  background:
    radial-gradient(ellipse at center, rgba(12,74,110,0.05) 30%, rgba(12,74,110,0.35) 100%),
    linear-gradient(
      to bottom,
      rgba(12,74,110,0.40) 0%,
      rgba(12,74,110,0.10) 30%,
      rgba(12,74,110,0.10) 60%,
      rgba(12,74,110,0.65) 100%
    );
  z-index: 1;
}

/* Trust badge */
.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  right: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadeInDown 1s 1.2s both;
}
.hero-badge-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.hero-badge-text { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.9); }
.hero-badge-text strong { color: var(--white); }

/* Hero content — pushed down from nav so name is never clipped */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 0;
  max-width: 900px;
}
/* ONE Sotheby’s branding block in hero — MLS-compliant: same size as agent name */
.hero-sothebys-block {
  display: flex;
  justify-content: center;
  margin: 18px auto 22px;
}
/* Matches hero-name exactly: same serif font, same clamp size */
/* mix-blend-mode:screen makes black background invisible, white logo shows through */
.hero-sothebys-img {
  display: block;
  width: clamp(200px, 40vw, 400px);
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.95;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.6));
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  white-space: nowrap;
}
.hero-name em { font-style: normal; color: var(--white); }
/* Sold It — its own bold line */
.hero-soldit-line {
  font-family: var(--script);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #38bdf8;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-tagline {
  font-family: var(--script);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
/* Sports & Entertainment Division */
.hero-division {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,1), 0 0 40px rgba(0,0,0,0.8);
  margin-bottom: 10px;
  background: rgba(0,0,0,0.25);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 4px;
}
/* Jupiter · Palm Beach · Treasure Coast */
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  text-shadow: 0 2px 16px rgba(0,0,0,0.95);
  margin-bottom: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 32px;
}

/* Hero stats bar — pushed to bottom of flex column with auto top margin */
.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,74,110,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(8,145,178,0.3);
  padding: 12px 48px;
  gap: 0;
  width: 100%;
  height: 58px; /* fixed height matches hero calc() */
  box-sizing: border-box;
  margin-top: auto; /* pushes stats bar to bottom — creates space above buttons */
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hstat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.hstat-sym { font-size: 1.2rem; color: var(--gold-lt); vertical-align: super; }
.hstat-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.hstat-div {
  width: 1px;
  height: 44px;
  background: rgba(8,145,178,0.3);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.hero-scroll-hint:hover { color: var(--gold-lt); }
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: currentColor;
  animation: scrollPulse 2s infinite;
}
.scroll-text {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   TICKER BAR
   ════════════════════════════════════════════ */
.ticker-bar {
  background: #0c4a6e;
  border-bottom: 1px solid rgba(8,145,178,0.25);
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  padding: 0 28px;
  border-right: 1px solid rgba(8,145,178,0.3);
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-left: 28px;
}
.tick-item {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.tick-item strong { color: var(--gold-lt); font-weight: 600; }
.tick-dot { color: var(--gold); font-size: 0.5rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   SECTIONS — Base
   ════════════════════════════════════════════ */
.section { padding: 120px 0; }
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-dark  {
  background: #0c4a6e;
  color: var(--white);
}
.section-warm {
  background: #f0f9ff;
  color: var(--text-dark);
}
.section-soft {
  background: #e0f2fe;
  color: var(--text-dark);
}
/* ════════════════════════════════════════════════════════
   SPORTS & ENTERTAINMENT — Full Cinematic Section
════════════════════════════════════════════════════════ */

.section-sports {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Parallax photo background */
.sports-bg {
  position: absolute;
  inset: -80px 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=2000&q=90');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  z-index: 0;
}

/* Multi-layer overlay — balanced for readability */
.sports-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,22,40,0.92) 0%, rgba(7,22,40,0.88) 50%, rgba(7,22,40,0.92) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(183,144,59,0.08) 0%, transparent 60%);
  z-index: 1;
}

/* Diagonal gold accent line */
.sports-accent-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,145,178,0.25) 30%, rgba(8,145,178,0.25) 70%, transparent 100%);
  z-index: 2;
  transform: rotate(6deg) translateX(-50%);
  transform-origin: center;
}

/* Top eyebrow banner */
.sports-eyebrow-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 48px 0;
  text-align: center;
}
.seb-rule {
  flex: 1;
  max-width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.7));
}
.seb-rule:last-child {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.7));
}
.seb-text {
  font-family: var(--sans);
  font-size: 0.80rem;
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: rgba(183,144,59,1.0);
  border: 2px solid #fff;
  padding: 10px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,170,95,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* Inner two-column layout */
.sports-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px;
  width: 100%;
  box-sizing: border-box;
}

/* ── LEFT column ────────────────────────────────── */
.sports-division-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,145,178,0.12);
  border: 1px solid rgba(8,145,178,0.35);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.sdb-icon { font-size: 1rem; }
.sdb-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.sports-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.sports-headline em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.sports-gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px;
}

.sports-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Client type pills */
.sports-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.sc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 4px;
  padding: 9px 16px;
  transition: background var(--transition), border-color var(--transition);
}
.sc-pill:hover {
  background: rgba(183,144,59,0.18);
  border-color: rgba(183,144,59,0.6);
}
.sc-icon { font-size: 0.95rem; }
.sc-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
}

/* Privacy bar */
.sports-privacy-bar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.10);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 36px;
}
.spb-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.spb-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #ffffff;
}
.spb-text strong { color: var(--gold); font-weight: 700; }

/* CTA button */
.sports-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(8,145,178,0.3);
}
.sports-cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(8,145,178,0.45);
}

/* ── RIGHT column ───────────────────────────────── */

/* Stats 2×2 grid */
.sports-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(8,145,178,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.sports-stat {
  background: rgba(255,255,255,0.10);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.sports-stat:hover { background: rgba(183,144,59,0.15); }
.ss-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ss-plus {
  font-size: 1.8rem;
  vertical-align: top;
  color: var(--gold);
}
.ss-unit {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.ss-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Credential cards */
.sports-credentials {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scred-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 20px 22px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.scred-card:hover {
  background: rgba(8,145,178,0.07);
  border-color: rgba(8,145,178,0.25);
  transform: translateX(4px);
}
.scred-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,145,178,0.1);
  border-radius: 8px;
  border: 1px solid rgba(8,145,178,0.2);
}
.scred-content { flex: 1; }
.scred-title {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.scred-desc {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.90);
}

/* ── Bottom communities strip ───────────────────── */
.sports-communities {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 48px;
  border-top: 1px solid rgba(8,145,178,0.15);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}
.scom-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-right: 6px;
}
.scom-item {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.scom-item:hover { color: var(--gold); }
.scom-dot {
  color: rgba(8,145,178,0.4);
  font-size: 0.8rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .sports-inner { gap: 56px; padding: 60px 40px; }
  .sports-headline { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
}
@media (max-width: 820px) {
  .sports-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 32px;
  }
  .sports-accent-line { display: none; }
  .sports-communities { padding: 20px 24px; }
  .seb-text { white-space: normal; text-align: center; }
  .seb-rule { display: none; }
}
@media (max-width: 640px) {
  .sports-inner { padding: 48px 20px; }
  .sports-headline { font-size: 2.4rem; }
  .ss-num { font-size: 2.2rem; }
  .sports-clients { gap: 8px; }
  .sc-pill { padding: 8px 12px; }
  .sports-communities { display: none; }
  .sports-eyebrow-bar { padding: 20px 20px 0; }
}

/* ════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.13);
  /* Subtle warm border to frame the white-background portrait */
  border: 1px solid rgba(8,145,178,0.2);
  background: #fff;
}
.about-img-caption {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  background: #0c4a6e;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-img-caption span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.about-quote {
  font-family: var(--script);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid var(--stone);
  padding: 6px 14px;
  border-radius: 2px;
}
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  margin-bottom: 32px;
}
.about-stat { flex: 1; text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-sym { font-size: 1.4rem; vertical-align: super; color: var(--gold); }
.stat-label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.stat-div {
  width: 1px;
  height: 44px;
  background: var(--stone);
}

/* ════════════════════════════════════════════
   WHY CARLA
   ════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
  margin-bottom: 56px;
  border-radius: 4px;
  overflow: hidden;
}
.why-card {
  padding: 48px 36px;
  background: #fff;
  transition: background var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  background: var(--gold-pale);
  border-color: rgba(8,145,178,0.25);
}
.why-icon { font-size: 2rem; margin-bottom: 20px; }
.why-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-body {
  font-family: var(--sans);
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ════════════════════════════════════════════
   NOTABLE SALES — EDITORIAL
   ════════════════════════════════════════════ */

/* Feature card */
.sold-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-bottom: 4px;
  overflow: hidden;
}
.sold-feature-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 440px;
}
.sold-feature-body {
  background: #0c4a6e;
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sold-feature-badge {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(8,145,178,0.5);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 28px;
  border-radius: 2px;
  width: fit-content;
}
.sold-feature-price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 16px;
}
.sold-feature-addr {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.sold-feature-loc {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.sold-feature-details {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.sold-feature-note {
  font-family: var(--script);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Sales grid */
.sold-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 56px;
}
.sold-card {
  background: var(--white);
  overflow: hidden;
  border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sold-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.sold-card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}
.sold-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--navy);
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border-radius: 1px;
}
.sold-card-body { padding: 18px 18px 20px; }
.sold-card-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}
.sold-card-addr {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.sold-card-loc {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.sold-card-det {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--text-light);
  border-top: 1px solid var(--stone);
  padding-top: 10px;
  margin-top: 4px;
}
.sold-footer {
  text-align: center;
  padding: 0 0 12px;
}
.sold-footer-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 28px;
  font-style: italic;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  padding: 40px 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e0d0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 1 !important;
  transform: none !important;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  transform: translateY(-4px) !important;
}
.tcard-stars {
  color: #c9a84c;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tcard-quote {
  font-family: var(--script);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: #1a2a3a;
  line-height: 1.8;
  margin-bottom: 20px;
}
.tcard-author {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  font-style: normal;
  border-top: 1px solid #e8e0d0;
  padding-top: 16px;
  margin-top: 4px;
  display: block;
}

/* ════════════════════════════════════════════
   MARKET PULSE
   ════════════════════════════════════════════ */
.market-counties {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
  padding: 60px;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-radius: 2px;
}
.county-divider {
  width: 1px;
  background: var(--stone);
  align-self: stretch;
  margin: 0 20px;
}
.county-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.county-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cstat { }
.cstat-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trend-up { color: #2a7a2a; }
.cstat-key {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Hot segments */
.hot-segments { margin-bottom: 60px; }
.segments-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.segment-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: 2px;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.seg-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.seg-tag.seller  { background: #e8f4e8; color: #2a7a2a; }
.seg-tag.ultra   { background: #f4e8f4; color: #7a2a7a; }
.seg-tag.rising  { background: #fef0e0; color: #a05a00; }
.seg-tag.demand  { background: #e8eef8; color: #2a4a8a; }
.seg-tag.limited { background: #fde8e8; color: #8a2a2a; }
.seg-tag.offmkt  { background: #f2ede6; color: #6b4a1a; }
.seg-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.seg-range {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}
.market-cta {
  text-align: center;
  padding: 48px;
  background: var(--navy);
  border-radius: 2px;
}
.market-cta p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ════════════════════════════════════════════
   MARKET UPDATE — Enhanced Charts Section
   ════════════════════════════════════════════ */

/* Updated badge */
.market-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 40px;
  padding: 7px 20px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-top: 20px;
  letter-spacing: 0.04em;
}
.market-updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a7a2a;
  display: inline-block;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

/* Tab bar */
.market-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.market-tab {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid var(--stone);
  border-radius: 40px;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.market-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.market-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Panels */
.market-panel { display: none; }
.market-panel.active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* KPI cards row */
.market-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.market-kpi {
  background: var(--white);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.market-kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.kpi-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
}
.kpi-val {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.kpi-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.kpi-trend {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.kpi-trend.up {
  background: rgba(42,122,42,0.1);
  color: #2a7a2a;
}
.kpi-trend.neutral {
  background: rgba(74,72,69,0.1);
  color: var(--text-mid);
}
.kpi-trend.down {
  background: rgba(180,40,40,0.1);
  color: #b42828;
}

/* Chart boxes */
.market-chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.market-chart-box {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.chart-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone);
}

/* Market condition meter */
.market-meter-wrap {
  background: #0c4a6e;
  border-radius: 2px;
  padding: 48px;
  margin-bottom: 60px;
  text-align: center;
}
.market-meter-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}
.meter-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.meter-bar {
  position: relative;
  max-width: 600px;
  margin: 0 auto 24px;
  height: 14px;
  background: linear-gradient(to right, #0ea5e9, #38bdf8, #0891b2, #c0392b);
  border-radius: 40px;
  overflow: visible;
}
.meter-fill {
  display: none; /* we use needle position instead */
}
.meter-needle {
  position: absolute;
  top: -8px;
  transform: translateX(-50%);
}
.meter-needle::before {
  content: '';
  display: block;
  width: 4px;
  height: 30px;
  background: var(--white);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.needle-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  white-space: nowrap;
  margin-top: 6px;
  text-align: center;
}
.meter-note {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   AREAS GRID
   ════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.area-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,89,133,0.88) 0%, rgba(7,89,133,0.25) 60%, transparent 100%);
  transition: background var(--transition);
}
.area-card:hover .area-overlay {
  background: linear-gradient(to top, rgba(7,89,133,0.95) 0%, rgba(7,89,133,0.45) 60%, rgba(7,89,133,0.1) 100%);
}
.area-body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 28px 28px;
  z-index: 1;
}
.area-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  transition: transform var(--transition);
}
.area-card:hover .area-name { transform: translateY(-4px); }
.area-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.area-price {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(8,145,178,0.55);
  border: 1px solid rgba(8,145,178,0.8);
  border-radius: 4px;
  padding: 2px 9px;
  margin-top: 7px;
  backdrop-filter: blur(4px);
}

/* Area bullet list — revealed on hover */
.area-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.area-card:hover .area-list {
  max-height: 120px;
  opacity: 1;
}
.area-list li {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}
.area-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Region section titles */
.areas-region-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(8,145,178,0.3);
  padding-bottom: 12px;
  margin: 56px 0 20px;
}
.areas-region-title:first-of-type { margin-top: 0; }

/* 2-column variant for the last row */
.areas-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

/* ════════════════════════════════════════════
   SPORTS & ENTERTAINMENT — old rules removed, see new block above
   ════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   LISTINGS
   ════════════════════════════════════════════ */
.listings-launch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-radius: 2px;
  margin-bottom: 32px;
}
.listings-launch-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.listings-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 16px;
}
.quick-searches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.qs-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--off-white);
  border: 1px solid var(--stone);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 2px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.qs-link:hover { background: var(--cream); border-color: var(--gold); transform: translateY(-2px); }
.qs-icon { font-size: 1.1rem; }

.off-market-cta {
  background: #0c4a6e;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 2px;
}
.omc-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.omc-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 540px;
}
.omc-text { flex: 1; }

/* ════════════════════════════════════════════
   HOME VALUE ESTIMATOR
   ════════════════════════════════════════════ */
.estimator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.est-proof {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ep-item { }
.ep-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.ep-lbl {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.est-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}
.est-step { display: none; }
.est-step.active { display: block; }
.est-step-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.est-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 3rem;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.success-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.success-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.est-progress {
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 28px;
  border-radius: 2px;
  overflow: hidden;
}
.est-prog-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}

/* Forms (shared) */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-label.light { color: rgba(255,255,255,0.55); }
.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input.dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-input.dark::placeholder { color: rgba(255,255,255,0.3); }
.form-input.dark:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   MARKETING EDGE
   ════════════════════════════════════════════ */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: 2px;
  overflow: hidden;
}
.edge-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  transition: background var(--transition);
}
.edge-card:hover { background: var(--off-white); }
.edge-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(8,145,178,0.12);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
}
.edge-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.edge-title em { font-style: italic; color: var(--gold); }
.edge-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Carla's photo in the Contact section */
.contact-carla-photo {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}
.contact-photo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 6px rgba(8,145,178,0.15);
  display: block;
}
.contact-photo-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #0c4a6e;
  border: 1px solid rgba(8,145,178,0.5);
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.contact-item:hover { color: var(--gold-lt); }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.csoc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.csoc-link:hover { border-color: var(--gold-lt); color: var(--gold-lt); background: rgba(8,145,178,0.15); }
.csoc-zillow {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
}
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 44px;
}
.cf-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}
.cf-success {
  text-align: center;
  padding: 16px;
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 2px;
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: #072a40;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 60px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-sothebys {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.footer-division {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8,182,212,0.75);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--script);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { }
.footer-col-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-link:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-legal {
  max-width: 900px;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.75;
  margin-top: 8px;
}

/* ════════════════════════════════════════════
   REVIEW SUMMARY BLOCK
   ════════════════════════════════════════════ */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(8,145,178,0.08);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: 12px;
  padding: 20px 36px;
  margin: 28px auto 0;
  max-width: 480px;
}
.rs-score {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.rs-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.rs-count {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.rs-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.rs-badge {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8,145,178,0.12);
  border: 1px solid rgba(8,145,178,0.3);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
}
@media(max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; text-align: center; padding: 20px 24px; }
}

/* ════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 199;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-fab-label { white-space: nowrap; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}
@media(max-width: 600px) {
  .whatsapp-fab { bottom: 80px; right: 16px; padding: 13px 15px; }
  .whatsapp-fab-label { display: none; }
  .whatsapp-fab { border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
}

/* ════════════════════════════════════════════
   FLOATING BAR
   ════════════════════════════════════════════ */
.float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(8,145,178,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.float-bar.visible { transform: translateY(0); }
.float-btn {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.float-call { background: var(--gold); color: var(--white); }
.float-call:hover { background: var(--gold-lt); transform: translateY(-2px); }
.float-text { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }
.float-text:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.float-consult { background: transparent; color: var(--gold-lt); border: 1px solid rgba(8,145,178,0.4); }
.float-consult:hover { background: rgba(8,145,178,0.1); transform: translateY(-2px); }
.float-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition);
}
.float-dismiss:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .about-grid { grid-template-columns: 340px 1fr; gap: 56px; }
  .sold-grid { grid-template-columns: repeat(3, 1fr); }
  /* sports-layout removed — handled in new section CSS */
  .segments-grid { grid-template-columns: repeat(3, 1fr); }
  .listings-launch { gap: 44px; padding: 48px; }
  .off-market-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-social-icons { display: flex; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 420px; }
  .sold-feature { grid-template-columns: 1fr; }
  .sold-feature-img { min-height: 340px; }
  .sold-feature-body { padding: 44px 40px; }
  .sold-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  /* sports-layout / sports-stats-grid — handled in new section CSS */
  .market-counties { grid-template-columns: 1fr; padding: 40px; }
  .county-divider { display: none; }
  .market-kpis { grid-template-columns: 1fr 1fr; }
  .market-chart-row { grid-template-columns: 1fr; }
  .market-meter-wrap { padding: 32px 24px; }
  .market-tabs { gap: 6px; }
  .market-tab { font-size: 0.68rem; padding: 8px 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .estimator-layout { grid-template-columns: 1fr; }
  .listings-launch { grid-template-columns: 1fr; }
  .edge-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  .hero-stats { flex-wrap: nowrap; gap: 0; padding: 10px 16px; height: auto; }
  .hstat { padding: 0 16px; }
  .hstat-div { display: block; height: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  /* Hero: allow it to be taller on mobile so all content fits */
  .hero { max-height: none; height: auto; min-height: calc(100dvh - 60px); padding: 0; justify-content: flex-start; }
  .hero-name { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-tagline { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .hero-name { white-space: normal; font-size: clamp(2rem, 8vw, 3rem); }
  .hero-soldit-line { font-size: clamp(1.5rem, 6vw, 2.2rem); margin-bottom: 10px; }
  .hero-division { font-size: clamp(0.85rem, 3vw, 1.1rem); margin-bottom: 8px; letter-spacing: 0.12em; }
  .hero-sub { font-size: clamp(0.82rem, 2.8vw, 1rem); margin-bottom: 4px; }
  .hero-sothebys-img { width: clamp(160px, 58vw, 300px); }
  .hero-sothebys-block { margin: 4px auto 8px; }
  .hero-badge { display: none; }
  .hero-content { padding-top: 110px; padding-bottom: 20px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { display: flex; flex-wrap: nowrap; padding: 8px 12px; gap: 0; height: auto; }
  .hstat { padding: 0 10px; }
  .hstat-num { font-size: 1.2rem; }
  .hstat-label { font-size: 0.5rem; }
  .hero-scroll-hint { display: none; }
  .sold-grid { grid-template-columns: 1fr; }
  .sold-feature-body { padding: 32px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  /* sports-stats-grid — handled in new section CSS */
  .county-stats { grid-template-columns: 1fr 1fr; }
  .market-kpis { grid-template-columns: 1fr 1fr; gap: 12px; }
  .market-kpi { padding: 18px 14px; }
  .kpi-val { font-size: 1.5rem; }
  .market-chart-row { grid-template-columns: 1fr; gap: 16px; }
  .market-chart-box { padding: 20px 16px; }
  .market-meter-wrap { padding: 28px 16px; }
  .market-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .market-tab { white-space: nowrap; flex-shrink: 0; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .quick-searches { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-bar { gap: 8px; padding: 12px 16px; }
  .float-btn { padding: 10px 16px; font-size: 0.68rem; }
  .form-row { grid-template-columns: 1fr; }
  .est-form { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .market-counties { padding: 28px; }
  .listings-launch { padding: 28px 20px; }
  .off-market-cta { padding: 32px 20px; }
  .clubs-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .condos-grid { grid-template-columns: 1fr; }
  .club-card { margin-bottom: 24px; }
  .cib-item { width: 100%; }
  .cis-div { display: none; }
  .cib-item { border-right: none; padding: 12px 0; }
  .condos-cta-bar { flex-direction: column; gap: 20px; text-align: center; }
}

/* ════════════════════════════════════════════════════════
   COUNTRY CLUBS SECTION
════════════════════════════════════════════════════════ */

/* Intro strip */
.clubs-intro-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 40px;
  margin: 0 0 72px;
}
.cis-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
  color: var(--white);
}
.cis-icon { font-size: 1.6rem; }
.cis-text { font-family: var(--sans); font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cis-text strong { color: var(--gold); display: block; font-size: 1.1rem; }
.cis-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Tier titles */
.clubs-tier-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 0 0 20px;
  border-bottom: 2px solid var(--gold);
  margin: 64px 0 40px;
}
.clubs-tier-title em { font-style: italic; color: var(--gold); }

/* Clubs grid */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 48px;
  max-width: 1296px;
  margin: 0 auto;
}
.clubs-grid.tier-3 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Club card */
.club-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.club-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.16);
}
.club-card.compact .club-card-body { padding: 20px; }

/* Club card image */
.club-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.club-card.compact .club-card-img { height: 160px; }
.club-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Club card body */
.club-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.club-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.club-tagline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Fee table */
.club-fees {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
}
.club-fees.compact-fees { padding: 10px 14px; }
.cf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid rgba(8,145,178,0.15);
}
.cf-row:last-child { border-bottom: none; }
.cf-key {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.cf-val {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.club-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
}
.club-desc.compact-desc { font-size: 0.78rem; }

.club-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  margin-top: 8px;
  transition: color var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.club-cta:hover { color: var(--gold); }

/* Clubs disclaimer */
.clubs-disclaimer {
  background: var(--stone);
  border-radius: 10px;
  padding: 20px 28px;
  margin: 56px 0 0;
}
.clubs-disclaimer p {
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ════════════════════════════════════════════════════════
   NEW CONSTRUCTION CONDOS SECTION
════════════════════════════════════════════════════════ */

/* Condos intro bar */
.condos-intro-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 64px;
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: 12px;
  overflow: hidden;
}
.cib-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(8,145,178,0.2);
  gap: 10px;
}
.cib-item:last-child { border-right: none; }
.cib-icon { font-size: 1.8rem; }
.cib-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.cib-text strong {
  color: var(--navy);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* Condos grid */
.condos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* Condo card */
.condo-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 16px rgba(13,27,42,0.07);
}
.condo-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(13,27,42,0.14);
}
.condo-card.featured {
  border-color: rgba(8,145,178,0.5);
  background: var(--gold-pale);
}

/* Condo card header */
.condo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.condo-status {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.condo-status.selling { background: rgba(72,199,142,0.15); color: #48c78e; }
.condo-status.presale { background: rgba(8,145,178,0.15); color: var(--gold); }
.condo-status.new { background: rgba(120,174,255,0.15); color: #78aeff; }

.condo-location-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.condo-card-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.condo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.condo-developer {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.condo-price-range {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.condo-price-range strong {
  color: var(--gold);
  font-size: 1.1rem;
}
.condo-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0;
}
.condo-spec {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 4px 12px;
  border-radius: 20px;
}
.condo-address {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}

.condo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cf-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8,145,178,0.1);
  border: 1px solid rgba(8,145,178,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

.condo-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
}

.condo-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(8,145,178,0.4);
  padding-bottom: 3px;
  margin-top: auto;
  transition: color var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.condo-cta:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* Condos CTA bar */
.condos-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--navy);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 14px;
  padding: 36px 48px;
  margin-top: 16px;
}
.ccb-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.ccb-sub {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* ── Responsive overrides for clubs & condos ─────────── */
@media (max-width: 1100px) {
  .clubs-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .clubs-grid.tier-3 { grid-template-columns: repeat(3, 1fr); }
  .condos-grid { grid-template-columns: repeat(2, 1fr); }
  .condos-intro-bar { grid-template-columns: repeat(2, 1fr); }
  .cib-item:nth-child(2) { border-right: none; }
  .cib-item:nth-child(3) { border-top: 1px solid rgba(8,145,178,0.2); }
  .cib-item:nth-child(4) { border-top: 1px solid rgba(8,145,178,0.2); border-right: none; }
}

@media (max-width: 900px) {
  .clubs-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .clubs-grid.tier-3 { grid-template-columns: repeat(2, 1fr); }
  .clubs-intro-strip { padding: 20px 24px; gap: 0; }
  .cis-item { padding: 10px 16px; }
  .clubs-tier-title { font-size: 1.2rem; }
  .condos-grid { grid-template-columns: 1fr; }
  .condos-cta-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .clubs-grid,
  .clubs-grid.tier-3 { grid-template-columns: 1fr; padding: 0 20px; }
  .clubs-intro-strip { border-radius: 10px; padding: 16px; }
  .cis-div { display: none; }
  .cis-item { padding: 10px 16px; width: 50%; }
  .club-card-img { height: 180px; }
  .condos-intro-bar { grid-template-columns: repeat(2, 1fr); }
  .condos-cta-bar { padding: 28px 20px; }
}

/* ════════════════════════════════════════════════════════
   UNLOCK TEASER BANNER (between free & locked cards)
════════════════════════════════════════════════════════ */
.unlock-teaser-bar {
  background: var(--navy);
  border: 1px solid rgba(8,145,178,0.35);
  border-radius: 14px;
  padding: 24px 32px;
  margin: 8px 0;
  animation: teaser-glow 3s ease-in-out infinite alternate;
}

/* override text colour on condos (now light bg) */
.condos-grid .unlock-teaser-bar .utb-text { color: rgba(255,255,255,0.85); }

/* For club grid (white bg), matching navy */
@keyframes teaser-glow {
  from { box-shadow: 0 4px 24px rgba(8,145,178,0.15); }
  to   { box-shadow: 0 8px 40px rgba(8,145,178,0.35); }
}

.utb-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.utb-lock {
  font-size: 2rem;
  flex-shrink: 0;
  animation: lock-pulse 2.2s ease-in-out infinite;
}
.utb-text {
  flex: 1;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  min-width: 200px;
}
.utb-text strong { color: var(--gold); font-weight: 700; }

/* Club section teaser has dark text */
.clubs-grid .unlock-teaser-bar .utb-text {
  color: var(--text-mid);
}
.clubs-grid .unlock-teaser-bar .utb-text strong { color: var(--navy); }

.utb-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(8,145,178,0.35);
}
.utb-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(8,145,178,0.5);
}

@media (max-width: 640px) {
  .utb-inner { flex-direction: column; text-align: center; gap: 14px; }
  .utb-btn { width: 100%; }
}

/* ════════════════════════════════════════════════════════
   LOCKED CARD OVERLAY SYSTEM
════════════════════════════════════════════════════════ */

/* Locked cards get a blur/dim treatment */
.locked-card {
  position: relative;
  overflow: hidden;
}
.locked-card > *:not(.card-lock-overlay) {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.4s ease;
}

/* The overlay that sits on top */
.card-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
  transition: background 0.3s ease;
}
.card-lock-overlay:hover {
  background: rgba(13, 27, 42, 0.88);
}

/* Club cards (white bg) get a lighter overlay */
.club-card.locked-card .card-lock-overlay {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
}
.club-card.locked-card .card-lock-overlay:hover {
  background: rgba(255, 255, 255, 0.92);
}

/* Inner content of the overlay */
.clo-inner {
  text-align: center;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.clo-icon {
  font-size: 2.4rem;
  animation: lock-pulse 2.2s ease-in-out infinite;
}
@keyframes lock-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.clo-msg {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.4;
  max-width: 180px;
}
/* Club card overlay text is dark */
.club-card.locked-card .clo-msg {
  color: var(--navy);
}

.clo-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(8,145,178,0.35);
}
.clo-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.5);
}

/* ════════════════════════════════════════════════════════
   UNLOCK / REGISTRATION MODAL
════════════════════════════════════════════════════════ */

/* Overlay backdrop */
.unlock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9000;
  pointer-events: none;
  transition: background 0.35s ease;
}
.unlock-overlay.open {
  background: rgba(0, 0, 0, 0.72);
  pointer-events: all;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Prevent body scroll when modal open */
body.modal-open { overflow: hidden; }

/* Modal container */
.unlock-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 9100;
  background: #fff;
  border-radius: 18px;
  padding: 48px 44px 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(8,145,178,0.2);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}
.unlock-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.unlock-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.unlock-close:hover {
  background: rgba(0,0,0,0.07);
  color: rgba(0,0,0,0.7);
}

/* Modal icon */
.unlock-icon {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 12px;
  animation: lock-pulse 2.5s ease-in-out infinite;
}

/* Modal title */
.unlock-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* Modal subtitle */
.unlock-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 28px;
}
.unlock-sub strong { color: var(--navy); }

/* Form */
.unlock-form { display: flex; flex-direction: column; gap: 16px; }

/* Field wrapper */
.unlock-field { display: flex; flex-direction: column; gap: 5px; }

/* Label */
.unlock-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.unlock-label .req { color: #c0392b; }

/* Input */
.unlock-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--navy);
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.unlock-input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8,145,178,0.15);
}
.unlock-input.input-error {
  border-color: #c0392b;
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

/* Error messages */
.unlock-err {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #c0392b;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.unlock-err.visible {
  max-height: 40px;
}

/* Submit button */
.unlock-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(13,27,42,0.18);
}
.unlock-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.35);
}
.unlock-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Fine print */
.unlock-fine {
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.4);
  text-align: center;
}

/* Success state */
.unlock-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f0faf4;
  border: 1px solid #48c78e;
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d8653;
}
.us-icon {
  font-size: 1.4rem;
  background: #48c78e;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 900;
}

/* ── Unlock Toast Notification ───────────────────────── */
.unlock-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  z-index: 9999;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  border: 1px solid rgba(8,145,178,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.unlock-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile overrides for modal ──────────────────────── */
@media (max-width: 520px) {
  .unlock-modal {
    padding: 36px 22px 28px;
    max-width: calc(100vw - 32px);
    border-radius: 14px;
  }
  .unlock-title { font-size: 1.35rem; }
  .unlock-icon { font-size: 2.2rem; }
  .unlock-toast { font-size: 0.78rem; padding: 12px 20px; }
}

/* ════════════════════════════════════════════════════════
   QUICK-NAV / SECTION SEARCH BAR
════════════════════════════════════════════════════════ */
.qnav-bar {
  position: sticky;
  top: var(--nav-h); /* sits flush under the main nav */
  z-index: 800;
  background: rgba(2, 18, 34, 0.97);
  border-bottom: 1px solid rgba(8,145,178,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.qnav-bar.qnav-hidden { opacity: 1; /* disabled — no hiding to prevent scroll conflict */ }

.qnav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
  overflow: hidden;
}

/* ── Search input ── */
.qnav-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,145,178,0.1);
  border: 1px solid rgba(8,145,178,0.28);
  border-radius: 50px;
  padding: 0 14px;
  height: 34px;
  min-width: 220px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.qnav-search-wrap:focus-within {
  border-color: rgba(8,145,178,0.7);
  background: rgba(8,145,178,0.15);
}
.qnav-search-icon { font-size: 0.82rem; opacity: 0.6; flex-shrink: 0; }
.qnav-search-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #fff;
  width: 100%;
  min-width: 0;
}
.qnav-search-input::placeholder { color: rgba(255,255,255,0.38); }
.qnav-clear {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: none;
  flex-shrink: 0;
}
.qnav-clear:hover { color: var(--gold); }

/* ── Pill icon span ── */
.qpill-icon {
  font-size: 0.78rem;
  line-height: 1;
  display: inline-block;
}

/* ── Pill links ── */
.qnav-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 6px 0;
}
.qnav-pills::-webkit-scrollbar { display: none; }
.qnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.qnav-pill:hover,
.qnav-pill.qnav-active {
  color: #020d18;
  background: var(--gold);
  border-color: var(--gold);
}
.qnav-pill--page {
  border-style: dashed;
  color: rgba(255,255,255,0.5);
}
.qnav-pill--page:hover {
  color: #020d18;
  background: rgba(8,145,178,0.85);
  border-color: rgba(8,145,178,0.85);
  border-style: solid;
}

/* ── Search dropdown ── */
.qnav-dropdown {
  position: absolute;
  top: 100%;
  left: 24px;
  right: 24px;
  background: #071828;
  border: 1px solid rgba(8,145,178,0.3);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 801;
}
.qnav-dropdown.open { display: block; }
.qnav-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.qnav-drop-item:last-child { border-bottom: none; }
.qnav-drop-item:hover,
.qnav-drop-item.qnav-drop-focus {
  background: rgba(8,145,178,0.15);
  color: var(--gold);
}
.qnav-drop-icon { font-size: 1rem; flex-shrink: 0; width: 24px; text-align: center; }
.qnav-drop-label { flex: 1; font-weight: 600; }
.qnav-drop-hint { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.qnav-drop-empty {
  padding: 16px 20px;
  color: rgba(255,255,255,0.35);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: italic;
}

@media (max-width: 640px) {
  .qnav-inner { padding: 0 12px; gap: 8px; height: 44px; }
  .qnav-search-wrap { min-width: 130px; }
  .qnav-pill { font-size: 0.63rem; padding: 4px 9px; }
}

/* ════════════════════════════════════════════════════════
   GLOBAL NETWORKING SECTION
════════════════════════════════════════════════════════ */
.section-network {
  position: relative;
  background: linear-gradient(160deg, #0d2d45 0%, #16446a 40%, #0d3554 70%, #0a2538 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Subtle animated dot-grid background */
.net-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(8,145,178,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes gridPulse {
  0%   { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* Header */
.net-header {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
  padding: 0 24px;
}
.net-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 10px 0 20px;
}
.net-headline em {
  font-style: italic;
  color: var(--gold);
}
.net-sub {
  font-family: var(--sans);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.net-sub strong { color: var(--gold); }

/* ── Animated stat counters row ── */
.net-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 40px 48px;
  backdrop-filter: blur(8px);
}
.net-stat-block {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 24px;
}
.nsb-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.nsb-unit {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.90);
  line-height: 1.4;
}
.net-stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ── Content grid: photo mosaic + steps ── */
.net-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 40px;
  align-items: start;
}

/* Photo mosaic */
.net-photo-mosaic { display: flex; flex-direction: column; gap: 12px; }

.npm-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(8,145,178,0.25);
}
.npm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.npm-main:hover .npm-img { transform: scale(1.04); }
.npm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,13,24,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.npm-badge {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(2,13,24,0.75);
  border: 1px solid rgba(8,145,178,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  backdrop-filter: blur(6px);
}

.npm-secondary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.npm-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 130px;
  border: 1px solid rgba(8,145,178,0.2);
}
.npm-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}
.npm-thumb:hover .npm-thumb-inner { transform: scale(1.03); }
.npm-thumb-sothebys {
  background: linear-gradient(135deg, #0c2a3e 0%, #0c4a6e 100%);
}
.npm-thumb-world {
  background: linear-gradient(135deg, #062033 0%, #0891b2 100%);
}
.npm-thumb-award {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
}
.npm-globe-anim {
  font-size: 2rem;
  animation: spinGlobe 8s linear infinite;
}
@keyframes spinGlobe {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* How it works steps */
.net-how-it-works { display: flex; flex-direction: column; gap: 32px; }
.net-section-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8,145,178,0.25);
}

.net-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.net-step:hover {
  background: rgba(183,144,59,0.15);
  border-color: rgba(183,144,59,0.45);
  transform: translateX(4px);
}
.net-step-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.net-step-body { flex: 1; }
.net-step-title {
  display: block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.net-step-desc {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.net-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 15px 32px;
  background: var(--gold);
  color: #020d18;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(8,145,178,0.35);
}
.net-cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(8,145,178,0.5);
}

/* ── Feeder market ribbon ── */
.net-feeder-ribbon {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nfr-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.nfr-cities { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nfr-city {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
/* Top feeder markets — highlighted in gold */
.nfr-city.nfr-star {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nfr-dot { color: var(--gold); opacity: 0.5; font-size: 1.1rem; }

/* ── Press / publication logos ── */
.net-press-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 20px;
  text-align: center;
}
.net-press-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.net-press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.npl-badge {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.npl-badge:hover {
  color: var(--gold);
  border-color: rgba(8,145,178,0.4);
}

/* ── How-steps full-width strip ── */
.net-how-strip {
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 40px;
  text-align: center;
}
.net-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.net-step-h {
  background: rgba(8,145,178,0.07);
  border: 1px solid rgba(8,145,178,0.18);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.net-step-h:hover {
  background: rgba(8,145,178,0.13);
  border-color: rgba(8,145,178,0.38);
  transform: translateY(-4px);
}

/* ── Gallery header ── */
.net-gallery-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 24px;
}
.net-gallery-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  margin: 10px 0 14px;
}
.net-gallery-sub {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── Masonry photo grid ── */
.net-gallery {
  columns: 4;
  column-gap: 12px;
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.ng-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  border: 1px solid rgba(8,145,178,0.15);
  background: #0c2a3e;
}
.ng-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.ng-item:hover img { transform: scale(1.05); }

/* Tall items span 2 "rows" visually via padding trick */
.ng-item.ng-tall img { aspect-ratio: 3/4; object-fit: cover; height: auto; }
.ng-item.ng-wide img { aspect-ratio: 16/9; object-fit: cover; height: auto; }

/* Gallery wrap */
.net-gallery-wrap { width: 100%; }

/* Hover overlay with zoom icon */
.ng-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,13,24,0.88) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ng-item:hover .ng-overlay { opacity: 1; }
.ng-zoom {
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

/* Lightbox footer */
.nlb-footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ng-caption {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ── Lightbox ── */
.net-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9500;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.net-lightbox.open { display: flex; }

.nlb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.nlb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.nlb-caption {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}
.nlb-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.nlb-close, .nlb-prev, .nlb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.nlb-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.2rem; }
.nlb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.nlb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.nlb-close:hover { background: rgba(8,145,178,0.5); transform: none; }
.nlb-prev:hover  { background: rgba(8,145,178,0.5); transform: translateY(-50%) scale(1.08); }
.nlb-next:hover  { background: rgba(8,145,178,0.5); transform: translateY(-50%) scale(1.08); }

/* ═══════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════ */
.blog-header { text-align: center; margin-bottom: 48px; }
.blog-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(183,144,59,0.1);
  border: 1px solid rgba(183,144,59,0.3);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.blog-intro {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--navy-lt);
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-source-credit {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--navy-lt);
}
.blog-trd-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(183,144,59,0.4);
  transition: color var(--transition);
}
.blog-trd-link:hover { color: var(--gold-lt); }

/* ── Featured Article ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.blog-featured-img {
  position: relative;
  min-height: 420px;
}
.blog-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.blog-featured:hover .blog-featured-bg { transform: scale(1.04); }
.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,34,57,0.6) 0%, rgba(11,34,57,0.2) 100%);
}
.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}
.blog-featured-body {
  background: var(--navy);
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.blog-tag-wpb  { background: rgba(8,145,178,0.2); color: #38bdf8; }
.blog-tag-pb   { background: rgba(183,144,59,0.2); color: var(--gold-lt); }
.blog-tag-jupiter { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.blog-tag-riviera { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.blog-tag-martin  { background: rgba(245,158,11,0.2); color: #fcd34d; }
.blog-date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.blog-source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.blog-source a { color: var(--gold-lt); text-decoration: none; }
.blog-source a:hover { text-decoration: underline; }
.blog-featured-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.blog-featured-excerpt {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.blog-featured-stats {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bfs-item { display: flex; flex-direction: column; gap: 4px; }
.bfs-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-lt);
  font-weight: 400;
}
.bfs-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-read-more {
  display: inline-block;
  color: var(--gold-lt);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}
.blog-read-more:hover { color: var(--white); }

/* ── Blog Card Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.blog-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--navy-lt);
  line-height: 1.7;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(11,34,57,0.08);
  margin-top: auto;
}
.blog-source-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(11,34,57,0.35);
}
.blog-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.blog-card-link:hover { color: var(--navy); }

/* ── Blog CTA Strip ── */
.blog-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  border-radius: 6px;
  padding: 32px 44px;
  flex-wrap: wrap;
}
.blog-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.blog-cta-text strong { color: var(--gold-lt); }
.blog-cta-right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-trd-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.blog-trd-btn:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* ── Responsive Blog ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-featured-body { padding: 28px; }
  .blog-featured-title { font-size: 1.35rem; }
  .blog-featured-stats { gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .blog-cta-right { justify-content: center; }
}

/* ═══════════════════════════════════════
   SOLD VIDEO CARD
═══════════════════════════════════════ */
.sold-card-video { overflow: hidden; }
.sold-video-wrap {
  position: relative;
  background: #000;
}
.sold-video-player {
  width: 100%;
  display: block;
  max-height: 240px;
  object-fit: cover;
  background: #000;
}
.sold-video-play-hint {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  pointer-events: none;
}
.sold-video-wrap .sold-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
/* hide the hint once video starts playing */
.sold-video-player:not([paused]) ~ .sold-video-play-hint { display: none; }

/* ═══════════════════════════════════════
   MARKETING MACHINE VIDEO SHOWCASE
═══════════════════════════════════════ */
.mktg-video-showcase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 40px;
}
.mvs-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(183,144,59,0.12);
  border: 1px solid rgba(183,144,59,0.3);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.mvs-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.mvs-title em { color: var(--gold-lt); font-style: italic; }
.mvs-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.mvs-player {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(183,144,59,0.2);
}
.mvs-video {
  width: 100%;
  display: block;
  background: #000;
}
@media (max-width: 860px) {
  .mktg-video-showcase {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .mvs-title { font-size: 1.5rem; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .net-how-steps { grid-template-columns: repeat(2,1fr); }
  .net-gallery { columns: 3; }
}
@media (max-width: 960px) {
  .net-stats-row { padding: 32px 24px; gap: 0; }
  .net-stat-divider { height: 40px; }
  .net-how-strip { padding: 0 20px; }
  .net-gallery { columns: 2; }
}
@media (max-width: 640px) {
  .section-network { padding: 72px 0 56px; }
  .net-stats-row {
    flex-direction: column;
    padding: 28px 20px;
    gap: 24px;
  }
  .net-stat-divider { display: none; }
  .net-stat-block { padding: 0; }
  .net-how-steps { grid-template-columns: 1fr; }
  .net-gallery { columns: 1; padding: 0 16px; }
  .net-feeder-ribbon { flex-direction: column; gap: 14px; padding: 20px; }
  .net-press-row { padding: 0 20px 20px; }
  .nlb-prev { left: 8px; }
  .nlb-next { right: 8px; }
}


/* ════════════════════════════════════════════════════════
   GLOBAL NETWORKING SECTION
════════════════════════════════════════════════════════ */

.section-network {
  position: relative;
  background: linear-gradient(160deg, #020d1a 0%, #041828 40%, #06233a 70%, #041828 100%);
  padding: 120px 48px 80px;
  overflow: hidden;
}

/* Subtle dot-grid background texture */
.net-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(8,145,178,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.section-network > * { position: relative; z-index: 1; }

/* Header */
.net-header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.net-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 20px;
}
.net-headline em {
  font-style: italic;
  color: var(--gold);
}
.net-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto;
}
.net-sub strong { color: var(--gold); font-weight: 700; }

/* Animated counter stats row */
.net-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(8,145,178,0.08);
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: 16px;
  padding: 40px 20px;
  margin: 0 auto 80px;
  max-width: 1100px;
  backdrop-filter: blur(8px);
}
.net-stat-block {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.nsb-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.nsb-unit {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.net-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(8,145,178,0.3);
  flex-shrink: 0;
}

/* ── Photo mosaic + how-it-works grid ── */
.net-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 72px;
  align-items: start;
}

/* Photo mosaic */
.net-photo-mosaic {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.npm-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
}
.npm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.npm-main:hover .npm-img { transform: scale(1.03); }
.npm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,13,26,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.npm-badge {
  background: rgba(8,145,178,0.9);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.npm-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.npm-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
}
.npm-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
}
.npm-thumb-sothebys {
  background: linear-gradient(135deg, #0c4a6e 0%, #042538 100%);
  border: 1px solid rgba(8,145,178,0.3);
}
.npm-thumb-world {
  background: linear-gradient(135deg, #042538 0%, #0c4a6e 100%);
  border: 1px solid rgba(8,145,178,0.3);
}
.npm-thumb-award {
  background: linear-gradient(135deg, #0a3347 0%, #041828 100%);
  border: 1px solid rgba(8,145,178,0.3);
}
.npm-globe-anim {
  font-size: 2rem;
  animation: globeSpin 8s linear infinite;
}
@keyframes globeSpin {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* How it works steps */
.net-how-it-works {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.net-section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.2;
}
.net-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(8,145,178,0.15);
  transition: background 0.3s ease;
}
.net-step:first-of-type { padding-top: 0; }
.net-step:last-of-type { border-bottom: none; }
.net-step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(8,145,178,0.4);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  padding-top: 2px;
}
.net-step-body { flex: 1; }
.net-step-title {
  display: block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.net-step-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.net-cta-btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(8,145,178,0.4);
}
.net-cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8,145,178,0.55);
}

/* Feeder market ribbon */
.net-feeder-ribbon {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 24px 36px;
  background: rgba(8,145,178,0.06);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: 12px;
  flex-wrap: wrap;
}
.nfr-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}
.nfr-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.nfr-city {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.nfr-dot {
  color: rgba(8,145,178,0.5);
  font-size: 1rem;
}

/* Press logos row */
.net-press-row {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.net-press-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.net-press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.npl-badge {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.npl-badge:hover {
  color: var(--gold);
  border-color: rgba(8,145,178,0.4);
}

/* ════════════════════════════════════════════════════════
   MARKETING MACHINE SECTION
════════════════════════════════════════════════════════ */

.section-mktg {
  background: linear-gradient(170deg, #041828 0%, #062a44 50%, #041828 100%);
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}
.section-mktg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mktg-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}
.mktg-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.mktg-headline em { font-style: italic; color: var(--gold); }
.mktg-sub {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
}

/* 6-card grid */
.mktg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.mktg-card {
  background: rgba(8,145,178,0.05);
  border: 1px solid rgba(8,145,178,0.18);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.mktg-card:hover {
  background: rgba(8,145,178,0.1);
  border-color: rgba(8,145,178,0.4);
  transform: translateY(-4px);
}
.mktg-card-featured {
  background: rgba(8,145,178,0.1);
  border-color: rgba(8,145,178,0.35);
}
.mc-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.mc-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.mc-body {
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.mc-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(8,145,178,0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mktg-card:hover .mc-accent-bar { opacity: 1; }

/* Reach bar */
.mktg-reach-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: 16px;
  padding: 36px 24px;
}
.mrb-item {
  flex: 1;
  text-align: center;
}
.mrb-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.mrb-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.mrb-divider {
  width: 1px;
  height: 48px;
  background: rgba(8,145,178,0.25);
  flex-shrink: 0;
}
.mktg-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .section-mktg { padding: 72px 24px 56px; }
  .mktg-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mktg-reach-bar { flex-wrap: wrap; gap: 0; padding: 24px 12px; }
  .mrb-item { flex: 0 0 33.33%; padding: 14px 8px; }
  .mrb-divider { display: none; }
}
@media (max-width: 600px) {
  .section-mktg { padding: 56px 16px 48px; }
  .mktg-grid { grid-template-columns: 1fr; }
  .mrb-item { flex: 0 0 50%; }
}

/* Responsive for networking section */
@media (max-width: 900px) {
  .section-network { padding: 80px 24px 60px; }
  .net-content-grid { grid-template-columns: 1fr; gap: 48px; }
  .net-stats-row { flex-wrap: wrap; gap: 0; padding: 28px 12px; }
  .net-stat-block { flex: 0 0 50%; padding: 16px 12px; }
  .net-stat-divider { display: none; }
  .npm-main { height: 260px; }
  .npm-secondary-row { grid-template-columns: 1fr 1fr 1fr; }
  .npm-thumb { height: 110px; }
  .net-feeder-ribbon { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .section-network { padding: 60px 16px 48px; }
  .net-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .net-stat-block { flex: 0 0 100%; }
  .npm-secondary-row { grid-template-columns: 1fr 1fr; }
  .npm-thumb:last-child { display: none; }
  .nfr-cities { gap: 6px 8px; }
  .net-press-logos { gap: 8px; }
  .npl-badge { font-size: 0.75rem; padding: 6px 14px; }
}
