/* =========================================================
   Oleche Advocates - Global Stylesheet
   Brand: Royal Blue #1a52a8 | Gold #C5A059 | White #FFFFFF
   ========================================================= */

/* ── Custom Properties ── */
:root {
  --navy:        #1a52a8;
  --navy-dark:   #0f3a88;
  --navy-mid:    #2462b5;
  --navy-light:  #3575cc;
  --gold:        #C5A059;
  --gold-light:  #D4B374;
  --gold-dark:   #A8853A;
  --gold-pale:   #F5ECD7;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gray-100:    #F1F4F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #64748B;
  --gray-800:    #1E293B;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(26,82,168,0.08), 0 1px 2px rgba(26,82,168,0.06);
  --shadow:     0 4px 12px rgba(26,82,168,0.12), 0 2px 6px rgba(26,82,168,0.08);
  --shadow-lg:  0 10px 40px rgba(26,82,168,0.18), 0 4px 16px rgba(26,82,168,0.12);
  --shadow-xl:  0 24px 64px rgba(26,82,168,0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.75; }

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-subtitle.light { color: rgba(255,255,255,0.8); }

/* Gold divider line */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem 0 2rem;
  border-radius: 2px;
}

.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(197,160,89,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #E8C88A 100%);
  box-shadow: 0 6px 28px rgba(197,160,89,0.50);
  transform: translateY(-2px);
  color: var(--navy-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(197,160,89,0.30);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.25rem 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(26,82,168,0.12);
  padding: 0.75rem 0;
}

.site-header.scrolled .primary-nav a {
  color: var(--navy);
}

.site-header.scrolled .primary-nav a:hover,
.site-header.scrolled .primary-nav a.active {
  color: var(--gold-dark);
  background: rgba(197,160,89,0.10);
}

.site-header.scrolled .hamburger span {
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--navy-dark);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0; }

.primary-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
}

.mobile-nav a {
  font-size: 1.375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .btn {
  margin-top: 1.5rem;
  font-size: 1rem;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Royal blue gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(36,98,181,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(197,160,89,0.10) 0%, transparent 50%),
    linear-gradient(165deg, #0d3578 0%, #1a52a8 40%, #2462b5 70%, #0f3a88 100%);
}

/* Digital node grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(197,160,89,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(53,117,204,0.45) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197,160,89,0.18) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
}

/* Nairobi skyline silhouette */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background:
    linear-gradient(to top, rgba(13,53,120,0.85) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 280' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%230f3a88' fill-opacity='0.85' d='M0 280V180l30-5 10-40 10 5 5-60 15 10 5-80 10 80 5-10 15-10 5 60 10-5 10 40 30 5 20-20 10 20 15-60 5 30 5-30 15 60 20-30 20 30 20-80 10 80 5-10 10-10 10 10 5 10 20-90 10 90 5-20 5 20 10-30 5-10 5 10 10 30 10-20 5 20 30-100 30 100 10-30 10 30 10-50 10 50 10-20 10 20 20-80 20 80 10-10 10 10 5-40 5-10 5 10 5 40 10-60 5 10 5-10 10 60 10-20 10 20V280z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 6rem 0 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-note-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-note-item svg { color: var(--gold); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 10;
  cursor: pointer;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse-dot {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Stats bar in hero */
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item { }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* ── Services Section ── */
.services-section {
  background: var(--off-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,160,89,0.2);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(197,160,89,0.08) 0%, rgba(197,160,89,0.15) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197,160,89,0.2);
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, rgba(197,160,89,0.25) 100%);
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); }

.service-card h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
  text-decoration: none;
}

.service-link:hover { gap: 0.7rem; color: var(--gold-dark); }
.service-link svg { width: 16px; height: 16px; }

/* Service number watermark */
.service-card-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,33,71,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition);
}

.service-card:hover .service-card-num { color: rgba(197,160,89,0.06); }

/* ── Why Us Section ── */
.why-us-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(197,160,89,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(197,160,89,0.25);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(197,160,89,0.15), rgba(197,160,89,0.25));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197,160,89,0.25);
}

.why-card-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.why-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: rgba(255,255,255,0.80);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }

/* ── About Section ── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

/* Interior office mockup via CSS */
.office-mockup {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0,33,71,0.1) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 60px
    ),
    linear-gradient(160deg, #2462b5 0%, #1a52a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-mockup-text {
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-icon svg { width: 20px; height: 20px; stroke: var(--navy-dark); }

.about-badge-text strong { display: block; font-size: 1rem; color: var(--navy); font-weight: 700; }
.about-badge-text span { font-size: 0.75rem; color: var(--gray-600); }

.about-content { }

.about-content .section-label { color: var(--gold); }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
}

.about-value-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.about-value-text strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 600; }
.about-value-text span { font-size: 0.8125rem; color: var(--gray-600); }

/* ── Team Section ── */
.team-section { background: var(--off-white); }

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(197,160,89,0.2);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
}

.team-photo-placeholder.blue {
  background: linear-gradient(160deg, #2462b5 0%, #1a52a8 100%);
}
.team-photo-placeholder.gold {
  background: linear-gradient(160deg, #A8853A 0%, #C5A059 100%);
}
.team-photo-placeholder.navy {
  background: linear-gradient(160deg, #0f3a88 0%, #2462b5 100%);
}
.team-photo-placeholder.bronze {
  background: linear-gradient(160deg, #7B5E37 0%, #A8853A 100%);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.5rem;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.team-social-btn:hover { background: var(--gold-pale); }
.team-social-btn svg { width: 15px; height: 15px; stroke: var(--gray-600); }
.team-social-btn:hover svg { stroke: var(--gold-dark); }

/* ── Contact / CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(197,160,89,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.5rem; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.cta-phone:hover { color: var(--gold-light); }
.cta-phone svg { width: 32px; height: 32px; stroke: currentColor; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 1.25rem 0 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: transparent;
  color: rgba(255,255,255,0.5);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}

.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

/* Map embed */
.footer-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) invert(90%) hue-rotate(180deg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── Mobile Bottom Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 0.75rem;
  align-items: center;
}

.mobile-cta-phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(197,160,89,0.35);
}

.mobile-cta-phone svg { width: 20px; height: 20px; stroke: currentColor; }

.mobile-cta-whatsapp {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.mobile-cta-whatsapp svg { width: 24px; height: 24px; fill: white; stroke: none; }

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(197,160,89,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); font-weight: 500; }
.breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; }

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 600px; font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 360px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }

  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta-bar { display: flex; }

  /* Add padding for mobile bottom bar */
  body { padding-bottom: 80px; }

  .hero-stats { gap: 1.5rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.25rem; }
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
}

/* ── About Page ── */
.about-mission {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
}

.about-mission h2 { color: var(--white); }
.about-mission p { color: rgba(255,255,255,0.78); max-width: 700px; margin: 0 auto; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.about-pillar {
  text-align: center;
}

.about-pillar-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.about-pillar h3 { color: var(--white); font-size: 1.125rem; margin-bottom: 0.5rem; }
.about-pillar p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Practice Area Page ── */
.practice-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.practice-sidebar {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 100px;
}

.practice-sidebar h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.practice-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 2rem;
}

.practice-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 500;
}

.practice-sidebar-links a:hover,
.practice-sidebar-links a.active {
  background: rgba(197,160,89,0.08);
  color: var(--gold-dark);
}

.practice-sidebar-links a svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }

.practice-cta-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.practice-cta-box h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.practice-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.8375rem; margin-bottom: 1.25rem; }

.practice-content-body h3 { color: var(--navy); margin: 2rem 0 1rem; font-size: 1.375rem; }
.practice-content-body p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }

.practice-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.practice-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-700, #374151);
  font-weight: 500;
}

.practice-service-item svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) {
  .practice-content { grid-template-columns: 1fr; }
  .practice-sidebar { position: static; }
  .about-pillars { grid-template-columns: 1fr; }
  .practice-services-list { grid-template-columns: 1fr; }
}

/* ── Logo Image (replaces text logo) ── */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 6px;
  background: #ffffff;
  padding: 5px 14px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
}

.site-logo:hover .logo-img {
  border-color: rgba(197, 160, 89, 0.75);
  transform: translateY(-1px);
  opacity: 0.92;
}

/* Footer variant */
.logo-img--footer {
  height: 48px;
  margin-bottom: 1rem;
}

/* ── Team Photo - real image ── */
.team-photo img,
.team-full-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

/* ── WhatsApp Float Button (Desktop) ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 768px) {
  .whatsapp-float { display: none; }
}

/* ══════════════════════════════════════════
   Insights / Blog Pages
══════════════════════════════════════════ */

/* ── Insights Index ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,160,89,0.25);
  transform: translateY(-4px);
}

.insight-card-cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.insight-card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.35);
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.insight-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.insight-card-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--gray-400);
  border-radius: 50%;
}

.insight-card h3 {
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.insight-card:hover h3 { color: var(--gold-dark); }

.insight-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.insight-card-link:hover { gap: 0.65rem; color: var(--gold-dark); }
.insight-card-link svg { width: 15px; height: 15px; }

/* Featured insight card (spans 2 cols) */
.insight-card--featured {
  grid-column: span 2;
  flex-direction: row;
}

.insight-card--featured .insight-card-cover {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: unset;
  border-radius: 0;
  align-items: flex-start;
  padding: 1.5rem;
}

.insight-card--featured .insight-card-body {
  padding: 2rem;
}

.insight-card--featured h3 {
  font-size: 1.3125rem;
}

/* Category filter pills */
.insights-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.filter-pill {
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Article / Single Post ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.article-body {
  max-width: 100%;
}

/* Article header */
.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.25);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.article-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.article-header .article-standfirst {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.article-author-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.article-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.article-author-role {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.article-date-read {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.article-date-read-dot {
  width: 3px;
  height: 3px;
  background: var(--gray-400);
  border-radius: 50%;
}

/* Article prose */
.article-prose {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--gray-800);
}

.article-prose p {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.82;
}

.article-prose h2 {
  font-size: 1.4375rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--gold-pale);
}

.article-prose h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

/* Opening hook - large bold italic lead */
.article-prose .article-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--gold);
}

/* Pull quote */
.article-pullquote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
  position: relative;
}

.article-pullquote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.article-pullquote p {
  color: var(--white) !important;
  font-size: 1.1875rem !important;
  font-style: italic;
  line-height: 1.65 !important;
  margin: 0 !important;
  padding-top: 1.25rem;
}

/* Numbered recommendations */
.article-recommendations {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.article-rec-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  align-items: start;
}

.article-rec-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.article-rec-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.article-rec-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Key facts callout box */
.article-callout {
  background: rgba(197,160,89,0.06);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
}

.article-callout-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-callout-title svg { width: 15px; height: 15px; stroke: var(--gold); }

.article-callout ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.article-callout ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--gray-700, #374151);
  line-height: 1.65;
}

.article-callout ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Article footer / author box */
.article-author-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.article-author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
}

.article-author-box-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.article-author-box-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.125rem;
}

.article-author-box-role {
  font-size: 0.8125rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.article-author-box-bio {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.sidebar-widget h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
}

.sidebar-toc { display: flex; flex-direction: column; gap: 0; }

.sidebar-toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.45;
}

.sidebar-toc a:last-child { border-bottom: none; }
.sidebar-toc a:hover { color: var(--gold-dark); }
.sidebar-toc a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.sidebar-cta-box {
  background: var(--navy);
  border: none;
}

.sidebar-cta-box h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.1);
}

.sidebar-cta-box p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.sidebar-share { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
}

.share-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.share-btn svg { width: 14px; height: 14px; stroke: currentColor; }

/* Disclaimer */
.article-disclaimer {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-top: 2.5rem;
  border-left: 3px solid var(--gray-200);
}

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-card--featured { grid-column: span 2; flex-direction: column; }
  .insight-card--featured .insight-card-cover { width: 100%; aspect-ratio: 16/9; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-widget { flex: 1; min-width: 260px; }
}

@media (max-width: 768px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card--featured { grid-column: span 1; }
  .article-prose p, .article-prose { font-size: 1rem; }
  .article-author-box { flex-direction: column; }
}
