:root {
  --bg: #f4f1eb;
  --bg-soft: #e9e7e0;
  --paper: #faf8f3;
  --ink: #1c211f;
  --ink-2: #2b312e;
  --muted: #6d716d;
  --accent: #68746c;
  --accent-soft: #d9ded9;
  --stone: #8a8378;
  --line: rgba(28, 33, 31, .12);
  --line-strong: rgba(28, 33, 31, .24);
  --shadow: 0 24px 70px rgba(26, 31, 28, .07);
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(calc(100% - 56px), var(--shell)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--ink); color: #fff; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 235, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(244, 241, 235, .96); }
.header-inner { height: 86px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand-symbol {
  position: relative;
  width: 44px; height: 44px; flex: 0 0 44px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(var(--line-strong), var(--line-strong)) 50% 0 / 1px 9px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) 50% 100% / 1px 9px no-repeat,
    linear-gradient(90deg, var(--line-strong), var(--line-strong)) 0 50% / 9px 1px no-repeat,
    linear-gradient(90deg, var(--line-strong), var(--line-strong)) 100% 50% / 9px 1px no-repeat;
}
.brand-symbol::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px;
  border: 1px solid var(--accent); border-radius: 50%; transform: translate(-50%, -50%);
}
.brand-symbol::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px;
  border-radius: 50%; background: var(--ink); transform: translate(-50%, -50%);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 12px; letter-spacing: .17em; font-weight: 700; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { position: relative; color: #5f645f; font-size: 12px; letter-spacing: .01em; transition: color .2s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .2s ease; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.header-phone { font-size: 12px; font-weight: 650; letter-spacing: .03em; border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; }
.menu-btn { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-btn span { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--ink); }

.hero { padding: 38px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 86px; align-items: center; min-height: 690px; padding-bottom: 72px; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-size: 10px; line-height: 1.2; font-weight: 750; text-transform: uppercase; letter-spacing: .20em; }
h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 30px;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  font-size: clamp(58px, 6.3vw, 88px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 400;
}
h1 em, h2 em { color: var(--accent); font-style: normal; }
.hero-lead { max-width: 720px; margin: 0; color: #555b56; font-size: 17px; line-height: 1.76; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.btn {
  display: inline-flex; min-height: 50px; padding: 0 24px; align-items: center; justify-content: center;
  border: 1px solid var(--ink); border-radius: 2px; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .025em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #f8f6f1; background: var(--ink); }
.btn-primary:hover { background: #343b37; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--line-strong); font-size: 12px; font-weight: 650; }
.text-link span { margin-left: 9px; color: var(--accent); }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 42px; color: #777b76; font-size: 10px; letter-spacing: .03em; }
.hero-note span { position: relative; }
.hero-note span + span::before { content: "/"; position: absolute; left: -15px; color: var(--stone); }

.hero-art { min-height: 540px; }
.art-panel {
  position: relative; height: 540px; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: 2px;
  background:
    linear-gradient(rgba(47, 59, 52, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 59, 52, .045) 1px, transparent 1px),
    linear-gradient(155deg, #e4e5df 0%, #f3f0e9 58%, #dedbd2 100%);
  background-size: 46px 46px, 46px 46px, auto;
  box-shadow: var(--shadow);
}
.art-panel::after {
  content: "PRECISION / LEGAL PRACTICE"; position: absolute; right: 24px; top: 28px;
  writing-mode: vertical-rl; color: rgba(28, 33, 31, .34); font-size: 8px; letter-spacing: .24em;
}
.precision-frame { position: absolute; border: 1px solid rgba(46, 58, 51, .17); }
.frame-a { left: 14%; top: 13%; width: 69%; height: 58%; transform: rotate(-4deg); }
.frame-b { left: 25%; top: 21%; width: 48%; height: 40%; transform: rotate(7deg); border-color: rgba(46, 58, 51, .11); }
.precision-axis { position: absolute; background: rgba(49, 62, 54, .29); transform-origin: center; }
.axis-x { left: 12%; top: 43%; width: 72%; height: 1px; transform: rotate(-12deg); }
.axis-y { left: 53%; top: 9%; width: 1px; height: 66%; transform: rotate(9deg); }
.precision-orbit { position: absolute; left: 53%; top: 43%; border: 1px solid rgba(53, 66, 58, .25); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-a { width: 184px; height: 184px; }
.orbit-b { width: 74px; height: 74px; border-color: rgba(53, 66, 58, .42); }
.precision-point { position: absolute; width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(53, 66, 58, .58); background: #eeece5; }
.point-main { left: calc(53% - 5px); top: calc(43% - 5px); width: 10px; height: 10px; background: var(--ink); border-color: var(--ink); box-shadow: 0 0 0 8px rgba(104, 116, 108, .10); }
.point-a { left: 27%; top: 31%; }
.point-b { right: 19%; top: 51%; }
.art-index { position: absolute; display: flex; align-items: baseline; gap: 8px; color: #656b66; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.art-index span { color: var(--accent); font-weight: 800; }
.art-index strong { font-size: 9px; font-weight: 700; }
.index-a { left: 11%; top: 16%; }
.index-b { right: 13%; top: 31%; }
.index-c { left: 17%; top: 57%; }
.art-card {
  position: absolute; left: 8%; right: 8%; bottom: 8%; padding: 22px 24px 24px;
  border-top: 1px solid rgba(28, 33, 31, .22); border-bottom: 1px solid rgba(28, 33, 31, .12);
  background: rgba(248, 246, 240, .82); backdrop-filter: blur(12px);
}
.art-card span { display: block; margin-bottom: 9px; color: var(--accent); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.art-card strong { display: block; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 22px; line-height: 1.25; font-weight: 400; }
.art-card small { display: block; max-width: 390px; margin-top: 8px; color: var(--muted); }
.hero-art:hover .frame-a { transform: rotate(-2deg); }
.hero-art:hover .frame-b { transform: rotate(5deg); }
.precision-frame { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.audience-strip { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-strip > div { display: grid; grid-template-columns: 155px 1fr; gap: 26px; padding: 25px 28px 25px 0; }
.audience-strip > div + div { border-left: 1px solid var(--line); padding-left: 30px; }
.audience-strip span { color: var(--accent); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.audience-strip p { margin: 0; color: #616761; font-size: 13px; }

.section { padding: 122px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 86px; align-items: end; margin-bottom: 62px; }
.section-head h2, .split-title h2, .contact-copy h2, .geography-grid h2 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  font-size: clamp(40px, 4.4vw, 60px); line-height: 1.03; letter-spacing: -.035em; font-weight: 400;
}
.section-head > p { margin: 0 0 5px; max-width: 560px; color: var(--muted); font-size: 15px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.service-card {
  position: relative; min-height: 515px; padding: 32px 34px;
  border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  background: transparent; transition: background .25s ease;
}
.service-card:hover { background: rgba(250, 248, 243, .78); }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.service-num { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.service-tag { padding: 6px 10px; border: 1px solid var(--line); color: #7b7e79; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.service-card h3 { margin-bottom: 20px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 32px; line-height: 1.12; letter-spacing: -.025em; font-weight: 400; }
.service-card h3 span { color: var(--accent); }
.service-card > p { max-width: 96%; margin: 0; color: #5d625e; font-size: 14px; }
.service-card ul { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.service-card li { position: relative; padding: 12px 0 12px 18px; border-bottom: 1px solid var(--line); color: #4f5551; font-size: 12px; }
.service-card li::before { content: "·"; position: absolute; left: 1px; top: 8px; color: var(--accent); font-size: 20px; }

.expertise-head { margin-bottom: 48px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.expertise-item { min-height: 270px; padding: 28px 30px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.expertise-item > span { display: block; margin-bottom: 42px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.expertise-item h3 { margin-bottom: 13px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 26px; font-weight: 400; letter-spacing: -.02em; }
.expertise-item p { margin: 0; color: #606560; font-size: 13px; }

.approach-section { background: #f8f5ef; }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 96px; }
.split-title { position: sticky; top: 120px; align-self: start; }
.split-title > p:last-child { max-width: 470px; margin-top: 26px; color: var(--muted); }
.principles { border-top: 1px solid var(--line-strong); }
.principle { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line-strong); }
.principle > span { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.principle h3 { margin-bottom: 9px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 28px; font-weight: 400; }
.principle p { margin: 0; color: #626762; }

.geography-section { padding-top: 92px; padding-bottom: 92px; }
.geography-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 94px; align-items: end; }
.geo-copy { max-width: 560px; justify-self: end; }
.geo-copy p { margin: 0 0 24px; color: var(--muted); font-size: 15px; }
.geo-badge { display: inline-flex; padding: 8px 11px; border: 1px solid var(--line-strong); color: var(--accent); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }

.contact-section { padding-top: 58px; }
.contact-card {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; padding: 58px;
  border: 1px solid var(--line-strong); background: #dde1dc;
}
.contact-copy > p:not(.eyebrow) { max-width: 600px; margin: 25px 0 30px; color: #59605a; }
.phone-large { display: inline-block; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 30px; border-bottom: 1px solid rgba(28, 33, 31, .3); }
.contact-form { padding: 30px; border: 1px solid rgba(28, 33, 31, .13); background: rgba(248, 246, 240, .68); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #5f655f; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid rgba(28, 33, 31, .18); border-radius: 0; outline: none;
  background: rgba(250, 248, 244, .78); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 48px; padding: 0 14px; }
.contact-form textarea { min-height: 126px; padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(48, 61, 52, .5); box-shadow: 0 0 0 2px rgba(104, 116, 108, .07); background: #fbfaf6; }
.contact-form ::placeholder { color: #9ca09b; }
.form-submit { margin-top: 3px; }
.form-note { margin: 13px 0 0; color: #7c817c; font-size: 10px; line-height: 1.5; }
.form-status { min-height: 20px; margin: 10px 0 0; color: #4c5b50; font-size: 12px; font-weight: 650; }

.footer { padding: 50px 0 60px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.footer-brand { margin-bottom: 18px; }
.footer-inner p { max-width: 520px; color: var(--muted); font-size: 12px; }
.footer-meta { justify-self: end; max-width: 540px; }
.footer-meta > a { display: inline-block; margin-bottom: 10px; font-weight: 700; }
.footer-meta small { color: #8b8f8a; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header-phone { margin-left: auto; }
  .nav { position: fixed; inset: 86px 0 auto 0; display: none; flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 28px 34px; border-bottom: 1px solid var(--line); background: rgba(244, 241, 235, .99); }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .hero { padding-top: 36px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 44px; }
  .hero-art { min-height: 410px; }
  .art-panel { height: 410px; }
  .audience-strip > div { grid-template-columns: 1fr; gap: 8px; }
  .section-head, .split, .geography-grid, .contact-card { grid-template-columns: 1fr; }
  .section-head { gap: 30px; align-items: start; }
  .split { gap: 48px; }
  .split-title { position: static; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .geo-copy { justify-self: start; }
  .contact-card { gap: 42px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .header-inner { height: 70px; gap: 12px; }
  .brand-symbol { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-copy strong { font-size: 10px; letter-spacing: .13em; }
  .brand-copy small { display: none; }
  .header-phone { font-size: 10px; }
  .nav { inset: 70px 0 auto 0; }
  .hero { padding-top: 32px; }
  h1 { font-size: clamp(44px, 13.5vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-note { flex-direction: column; gap: 7px; }
  .hero-note span + span::before { display: none; }
  .hero-art { min-height: 320px; }
  .art-panel { height: 320px; }
  .art-card { left: 6%; right: 6%; bottom: 6%; padding: 17px; }
  .art-card strong { font-size: 18px; }
  .art-card small { font-size: 11px; }
  .audience-strip { grid-template-columns: 1fr; }
  .audience-strip > div { padding: 18px 0; }
  .audience-strip > div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .section { padding: 84px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 27px; }
  .service-top { margin-bottom: 38px; }
  .service-card h3 { font-size: 28px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-item { min-height: 230px; padding: 25px; }
  .expertise-item > span { margin-bottom: 36px; }
  .principle { grid-template-columns: 42px 1fr; gap: 13px; }
  .geography-section { padding-top: 72px; padding-bottom: 72px; }
  .contact-card { padding: 28px 22px; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .phone-large { font-size: 23px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
