/* =========================================================
   Advocate Aseem Shrivastava — Homepage styles
   Mobile-first. Tokens first, components after.
   ========================================================= */

:root {
  /* type */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Menlo, Consolas, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  --leading-tight: 1.08;
  --leading-snug: 1.28;
  --leading-body: 1.65;
  --track-wide: 0.12em;

  /* colour */
  --navy-900: #0f1b2d;
  --navy-800: #14223a;
  --navy-700: #1f3150;
  --navy-600: #2d4468;
  --charcoal: #22272e;
  --ink: #161b22;
  --body: #454d58;
  --muted: #6e7681;
  --line: #e2ddd5;
  --line-strong: #cbc4b8;
  --paper: #f6f3ee;
  --white: #ffffff;

  --accent: #9a5a33;        /* warm clay, used sparingly */
  --accent-dark: #7d4726;
  --accent-soft: #d6a47f;   /* accent on navy */
  --on-deep: #c9d2df;
  --on-deep-muted: #8e9bb0;
  --on-deep-line: #2b3d5c;

  --focus: #2f6fb3;

  /* space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* shape */
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(15, 27, 45, 0.18);

  /* layout */
  --w-content: 1180px;
  --gutter: 16px;
  --header-h: 68px;
  --measure: 62ch;
}

/* ---------- base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 60px; /* room for mobile call bar */
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 100;
  background: var(--navy-800); color: var(--white);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-md);
}
.skip-link:focus { top: var(--space-3); color: var(--white); }

.container {
  width: 100%;
  max-width: calc(var(--w-content) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-on-deep { color: var(--accent-soft); }

.section-title {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-intro { max-width: var(--measure); color: var(--body); }
.lead {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--ink);
}
.rule {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--accent);
}

.stars {
  color: #c9822e;
  letter-spacing: 0.08em;
  line-height: 1;
}

.icon { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 46px;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-lg { min-height: 52px; padding: var(--space-3) var(--space-6); font-size: var(--text-base); }

.btn-primary { background-color: var(--navy-800); color: var(--white); }
.btn-primary:hover { background-color: var(--navy-900); color: var(--white); }

.btn-outline { background-color: transparent; color: var(--navy-800); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy-800); color: var(--navy-900); }

.btn-light { background-color: var(--white); color: var(--navy-800); }
.btn-light:hover { background-color: var(--paper); color: var(--navy-900); }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
  min-width: 0;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background-color: var(--navy-800);
  border-radius: var(--radius-sm);
  border-bottom: 3px solid var(--accent);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex: none;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.menu-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-3) var(--gutter) var(--space-5);
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: flex; }
.nav-list { display: flex; flex-direction: column; }
.nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.nav-link:hover { color: var(--navy-900); text-decoration: none; }
.nav-link.is-active { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  padding: var(--space-7) 0 var(--space-8);
  background-color: var(--white);
}
.hero-grid {
  display: grid;
  gap: var(--space-7);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.hero-title {
  font-family: var(--font-head);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.hero-name {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--navy-700);
  margin-top: calc(var(--space-2) * -1);
}
.hero-facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.hero-facts li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--charcoal);
  font-weight: 500;
}
.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background-color: var(--accent);
}

.hero-rating {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-4);
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.hero-rating:hover { text-decoration: none; border-color: var(--line-strong); border-left-color: var(--accent); color: var(--ink); }
.hero-rating-score {
  font-family: var(--font-head);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1;
}
.hero-rating-meta { display: flex; flex-direction: column; gap: var(--space-1); }
.hero-rating-meta .stars { font-size: var(--text-lg); }
.hero-rating-count { font-size: var(--text-sm); font-weight: 500; color: var(--body); }

.hero-figure {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-4) 0;
}
.hero-figure::before {
  content: "";
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  right: 0;
  bottom: 0;
  background-color: var(--navy-800);
  border-radius: var(--radius-sm);
}
.hero-photo {
  position: relative;
  border: 1px solid var(--line-strong);
  background-color: var(--paper);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero-caption {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  background-color: var(--white);
  border: 1px solid var(--line-strong);
  border-top: 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
}

/* ---------- fact strip ---------- */
.facts {
  background-color: var(--charcoal);
  color: var(--white);
}
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-5) var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fact:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); padding-left: 0; }
.fact:nth-child(n+3) { border-bottom: 0; }
.fact-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: #9aa3ad;
}
.fact-value {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.25;
}
.fact-star { color: var(--accent-soft); }

/* ---------- sections ---------- */
.section { padding: var(--space-8) 0; }
.section-paper { background-color: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-deep { background-color: var(--navy-800); color: var(--on-deep); }
.section-deep .section-title { color: var(--white); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
  margin-bottom: var(--space-7);
}

/* about split */
.split { display: grid; gap: var(--space-6); }
.split-head { display: flex; flex-direction: column; gap: var(--space-3); }
.split-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: var(--measure);
}

/* ---------- practice areas ---------- */
.practice-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-strong);
}
.practice-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: var(--space-3);
  row-gap: var(--space-1);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line);
}
.practice-num {
  grid-row: span 2;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent);
  padding-top: 4px;
}
.practice-name {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  font-weight: 600;
  color: var(--ink);
}
.practice-item p { font-size: var(--text-sm); color: var(--body); }

.practice-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding: var(--space-5);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.practice-cta p { font-family: var(--font-head); font-size: var(--text-lg); color: var(--ink); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; gap: var(--space-7); }
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}
.score {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--white);
}
.score-num {
  font-family: var(--font-head);
  font-size: 5.5rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.score-out {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  color: var(--on-deep-muted);
}
.stars-lg { font-size: var(--text-2xl); color: #e0a24a; }
.score-count {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
  padding-bottom: var(--space-3);
}

.review-list { display: grid; gap: var(--space-4); }
.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--accent);
  color: var(--body);
}
.stars-sm { font-size: var(--text-base); color: #c9822e; }
.review-quote p {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink);
}
.review-by {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
}
.review-name { font-weight: 600; color: var(--charcoal); }
.review-src {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- profile ---------- */
.profile {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
.profile-photo {
  max-width: 220px;
  border: 1px solid var(--line-strong);
  padding: var(--space-2);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}
.profile-photo img { aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 20%; width: 100%; }
.profile-body { display: flex; flex-direction: column; gap: var(--space-3); }
.profile-list {
  margin-top: var(--space-4);
  border-top: 1px solid var(--ink);
}
.profile-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
}
.profile-row dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--muted);
}
.profile-row dd {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  color: var(--ink);
}

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: var(--space-7); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-line {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line-strong);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink);
}
.contact-phone { font-size: var(--text-2xl); font-weight: 600; color: var(--navy-800); }
.contact-phone:hover { color: var(--accent); }

.map-frame {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-color: var(--white);
  border: 1px solid var(--line-strong);
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- footer ---------- */
.site-footer {
  background-color: var(--navy-900);
  color: var(--on-deep);
  padding: var(--space-8) 0 var(--space-5);
}
.footer-grid { display: grid; gap: var(--space-6); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-name {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
}
.footer-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--accent-soft);
}
.footer-text { font-size: var(--text-sm); color: var(--on-deep); max-width: 34ch; }
.footer-nav { display: flex; flex-direction: column; gap: var(--space-1); }
.footer-link { color: var(--on-deep); font-size: var(--text-sm); }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--on-deep-line);
  font-size: var(--text-xs);
  color: var(--on-deep-muted);
}

/* ---------- mobile call bar ---------- */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 56px;
  padding-bottom: env(safe-area-inset-bottom);
  background-color: var(--navy-800);
  color: var(--white);
  font-weight: 600;
  border-top: 2px solid var(--accent);
}
.call-bar:hover { color: var(--white); text-decoration: none; background-color: var(--navy-900); }

/* =========================================================
   ≥ 600px
   ========================================================= */
@media (min-width: 600px) {
  :root { --gutter: 24px; }

  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .hero-caption { flex-direction: row; justify-content: space-between; gap: var(--space-3); }
  .hero-title { font-size: var(--text-5xl); }

  .facts-grid { grid-template-columns: repeat(4, 1fr); }
  .fact,
  .fact:nth-child(odd) {
    padding: var(--space-6) var(--space-5);
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .fact:first-child { padding-left: 0; }
  .fact:last-child { border-right: 0; }

  .practice-list { grid-template-columns: 1fr 1fr; column-gap: var(--space-7); }

  .practice-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: var(--space-5) var(--space-6); }

  .review-list { grid-template-columns: 1fr 1fr; }
  .review:first-child { grid-column: 1 / -1; }

  .profile { grid-template-columns: 220px 1fr; gap: var(--space-7); }
  .profile-row { grid-template-columns: 180px 1fr; align-items: baseline; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; gap: var(--space-5); }
}

/* =========================================================
   ≥ 960px  (desktop nav, two-column layouts)
   ========================================================= */
@media (min-width: 960px) {
  :root { --gutter: 40px; --header-h: 80px; }

  body { padding-bottom: 0; }
  .call-bar { display: none; }

  .brand-mark { width: 44px; height: 44px; font-size: var(--text-lg); }
  .brand-name { font-size: var(--text-lg); }

  .menu-toggle { display: none; }
  .site-nav,
  .site-nav.is-open {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
    margin-left: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-list { flex-direction: row; gap: var(--space-5); }
  .nav-link {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover { border-bottom-color: var(--line-strong); }
  .nav-link.is-active { color: var(--navy-900); border-bottom-color: var(--accent); }
  .nav-cta { min-height: 42px; padding: var(--space-2) var(--space-5); }

  .section { padding: var(--space-9) 0; }
  .section-title { font-size: var(--text-3xl); }

  .hero { padding: var(--space-9) 0 var(--space-10); }
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: center;
    gap: var(--space-9);
  }
  .hero-title { font-size: 4rem; }
  .hero-name { font-size: var(--text-2xl); }
  .hero-facts { flex-direction: row; flex-wrap: wrap; gap: var(--space-2) var(--space-6); }
  .hero-figure { margin: 0 0 0 auto; }

  .split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-9); }

  .practice-list { grid-template-columns: repeat(3, 1fr); column-gap: var(--space-7); }
  .practice-item { grid-template-columns: 1fr; padding: var(--space-6) 0; }
  .practice-num { grid-row: auto; padding-top: 0; }

  .reviews-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr); gap: var(--space-9); align-items: start; }
  .reviews-summary { position: sticky; top: calc(var(--header-h) + var(--space-6)); }
  .score-num { font-size: 7.5rem; }
  .review { padding: var(--space-6); }

  .profile { grid-template-columns: 280px 1fr; gap: var(--space-9); }
  .profile-photo { max-width: 280px; }

  .contact-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-8); align-items: stretch; }
  .map-frame, .map-frame iframe { min-height: 440px; }

  .footer-grid { grid-template-columns: 1.3fr 1.3fr 0.8fr 0.8fr; gap: var(--space-7); }
}
