/* ============================================================
   GLENN AUSTIN CONSULTING — Main Stylesheet
   Design System: Dark Navy + Warm Gold
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --bg-primary:   #0c0f1a;
  --bg-secondary: #111520;
  --bg-card:      #161b2e;
  --gold:         #c9a96e;
  --gold-light:   #e4c98e;
  --gold-dim:     rgba(201, 169, 110, 0.10);
  --gold-border:  rgba(201, 169, 110, 0.14);
  --gold-border-h:rgba(201, 169, 110, 0.38);
  --text-primary: #f0ece4;
  --text-secondary: #9aa3b8;
  --text-muted:   #5e6680;
  --max-w:        1280px;
  --section-pad:  clamp(80px, 10vw, 120px);
  --radius:       12px;
  --radius-sm:    8px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.3s var(--ease);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
button { font-family: inherit; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
p  { max-width: 70ch; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
section { padding: var(--section-pad) clamp(20px, 4vw, 48px); }

/* === LABELS & EYEBROWS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0c0f1a;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0c0f1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-h);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem clamp(20px, 4vw, 48px);
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(12, 15, 26, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .nav-cta {
  color: var(--bg-primary);
  background: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  border: none;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
  overflow: hidden;
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 68%);
  top: -280px; right: -200px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,120,220,0.05) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

/* SVG background */
.hero-svg-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-svg-bg svg {
  width: 100%; height: 100%;
  opacity: 0.045;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  max-width: 12ch;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollFade 2.5s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollFade {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.8; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg-secondary); }
#about .container { max-width: var(--max-w); margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* Photo */
.about-photo-wrap { position: relative; }
.about-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-photo-frame img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
  filter: brightness(0.92) contrast(1.04);
}
/* Corner accents */
.about-photo-frame::before,
.about-photo-frame::after {
  content: '';
  position: absolute;
  width: 64px; height: 64px;
  z-index: 2;
  pointer-events: none;
}
.about-photo-frame::before {
  top: -10px; left: -10px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 2px 0 0 0;
}
.about-photo-frame::after {
  bottom: -10px; right: -10px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 2px 0;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* Content */
.about-bio {
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 1.5rem 0 2.25rem;
  font-size: 0.97rem;
}
.about-bio p + p { margin-top: 1rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 2.25rem;
}
.stat-item {
  background: var(--bg-card);
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-highlights li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55em;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg-primary); }
#services .container { max-width: var(--max-w); margin: 0 auto; }

.services-header { margin-bottom: 3.5rem; }
.services-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 60ch;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,169,110,0.08);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-secondary); overflow: hidden; }
#testimonials .container { max-width: var(--max-w); margin: 0 auto; }

.testimonials-header { margin-bottom: 3.5rem; }

.testimonial-carousel { max-width: 860px; margin: 0 auto; }

.testimonial-track { overflow: hidden; min-height: 320px; position: relative; }

.testimonial-slide {
  display: none;
  animation: tFadeIn 0.5s var(--ease) both;
}
.testimonial-slide.active { display: block; }

@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
  user-select: none;
}

.t-text {
  font-size: clamp(0.97rem, 1.7vw, 1.15rem);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.95;
  margin-bottom: 2rem;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.t-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.t-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}
.t-title {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.t-company { font-size: 0.82rem; color: var(--gold); }

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.c-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.c-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.c-btn svg { pointer-events: none; }

.c-dots { display: flex; gap: 7px; align-items: center; }
.c-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
  display: block;
}
.c-dot.active {
  width: 22px;
  background: var(--gold);
}

/* ============================================================
   CLIENTS
   ============================================================ */
#clients {
  background: var(--bg-primary);
  padding: clamp(60px, 8vw, 100px) 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 clamp(20px, 4vw, 48px);
}
.clients-header h2 { margin-bottom: 0.5rem; }
.clients-header p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0 auto;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #fff 14%, #fff 86%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #fff 14%, #fff 86%, transparent 100%);
}
.marquee-wrap + .marquee-wrap { margin-top: 1.75rem; }

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  align-items: center;
}
.marquee-track.forward  { animation: mq-fwd 44s linear infinite; }
.marquee-track.reverse  { animation: mq-fwd 56s linear infinite reverse; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 16px;
  flex-shrink: 0;
}
.client-item img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.45;
  transition: all var(--transition);
}
.client-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ============================================================
   ASSOCIATES
   ============================================================ */
#associates { background: var(--bg-secondary); }
#associates .container { max-width: var(--max-w); margin: 0 auto; }

.associates-intro {
  margin: 0.75rem 0 3rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 58ch;
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.assoc-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition);
}
.assoc-card:hover { border-color: var(--gold-border-h); }

.assoc-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 2px solid var(--gold-border);
}
.assoc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.assoc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.assoc-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.assoc-bio {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.assoc-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid var(--gold-border);
  padding-top: 1.25rem;
}
.assoc-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
  word-break: break-word;
}
.assoc-links a:hover { color: var(--gold); }
.assoc-links svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--bg-primary);
  text-align: center;
}
#contact .container { max-width: var(--max-w); margin: 0 auto; }

.contact-wrap {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-wrap h2 { margin-bottom: 1rem; }
.contact-intro {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.contact-rule {
  width: 56px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin-bottom: 2.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.75rem;
  width: 100%;
  max-width: 440px;
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--gold-border-h); }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-text { text-align: left; }
.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-primary);
}
.contact-value a {
  color: var(--text-primary);
  transition: color var(--transition);
}
.contact-value a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  padding: 1.75rem clamp(20px, 4vw, 48px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-social svg { width: 15px; height: 15px; }
.footer-related {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--text-muted);
  opacity: 0.75;
}
.footer-related a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--gold-border);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.footer-related a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
  opacity: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 480px; }
  .about-badge { left: auto; right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .associates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 10vw, 80px); }

  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(11, 14, 24, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2rem clamp(20px, 4vw, 48px);
    border-bottom: 1px solid var(--gold-border);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  #navbar { position: fixed; }

  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .associates-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .contact-item { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--gold-border);
  }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-item { flex-direction: column; text-align: center; }
  .contact-text { text-align: center; }
}
