/* ================================================================
   Mlonzi Incorporated Attorneys — Static stylesheet
   Runtime-free. All layout, typography, spacing, and responsive
   behaviour lives here — no support.js or image-slot.js needed.
   ================================================================ */

*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Archivo', Helvetica, sans-serif;
  color: #212428;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #a98d73; text-decoration: none; }
a:hover { color: #c4ab92; }

.page { min-height: 100vh; }
.page-light { background: #ffffff; }
.page-dark  { background: #212428; }

.wrap { max-width: 1280px; margin: 0 auto; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 112px;
  background: rgba(33,36,40,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(169,141,115,0.25);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 96px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  color: #ffffff; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: color .2s;
}
.nav-link:hover { color: #a98d73; }
.nav-link.active { color: #a98d73; font-weight: 600; }

.nav-cta {
  color: #212428; background: #a98d73;
  padding: 12px 28px; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: #c4ab92; color: #212428; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); background:#a98d73; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background:#a98d73; }

/* ---------- Hero (home) ---------- */
.hero {
  background: #212428; color: #ffffff;
  padding: 120px 64px 0;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: end;
}
.hero-copy { padding-bottom: 120px; }
.hero-copy h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 68px; line-height: 1.08; font-weight: 500;
  margin: 0 0 28px; text-wrap: balance;
}
.hero-copy p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 44px; max-width: 540px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-image { position: relative; height: 560px; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-badge {
  position: absolute; left: 0; bottom: 0;
  background: #a98d73; color: #212428;
  padding: 24px 32px;
}
.badge-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 600; line-height: 1;
}
.badge-sub {
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; margin-top: 8px; font-weight: 500;
}

/* ---------- Eyebrow + shared ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.eyebrow .rule { width: 48px; height: 1px; background: #a98d73; }
.eyebrow span:last-child {
  color: #a98d73; font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 18px 40px; transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-gold { background: #a98d73; color: #212428; }
.btn-gold:hover { background: #c4ab92; color: #212428; }
.btn-dark { background: #212428; color: #ffffff; padding: 20px 44px; }
.btn-dark:hover { background: #33373d; color: #ffffff; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff; font-weight: 500;
}
.btn-outline:hover { border-color: #a98d73; color: #a98d73; }

.link-arrow {
  display: inline-block;
  font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  color: #a98d73; border-bottom: 1px solid #a98d73;
  padding-bottom: 6px;
}
.link-arrow:hover { color: #c4ab92; border-bottom-color: #c4ab92; }

/* ---------- Values strip ---------- */
.values-strip { background: #a98d73; padding: 20px 64px; }
.values-strip .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.values-strip span {
  color: #212428; font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
}

/* ---------- Sections ---------- */
.section-light { background: #ffffff; padding: 120px 64px; }
.section-dark  { background: #212428; padding: 120px 64px; }
.section-dark.no-top { padding-top: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.two-col.align-center { align-items: center; }

.serif-lg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 46px; line-height: 1.15; font-weight: 500;
  margin: 0; color: #212428; text-wrap: balance;
}
.serif-lg.light { color: #ffffff; max-width: 640px; }
.serif-xl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px; line-height: 1.1; font-weight: 500;
  margin: 0; max-width: 820px; text-wrap: balance; color: #ffffff;
}
.section-light .serif-xl { color: #212428; }
.lead {
  font-size: 18px; line-height: 1.8;
  color: rgba(33,36,40,0.78);
  margin: 0 0 36px; font-weight: 300;
}

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 48px; flex-wrap: wrap;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid; gap: 1px;
  background: rgba(169,141,115,0.25);
  border: 1px solid rgba(169,141,115,0.25);
}
.services-grid.two { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: #212428; padding: 44px 48px;
  display: flex; gap: 28px; align-items: flex-start;
  transition: background .2s;
  color: inherit;
}
.service-card:hover { background: #26292e; }
.service-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; color: #a98d73; font-weight: 500;
  min-width: 36px; padding-top: 4px;
}
.service-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 27px; font-weight: 500;
  margin: 0 0 14px; color: #ffffff;
}
.service-body p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0; font-weight: 300;
}

/* ---------- CTA blocks ---------- */
.cta-gold { background: #a98d73; padding: 96px 64px; }
.cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.cta-dark { background: #212428; padding: 96px 64px; }
.cta-inner-dark {
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; flex-wrap: wrap;
}

/* ---------- Page header (inner pages) ---------- */
.page-header { background: #212428; color: #ffffff; padding: 100px 64px; }
.header-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; flex-wrap: wrap;
}
.header-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 400px; margin: 0; font-weight: 300;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 80px;
}
.about-image {
  position: relative; height: 460px;
  background: #f0ece7; overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-stats {
  margin-top: 48px;
  border-top: 1px solid rgba(33,36,40,0.12);
  padding-top: 32px; display: grid; gap: 28px;
}
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px; color: #a98d73; font-weight: 600; line-height: 1;
}
.stat-label {
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(33,36,40,0.6);
  margin-top: 8px;
}
.about-body {
  font-size: 17px; line-height: 1.85;
  color: rgba(33,36,40,0.8); font-weight: 300;
}
.about-body p { margin: 0 0 24px; }
.about-body p.last { margin-bottom: 48px; }
.lead-serif {
  font-size: 22px !important; line-height: 1.7 !important;
  color: #212428 !important; font-weight: 400 !important;
}

/* ---------- Team page ---------- */
.team-list { display: grid; gap: 100px; }
.team-profile {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 72px; align-items: start;
}
.team-photo {
  position: relative; height: 500px;
  background: #f0ece7; overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.team-body {
  border-left: 2px solid #a98d73;
  padding-left: 40px;
}
.team-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 500;
  margin: 0; color: #212428;
}
.team-role {
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600; margin: 12px 0 28px;
}
.team-body p {
  font-size: 16px; line-height: 1.85;
  color: rgba(33,36,40,0.78);
  margin: 0 0 20px; font-weight: 300;
}

/* ---------- Contact page ---------- */
.contact-section { padding: 120px 64px 140px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-lead {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0 0 44px; max-width: 460px; font-weight: 300;
}
.contact-image {
  position: relative; height: 280px; margin-top: 64px;
  overflow: hidden;
}
.contact-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.contact-info { display: grid; gap: 0; align-content: start; }
.info-row {
  border-top: 1px solid rgba(169,141,115,0.3);
  padding: 28px 0;
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
}
.info-row-last { border-bottom: 1px solid rgba(169,141,115,0.3); }
.info-label {
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600; padding-top: 3px;
}
.info-body { display: grid; gap: 20px; }
.info-body div {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.85); font-weight: 300;
}
.info-sub {
  font-size: 12px !important; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5) !important;
  font-weight: 500 !important; margin-bottom: 6px;
}
.info-lines { display: grid; gap: 0; }
.info-lines a {
  color: rgba(255,255,255,0.85); font-size: 16px;
  line-height: 1.9; font-weight: 300;
}
.info-lines a:hover { color: #a98d73; }
.write-email {
  font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 300;
  display: block;
}
.write-email:hover { color: #a98d73; }
.write-site {
  font-size: 16px; color: #a98d73; font-weight: 400;
  display: block; margin-top: 6px;
}
.info-hours { padding: 40px 0 0; }
.info-hours .info-label { margin-bottom: 16px; padding-top: 0; }
.info-hours > div:last-child {
  font-size: 16px; line-height: 1.9;
  color: rgba(255,255,255,0.85); font-weight: 300;
}

/* ---------- Insights page ---------- */
.insights-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 80px;
}
.insights-sidebar { align-self: start; }
.side-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; line-height: 1.15;
  font-weight: 500; margin: 0 0 32px;
  color: #212428; text-wrap: balance;
}
.side-meta {
  border-top: 1px solid rgba(33,36,40,0.12);
  padding-top: 28px; display: grid; gap: 22px;
}
.meta-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(33,36,40,0.5);
  font-weight: 600; margin-bottom: 8px;
}
.side-meta > div > div:last-child {
  font-size: 15px; color: #212428; font-weight: 400;
}
.side-stat {
  margin-top: 40px;
  border-top: 1px solid rgba(33,36,40,0.12);
  padding-top: 32px;
}
.side-stat .stat-num { font-size: 40px; }
.side-stat .stat-label {
  font-size: 13px; letter-spacing: 0.12em;
  color: rgba(33,36,40,0.6); margin-top: 8px;
}
.citation-card {
  margin-top: 32px;
  padding: 28px;
  background: #212428; color: #ffffff;
}
.cc-label {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600; margin-bottom: 14px;
}
.cc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; line-height: 1.35;
  font-weight: 500; margin-bottom: 16px; font-style: italic;
}
.cc-cite {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.75); font-weight: 300;
}
.cc-link {
  display: inline-block; margin-top: 22px;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600;
  border-bottom: 1px solid #a98d73;
  padding-bottom: 4px;
}
.cc-link:hover { color: #c4ab92; border-bottom-color: #c4ab92; }
.side-share {
  margin-top: 32px;
  border-top: 1px solid rgba(33,36,40,0.12);
  padding-top: 32px;
}
.side-share .meta-label { margin-bottom: 14px; }
.share-links { display: flex; gap: 20px; flex-wrap: wrap; }
.share-links a {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600;
}
.share-links a:hover { color: #c4ab92; }

.insights-article {
  font-size: 17px; line-height: 1.85;
  color: rgba(33,36,40,0.8); font-weight: 300;
}
.article-lede {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; line-height: 1.55;
  color: #212428; font-weight: 400; font-style: italic;
}
.insights-article > p { margin: 0 0 24px; }
.pullquote {
  margin: 48px 0;
  padding: 32px 40px;
  border-left: 3px solid #a98d73;
  background: #f7f4f0;
}
.pullquote p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; line-height: 1.5;
  color: #212428; font-weight: 500;
}
.pq-attrib {
  margin-top: 20px;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600;
}
.article-section { margin-top: 56px; }
.article-section:first-of-type { margin-top: 48px; }
.section-heading {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.section-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; color: #a98d73; font-weight: 500;
}
.section-heading h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500;
  margin: 0; color: #212428;
}
.article-section p { margin: 0 0 24px; }
.article-section a.link-arrow { margin-top: 24px; }

.leg-grid {
  margin: 48px 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(169,141,115,0.25);
  border: 1px solid rgba(169,141,115,0.25);
}
.leg-grid > div {
  background: #ffffff; padding: 28px 32px;
}
.leg-code {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; color: #a98d73;
  font-weight: 500; margin-bottom: 6px;
}
.leg-grid > div > div:last-child {
  font-size: 15px; line-height: 1.55;
  color: #212428; font-weight: 400;
}

.case-reference {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(33,36,40,0.15);
}
.cr-box {
  background: #f7f4f0;
  padding: 44px 48px;
  border-left: 3px solid #a98d73;
}
.cr-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; line-height: 1.3;
  color: #212428; font-weight: 500;
  font-style: italic; margin-bottom: 24px;
}
.cr-rows {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 16px 32px;
  font-size: 15px; line-height: 1.65; color: #212428;
}
.cr-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(33,36,40,0.55);
  font-weight: 600; padding-top: 4px;
}
.cr-italic { font-style: italic; }
.cr-footer {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(33,36,40,0.15);
}
.cr-download {
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #a98d73;
  font-weight: 600;
  border-bottom: 1px solid #a98d73;
  padding-bottom: 4px;
}

/* ---------- Footer ---------- */
.site-footer { background: #1a1d20; padding: 48px 64px; }
.footer-wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.footer-logo { height: 88px; width: auto; opacity: 0.9; }
.copyright {
  font-size: 13px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; font-weight: 300;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: #a98d73; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; height: 96px; }
  .nav-logo img { height: 76px; }
  .nav-links { gap: 24px; }
  .nav-link, .nav-cta { font-size: 12px; letter-spacing: 0.12em; }
  .nav-cta { padding: 10px 22px; }

  .hero { padding: 96px 32px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { padding-bottom: 64px; }
  .hero-copy h1 { font-size: 52px; }
  .hero-image { height: 400px; }

  .page-header { padding: 80px 32px; }
  .serif-xl { font-size: 48px; }

  .section-light, .section-dark { padding: 80px 32px; }
  .section-dark.no-top { padding-top: 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .serif-lg { font-size: 38px; }

  .services-grid.two { grid-template-columns: 1fr; }
  .service-card { padding: 32px 32px; }
  .service-body h3 { font-size: 24px; }

  .cta-gold, .cta-dark { padding: 72px 32px; }
  .cta-inner, .cta-inner-dark { flex-direction: column; align-items: flex-start; gap: 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { height: 380px; }

  .team-profile { grid-template-columns: 1fr; gap: 32px; }
  .team-photo { height: 420px; max-width: 420px; }
  .team-body { padding-left: 24px; }
  .team-body h2 { font-size: 34px; }

  .contact-section { padding: 80px 32px 96px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }

  .insights-grid { grid-template-columns: 1fr; gap: 48px; }
  .side-title { font-size: 30px; }
  .cr-box { padding: 32px 28px; }
  .cr-rows { grid-template-columns: 160px 1fr; gap: 12px 24px; }

  .values-strip { padding: 20px 32px; }
  .site-footer { padding: 40px 32px; }
}

/* Mobile ≤720px — hamburger takes over */
@media (max-width: 720px) {
  .site-nav {
    padding: 0 20px; height: 72px;
    position: sticky;
  }
  .nav-logo img { height: 52px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(33,36,40,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 32px;
    border-bottom: 1px solid rgba(169,141,115,0.25);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 49;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link, .nav-cta {
    font-size: 14px; letter-spacing: 0.14em;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(169,141,115,0.15);
    text-align: left;
  }
  .nav-cta {
    background: transparent; color: #a98d73;
    margin-top: 8px;
    border: 1px solid #a98d73;
    text-align: center;
    padding: 16px 24px;
  }
  .nav-cta:hover { background: #a98d73; color: #212428; }
  .nav-link:last-of-type { border-bottom: 0; }

  .hero { padding: 56px 20px 0; }
  .hero-copy { padding-bottom: 48px; }
  .hero-copy h1 { font-size: 36px; margin-bottom: 20px; }
  .hero-copy p { font-size: 16px; margin-bottom: 32px; }
  .hero-image { height: 280px; }
  .hero-badge { padding: 18px 22px; }
  .badge-title { font-size: 20px; }
  .btn { padding: 14px 28px; font-size: 13px; }
  .btn-dark { padding: 16px 32px; }

  .page-header { padding: 56px 20px; }
  .serif-xl { font-size: 34px; }

  .section-light, .section-dark { padding: 56px 20px; }
  .serif-lg { font-size: 28px; }
  .lead { font-size: 16px; }
  .section-head { margin-bottom: 40px; }

  .service-card { padding: 24px 22px; gap: 18px; }
  .service-num { font-size: 18px; min-width: 28px; }
  .service-body h3 { font-size: 21px; margin-bottom: 10px; }
  .service-body p { font-size: 14px; }

  .cta-gold, .cta-dark { padding: 48px 20px; }

  .values-strip { padding: 16px 20px; }
  .values-strip .wrap { justify-content: center; gap: 10px 16px; }
  .values-strip span { font-size: 11px; letter-spacing: 0.14em; }

  .about-image { height: 280px; }
  .about-body { font-size: 15px; line-height: 1.8; }
  .lead-serif { font-size: 19px !important; }

  .team-photo { height: 360px; max-width: 100%; }
  .team-body { padding-left: 18px; }
  .team-body h2 { font-size: 28px; }
  .team-body p { font-size: 15px; }
  .team-list { gap: 64px; }

  .contact-section { padding: 56px 20px 72px; }
  .contact-lead { font-size: 15px; margin-bottom: 32px; }
  .contact-image { height: 220px; margin-top: 40px; }
  .info-row {
    grid-template-columns: 1fr; gap: 12px;
    padding: 22px 0;
  }
  .info-label { padding-top: 0; }
  .info-body div, .info-lines a { font-size: 15px; }

  .insights-grid { gap: 40px; }
  .side-title { font-size: 26px; }
  .citation-card { padding: 22px; }
  .cc-title { font-size: 19px; }

  .insights-article { font-size: 15.5px; line-height: 1.8; }
  .article-lede { font-size: 21px; margin-bottom: 24px; }
  .pullquote { padding: 22px 20px; margin: 32px 0; }
  .pullquote p { font-size: 19px; }
  .section-heading h3 { font-size: 24px; }
  .article-section { margin-top: 40px; }

  .leg-grid { grid-template-columns: 1fr; margin: 32px 0; }
  .leg-grid > div { padding: 20px 22px; }

  .case-reference { margin-top: 64px; padding-top: 32px; }
  .cr-box { padding: 24px 20px; }
  .cr-title { font-size: 21px; margin-bottom: 20px; }
  .cr-rows { grid-template-columns: 1fr; gap: 4px 0; }
  .cr-label { padding-top: 12px; }
  .cr-rows > div:not(.cr-label) { padding-bottom: 6px; }

  .site-footer { padding: 32px 20px; }
  .footer-wrap {
    flex-direction: column;
    text-align: center; gap: 20px;
  }
  .footer-logo { height: 56px; margin: 0 auto; }
  .footer-links { justify-content: center; gap: 14px 20px; }
}

/* Small phones ≤380px */
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 30px; }
  .serif-xl { font-size: 28px; }
  .serif-lg { font-size: 24px; }
  .side-title { font-size: 22px; }
  .cr-title { font-size: 19px; }
  .site-nav { padding: 0 16px; }
  .section-light, .section-dark, .page-header,
  .hero, .contact-section, .cta-gold, .cta-dark { padding-left: 16px; padding-right: 16px; }
}
