/* ============================================================
   Kamhi & Associates — Redesigned Stylesheet
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --slate:          #111827;
  --slate-mid:      #1a2535;
  --off-white:      #F8F6F2;
  --white:          #FFFFFF;
  --grey-mid:       #6B7280;
  --grey-light:     #E5E7EB;
  --grey-subtle:    #F3F4F6;
  --gold:           #B8963E;
  --gold-light:     #CFA94E;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:    1200px;
  --pad-x:    clamp(20px, 5vw, 48px);
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--slate);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p  { max-width: 65ch; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.lead { font-size: 1.15rem; color: var(--grey-mid); line-height: 1.85; }

/* --- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--white { background: var(--white); }

/* --- Scroll Reveal ---------------------------------------- */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-loaded .reveal.is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
[data-delay="5"] { transition-delay: 400ms; }

/* --- Navigation ------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo .amp { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

/* Hero-page: nav is transparent, so text goes white */
.hero-page .site-nav:not(.scrolled) .nav-logo,
.hero-page .site-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
.hero-page .site-nav:not(.scrolled) .nav-links a:hover { color: var(--gold-light); }
.hero-page .site-nav:not(.scrolled) .nav-toggle span { background: rgba(255,255,255,0.8); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--slate);
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,62,0.28);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.btn--outline:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: rgba(249,247,244,0.75);
  border-color: rgba(249,247,244,0.25);
}
.btn--outline-light:hover {
  border-color: rgba(249,247,244,0.65);
  color: var(--white);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Hero ------------------------------------------------- */
.hero {
  min-height: 100vh;
  background-color: var(--slate);
  background-image:
    linear-gradient(to bottom, rgba(17,24,37,0.55) 0%, rgba(17,24,37,0.88) 100%),
    url('https://images.unsplash.com/photo-1543811547-2fc2bd7b64e9?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

/* Subtle noise texture */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Warm radial glow */
.hero-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 20% 0%, rgba(184,150,62,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Large decorative "&" */
.hero-deco {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(220px, 28vw, 500px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,150,62,0.11);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 180px;
}
.hero-content h1 { color: var(--white); margin-bottom: 28px; }
.hero-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-content .lead { color: rgba(248,246,242,0.58); font-size: 1.2rem; margin-bottom: 52px; max-width: 50ch; }

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 72px;
  padding-top: 44px;
}
.hero-stat {
  flex: 1;
  padding-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 36px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-value em { font-style: normal; color: var(--gold-light); }
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.38);
  font-weight: 600;
}

/* --- Overview --------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 96px;
  align-items: start;
}
.overview-left {}
.overview-bignum {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.9;
  color: var(--grey-light);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0;
  user-select: none;
}
.overview-right p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.overview-right p:last-of-type { margin-bottom: 0; }

/* --- Practice Cards (Home) -------------------------------- */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey-light);
}
.practice-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.practice-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 0.5s var(--ease);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card:hover { background: var(--off-white); }
.card-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--grey-light);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  transition: color 0.35s;
  display: block;
  user-select: none;
}
.practice-card:hover .card-num { color: rgba(184,150,62,0.2); }
.practice-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.practice-card p { color: var(--grey-mid); font-size: 0.94rem; line-height: 1.8; margin-bottom: 36px; max-width: 44ch; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 18px; }

/* --- Associate Strip -------------------------------------- */
.associate-strip {
  background: var(--slate);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.associate-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.associate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 72px;
  align-items: center;
}
.associate-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.associate-inner p { color: rgba(248,246,242,0.58); font-size: 1rem; line-height: 1.8; }

/* --- Page Header ------------------------------------------ */
.page-header {
  padding: 180px 0 96px;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.page-header-glow {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(184,150,62,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 20px; }
.page-header p { color: rgba(248,246,242,0.5); font-size: 1.15rem; max-width: 52ch; }

/* --- Photo Divider ---------------------------------------- */
.photo-divider {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}
.photo-divider blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  font-style: italic;
  max-width: 760px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}
.photo-divider cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.5);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .photo-divider { background-attachment: scroll; min-height: 260px; }
}

/* --- Bio -------------------------------------------------- */
.bio-block {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-light);
}
.bio-block:first-child { padding-top: 0; }
.bio-block:last-child { border-bottom: none; }

.bio-photo { position: relative; }
.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--grey-subtle) 0%, var(--grey-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-mid);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bio-photo-placeholder svg { opacity: 0.3; }
.bio-photo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: -1;
  transition: opacity 0.3s;
}
.bio-photo:hover::after { opacity: 0.4; }

.bio-meta { margin-bottom: 32px; }
.bio-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.bio-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.bio-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.bio-text p {
  color: var(--grey-mid);
  line-height: 1.88;
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.bio-text p:last-of-type { margin-bottom: 0; }
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.expertise-tags span {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}
.expertise-tags span:hover { border-color: var(--gold); background: var(--white); }

/* Associate model panel */
.associate-panel {
  background: var(--slate);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.associate-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.associate-panel .container { position: relative; z-index: 1; }
.associate-panel-inner { max-width: 700px; }
.associate-panel h2 { color: var(--white); margin-bottom: 28px; }
.associate-panel p { color: rgba(248,246,242,0.58); line-height: 1.85; margin-bottom: 18px; }
.associate-panel p:last-of-type { margin-bottom: 36px; }

/* --- Services --------------------------------------------- */
.services-page-intro { max-width: 640px; margin-bottom: 88px; }

.practice-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-light);
}
.practice-block:last-child { border-bottom: none; }
.practice-block-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: start;
}
.practice-block-header h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.practice-block-header p {
  color: var(--grey-mid);
  font-size: 0.97rem;
  line-height: 1.82;
  padding-top: 8px;
}

.services-list {}
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 1.6fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--grey-light);
  align-items: start;
  cursor: default;
  transition: background 0.25s, padding 0.25s;
  border-radius: 2px;
}
.service-row:hover {
  background: var(--white);
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 -24px;
}
.service-num {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 3px;
  font-weight: 400;
}
.service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate);
  padding-top: 3px;
  line-height: 1.4;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* --- Contact ---------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 104px;
  align-items: start;
}
.form-group { margin-bottom: 32px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--slate);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--grey-light);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: none; }

.contact-aside { padding-top: 56px; }
.contact-aside-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-light);
}
.contact-aside-block:last-child { border-bottom: none; margin-bottom: 0; }
.contact-aside-block .eyebrow { margin-bottom: 12px; }
.contact-aside-block p { font-size: 0.94rem; color: var(--grey-mid); line-height: 1.75; }
.contact-email {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 10px;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-email:hover { color: var(--gold); }
.response-note { font-size: 0.82rem; color: var(--grey-mid); font-style: italic; margin-top: 10px !important; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 20px 24px;
  border-radius: 2px;
  font-size: 0.95rem;
  margin-top: 24px;
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: var(--slate);
  padding: 88px 0 44px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 72px;
  margin-bottom: 72px;
}
.footer-brand .nav-logo { color: var(--white); display: block; font-size: 1.1rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; color: rgba(248,246,242,0.38); max-width: 26ch; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.87rem; color: rgba(248,246,242,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.77rem; color: rgba(248,246,242,0.25); max-width: none; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .overview-bignum { font-size: 5rem; }
  .associate-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .associate-inner > .btn-group { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-aside { padding-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .service-row { grid-template-columns: 64px 1fr; }
  .service-desc { grid-column: 2; }
  .practice-block-header { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .practice-grid { grid-template-columns: 1fr; }
  .associate-inner { grid-template-columns: 1fr; gap: 32px; }
  .bio-block { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .bio-photo { max-width: 220px; }
  .bio-photo::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-row { grid-template-columns: 1fr; gap: 6px; }
  .service-row:hover { margin: 0; padding-left: 0; padding-right: 0; background: transparent; }
  .service-num { font-size: 0.75rem; }
  .associate-panel { padding: 52px 32px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 24px; margin: 0; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-deco { display: none; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-top: 140px; }
  .practice-card { padding: 40px 28px; }
}
