/* ============================================================
   CAL, EL & PARTNERS — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=Noto+Sans+SC:wght@300;400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --green-900: #0D1E18;
  --green-800: #142419;
  --green-700: #1A3C34;
  --green-600: #20473D;
  --green-500: #2D5E4F;
  --green-400: #3D7A67;

  --gold-700: #8B6914;
  --gold-600: #A07840;
  --gold-500: #C9A96E;
  --gold-400: #D4BA87;
  --gold-300: #E3D0A8;
  --gold-100: #FAF6EE;

  --cream-50:  #FDFCF9;
  --cream-100: #FAF7F2;
  --cream-200: #F5F0E8;
  --cream-300: #EDE5D8;

  --text-primary:   #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted:     #9CA3AF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Smooth scroll hero — ensure sticky works correctly in all browsers */
#ssh-wrap { isolation: isolate; }
#ssh-bg   { transform: translateZ(0); }   /* GPU layer hint */

/* Seamless dark-to-content transition after the hero scrolls off */
#ssh-wrap + .stats-bar { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  #ssh-bg      { clip-path: none !important; background:#0D1E18; }
  #ssh-content { opacity: 1 !important; transform: none !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 960px;  margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color 400ms var(--ease), box-shadow 400ms var(--ease), padding 400ms var(--ease);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: var(--green-700);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  padding: 1rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
/* Logo PNG replaces SVG — sizing controlled inline; keep for any remaining SVGs */
.nav-logo svg { width: 42px; height: 52px; color: white; }
.nav-logo img {
  height: 54px; width: auto; display: block; object-fit: contain; flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: white; letter-spacing: 0.02em; line-height: 1.15;
}
.nav-logo-sub {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-400);
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 250ms ease; position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold-500); transition: width 300ms var(--ease);
}
.nav-link:hover, .nav-link.active { color: white; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.6rem 1.4rem;
  background: var(--gold-500); color: var(--green-800);
  border-radius: var(--radius-sm);
  transition: background 250ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,169,110,0.35); }

/* ── Language toggle ── */
.lang-toggle {
  display: flex; align-items: center; gap: 2px; margin-right: 0.625rem; flex-shrink: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55); padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm); transition: color 200ms ease, background 200ms ease;
  line-height: 1;
}
.lang-btn:hover  { color: white; }
.lang-btn.active { color: white; background: rgba(255,255,255,0.12); }
.lang-divider    { color: rgba(255,255,255,0.2); font-size: 0.6rem; pointer-events: none; }
/* Scrolled nav (light bg) */
.nav.scrolled .lang-btn           { color: var(--text-muted); }
.nav.scrolled .lang-btn:hover     { color: var(--green-700); }
.nav.scrolled .lang-btn.active    { color: var(--green-700); background: rgba(26,60,52,0.08); }
.nav.scrolled .lang-divider       { color: var(--cream-300); }
/* Mobile drawer lang toggle */
.lang-toggle-mobile {
  display: flex; align-items: center; gap: 6px;
  padding: 1.25rem 0 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0.5rem;
}
.lang-toggle-mobile .lang-btn     { font-size: 0.85rem; padding: 0.4rem 0.75rem; color: rgba(255,255,255,0.6); }
.lang-toggle-mobile .lang-btn.active { color: white; background: rgba(255,255,255,0.12); }
.lang-toggle-mobile .lang-divider { color: rgba(255,255,255,0.25); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: white;
  transition: all 300ms var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none; position: fixed; top: 0; right: -100%; width: 82%; max-width: 340px;
  height: 100vh; background: var(--green-800); z-index: 999;
  padding: 5.5rem 2.5rem 3rem; flex-direction: column; gap: 0;
  transition: right 400ms var(--ease); overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 998; backdrop-filter: blur(4px); opacity: 0; transition: opacity 300ms ease;
}
.nav-mobile-overlay.show { opacity: 1; }
.nav-mobile-link {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; color: white;
  padding: 1rem 0; border-bottom: 1px solid rgba(201,169,110,0.12); display: block;
  transition: color 200ms ease, padding-left 200ms ease;
}
.nav-mobile-link:hover { color: var(--gold-400); padding-left: 0.5rem; }
.nav-mobile-cta {
  margin-top: 2rem; display: block; text-align: center; padding: 0.875rem 1.5rem;
  background: var(--gold-500); color: var(--green-800);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  overflow: hidden; background: var(--green-700);
}
.hero-bg {
  position: absolute; inset: 0; will-change: transform;
  background:
    radial-gradient(ellipse 70% 80% at 72% 40%, rgba(45,94,79,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 15% 85%, rgba(13,30,24,0.7) 0%, transparent 55%),
    var(--green-700);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 72px, rgba(255,255,255,1) 72px, rgba(255,255,255,1) 73px),
    repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(255,255,255,1) 72px, rgba(255,255,255,1) 73px);
}
.hero-content {
  position: relative; z-index: 2; padding: 8rem 0 6rem; width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.875rem; margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 700ms var(--ease) 200ms forwards;
}
.hero-eyebrow-line { width: 2.5rem; height: 1px; background: var(--gold-500); }
.hero-eyebrow-text { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;
  color: white; max-width: 14ch; margin-bottom: 2rem;
  opacity: 0; transform: translateY(28px);
  animation: fade-up 800ms var(--ease) 380ms forwards;
}
.hero-title em { font-style: italic; color: var(--gold-400); }

.hero-subtitle {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6);
  max-width: 46ch; margin-bottom: 3rem;
  opacity: 0; transform: translateY(24px);
  animation: fade-up 700ms var(--ease) 540ms forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 700ms var(--ease) 680ms forwards;
}

.hero-deco {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 42%; height: 80%; z-index: 1; pointer-events: none;
  opacity: 0; animation: fade-in 1.2s var(--ease) 900ms forwards;
}
.hero-deco-border {
  position: absolute; top: 0; left: 0; right: 15%; bottom: 0;
  border: 1px solid rgba(201,169,110,0.18); border-radius: var(--radius-md);
}
.hero-deco-fill {
  position: absolute; top: 12%; left: 12%; right: 3%; bottom: -5%;
  background: linear-gradient(135deg, rgba(26,60,52,0.6) 0%, rgba(13,30,24,0.4) 100%);
  backdrop-filter: blur(2px); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; color: rgba(255,255,255,0.4); cursor: pointer;
  opacity: 0; animation: fade-in 600ms var(--ease) 1400ms forwards;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all 250ms var(--ease); white-space: nowrap;
}
.btn svg { width: 13px; height: 13px; transition: transform 250ms ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-gold { background: var(--gold-500); color: var(--green-800); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }

.btn-outline-white { border: 1px solid rgba(255,255,255,0.35); color: white; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.07); transform: translateY(-2px); }

.btn-outline-green { border: 1.5px solid var(--green-700); color: var(--green-700); }
.btn-outline-green:hover { background: var(--green-700); color: white; transform: translateY(-2px); }

.btn-green { background: var(--green-700); color: white; }
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,60,52,0.3); }

/* ============================================================
   SECTION LABELS & HEADERS
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--gold-500);
}
.section-label-light { color: var(--gold-400); }
.section-label-light::before { background: var(--gold-400); }

.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.02em; color: var(--green-700);
}
.section-title-light { color: white; }
.section-title em { font-style: italic; color: var(--gold-600); }
.section-title-light em { color: var(--gold-400); }

.section-subtitle {
  margin-top: 1.25rem; font-size: 1rem; line-height: 1.78;
  color: var(--text-secondary); max-width: 52ch;
}
.section-subtitle-light { color: rgba(255,255,255,0.65); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--green-800); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 400;
  color: var(--gold-400); line-height: 1; margin-bottom: 0.5rem;
}
.stat-suffix { font-family: var(--font-heading); font-size: 1.2rem; }
.stat-label { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ============================================================
   PRACTICE CARDS
   ============================================================ */
.practice-card {
  background: white; border: 1px solid var(--cream-300);
  padding: 2.5rem; border-radius: var(--radius-md);
  position: relative; overflow: hidden;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms ease;
}
.practice-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
  transform: scaleX(0); transform-origin: left; transition: transform 400ms var(--ease);
}
.practice-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.practice-card:hover::after { transform: scaleX(1); }

.practice-icon {
  width: 52px; height: 52px; background: var(--cream-200); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  transition: background 350ms ease;
}
.practice-icon svg { width: 22px; height: 22px; color: var(--green-700); transition: color 350ms ease; }
.practice-card:hover .practice-icon { background: var(--green-700); }
.practice-card:hover .practice-icon svg { color: white; }

.practice-num {
  position: absolute; top: 1.75rem; right: 1.75rem;
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 300;
  color: var(--cream-200); line-height: 1; transition: color 350ms ease; pointer-events: none;
}
.practice-card:hover .practice-num { color: rgba(26,60,52,0.06); }

.practice-title {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 500;
  color: var(--green-700); margin-bottom: 0.875rem; line-height: 1.3;
}
.practice-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem; }
.practice-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-700); transition: gap 250ms ease;
}
.practice-link svg { width: 11px; height: 11px; }
.practice-link:hover { gap: 0.7rem; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  background: white; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.team-photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--green-700);
}
.team-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 600ms var(--ease), filter 400ms ease;
  filter: grayscale(15%);
}
.team-card:hover .team-photo { transform: scale(1.05); filter: grayscale(0%); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,60,52,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity 350ms ease;
}
.team-card:hover .team-photo-overlay { opacity: 1; }

.team-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem;
  background: linear-gradient(150deg, var(--green-700) 0%, var(--green-800) 100%);
}
.team-placeholder-ring {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
}
.team-placeholder-ring svg { width: 48px; height: 48px; color: rgba(255,255,255,0.35); }
.team-placeholder-initials {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 400;
  color: rgba(255,255,255,0.2); letter-spacing: -0.02em;
}

.team-info { padding: 1.75rem 1.75rem 2rem; }
.team-role { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 0.375rem; }
.team-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; color: var(--green-700); margin-bottom: 0.375rem; }
.team-head { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ============================================================
   VALUES / WHY
   ============================================================ */
.value-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.625rem; background: white; border-radius: var(--radius-md);
  border-left: 2.5px solid var(--gold-500); box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
.value-icon {
  flex-shrink: 0; width: 42px; height: 42px; background: var(--cream-200);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; color: var(--green-700); }
.value-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--green-700); margin-bottom: 0.25rem; }
.value-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary); }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band {
  background: var(--green-700); padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; top: -2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 18rem; line-height: 1;
  color: rgba(255,255,255,0.04); pointer-events: none; user-select: none;
}
.quote-text {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400; font-style: italic; color: white;
  max-width: 22ch; margin: 0 auto 1.5rem; line-height: 1.3; position: relative;
}
.quote-source { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
  padding: 5.5rem 0; position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 10rem 0 5.5rem; position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 72px, rgba(255,255,255,1) 72px, rgba(255,255,255,1) 73px),
    repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(255,255,255,1) 72px, rgba(255,255,255,1) 73px);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.page-hero-label::before { content: ''; display: inline-block; width: 2rem; height: 1px; background: var(--gold-400); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: white; margin-bottom: 1.25rem; }
.page-hero-title em { font-style: italic; color: var(--gold-400); }
.page-hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 52ch; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }
.form-input, .form-textarea, .form-select {
  font-family: var(--font-body); font-size: 0.9rem; padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-300); border-radius: var(--radius-md);
  background: white; color: var(--text-primary); width: 100%; outline: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(26,60,52,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item { border-bottom: 1px solid var(--cream-300); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 1.5rem 0; cursor: pointer;
}
.accordion-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--green-700); transition: color 200ms ease; }
.accordion-trigger:hover .accordion-title { color: var(--gold-600); }
.accordion-icon {
  width: 28px; height: 28px; flex-shrink: 0; border: 1px solid var(--cream-300); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 300ms ease;
}
.accordion-icon svg { width: 12px; height: 12px; color: var(--green-700); transition: transform 300ms ease; }
.accordion-item.open .accordion-icon { background: var(--green-700); border-color: var(--green-700); }
.accordion-item.open .accordion-icon svg { color: white; transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 450ms var(--ease); }
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-body { padding-bottom: 1.5rem; }
.accordion-body p { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 0.75rem; }
.accordion-list { margin-top: 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; }
.accordion-list li {
  font-size: 0.83rem; color: var(--text-secondary); padding-left: 1rem; position: relative;
}
.accordion-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-500); font-size: 0.7rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.breadcrumb a { transition: color 200ms ease; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-bar { width: 3rem; height: 1.5px; background: var(--gold-500); display: block; }
.gold-bar-center { margin: 0 auto; }

/* ============================================================
   LAWYER PROFILE
   ============================================================ */
.lawyer-photo-frame {
  position: relative; flex-shrink: 0;
  width: 340px; height: 420px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.lawyer-photo-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,60,52,0.3) 0%, transparent 60%);
}
.lawyer-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lawyer-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(15,31,24,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.25); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; z-index: 2;
}
.lawyer-badge-role { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 0.2rem; }
.lawyer-badge-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.125rem; }
.footer-logo svg { width: 38px; height: 47px; color: white; }
.footer-logo img {
  height: 48px; width: auto; display: block; object-fit: contain; flex-shrink: 0;
}
.footer-logo-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: white; letter-spacing: 0.02em; }
.footer-logo-sub { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-500); }
.footer-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 26ch; margin-bottom: 1.5rem; }
.footer-heading { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color 200ms ease; }
.footer-link:hover { color: white; }
.footer-contact-row { display: flex; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer-contact-icon { flex-shrink: 0; width: 14px; height: 14px; margin-top: 2px; color: var(--gold-500); }
.footer-contact-text { font-size: 0.83rem; line-height: 1.55; color: rgba(255,255,255,0.55); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.75rem; color: rgba(255,255,255,0.35); transition: color 200ms ease; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal       { opacity: 0; transform: translateY(32px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal-scale { opacity: 0; transform: scale(0.95);       transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 80ms;  }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }
.d5 { transition-delay: 400ms; }
.d6 { transition-delay: 480ms; }

.line-grow { width: 0; height: 1px; transition: width 900ms var(--ease); }
.line-grow.visible { width: 100%; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fade-up  { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in  { to { opacity: 1; } }
@keyframes scroll-pulse {
  0%, 100% { opacity: 1;   transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6) translateY(5px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-deco { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-mobile-overlay { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.875rem; text-align: center; }
  .lawyer-photo-frame { width: 100%; height: 340px; }
  .accordion-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container, .container-sm { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero-eyebrow, .hero-title, .hero-subtitle, .hero-actions, .hero-scroll, .hero-deco {
    animation: none; opacity: 1; transform: none; transition: none;
  }
  .line-grow { transition: none; width: 100%; }
}
