/* ==========================================================================
   PEDRO JUNIOR | CORRETOR DE IMÓVEIS
   Design System & Estilo Autoral — Litoral Norte da Bahia
   Arquitetura: Fundo Global Contínuo (Zero Caixas) + Mobile-First Rigoroso
   ========================================================================== */

/* --- 1. FONTES SELF-HOSTED (Zero dependência externa de pintura) --- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/syne-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/syne-800.woff2') format('woff2');
}

/* --- 2. DESIGN TOKENS --- */
:root {
  /* Fundo Global */
  --bg-noir: #07080b;
  --bg-deep: #0b0d12;
  --bg-elevated: #11141b;

  /* Família Tonal do Dourado Litorâneo */
  --gold-light: #fce7b2;
  --gold-base: #d8b248;
  --gold-deep: #a88126;
  --gold-dark: #6e5214;
  --gold-glow: rgba(216, 178, 72, 0.35);
  --gold-ambient: rgba(216, 178, 72, 0.08);

  /* Fios de Luz & Divisórias */
  --border-gold-subtle: rgba(216, 178, 72, 0.22);
  --border-gold-strong: rgba(216, 178, 72, 0.5);
  --border-hairline: rgba(255, 255, 255, 0.08);

  /* Tipografia & Hierarquia */
  --text-pure: #ffffff;
  --text-primary: #edf1f7;
  --text-secondary: #b8c0ce;
  --text-muted: #747c8d;

  --font-heading: 'Syne', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 3. RESET & REGRAS GERAIS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-noir);
  color: var(--text-primary);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background-color: var(--bg-noir);
  background-image: 
    radial-gradient(circle at 80% 12%, rgba(216, 178, 72, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 15% 40%, rgba(216, 178, 72, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(216, 178, 72, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(216, 178, 72, 0.14) 0%, transparent 50%);
  background-attachment: fixed;
  background-size: 100% 100%;
  overflow-x: hidden !important;
  min-height: 100vh;
  line-height: 1.55;
}

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

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

#three-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- 4. HEADER: OPACO (Sem backdrop-filter caro) & ADAPTATIVO --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #08090c; /* Fundo sólido e leve, sem repintura de blur contínua no scroll */
  border-bottom: 1px solid var(--border-hairline);
  transition: border-color 0.3s var(--ease-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-link {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-pure);
}

.brand-creci {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(216, 178, 72, 0.1);
  border: 1px solid var(--border-gold-strong);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-smooth);
  min-height: 42px;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-base);
  color: #07080b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--gold-glow);
}

/* --- 5. HERO: COMPOSIÇÃO EDITORIAL MONUMENTAL (Caminho B) --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 56px 0 72px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-top-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-top-info .dot-separator {
  color: var(--gold-base);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-title-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  text-transform: uppercase;
}

.hero-title-role {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-light);
  margin-top: 6px;
}

.hero-statement-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.35;
  margin-bottom: 8px;
}

.hero-statement-sub {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 32px;
}

/* CTA Monumental com Shiny Sweep Contínuo e Borda Rotativa */
.cta-monumental-wrap {
  margin-bottom: 24px;
  max-width: 440px;
}

.cta-golden-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, #fce7b2 0%, #d8b248 50%, #b08722 100%);
  color: #07080b;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 14px;
  box-shadow: 0 12px 35px var(--gold-glow);
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  min-height: 56px;
}

.cta-golden-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 60%, rgba(255, 255, 255, 0.95) 80%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: rotateBorder 4.8s linear infinite;
}

.cta-golden-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  animation: shinySweep 3.8s ease-in-out infinite;
}

.cta-golden-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 45px rgba(216, 178, 72, 0.5);
}

/* Canais Rápidos */
.hero-channels-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.25s var(--ease-smooth);
}

.hero-channel-link:hover {
  color: var(--gold-light);
}

/* Composição Deliberada da Fotografia (Caminho B) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(216, 178, 72, 0.12);
  background: #0d0f14;
}

.hero-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.95) 0%, rgba(7, 8, 11, 0.75) 65%, transparent 100%);
  padding: 24px 16px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-frame-caption .caption-name {
  color: var(--gold-light);
  font-weight: 700;
}

/* --- 6. TICKER SUTIL --- */
.ticker-band {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 14px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.ticker-bullet {
  color: var(--gold-base);
}

/* --- 7. GEOGRAFIA: PANORAMA CONCISO & DIRETO --- */
.territory-section {
  padding: 96px 0 80px;
  position: relative;
}

.section-head-open {
  margin-bottom: 48px;
  max-width: 760px;
}

.section-lead-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 10px;
}

.section-lead-title .text-gold {
  color: var(--gold-light);
}

.section-lead-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.territory-open-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 40px;
}

.territory-col {
  display: flex;
  flex-direction: column;
}

.territory-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-base);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.territory-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.territory-municipality {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.territory-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}

.territory-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.territory-spec-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-base);
}

/* --- 8. AUTORIDADE & PILARES: DIRETO E EM UMA LINHA --- */
.authority-section {
  padding: 88px 0 96px;
  position: relative;
  border-top: 1px solid var(--border-hairline);
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.authority-highlight {
  position: sticky;
  top: 96px;
}

.big-stat-number {
  color: #fce7b2; /* Fallback sólido garantido */
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.85;
  margin-bottom: 12px;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .big-stat-number {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-base) 60%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.big-stat-label {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-pure);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.authority-context-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.confidential-statement {
  border-left: 2px solid var(--gold-base);
  padding: 10px 0 10px 16px;
}

.confidential-statement h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.confidential-statement p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.authority-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pillar-row {
  border-bottom: 1px solid var(--border-hairline);
  padding-bottom: 22px;
}

.pillar-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --- 9. INSTAGRAM STRIP: ZERO TRUNCAMENTO --- */
.social-strip-section {
  padding: 68px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  position: relative;
}

.social-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.social-strip-info {
  display: flex;
  flex-direction: column;
}

.social-handle-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 6px;
  overflow: visible;
  word-break: break-word;
}

.social-strip-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.social-stats-inline {
  display: flex;
  gap: 40px;
}

.social-stat-item {
  display: flex;
  flex-direction: column;
}

.social-stat-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.social-stat-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.social-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(216, 178, 72, 0.08);
  border: 1px solid var(--border-gold-strong);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
  min-height: 48px;
}

.social-strip-btn:hover {
  background: var(--gold-base);
  color: #07080b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* --- 10. CONTATO FINAL CONCISO --- */
.contact-monumental-section {
  padding: 96px 0 110px;
  text-align: center;
  position: relative;
}

.contact-monumental-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 14px;
}

.contact-lead-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 36px;
}

.contact-btn-anchor {
  max-width: 460px;
  margin: 0 auto 48px;
}

.contact-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 36px;
  text-align: left;
}

.contact-detail-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-detail-col p, .contact-detail-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.contact-detail-col a:hover {
  color: var(--gold-light);
}

/* --- 11. RODAPÉ --- */
.site-footer {
  border-top: 1px solid var(--border-hairline);
  padding: 32px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand strong {
  color: var(--text-primary);
}

.footer-creci {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-compliance {
  text-align: right;
  line-height: 1.5;
}

/* --- 12. ANIMAÇÕES KEYFRAMES --- */
@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shinySweep {
  0% { left: -80%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- 13. REVEAL & JS RESILIÊNCIA (Todo conteúdo visível por padrão, GSAP gerencia) --- */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* --- 14. RESPONSIVIDADE & AUDITORIA MOBILE-FIRST (<992px & <430px) --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  /* A MENSAGEM LIDERA NO CELULAR: A foto entra subordinada depois do texto */
  .hero-visual {
    order: 2;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .hero-frame {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .hero-frame-img {
    object-position: center 20%;
  }

  .territory-open-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .authority-highlight {
    position: static;
  }

  .social-strip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-details-row {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-compliance {
    text-align: center;
  }
}

/* AUDITORIA RIGOROSA ABAIXO DE 430px (Até 320px) */
@media (max-width: 430px) {
  .container {
    padding: 0 16px;
  }

  /* Navbar perfeita em 320px sem colisão nem corte */
  .header-container {
    height: 58px;
  }

  .brand-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .brand-title {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .brand-creci {
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .header-cta {
    padding: 7px 12px;
    font-size: 0.78rem;
    min-height: 38px;
    gap: 6px;
  }

  /* Hero no celular */
  .hero-section {
    padding: 24px 0 48px;
  }

  .hero-title-name {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
  }

  .hero-title-role {
    font-size: 1.25rem;
  }

  .hero-statement-lead {
    font-size: 1.05rem;
  }

  .hero-statement-sub {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .cta-golden-primary {
    padding: 16px 20px;
    font-size: 0.92rem;
    min-height: 52px;
  }

  .hero-channels-line {
    gap: 10px;
    font-size: 0.78rem;
  }

  .hero-frame {
    aspect-ratio: 16 / 11;
  }

  /* Geografia no celular */
  .territory-section {
    padding: 60px 0 48px;
  }

  .section-head-open {
    margin-bottom: 32px;
  }

  .territory-open-grid {
    padding-top: 28px;
    gap: 24px;
  }

  .territory-name {
    font-size: 1.45rem;
  }

  /* Autoridade no celular */
  .authority-section {
    padding: 60px 0;
  }

  .big-stat-number {
    font-size: 4.5rem;
  }

  .big-stat-label {
    font-size: 1.18rem;
  }

  .pillar-title {
    font-size: 1.05rem;
  }

  /* Instagram no celular: Grid sem truncamento */
  .social-strip-section {
    padding: 48px 0;
  }

  .social-handle-title {
    font-size: clamp(1.2rem, 5.5vw, 1.65rem);
    white-space: normal;
  }

  .social-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 12px;
  }

  .social-stat-val {
    font-size: 1.45rem;
  }

  .social-stat-name {
    font-size: 0.68rem;
  }

  .social-strip-btn {
    width: 100%;
    justify-content: center;
  }

  /* Contato no celular */
  .contact-monumental-section {
    padding: 64px 0 80px;
  }

  .contact-main-heading {
    font-size: 1.95rem;
  }

  .contact-lead-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
}

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

  #three-canvas {
    display: none !important;
  }

  .ticker-track {
    animation: none !important;
    transform: none !important;
  }
}
