/* ============================================================
   SITE.CSS — Kamkhadze PA Shared Design System
   Used by: about.html, employment.html, family.html,
            blog.html, press.html
   Design tokens match web-preview/index.html exactly.
============================================================ */

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

/* ── TOKENS ────────────────────────────── */
:root {
  --bg:          #FAFAF7;
  --bg-alt:      #F2F2EE;
  --white:       #ffffff;
  --fg:          #1A1A1A;
  --fg-mid:      #444440;
  --fg-dim:      rgba(26,26,26,0.52);
  --accent:      #A8C8E8;
  --accent-dark: #6AAAD6;
  --accent-pale: rgba(168,200,232,0.14);
  --border:      rgba(26,26,26,0.09);
  --border-med:  rgba(26,26,26,0.14);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --radius:      10px;
  --radius-lg:   16px;
}

/* ── BASE ──────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-up, .animate-fade { opacity: 1 !important; transform: none !important; }
}

/* ── DYNAMIC ISLAND NAV ────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition:
    top 0.38s cubic-bezier(0.4,0,0.2,1),
    left 0.38s cubic-bezier(0.4,0,0.2,1),
    right 0.38s cubic-bezier(0.4,0,0.2,1),
    height 0.38s cubic-bezier(0.4,0,0.2,1),
    border-radius 0.38s cubic-bezier(0.4,0,0.2,1),
    background 0.38s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.38s cubic-bezier(0.4,0,0.2,1),
    padding 0.38s cubic-bezier(0.4,0,0.2,1);
}
.nav.at-top-scrolled {
  background: rgba(250,250,247,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav.island {
  top: 12px; left: 3%; right: 3%;
  height: 58px;
  border-radius: 60px;
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.07);
  padding: 0 28px;
}
/* Dark-hero variant: white text when nav is transparent over dark hero */
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-links a { color: rgba(255,255,255,0.72); }
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-name-text { color: #fff; }
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-name-text small { color: rgba(255,255,255,0.42); }
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-mark { background: rgba(255,255,255,0.18); }
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-cta {
  background: rgba(168,200,232,0.22) !important;
  color: #fff !important;
  border-color: rgba(168,200,232,0.45) !important;
}
.dark-hero .nav:not(.at-top-scrolled):not(.island) .nav-toggle span { background: #fff; }

.nav-logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-mark {
  width: 34px; height: 34px;
  background: var(--fg);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; flex-shrink: 0;
  transition: background 0.3s;
}
.nav-name-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--fg); letter-spacing: 0.02em; line-height: 1.1;
  transition: color 0.3s;
}
.nav-name-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); margin-top: 2px;
  transition: color 0.3s;
}
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mid);
  padding: 6px 10px; border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--fg); background: var(--accent-pale); }
.nav-links a.active { color: var(--fg); font-weight: 600; }
.nav-cta {
  background: var(--fg) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: #333 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
}
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: -16px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease; z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 9px 18px;
  font-size: 0.78rem; letter-spacing: 0.02em;
  color: var(--fg-mid); text-transform: none;
  background: transparent !important; border-radius: 0;
}
.nav-dropdown a:hover { color: var(--fg); background: var(--bg) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ────────────── */
.page-hero {
  background: var(--fg);
  color: var(--white);
  padding: 136px 8% 80px;
  text-align: center;
}
.page-hero-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.page-hero-label::before, .page-hero-label::after {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--accent-dark);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  font-weight: 400; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; }
.page-hero > p {
  font-size: 1rem; color: rgba(255,255,255,0.58);
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px; border: 2px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              background 0.22s, border-color 0.22s, color 0.22s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0D1B2A; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 8px 28px rgba(106,170,214,0.40); }
.btn-secondary { background: transparent; color: var(--fg); border-color: var(--border-med); }
.btn-secondary:hover { border-color: var(--fg); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--fg); color: var(--white); border-color: var(--fg); }
.btn-dark:hover { background: #333; border-color: #333; box-shadow: 0 8px 28px rgba(0,0,0,0.20); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

/* ── SECTIONS ───────────────────────────── */
.section { padding: 96px 8%; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--white); }
.section-dark { background: var(--fg); color: var(--white); }

.section-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--accent-dark); border-radius: 2px;
}
.section-dark .section-label { color: rgba(255,255,255,0.42); }
.section-dark .section-label::before { background: var(--accent); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.01em; color: var(--fg);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-dark .section-title { color: var(--white); }
.section-body {
  font-size: 1rem; color: var(--fg-mid);
  line-height: 1.78; max-width: 600px; margin-bottom: 48px;
}
.section-dark .section-body { color: rgba(255,255,255,0.60); }

/* ── SCROLL ANIMATIONS ──────────────────── */
.animate-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.animate-fade {
  opacity: 0;
  transition: opacity 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.animate-up.visible, .animate-fade.visible { opacity: 1; transform: translateY(0); }

/* ── VISA / CATEGORY TAG ────────────────── */
.visa-tag {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(168,200,232,0.4);
}
.visa-tag-dark {
  background: rgba(168,200,232,0.18);
  color: var(--accent);
  border-color: rgba(168,200,232,0.35);
}

/* ── ABOUT PAGE ─────────────────────────── */
.about-bio-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 72px; align-items: start;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-image::before {
  content: '';
  position: absolute; top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-image-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.88);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.about-image-bar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--white); margin-bottom: 2px;
}
.about-image-bar p { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 500; color: var(--fg); margin-bottom: 4px;
}
.about-content h3 {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--fg-dim);
  text-transform: uppercase; margin-bottom: 24px;
}
.about-content p {
  font-size: 0.96rem; color: var(--fg-mid);
  line-height: 1.82; margin-bottom: 16px;
}
.credentials-list { margin-top: 36px; border-top: 1px solid var(--border); }
.credential-row {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 20px; padding: 16px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.credential-row-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-dim); padding-top: 2px;
}
.credential-row-value { font-size: 0.9rem; color: var(--fg); line-height: 1.65; }

/* Awards grid */
.awards-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 40px;
}
.award-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.award-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.award-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--fg); line-height: 1.3; margin-bottom: 12px;
}
.award-badge-org {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim);
}
.award-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--accent-dark);
}

/* Philosophy */
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic; font-weight: 400;
  color: var(--fg); line-height: 1.65; margin-bottom: 28px;
}
.philosophy-body {
  font-size: 1rem; color: var(--fg-mid);
  line-height: 1.82; max-width: 640px; margin: 0 auto;
}

/* ── EMPLOYMENT PAGE ────────────────────── */
.intro-callout {
  background: rgba(26,26,26,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 8%;
}
.intro-callout p {
  font-size: 0.92rem; color: var(--fg-mid);
  line-height: 1.88; max-width: 820px;
  margin: 0 auto; text-align: center;
}
.intro-callout strong { color: var(--fg); font-weight: 600; }
.intro-callout a { color: var(--accent-dark); text-decoration: none; }

/* Featured practice cards (dark) */
.practice-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.practice-card-featured {
  background: var(--fg);
  border-radius: var(--radius-lg);
  padding: 44px 40px; color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.practice-card-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.practice-card-featured h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500; line-height: 1.18;
  color: var(--white); margin-bottom: 14px;
}
.practice-card-featured > p {
  font-size: 0.92rem; color: rgba(255,255,255,0.64);
  line-height: 1.82; margin-bottom: 0;
}
.process-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
  line-height: 1.75; margin-top: 20px;
}

/* Who qualifies (light bg) */
.who-qualifies {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px 20px; margin-top: 18px;
}
.who-qualifies-title {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 10px;
}
.who-qualifies ul {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.who-qualifies ul li {
  font-size: 0.82rem; color: var(--fg-mid);
  padding-left: 14px; position: relative;
}
.who-qualifies ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent-dark); font-size: 0.72rem;
}
/* Who qualifies dark variant (inside dark cards) */
.who-qualifies-dark {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 18px 20px; margin-top: 18px;
}
.who-qualifies-dark .who-qualifies-title { color: rgba(255,255,255,0.40); }
.who-qualifies-dark ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.who-qualifies-dark ul li { font-size: 0.82rem; color: rgba(255,255,255,0.68); padding-left: 14px; position: relative; }
.who-qualifies-dark ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.72rem; }

/* Practice cards (light) */
.practice-all {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.practice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.practice-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--fg); margin-bottom: 10px; line-height: 1.2;
}
.practice-card > p {
  font-size: 0.88rem; color: var(--fg-mid); line-height: 1.75;
}

/* FAQ */
.faq-list { border-top: 1px solid var(--border); margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0;
  font-size: 0.95rem; font-weight: 500; color: var(--fg);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--accent-dark); flex-shrink: 0;
  transition: transform 0.22s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p, .faq-item[open] > p {
  padding-bottom: 20px;
  font-size: 0.92rem; color: var(--fg-mid); line-height: 1.80;
}
.faq-item[open] > p a { color: var(--accent-dark); }

/* Representative matters */
.matters-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.matter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.matter-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.matter-tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 12px;
}
.matter-card p { font-size: 0.88rem; color: var(--fg-mid); line-height: 1.78; }

/* ── FAMILY PAGE ─────────────────────────── */
.family-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.family-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.family-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.family-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--fg); margin-bottom: 14px; line-height: 1.2;
}
.family-card > p {
  font-size: 0.9rem; color: var(--fg-mid); line-height: 1.78;
}

/* ── BLOG PAGE ───────────────────────────── */
.blog-featured-post {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 40px;
}
.blog-featured-left {
  display: block; text-decoration: none;
  background: var(--fg); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-featured-left:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-tag {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.blog-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500; line-height: 1.15;
  color: var(--white); margin-bottom: 16px;
}
.blog-featured-excerpt {
  font-size: 0.9rem; color: rgba(255,255,255,0.64);
  line-height: 1.80; margin-bottom: 24px;
}
.blog-read-more {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 6px;
  transition: gap 0.18s;
}
.blog-featured-left:hover .blog-read-more { gap: 10px; }
.blog-featured-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.blog-toc-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 16px;
}
.blog-toc { display: flex; flex-direction: column; }
.blog-toc-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--fg-mid); line-height: 1.5;
}
.blog-toc-item:last-child { border-bottom: none; }
.blog-card-meta { font-size: 0.72rem; color: var(--fg-dim); }

/* Article cards (shared by blog + press) */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.press-card {
  display: block; text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.press-card-outlet {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 4px;
}
.press-card-type {
  font-size: 0.7rem; font-weight: 400;
  color: var(--fg-dim); letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.press-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--fg); line-height: 1.3; margin-bottom: 10px;
}
.press-card-desc {
  font-size: 0.82rem; color: var(--fg-mid);
  line-height: 1.68; margin-bottom: 18px;
}
.press-card-arrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-dim); transition: color 0.18s;
}
.press-card:hover .press-card-arrow { color: var(--accent-dark); }

/* ── PRESS PAGE — AS SEEN IN STRIP ──────── */
.as-seen-in {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 8%;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.as-seen-in-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-dim); white-space: nowrap; flex-shrink: 0;
}
.as-seen-in-strip {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 4px;
}
.as-seen-in-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--fg-mid); letter-spacing: 0.02em;
  padding: 4px 8px;
}
.as-seen-in-sep { color: var(--accent); font-size: 0.8rem; }

/* ── CTA BAND ────────────────────────────── */
.cta-section, .cta-band {
  background: var(--fg);
  color: var(--white);
  padding: 96px 8%;
  text-align: center;
}
.cta-section h2, .cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400; line-height: 1.12;
  color: var(--white); margin-bottom: 32px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.cta-section h2 em, .cta-band h2 em { font-style: italic; font-weight: 400; }
.cta-section p, .cta-band p {
  font-size: 1rem; color: rgba(255,255,255,0.60);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.75;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--bg-alt);
  padding: 72px 8% 40px;
  border-top: 1px solid var(--border);
}
.footer-top, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--fg); margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 14px;
}
.footer-brand-desc, .footer-desc {
  font-size: 0.82rem; color: var(--fg-dim); line-height: 1.78;
}
.footer-col-title {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  text-decoration: none;
  font-size: 0.82rem; color: var(--fg-dim);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copy, .footer-bottom span:first-child { font-size: 0.72rem; color: var(--fg-dim); }
.footer-bottom span:last-child { font-size: 0.72rem; color: rgba(26,26,26,0.30); }
.footer-disclaimer {
  font-size: 0.65rem; color: rgba(26,26,26,0.28);
  margin-top: 16px; line-height: 1.6;
}

/* ── CONTACT PAGE ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  background: var(--white);
  border: 1.5px solid var(--border-med);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--fg-dim); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(168,200,232,0.22);
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23444440' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:first-of-type { border-top: 1px solid var(--border); margin-top: 8px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--accent-pale);
  border: 1px solid rgba(168,200,232,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-dark);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 4px;
}
.contact-info-value { font-size: 0.92rem; color: var(--fg); line-height: 1.6; }
.contact-info-value a { text-decoration: none; color: inherit; transition: color 0.18s; }
.contact-info-value a:hover { color: var(--accent-dark); }
.video-note {
  background: var(--accent-pale);
  border-left: 3px solid var(--accent-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-top: 24px;
}
.video-note p { font-size: 0.85rem; color: var(--fg-mid); line-height: 1.78; }
.video-note strong { color: var(--fg); font-weight: 600; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .awards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top, .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    padding: 16px 5% 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999; gap: 2px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 10px 0; font-size: 0.88rem; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; padding: 0 0 0 12px;
    background: transparent;
  }
  .nav.island { left: 2%; right: 2%; padding: 0 18px; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-image::before { display: none; }
  .practice-featured { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .blog-featured-post { grid-template-columns: 1fr; }
  .matters-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 5%; }
  .page-hero { padding: 110px 5% 60px; }
  .practice-all { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .footer-top, .footer-grid { grid-template-columns: 1fr; }
  .credential-row { grid-template-columns: 1fr; gap: 4px; }
  .awards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .blog-featured-post { grid-template-columns: 1fr; }
  .who-qualifies ul, .who-qualifies-dark ul { grid-template-columns: 1fr; }
}
