:root {
      --ink: #0c0d0f;
      --muted: #5d6573;
      --paper: #fbfbf8;
      --panel: #ffffff;
      --line: #d9d9d2;
      --accent: #b58242;
      --accent-dark: #805828;
      --charcoal: #191b1f;
      --shadow: 0 22px 60px rgba(0,0,0,.12);
      --radius: 22px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(251,251,248,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }
    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand { display: flex; align-items: center; gap: 14px; }
    .brand img { width: 150px; height: auto; display: block; }
    .brand-text { display: none; }
    nav { display: flex; gap: 24px; align-items: center; font-size: 14px; font-weight: 700; color: #27292f; }
    nav a { opacity: .78; }
    nav a:hover { opacity: 1; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--ink);
      color: white;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(0,0,0,.16);
    }
    .button.alt { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,.18); box-shadow: none; }
    .hero {
      padding: 78px 0 64px;
      background:
        radial-gradient(circle at 15% 15%, rgba(181,130,66,.20), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6f0e7 52%, #ece6dc 100%);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.06fr .94fr;
      gap: 52px;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-dark);
      margin-bottom: 16px;
    }
    .eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--accent); display: inline-block; }
    h1 {
      margin: 0;
      font-size: clamp(44px, 7vw, 76px);
      line-height: .96;
      letter-spacing: -.065em;
      max-width: 780px;
    }
    .lead {
      margin: 24px 0 24px;
      max-width: 680px;
      font-size: clamp(18px, 2.2vw, 22px);
      color: #333842;
    }
    .actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .mission-note { margin-top: 28px; padding: 18px 20px; border-left: 5px solid var(--accent); background: rgba(255,255,255,.72); border-radius: 16px; font-weight: 800; color: #24272d; max-width: 680px; }
    .hero-card {
      position: relative;
      border-radius: 34px;
      background: var(--charcoal);
      padding: 18px;
      box-shadow: var(--shadow);
      transform: rotate(1.5deg);
    }
    .hero-card::after {
      content: "Pro Bono • Patent • Civil • Criminal";
      position: absolute;
      left: 26px;
      right: 26px;
      bottom: 28px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.92);
      color: #111;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-align: center;
    }
    .hero-card img { width: 100%; display: block; border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; filter: saturate(.98) contrast(1.02); }
    section { padding: 76px 0; }
    .section-heading { max-width: 780px; margin-bottom: 34px; }
    .kicker { color: var(--accent-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: 13px; margin-bottom: 10px; }
    h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
    .section-heading p { color: var(--muted); font-size: 18px; margin: 16px 0 0; }
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .card {
      background: var(--panel);
      border: 1px solid rgba(0,0,0,.09);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 10px 24px rgba(0,0,0,.045);
    }
    .card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; }
    .card p { margin: 0; color: var(--muted); }
    .band {
      background: var(--ink);
      color: white;
      border-radius: 34px;
      padding: 46px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
      box-shadow: var(--shadow);
    }
    .band h2 { color: white; }
    .band p { color: rgba(255,255,255,.78); font-size: 18px; margin: 16px 0 0; }
    .list { display: grid; gap: 14px; }
    .list div {
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.13);
      font-weight: 700;
    }
    .profile {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 44px;
      align-items: center;
    }
    .profile-photo { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
    .profile-photo img { width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
    .credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
    .pill { border: 1px solid rgba(0,0,0,.12); border-radius: 999px; padding: 11px 15px; font-size: 14px; font-weight: 800; background: white; }

    .difference {
      background:
        radial-gradient(circle at 85% 10%, rgba(181,130,66,.16), transparent 32%),
        linear-gradient(135deg, #fbfbf8 0%, #ffffff 58%, #f2eadf 100%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .difference-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 32px;
      align-items: start;
    }
    .difference-panel {
      background: var(--ink);
      color: white;
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--shadow);
      position: sticky;
      top: 110px;
    }
    .difference-panel h2 { color: white; }
    .difference-panel p { color: rgba(255,255,255,.78); font-size: 18px; margin: 18px 0 0; }
    .difference-cards { display: grid; gap: 16px; }
    .difference-card {
      background: white;
      border: 1px solid rgba(0,0,0,.09);
      border-radius: var(--radius);
      padding: 24px 26px;
      box-shadow: 0 10px 24px rgba(0,0,0,.045);
    }
    .difference-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.02em; }
    .difference-card p { margin: 0; color: var(--muted); }
    .contact {
      background: linear-gradient(135deg, #ffffff 0%, #f2eadf 100%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .contact-box {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 32px;
      align-items: center;
      background: white;
      border: 1px solid rgba(0,0,0,.09);
      border-radius: 34px;
      padding: 42px;
      box-shadow: 0 16px 36px rgba(0,0,0,.07);
    }
    .contact-lines { display: grid; gap: 12px; color: #303641; font-weight: 700; }
    footer { padding: 34px 0; color: #646b75; font-size: 13px; }
    .footer-grid { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; /* border-top: 1px solid var(--line); */ padding-top: 4px;   }
    @media (max-width: 860px) {
      nav a:not(.button) { display: none; }
      .hero-grid, .band, .profile, .difference-grid, .contact-box { grid-template-columns: 1fr; }
      .hero { padding-top: 48px; }
      .hero-card { transform: none; max-width: 520px; }
      .cards { grid-template-columns: 1fr; }
      .credentials { grid-template-columns: 1fr; }
      .brand img { width: 128px; }
      .band, .difference-panel, .contact-box { padding: 30px; }
      .difference-panel { position: static; }
    }