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

:root {
  --black:   #070A0D;
  --surface: #0D1117;
  --border:  #1E2A38;
  --cream:   #F0EDE6;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --muted:   #9A9A9A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ─── Utilities ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--muted); }

/* ─── Header ───────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
header .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

/* ─── Logo ─────────────────────────────────────────── */
.logo {
  display: flex; align-items: center; gap: 0.875rem;
}
.logo-divider {
  width: 1px; height: 28px; background: var(--border);
}
.logo-text { display: flex; flex-direction: row; align-items: baseline; gap: 0.5rem; white-space: nowrap; flex-shrink: 0; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; letter-spacing: 0.03em;
  color: var(--white); font-weight: 700; white-space: nowrap;
}
.logo-sub {
  font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 400; white-space: nowrap;
}

/* ─── Nav ──────────────────────────────────────────── */
nav { display: flex; align-items: center; gap: 1.5rem; white-space: nowrap; }
nav a {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
nav a:hover { color: var(--white); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.08) !important; border-color: var(--white) !important; }

/* ─── Nav Dropdown ─────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; transition: color 0.2s;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Inter', system-ui, sans-serif; white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.open { color: var(--white); }
.nav-dropdown-trigger svg { transition: transform 0.25s; flex-shrink: 0; }
.nav-dropdown-trigger.open svg { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 1.5rem); left: 50%;
  transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  min-width: 230px; padding: 0.5rem 0;
  display: none; flex-direction: column;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.dropdown-panel.open { display: flex; }
.dropdown-panel a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); padding: 0.7rem 1.5rem;
  transition: color 0.2s, background 0.2s;
  display: block; white-space: nowrap;
}
.dropdown-panel a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.dropdown-panel .dropdown-more {
  border-top: 1px solid var(--border); margin-top: 0.25rem;
  padding-top: 0.95rem; color: var(--cream);
}
.dropdown-panel .dropdown-more:hover { color: var(--white); }

/* ─── Hamburger ────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; height: 1px; background: var(--muted);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.hamburger:hover span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Mobile nav drawer ────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 2rem;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; transition: color 0.2s;
  padding: 0.25rem 0;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .nav-cta { margin-top: 0.5rem; text-align: center; padding: 0.875rem !important; }

/* ─── Hero ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 6rem;
  position: relative; overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1534430480872-3498386e7856?auto=format&fit=crop&w=1920&q=80')
    center center / cover no-repeat;
}
/* layered overlay: strong at bottom for text, lighter at top */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,10,13,0.35) 0%,
    rgba(7,10,13,0.55) 50%,
    rgba(7,10,13,0.88) 100%
  );
}
.hero-content { position: relative; z-index: 1; }
.hero-heading {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800; color: var(--white);
  max-width: 16ch; margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: var(--cream); }
.hero-sub {
  color: rgba(240,237,230,0.7); font-size: 1.1rem;
  max-width: 520px; font-weight: 300; line-height: 1.7;
}

/* ─── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--white); color: var(--black);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--cream); }
.btn-outline {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── About ────────────────────────────────────────── */
#about { padding: 7rem 0; background: var(--surface); }
.about-header { max-width: 640px; margin-bottom: 4rem; }
.about-header h2 { font-size: clamp(2rem, 4vw, 3.25rem); color: var(--cream); margin-bottom: 1rem; }
.about-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.pillar { background: var(--surface); padding: 3rem; }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: var(--border); font-weight: 800; line-height: 1; margin-bottom: 1.25rem;
}
.pillar h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: 0.75rem; }
.pillar p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.pillar-list li { font-size: 0.88rem; padding-left: 1.1rem; position: relative; }
.pillar-list li::before { content: '—'; position: absolute; left: 0; color: var(--border); }
.pillar-list li a { color: var(--muted); transition: color 0.2s; }
.pillar-list li a:hover { color: var(--cream); }

/* ─── Services ─────────────────────────────────────── */
#services { padding: 7rem 0; background: var(--black); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap;
}
.services-header h2 { font-size: clamp(2rem, 4vw, 3.25rem); color: var(--cream); margin-top: 1.25rem; max-width: 28ch; }
.services-header p { color: var(--gray); max-width: 280px; font-size: 0.9rem; line-height: 1.7; text-align: right; }

/* 4-column single row */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.card {
  background: var(--black); padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,255,255,0.03);
}
.card.featured { background: var(--surface); border-color: rgba(255,255,255,0.15); }
.card-tag {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 0.75rem;
}
.card-title { font-size: 1.15rem; color: var(--cream); margin-bottom: 0.5rem; }
.card-price { margin-bottom: 1rem; }
.card-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--white); font-weight: 700;
}
.card-price span { font-size: 0.8rem; color: var(--gray); margin-left: 0.25rem; }
.card-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.card-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-features li { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.6rem; }
.card-features li::before { content: ''; display: block; width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.card-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  transition: all 0.25s; margin-top: auto;
}
.card.featured .card-cta { background: var(--white); color: var(--black); }
.card.featured .card-cta:hover { background: var(--cream); }
.card:not(.featured) .card-cta { border: 1px solid var(--border); color: var(--muted); }
.card:not(.featured) .card-cta:hover { border-color: var(--cream); color: var(--cream); }
.services-note { margin-top: 2rem; text-align: center; font-size: 0.8rem; color: var(--gray); }
.services-note a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* ─── AI Warning ───────────────────────────────────── */
#ai-warning {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ai-inner { display: flex; gap: 3rem; align-items: flex-start; }
.ai-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.75rem;
}
.ai-tag {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 0.75rem;
}
.ai-body h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); color: var(--cream); margin-bottom: 1rem; }
.ai-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
.ai-body p strong { color: var(--cream); font-weight: 500; }
.ai-link {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); font-weight: 500;
  border-bottom: 1px solid rgba(240,237,230,0.3); padding-bottom: 1px;
  transition: border-color 0.2s;
}
.ai-link:hover { border-color: var(--cream); }

/* ─── CTA Section ──────────────────────────────────── */
#cta { padding: 7rem 0; text-align: center; }
.cta-rule { display: flex; align-items: center; gap: 1.5rem; justify-content: center; margin-bottom: 2.5rem; }
.cta-rule::before, .cta-rule::after { content: ''; display: block; width: 3rem; height: 1px; background: var(--border); }
.cta-rule span { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
#cta h2 { font-size: clamp(2.25rem, 5vw, 4rem); color: var(--cream); margin-bottom: 1.25rem; max-width: 20ch; margin-inline: auto; }
#cta p { color: var(--gray); font-size: 1rem; max-width: 480px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Disclaimer ───────────────────────────────────── */
.disclaimer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.disclaimer p {
  font-size: 0.72rem; color: #4A5568; line-height: 1.8;
  max-width: 900px; margin: 0 auto; text-align: center;
}

/* ─── Footer ───────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-social { margin-top: 1.25rem; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--gray); transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); font-weight: 500; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-links span { font-size: 0.85rem; color: var(--gray); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: #4A5568; line-height: 1.7; max-width: 700px; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: #4A5568; transition: color 0.2s; }
.footer-legal a:hover { color: var(--cream); }

/* ─── Contact Page ─────────────────────────────────── */
.contact-header {
  padding: 8rem 0 4rem; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.contact-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--cream); margin: 1.25rem 0 1rem; max-width: 18ch; }
.contact-header p { color: var(--gray); font-size: 1.05rem; max-width: 480px; }
.contact-body { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 5rem; align-items: start; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--cream); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.field label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--cream); padding: 0.875rem 1rem; font-size: 0.9rem;
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #333D47; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--muted); }
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; cursor: pointer; }
.form-note { font-size: 0.75rem; color: #4A5568; line-height: 1.6; margin-bottom: 1.5rem; }
.sidebar-details { display: flex; flex-direction: column; gap: 2.5rem; }
.detail-group { display: flex; flex-direction: column; gap: 1rem; }
.detail-group-title { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); font-weight: 500; }
.detail-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.detail-icon {
  width: 34px; height: 34px; flex-shrink: 0; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem; margin-top: 2px;
}
.detail-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.detail-val { font-size: 0.88rem; color: var(--cream); margin-top: 2px; }
.detail-val a { color: var(--cream); transition: color 0.2s; }
.detail-val a:hover { color: var(--white); }
.privilege-box { border: 1px solid var(--border); padding: 1.5rem; margin-top: 1rem; }
.privilege-box .pb-line { width: 2rem; height: 1px; background: var(--border); margin-bottom: 1rem; }
.privilege-box h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 0.5rem; }
.privilege-box p { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ─── Success Message ──────────────────────────────── */
.success-msg { display: none; text-align: center; padding: 3rem 0; }
.success-msg.visible { display: block; }
.success-icon {
  width: 60px; height: 60px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.5rem; margin: 0 auto 1.5rem;
}
.success-msg h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 0.5rem; }
.success-msg p { color: var(--gray); font-size: 0.9rem; }

/* ─── Contact section (inline on home page) ───────── */
#contact { padding: 7rem 0; background: var(--surface); }
.contact-section-header { margin-bottom: 4rem; }
.contact-section-header h2 { font-size: clamp(2rem,4vw,3.25rem); color: var(--cream); margin: 1rem 0 0.75rem; }
.contact-section-sub { color: var(--gray); font-size: 1rem; max-width: 480px; }

/* ─── Floating buttons ─────────────────────────────── */
.float-btns {
  position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 0.6rem;
}
.float-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(13,17,23,0.85); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.float-btn:hover {
  background: var(--white); color: var(--black); border-color: var(--white);
  transform: scale(1.08);
}

/* ─── Cookie bar ───────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1rem 2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  transition: transform 0.4s ease;
}
.cookie-bar.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-bar p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; margin: 0; }
.cookie-accept {
  flex-shrink: 0; padding: 0.5rem 1.5rem;
  background: var(--white); color: var(--black);
  border: none; cursor: pointer;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--cream); }

/* ─── Practice Areas page ──────────────────────────── */
.pa-hero { padding: 8rem 0 5rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.pa-hero h1 { font-size: clamp(2.5rem,5vw,4rem); color: var(--cream); margin: 1rem 0; max-width: 18ch; }
.pa-hero p { color: var(--gray); font-size: 1.05rem; max-width: 640px; line-height: 1.7; }
.pa-hero .pa-intro { margin-top: 1.5rem; font-size: 0.92rem; color: var(--muted); max-width: 600px; line-height: 1.8; }
.pa-body { padding: 5rem 0; }
.pa-area {
  padding: 4rem 0; border-bottom: 1px solid var(--border);
  max-width: 860px;
}
.pa-area:last-child { border-bottom: none; }
.pa-area-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.pa-area h2 { font-size: 1.5rem; color: var(--cream); margin-bottom: 1rem; }
.pa-area p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.pa-area ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.pa-area ul li { font-size: 0.88rem; color: var(--muted); padding-left: 1.25rem; position: relative; }
.pa-area ul li::before { content: '—'; position: absolute; left: 0; color: var(--border); }
.pa-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.35rem 2.5rem; margin-bottom: 1.75rem;
}
.pa-cta-link {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); font-weight: 500;
  border-bottom: 1px solid rgba(240,237,230,0.3); padding-bottom: 1px;
  transition: border-color 0.2s;
}
.pa-cta-link:hover { border-color: var(--cream); }

/* ─── About page ───────────────────────────────────── */
.about-page-hero { padding: 8rem 0 5rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.about-page-hero h1 { font-size: clamp(2.5rem,5vw,4rem); color: var(--cream); margin: 1rem 0 1rem; }
.about-page-hero p { color: var(--gray); font-size: 1.05rem; max-width: 540px; line-height: 1.7; }

.attorneys { padding: 7rem 0; background: var(--black); }
.attorneys-header { max-width: 640px; margin-bottom: 4rem; }
.attorneys-header h2 { font-size: clamp(2rem,4vw,3.25rem); color: var(--cream); margin-bottom: 1rem; }
.attorneys-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

.attorney-card {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 5rem; align-items: start;
  border-top: 1px solid var(--border); padding-top: 4rem;
}
.attorney-photo-wrap { position: sticky; top: 100px; }
.attorney-photo-placeholder {
  width: 100%; aspect-ratio: 3 / 4;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--border);
}
.attorney-name { font-size: clamp(1.5rem,3vw,2.25rem); color: var(--cream); margin-bottom: 0.4rem; }
.attorney-title {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 2.5rem;
}
.attorney-section { margin-bottom: 2rem; }
.attorney-section-label {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); font-weight: 500; margin-bottom: 0.75rem;
}
.attorney-section p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; }
.attorney-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.attorney-section ul li {
  font-size: 0.88rem; color: var(--muted);
  padding-left: 1.25rem; position: relative; line-height: 1.6;
}
.attorney-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--border); }
.attorney-jurisdictions {
  display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.jurisdiction-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; font-weight: 500;
}

/* ─── Placeholder pages (Courses, Careers) ──────────── */
.placeholder-hero { padding: 8rem 0 5rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.placeholder-hero h1 { font-size: clamp(2.5rem,5vw,4rem); color: var(--cream); margin: 1rem 0 1rem; }
.placeholder-hero p { color: var(--gray); font-size: 1.05rem; max-width: 540px; line-height: 1.7; }
.placeholder-body { padding: 7rem 0; text-align: center; }
.placeholder-body p { color: var(--muted); font-size: 0.9rem; }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .attorney-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .attorney-photo-wrap { position: static; }
  .attorney-photo-placeholder { aspect-ratio: 4 / 3; max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-header p { text-align: left; }
  .ai-inner { flex-direction: column; }
}
@media (max-width: 900px) {
  .pa-area { grid-template-columns: 1fr; gap: 1.5rem; }
  .pa-area-num { font-size: 2.5rem; }
  .pa-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .hamburger { display: flex; }
  nav { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .float-btns { right: 0.75rem; }
  .cookie-bar { padding: 1rem; }
}
