/* ════════════════════════════════════════════════════
   THE FIT BROKER — Brown & Ferguson
   Modern Luxury Landing Page Stylesheet
════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg:         #111111;
  --dark:       #0A0A0A;
  --body-c:     #C0C0C0;
  --mid:        #666666;
  --tan:        #999999;
  --white:      #FFFFFF;

  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Mulish', sans-serif;
  --font-sig:   'Amsterdam Four', 'Great Vibes', cursive;

  --container:  1320px;
  --section-v:  130px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  --glass-bg:       rgba(255, 255, 255, 0.06);
  --glass-border:   rgba(255, 255, 255, 0.1);
  --glass-blur:     20px;
  --glass-shadow:   0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--body-c);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTIONS ── */
.section { padding: var(--section-v) 0; position: relative; }
.section__num {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--mid);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.section__num--light { color: rgba(255,255,255,0.4); }

.section__eye {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  font-weight: 600;
}
.section__eye--light { color: rgba(255,255,255,0.65); }

.section__h2 {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 56px;
}
.section__h2 em { font-style: normal; color: var(--mid); }
.section__h2--light { color: var(--white); }
.section__h2--light em { color: var(--tan); }

/* ── GLASS CARD UTILITY ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 18px;
}

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 0.06; }

/* Glass button (on dark backgrounds) */
.btn--glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

/* White solid */
.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

/* Outlined (for dark bg) */
.btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Dark filled */
.btn--fill {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--fill:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* Outlined (for dark bg — alias) */
.btn--outline-dark {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Small variants */
.btn--outline-sm {
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 2px;
}

.btn--dark-sm {
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--dark-sm:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* WhatsApp icon button */
.btn--whatsapp {
  padding: 10px 14px;
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  flex-shrink: 0;
}
.btn--whatsapp:hover { background: #1db954; border-color: #1db954; }
.btn--whatsapp svg { width: 18px; height: 18px; }

/* ════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-up (runs on load) */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: all 0.45s var(--ease);
}

/* Scrolled state — glassmorphism */
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__bf-logo {
  max-height: 38px;
  width: auto;
  display: block;
  transition: filter 0.4s ease;
}

/* TFB logo in nav */
.nav__tfb-logo {
  max-height: 26px;
  width: auto;
  display: block;
  opacity: 0.92;
}
.nav.scrolled .nav__bf-logo {
  filter: none;
}
.nav.scrolled .nav__x {
  color: var(--tan);
}

.nav__bf {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.4s ease;
}
.nav.scrolled .nav__bf { color: rgba(255,255,255,0.9); }

.nav__x {
  color: var(--tan);
  font-size: 14px;
}

.nav__sig {
  font-family: var(--font-sig);
  font-size: 22px;
  color: rgba(255,255,255,0.95);
  transition: color 0.4s ease;
}
.nav.scrolled .nav__sig { color: rgba(255,255,255,0.95); }

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: rgba(255,255,255,1); }
.nav.scrolled .nav__link { color: rgba(255,255,255,0.75); }
.nav.scrolled .nav__link:hover { color: var(--white); }

.nav__cta {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}
.nav.scrolled .nav__cta {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}
.nav.scrolled .nav__cta:hover {
  background: var(--white);
  color: var(--dark);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav.scrolled .nav__burger span { background: var(--white); }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Active nav link */
.nav__link.active { color: var(--white) !important; }
.nav.scrolled .nav__link.active { color: var(--white) !important; }
.nav__link.active::after { width: 100% !important; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Ambient floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,180,180,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,200,200,0.05) 0%, transparent 70%);
  bottom: -100px; left: 0;
  animation-delay: 4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(72px, 13vw, 200px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-line { display: block; }
.hero__title-line--italic {
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 52px;
}

.hero__signature {
  font-family: var(--font-sig);
  font-size: clamp(36px, 5vw, 68px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 52px;
  opacity: 0.9;
  letter-spacing: 2px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: rgba(255,255,255,0.9); }
.hero__scroll-text {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero__scroll-track {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.7);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -24px; }
  100% { top: 56px; }
}

/* ════════════════════════════════════
   STORY
════════════════════════════════════ */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.story__body {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(200,200,200,0.75);
  margin-bottom: 22px;
  font-weight: 300;
}

.story__quote {
  border-left: 2px solid var(--mid);
  padding: 20px 0 20px 32px;
  margin-top: 44px;
  font-family: var(--font-head);
  font-size: 21px;
  font-style: italic;
  line-height: 1.65;
  color: var(--white);
  position: relative;
}
.story__q-mark {
  position: absolute;
  top: 8px; left: 10px;
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1;
  color: var(--mid);
  opacity: 0.25;
}
.story__quote cite {
  display: block;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 3px;
  color: var(--mid);
  margin-top: 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 600;
}

/* Stats grid */
.story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.story__stat {
  background: var(--bg);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.story__stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150,150,150,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.story__stat:hover::before { opacity: 1; }
.story__stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.story__stat:hover .story__stat-n { color: var(--tan); }
.story__stat-l {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}

/* Portrait card */
.story__photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  will-change: transform, opacity;
}
.story__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  aspect-ratio: 4 / 5;
}
.story__photo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.story__photo-card:hover .story__photo { transform: scale(1.04); }
.story__photo-fallback {
  width: 100%;
  height: 380px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 56px;
  letter-spacing: 6px;
  align-items: center;
  justify-content: center;
}
.story__photo-label {
  background: var(--dark);
  padding: 18px 24px;
  color: var(--white);
  border-radius: 0 0 18px 18px;
}
.story__photo-label p {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.story__photo-label span {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 1px;
  font-weight: 300;
}

/* ════════════════════════════════════
   BRAND
════════════════════════════════════ */
.brand {
  position: relative;
  overflow: hidden;
}
.brand__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.brand__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.brand__inner {
  position: relative;
  z-index: 2;
}

.brand__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.brand__pillar {
  padding: 52px 40px;
  transition: transform 0.35s var(--ease), background 0.35s ease;
  cursor: default;
}
.brand__pillar:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12) !important;
}
.brand__pillar--accent {
  background: rgba(150, 150, 150, 0.1) !important;
  border-color: rgba(255,255,255,0.15);
}
.brand__pillar-icon {
  width: 44px; height: 44px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.brand__pillar-icon svg {
  width: 100%; height: 100%;
}
.brand__pillar h3 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.brand__pillar p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* Perspective block */
.brand__perspective {
  padding: 60px;
  text-align: center;
  margin-top: 8px;
}
.brand__perspective-label {
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-weight: 700;
}
.brand__perspective-body {
  font-family: var(--font-head);
  font-size: 22px;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
}
.brand__perspective-body strong {
  color: var(--white);
  font-style: normal;
}
.brand__sig {
  display: flex;
  justify-content: center;
}
.brand__sig-img {
  max-height: 64px;
  width: auto;
  opacity: 0.75;
}

/* ════════════════════════════════════
   LISTINGS
════════════════════════════════════ */
.listings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.listing-card {
  background: #1A1A1A;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.listing-card__media {
  position: relative;
  height: 270px;
  overflow: hidden;
}
.listing-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}
.listing-card:hover .listing-card__img { transform: scale(1.06); }
.listing-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%
  );
}
.listing-card__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  font-weight: 700;
}
.listing-card__badge--new {
  background: var(--dark);
}
.listing-card__price {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.listing-card__body {
  padding: 24px 24px 24px;
}
.listing-card__body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.listing-card__desc {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 500;
}
.listing-card__meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--body-c);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.listing-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-card__meta svg {
  width: 14px; height: 14px;
  color: var(--mid);
  flex-shrink: 0;
}
.listing-card__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.listings__footer { text-align: center; }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services {
  position: relative;
  overflow: hidden;
}
.services__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
}
.services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.93) 0%,
    rgba(0,0,0,0.9) 100%
  );
}
.services__inner {
  position: relative;
  z-index: 2;
}

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

.services__card {
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s ease;
  cursor: default;
}
.services__card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.13) !important;
}
.services__card--highlight {
  background: rgba(150,150,150,0.1) !important;
  border-color: rgba(255,255,255,0.15);
}

.services__n {
  font-family: var(--font-head);
  font-size: 88px;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -24px;
  transition: color 0.3s ease;
}
.services__card:hover .services__n { color: rgba(255,255,255,0.1); }

.services__icon {
  width: 40px; height: 40px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.services__icon svg { width: 100%; height: 100%; }

.services__card h3 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.services__card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 32px;
}
.services__line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  transition: width 0.4s var(--ease);
}
.services__card:hover .services__line { width: 64px; }

/* ════════════════════════════════════
   TEAM
════════════════════════════════════ */
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.team__body {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(200,200,200,0.75);
  margin-bottom: 22px;
  font-weight: 300;
}

.team__creds {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 44px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.team__cred {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.team__cred-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mid);
  margin-top: 6px;
  flex-shrink: 0;
}
.team__cred div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.team__cred strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.team__cred span {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
}
.team__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual / photo side */
.team__visual { position: relative; }
.team__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.team__photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.team__photo-wrap:hover .team__photo { transform: scale(1.03); }
.team__photo-ph {
  width: 100%;
  height: 420px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 48px;
  letter-spacing: 6px;
  align-items: center;
  justify-content: center;
}

/* Glass label over photo */
.team__photo-glass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.team__photo-wrap:hover .team__photo-glass {
  transform: translateY(-4px);
}
.team__photo-glass p {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.team__photo-glass span {
  display: block;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 1px;
  font-weight: 300;
}

.team__logo-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.team__brokerage-logo {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.3s ease;
}
.team__brokerage-logo:hover { filter: brightness(0) invert(1) opacity(0.9); }
/* B&F wordmark */
.team__bf-wordmark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.team__bf-word {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--dark);
  text-transform: uppercase;
}
.team__bf-amp {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--mid);
  font-style: italic;
}
.team__bf-tag {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mid);
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 4px;
  align-self: center;
}

.team__logo-fallback {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--dark);
}

/* ════════════════════════════════════
   SOCIAL / INSTAGRAM
════════════════════════════════════ */
.social__handle {
  font-family: var(--font-sig);
  font-size: 38px;
  color: var(--mid);
  margin-top: -24px;
  margin-bottom: 48px;
}
.social__handle a {
  transition: color 0.3s ease;
}
.social__handle a:hover { color: var(--white); }

.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.social__post {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  display: block;
}
.social__post-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.35s var(--ease);
}
.social__post:hover .social__post-hover { opacity: 1; }
.social__post-hover span {
  font-family: var(--font-head);
  font-size: 22px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.social__footer { text-align: center; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: #000000; color: var(--white); }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__sig {
  margin-bottom: 18px;
  line-height: 1;
}
.footer__tfb-logo {
  max-height: 56px;
  width: auto;
  opacity: 0.85;
}
.footer__tagline {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer__sub {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 16px;
}
.footer__col h4 {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  font-weight: 300;
  position: relative;
  display: inline-block;
}
.footer__col a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width 0.3s var(--ease);
}
.footer__col a:hover { color: var(--white); }
.footer__col a:hover::after { width: 100%; }

.footer__bottom { padding: 28px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════
   WHATSAPP FAB
════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab svg {
  width: 26px; height: 26px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  :root { --section-v: 100px; }
  .container { padding: 0 32px; }
  .story__grid { grid-template-columns: 1fr; gap: 64px; }
  .story__right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .team__grid { grid-template-columns: 1fr; gap: 64px; }
  .team__visual { order: -1; max-width: 540px; }
  .brand__pillars { grid-template-columns: 1fr 1fr; gap: 16px; }
  .brand__pillar:last-child { grid-column: 1 / -1; }
}

/* Mobile landscape / small tablet */
@media (max-width: 820px) {
  :root { --section-v: 80px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 998;
  }
  .nav__links.open { display: flex; }
  .nav__links.open .nav__link { color: var(--white); font-size: 13px; letter-spacing: 3px; }
  .nav__links.open .nav__link:hover { color: var(--white); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; z-index: 999; position: relative; }
  .hero__title { font-size: clamp(56px, 15vw, 100px); }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .listings__grid { grid-template-columns: 1fr; }
  .brand__pillars { grid-template-columns: 1fr; }
  .brand__pillar:last-child { grid-column: auto; }
  .social__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .brand__perspective { padding: 40px 28px; }
  .story__right { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 520px) {
  :root { --section-v: 64px; }
  .container { padding: 0 20px; }
  .hero__title { font-size: 52px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }
  .story__stats { grid-template-columns: 1fr 1fr; }
  .social__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .team__ctas { flex-direction: column; }
  .section__h2 { font-size: 38px; }
  .services__card { padding: 40px 28px; }
  .listing-card__media { height: 220px; }
  .whatsapp-fab { bottom: 20px; right: 20px; }
}
