:root {
  --paper: #f7f3ed;
  --paper-deep: #eee6dc;
  --white: #fffdf9;
  --ink: #272522;
  --muted: #68625c;
  --oxblood: #681f24;
  --oxblood-dark: #431418;
  --brass: #a27b4c;
  --line: rgba(39, 37, 34, 0.2);
  --line-soft: rgba(39, 37, 34, 0.1);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --max: 1240px;
  --nav-height: 92px;
  --ease: 220ms cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 24px); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 4px; }

.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 8vw, 122px) 0; border-top: 1px solid var(--line-soft); }
.section-tight { padding: clamp(58px, 6vw, 88px) 0; }
.section-soft { background: var(--white); }
.section-heading { max-width: 790px; margin: 0 0 48px; }
.section-heading h1, .section-heading h2, .page-hero h1, .hero-copy h1,
.group-header h2, .contact-card h2, .leader-copy h2, .cta-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading h2, .group-header h2, .contact-card h2, .leader-copy h2, .cta-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}
.section-heading > p:last-child, .group-header > p:last-child, .page-hero-copy > p,
.hero-copy > p, .content-card > p, .contact-card > p, .leader-copy > p, .cta-copy > p {
  max-width: 66ch;
  margin: 20px 0 0;
  color: var(--muted);
}
.kicker {
  margin: 0 0 14px;
  color: var(--oxblood);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.skip-link { position: fixed; left: 18px; top: -70px; z-index: 100; padding: 12px 18px; background: var(--oxblood); color: white; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,243,237,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--ease), transform var(--ease);
}
body.header-scrolled .site-header { box-shadow: 0 12px 34px rgba(45,30,25,.08); }
.header-shell { min-height: var(--nav-height); display: grid; grid-template-columns: minmax(270px, 1fr) auto auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; min-width: 0; gap: 14px; }
.brand-logo-frame { width: 64px; height: 48px; display: grid; place-items: center; border-right: 1px solid var(--line); padding-right: 14px; }
.brand-logo { width: 54px; height: auto; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-name { font-size: .74rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.brand-meta { margin-top: 4px; color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.nav-link { position: relative; padding: 34px 0 30px; font-size: .78rem; font-weight: 700; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 1px; background: var(--oxblood); transition: right var(--ease); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-current::after { right: 0; }
.nav-link.is-current { color: var(--oxblood); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { white-space: nowrap; font-size: .78rem; font-weight: 700; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid var(--oxblood);
  border-radius: 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .025em;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.button::after { content: "\2192"; font-size: 1.1rem; line-height: 1; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--oxblood); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: var(--oxblood-dark); }
.button-secondary { color: var(--oxblood); background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--white); }
.button-compact { min-height: 44px; padding-inline: 16px; }
.button-compact::after { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; align-content: center; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 6px 0; background: var(--ink); transition: transform var(--ease), opacity var(--ease); }
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel { position: fixed; inset: var(--nav-height) 0 auto; z-index: 55; max-height: calc(100dvh - var(--nav-height)); overflow-y: auto; overscroll-behavior: contain; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-panel[hidden] { display: none; }
.mobile-panel-shell { padding: 28px 0 34px; }
.mobile-nav { display: grid; }
.mobile-nav-link { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-family: var(--serif); font-size: 1.65rem; }
.mobile-nav-link.is-current { color: var(--oxblood); }
.mobile-panel-card-stack { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 26px 0; background: var(--line); border: 1px solid var(--line); }
.mobile-panel-card { display: grid; gap: 4px; min-width: 0; padding: 16px; background: var(--white); }
.mobile-panel-card span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.mobile-panel-card strong { font-size: .82rem; overflow-wrap: anywhere; }
.nav-scrim { position: fixed; inset: 0; z-index: 45; border: 0; background: rgba(24,17,15,.52); opacity: 0; pointer-events: none; transition: opacity var(--ease); }
body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

.hero-home { padding: 0; border-top: 0; background: var(--white); }
.hero-home .container { width: min(100%, 1440px); }
.hero-shell { min-height: min(680px, calc(100vh - var(--nav-height))); display: grid; grid-template-columns: 1fr 1fr; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 7vw, 108px) clamp(36px, 5vw, 78px); }
.hero-copy .kicker { display: none; }
.hero-copy h1 { max-width: 14ch; font-size: clamp(3.7rem, 5.15vw, 5.4rem); }
.hero-copy > p { max-width: 42ch; font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-trust-pill { color: var(--muted); font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-stage, .hero-media { min-height: 100%; margin: 0; }
.hero-media { position: relative; overflow: hidden; background: #d4c3ae; }
.hero-media picture { position: absolute; inset: 0; display: block; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-card { position: absolute; left: 0; right: 0; bottom: 0; color: #fff; background: rgba(40,18,18,.9); }
.hero-firm-grid { display: grid; grid-template-columns: .8fr 1.55fr 1.1fr; }
.hero-firm-item { padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-firm-item:last-child { border-right: 0; }
.hero-firm-item span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.62); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-firm-item strong, .hero-firm-item a { display: block; font-size: .76rem; line-height: 1.45; }

.hero-summary-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.stat-card { min-height: 190px; padding: 26px; background: var(--paper); }
.stat-card strong { display: block; margin-bottom: 28px; color: var(--oxblood); font-family: var(--serif); font-size: 2.5rem; font-weight: 500; }
.stat-card span { color: var(--muted); font-size: .86rem; }

.split-layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: clamp(60px,9vw,140px); align-items: start; }
.content-card, .surface-card, .contact-card, .quote-card { padding: 32px; border: 1px solid var(--line); background: transparent; }
.content-card h3, .surface-card h2, .surface-card h3, .contact-card h3, .quote-card h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1.15; }
.card-list, .detail-list { margin: 0; padding: 0; list-style: none; }
.card-list li, .detail-list li { padding: 15px 0; border-top: 1px solid var(--line-soft); color: var(--muted); }
.card-list li::before { content: "\2014"; margin-right: 10px; color: var(--oxblood); }
.detail-list strong { display: block; color: var(--ink); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.service-grid, .service-directory-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 0; display: grid; grid-template-columns: minmax(220px,.7fr) minmax(300px,1.15fr) minmax(180px,.8fr); gap: 28px; align-items: start; padding: 25px 66px 25px 56px; border: 0; border-bottom: 1px solid var(--line); background: transparent; transition: background var(--ease), padding-left var(--ease); }
.service-card:hover { background: var(--white); }
.card-index { position: absolute; left: 0; top: 34px; color: var(--oxblood); font-family: var(--serif); }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; line-height: 1.15; }
.service-card p { margin: 0; color: var(--muted); }
.card-meta, .tag-row { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; }
.service-card .card-meta { margin-top: 2px; }
.card-meta span, .tag-row span { color: var(--oxblood); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-footnote { max-width: 70ch; margin-top: 28px; padding-left: 56px; color: var(--muted); font-size: .86rem; }

.proof-grid, .directory-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.proof-card, .directory-card { min-height: 180px; padding: 26px; border: 0; border-right: 1px solid var(--line); background: transparent; }
.proof-card:last-child, .directory-card:last-child { border-right: 0; }
.proof-card strong, .directory-card strong { display: block; margin-bottom: 18px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.2; }
.proof-card p, .directory-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.team-preview-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.team-stack, .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.team-stack { grid-template-columns: 1fr 1fr; }
.team-card { min-width: 0; padding: 28px; border: 0; background: var(--white); }
.team-card.is-featured { background: var(--oxblood); color: #fff; }
.team-top { display: flex; gap: 18px; align-items: center; }
.initials { width: 54px; aspect-ratio: 1; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid currentColor; color: var(--oxblood); font-family: var(--serif); font-size: 1.35rem; }
.is-featured .initials { color: #fff; }
.role { margin: 0 0 4px; color: var(--oxblood); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.is-featured .role { color: rgba(255,255,255,.7); }
.team-card h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.1; }
.team-card > p { color: var(--muted); font-size: .87rem; }
.team-card.is-featured > p { color: rgba(255,255,255,.78); }
.role-summary { padding-bottom: 15px; border-bottom: 1px solid var(--line-soft); color: var(--ink) !important; font-weight: 700; }
.is-featured .role-summary { border-color: rgba(255,255,255,.2); color: #fff !important; }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: var(--oxblood); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.text-link::after { content: "\2192"; font-size: 1.2rem; transition: transform var(--ease); }
.text-link:hover::after { transform: translateX(5px); }

.contact-band { display: grid; grid-template-columns: 1.2fr .8fr; color: #fff; background: var(--oxblood); }
.contact-band > * { min-width: 0; }
.cta-copy { padding: clamp(38px,5vw,68px); }
.cta-copy .kicker, .cta-copy > p { color: rgba(255,255,255,.7); }
.cta-copy h2 { font-size: clamp(2.8rem,5vw,5rem); }
.contact-band .button-primary { background: #fff; color: var(--oxblood); border-color: #fff; }
.contact-band .button-secondary { color: #fff; border-color: rgba(255,255,255,.55); }
.contact-band-details { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid rgba(255,255,255,.24); }
.detail-card { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 24px; border: 0; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.detail-card span { color: rgba(255,255,255,.6); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.detail-card a, .detail-card strong { margin-top: 5px; font-size: .8rem; overflow-wrap: anywhere; }

.page-hero { padding: clamp(80px,9vw,132px) 0; border-top: 0; }
.page-hero-shell { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: clamp(70px,10vw,160px); align-items: center; }
.page-hero-copy .kicker { display: none; }
.page-hero h1 { max-width: 14ch; font-size: clamp(3.7rem,5.4vw,5.8rem); }
.page-aside { background: var(--white); }

.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.timeline-card { padding: 28px; border: 0; border-right: 1px solid var(--line); background: transparent; }
.timeline-card:last-child { border-right: 0; }
.timeline-year { color: var(--oxblood); font-family: var(--serif); font-size: 2.4rem; }
.timeline-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; }
.timeline-card p { color: var(--muted); font-size: .84rem; }
.quote-card { margin-top: 40px; border-left: 4px solid var(--oxblood); }
.quote-card strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }

.group-stack { display: grid; gap: 80px; }
.group-header { max-width: 900px; margin-bottom: 40px; }
.group-block { min-width: 0; }
.team-grid.single-column { grid-template-columns: minmax(0,720px); background: transparent; }
.leader-card { display: grid; grid-template-columns: .4fr 1.6fr; border: 1px solid var(--line); }
.leader-mark { display: grid; place-items: center; min-height: 400px; color: #fff; background: var(--oxblood); font-family: var(--serif); font-size: clamp(5rem,11vw,10rem); }
.leader-copy { padding: clamp(34px,6vw,74px); }
.leader-points { display: grid; grid-template-columns: 1fr 1fr; margin-top: 36px; border-top: 1px solid var(--line); }
.leader-point { padding: 20px 24px 20px 0; color: var(--muted); font-size: .82rem; }
.leader-point strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.contact-grid .contact-card { border: 0; background: var(--white); }
.contact-stack { display: grid; gap: 1px; background: var(--line); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.map-frame { height: 520px; border: 1px solid var(--line); filter: grayscale(1) sepia(.15); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.site-footer { color: rgba(255,255,255,.78); background: #201f1d; }
.footer-shell { padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr .8fr; gap: 44px; }
.footer-kicker { margin: 0 0 16px; color: #fff; font-family: var(--serif); font-size: 2rem; line-height: 1.05; }
.footer-lead { max-width: 44ch; color: rgba(255,255,255,.57); font-size: .85rem; }
.footer-heading { margin: 0 0 16px; color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-list { margin: 0; padding: 0; list-style: none; font-size: .78rem; }
.footer-list li { margin: 7px 0; }
.footer-list a:hover { color: #fff; }
.footer-meta { display: flex; justify-content: space-between; gap: 30px; margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: .72rem; }
.footer-meta p { margin: 0; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --nav-height: 80px; }
  .container { width: min(calc(100% - 44px), var(--max)); }
  .header-shell { grid-template-columns: 1fr auto; gap: 16px; }
  .desktop-nav, .header-phone, .header-actions > .button { display: none; }
  .header-actions { display: block; }
  .menu-toggle { display: block; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-stage { min-height: 560px; }
  .hero-copy { min-height: 560px; }
  .hero-copy h1 { max-width: 14ch; }
  .page-hero-shell { gap: 52px; }
  .proof-grid, .directory-grid, .timeline-grid { grid-template-columns: 1fr 1fr; }
  .proof-card:nth-child(2), .directory-card:nth-child(2), .timeline-card:nth-child(2) { border-right: 0; }
  .proof-card, .directory-card, .timeline-card { border-bottom: 1px solid var(--line); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { display: none; }
}

@media (max-width: 960px) {
  .service-card { display: block; padding: 28px 52px 28px 56px; }
  .service-card h3 { margin-bottom: 10px; }
  .service-card .card-meta { margin-top: 18px; }
}

@media (max-width: 760px) {
  :root { --nav-height: 74px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 68px 0; }
  .brand-logo-frame { width: 52px; height: 42px; }
  .brand-logo { width: 44px; }
  .brand-name { font-size: .65rem; }
  .brand-meta { display: none; }
  .mobile-panel-card-stack { grid-template-columns: 1fr; }
  .mobile-panel-card { padding: 12px; }
  .hero-home .container { width: 100%; }
  .hero-shell { min-height: 0; }
  .hero-copy { min-height: 520px; padding: 62px 22px 54px; }
  .hero-copy h1 { max-width: 9.5ch; font-size: clamp(3.35rem,15vw,5rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stage { min-height: 500px; }
  .hero-media-card { position: static; }
  .hero-firm-grid { grid-template-columns: 1fr; }
  .hero-firm-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .hero-summary-grid, .service-grid, .service-directory-grid, .proof-grid, .directory-grid,
  .timeline-grid, .team-preview-grid, .team-grid, .team-stack, .split-layout, .contact-band, .page-hero-shell,
  .leader-card, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 150px; }
  .service-card { min-height: 0; display: block; padding: 28px 42px 28px 48px; border-right: 0; }
  .service-card h3 { margin-bottom: 10px; font-size: 1.65rem; }
  .service-card .card-meta { margin-top: 18px; }
  .service-footnote { padding-left: 0; }
  .proof-card, .directory-card, .timeline-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading h2, .group-header h2, .contact-card h2, .leader-copy h2, .cta-copy h2 { font-size: clamp(2.4rem,12vw,3.9rem); }
  .page-hero { padding: 74px 0; }
  .page-hero h1 { max-width: 11ch; font-size: clamp(3.2rem,13vw,4.8rem); }
  .page-aside { margin-top: 12px; }
  .leader-mark { min-height: 260px; }
  .leader-points, .contact-band-details { grid-template-columns: 1fr; }
  .contact-band-details { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .detail-card { min-height: 94px; }
  .map-frame { height: 430px; }
  .footer-column:last-child { display: block; }
  .footer-meta { display: grid; }
}

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