:root {
  --navy: #071a2e;
  --navy-2: #102a46;
  --gold: #c6a15b;
  --gold-soft: #d7bc82;
  --ivory: #f6f3ec;
  --paper: #fbfaf6;
  --slate: #536272;
  --mist: #d7dee4;
  --white: #ffffff;
  --border: rgba(7, 26, 46, 0.14);
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --font-sans: Inter, "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
  --shadow: 0 28px 70px rgba(7, 26, 46, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body, a, button, summary { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button, summary { font: inherit; }
::selection { background: var(--gold); color: var(--navy); }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 9999; padding: 12px 18px;
  background: var(--gold); color: var(--navy); font-weight: 700; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; inset: 0 auto auto 0; width: 0; height: 3px; background: var(--gold); z-index: 999; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 82px;
  background: rgba(7, 26, 46, .94); border-bottom: 1px solid rgba(198, 161, 91, .24);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.logo-link { display: flex; align-items: center; width: 238px; flex: 0 0 auto; }
.brand-logo { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  color: rgba(246, 243, 236, .78); font-size: .73rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; transition: color .2s ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--gold-soft); }
.header-cta {
  display: inline-flex; align-items: center; gap: 14px; padding: 11px 0 10px 20px;
  border-left: 1px solid rgba(198, 161, 91, .55); color: var(--ivory); font-size: .8rem; font-weight: 700;
}
.header-cta span { color: var(--gold); font-size: 1.05rem; }
.mobile-nav { display: none; margin-left: auto; }

.hero {
  position: relative; min-height: 880px; overflow: hidden; padding: 174px 0 96px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(198,161,91,.10), transparent 25%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 68%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--ivory);
}
.hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 31%; height: 6px; background: var(--gold); }
.hero-orbit { position: absolute; border: 1px solid rgba(198,161,91,.18); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 670px; height: 670px; right: -240px; top: 90px; }
.orbit-two { width: 430px; height: 430px; right: -90px; top: 210px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: 72px; align-items: end; }
.eyebrow { margin-bottom: 22px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-soft); }
.hero h1 {
  max-width: 860px; margin-bottom: 28px; font-family: var(--font-display); font-size: clamp(4rem, 7.25vw, 7.4rem);
  font-weight: 400; line-height: .91; letter-spacing: -.045em;
}
.hero-intro { max-width: 740px; margin-bottom: 36px; color: rgba(246,243,236,.76); font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 54px; padding: 0 25px;
  border: 1px solid transparent; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: var(--gold-soft); }
.text-link {
  display: inline-flex; align-items: center; gap: 18px; padding-bottom: 4px; border-bottom: 1px solid rgba(7,26,46,.35);
  font-size: .77rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.text-link span { color: var(--gold); font-size: 1rem; }
.light-link { color: var(--ivory); border-color: rgba(246,243,236,.32); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 58px; color: rgba(246,243,236,.58); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.hero-proof i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

.hero-panel {
  position: relative; min-height: 550px; padding: 44px 38px 34px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.46); background: rgba(7,26,46,.38); box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.hero-panel::before, .hero-panel::after { content: ""; position: absolute; background: var(--gold); }
.hero-panel::before { width: 44px; height: 1px; top: 18px; right: 18px; }
.hero-panel::after { width: 1px; height: 44px; top: 18px; right: 18px; }
.panel-monogram { position: absolute; width: 340px; right: -70px; bottom: -70px; opacity: .055; filter: grayscale(1) brightness(2); }
.panel-kicker { position: relative; margin-bottom: 22px; color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero-panel h2 { position: relative; max-width: 340px; margin-bottom: 44px; font-family: var(--font-display); font-size: 2.45rem; font-weight: 400; line-height: 1.12; }
.panel-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(198,161,91,.38); border-left: 1px solid rgba(198,161,91,.38); }
.panel-grid div { min-height: 128px; padding: 18px; border-right: 1px solid rgba(198,161,91,.38); border-bottom: 1px solid rgba(198,161,91,.38); }
.panel-grid span { display: block; color: var(--gold); font-size: .64rem; font-weight: 800; }
.panel-grid strong { display: block; margin: 12px 0 4px; color: var(--ivory); font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.panel-grid small { color: rgba(246,243,236,.48); font-size: .66rem; line-height: 1.4; }

.signal-strip { background: var(--gold); color: var(--navy); }
.signal-inner { min-height: 62px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.signal-inner span { padding: 0 22px; border-right: 1px solid rgba(7,26,46,.24); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.signal-inner span:last-child { border-right: 0; }

.section { padding: 118px 0; }
.position-section { background: var(--paper); }
.split-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 105px; align-items: start; }
.display-heading { max-width: 720px; margin-bottom: 0; font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.display-heading.light { color: var(--ivory); }
.intro-copy { padding-top: 44px; color: var(--slate); }
.intro-copy .lead, .firm-copy .lead { color: var(--navy); font-family: var(--font-display); font-size: 1.55rem; line-height: 1.48; }
.intro-copy p { margin-bottom: 26px; }

.expertise-section { background: var(--ivory); }
.section-heading-row { display: grid; grid-template-columns: 1.2fr .55fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.section-heading-row > p { max-width: 410px; margin: 0 0 8px auto; color: var(--slate); }
.section-heading-row.compact { margin-bottom: 54px; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.expertise-card { min-height: 340px; padding: 38px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .25s ease, transform .25s ease; }
.expertise-card:hover { background: var(--paper); transform: translateY(-3px); box-shadow: var(--shadow); position: relative; z-index: 2; }
.card-topline { display: flex; align-items: center; margin-bottom: 55px; }
.card-topline span { color: var(--gold); font-size: .7rem; font-weight: 800; }
.card-topline i { flex: 1; height: 1px; margin-left: 20px; background: var(--border); }
.expertise-card h3 { max-width: 470px; margin-bottom: 20px; font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.15; }
.expertise-card p { max-width: 510px; color: var(--slate); }
.expertise-card small { display: block; margin-top: 28px; color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.sectors-section { position: relative; overflow: hidden; background: var(--navy); color: var(--ivory); }
.sectors-section::before { content: "PN"; position: absolute; right: -60px; top: -100px; color: rgba(198,161,91,.035); font-family: var(--font-display); font-size: 28rem; line-height: 1; }
.sectors-title-block { position: relative; max-width: 940px; margin-bottom: 70px; }
.sector-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(215,222,228,.2); border-left: 1px solid rgba(215,222,228,.2); }
.sector-card { min-height: 270px; padding: 34px; border-right: 1px solid rgba(215,222,228,.2); border-bottom: 1px solid rgba(215,222,228,.2); }
.sector-card span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.sector-card h3 { margin: 48px 0 16px; font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; }
.sector-card p { max-width: 290px; color: rgba(246,243,236,.58); font-size: .9rem; }
.regional-note { position: relative; max-width: 820px; margin: 38px 0 0 auto; padding-left: 24px; border-left: 2px solid var(--gold); color: rgba(246,243,236,.56); font-size: .81rem; }

.approach-section { background: var(--paper); }
.approach-line { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold) 0 12%, var(--mist) 12%); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.approach-step { min-height: 290px; padding: 34px 30px 0 0; }
.approach-step span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; border: 1px solid var(--gold); color: var(--gold); font-size: .66rem; font-weight: 800; }
.approach-step h3 { max-width: 220px; margin-bottom: 18px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; line-height: 1.16; }
.approach-step p { max-width: 250px; color: var(--slate); font-size: .9rem; }

.firm-section { background: var(--ivory); }
.firm-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.portrait-mark { position: relative; min-height: 610px; overflow: hidden; background: linear-gradient(145deg, var(--navy-2), var(--navy)); box-shadow: var(--shadow); }
.portrait-mark::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; }
.portrait-mark strong { position: absolute; left: 58px; top: 95px; color: var(--gold); font-family: var(--font-display); font-size: 10rem; font-weight: 400; line-height: 1; }
.portrait-mark small { position: absolute; left: 60px; bottom: 62px; color: var(--ivory); font-family: var(--font-display); font-size: 1.5rem; line-height: 1.5; }
.corner { position: absolute; width: 82px; height: 82px; }
.corner-a { top: 54px; left: 44px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-b { top: 210px; left: 220px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.firm-copy h2 { margin-bottom: 2px; font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 400; line-height: 1; }
.role { margin-bottom: 36px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.firm-copy > p:not(.eyebrow):not(.role) { max-width: 650px; }
.firm-copy > p:last-of-type { color: var(--slate); }
.credential-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.credential-row span { padding: 9px 12px; border: 1px solid var(--border); color: var(--navy); font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.priorities-section { background: var(--paper); border-top: 1px solid var(--border); }
.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.priority-card { min-height: 360px; padding: 36px; background: var(--ivory); border-top: 3px solid var(--gold); }
.priority-card > span { color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.priority-card h3 { margin: 72px 0 20px; font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.16; }
.priority-card p { color: var(--slate); font-size: .9rem; }

.contact-section { position: relative; padding: 120px 0 42px; overflow: hidden; background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--ivory); }
.contact-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -270px; bottom: -290px; border: 1px solid rgba(198,161,91,.18); border-radius: 50%; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; }
.contact-lead h2 { max-width: 720px; margin-bottom: 24px; font-family: var(--font-display); font-size: clamp(3.4rem, 6.2vw, 6.6rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.contact-lead > p:not(.eyebrow) { max-width: 630px; margin-bottom: 34px; color: rgba(246,243,236,.65); }
.contact-details { border-top: 1px solid rgba(198,161,91,.45); }
.contact-details > div { padding: 23px 0; border-bottom: 1px solid rgba(198,161,91,.25); }
.contact-details span { display: block; margin-bottom: 8px; color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-details a, .contact-details address { display: block; color: var(--ivory); font-family: var(--font-display); font-size: 1.18rem; font-style: normal; line-height: 1.45; }
.contact-details a:hover { color: var(--gold-soft); }
.contact-details .matter-note p { margin: 0; color: rgba(246,243,236,.55); font-size: .81rem; }
.contact-disclaimer { position: relative; margin-top: 78px; padding-top: 22px; border-top: 1px solid rgba(215,222,228,.18); color: rgba(246,243,236,.44); font-size: .7rem; }

.site-footer { padding: 70px 0 22px; background: #03101d; color: var(--ivory); }
.footer-main { display: grid; grid-template-columns: 1.5fr .5fr .5fr; gap: 70px; padding-bottom: 60px; }
.footer-main .brand-logo { width: 260px; }
.footer-main p { margin: 20px 0 0; color: rgba(246,243,236,.5); font-family: var(--font-display); font-size: 1.05rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(246,243,236,.6); font-size: .76rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(215,222,228,.12); color: rgba(246,243,236,.36); font-size: .66rem; letter-spacing: .05em; }
.mobile-contact { display: none; }

.legal-shell { min-height: 100vh; background: var(--paper); }
.legal-header { background: var(--navy); }
.legal-header .header-inner { height: 82px; }
.legal-back { margin-left: auto; color: var(--ivory); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-main { padding: 110px 0 100px; }
.legal-title { max-width: 850px; margin-bottom: 60px; }
.legal-title h1 { margin-bottom: 18px; font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.legal-title p { color: var(--slate); }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 52px 0 14px; font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.legal-content h3 { margin: 30px 0 10px; font-size: 1rem; }
.legal-content p, .legal-content li { color: var(--slate); }
.legal-content a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.legal-content ul { padding-left: 22px; }
.legal-note { margin-top: 48px; padding: 24px; border-left: 3px solid var(--gold); background: var(--ivory); }

a:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 900px; }
  .hero-panel { width: min(620px, 100%); min-height: auto; }
  .split-intro, .firm-grid, .contact-grid { gap: 65px; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(100% - 32px, 720px); }
  .site-header { height: 72px; }
  .logo-link { width: 210px; }
  .header-cta { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { display: flex; align-items: center; gap: 12px; color: var(--ivory); cursor: pointer; list-style: none; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .menu-lines { width: 24px; display: grid; gap: 6px; }
  .menu-lines i { height: 1px; background: var(--gold); }
  .mobile-nav-panel { position: fixed; left: 0; right: 0; top: 72px; display: grid; padding: 18px 22px 28px; background: var(--navy); border-top: 1px solid rgba(198,161,91,.22); box-shadow: 0 25px 40px rgba(0,0,0,.2); }
  .mobile-nav-panel a { padding: 13px 0; border-bottom: 1px solid rgba(215,222,228,.12); color: var(--ivory); font-family: var(--font-display); font-size: 1.25rem; }
  .hero { padding: 135px 0 74px; }
  .hero h1 { font-size: clamp(3.65rem, 14vw, 5.6rem); }
  .hero-proof { flex-wrap: wrap; }
  .signal-inner { grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .signal-inner span { padding: 11px 8px; border-right: 0; }
  .section { padding: 84px 0; }
  .split-intro, .section-heading-row, .firm-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-intro, .firm-grid, .contact-grid, .section-heading-row { gap: 36px; }
  .intro-copy { padding-top: 0; }
  .section-heading-row > p { margin-left: 0; }
  .expertise-card { padding: 30px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .priority-grid { grid-template-columns: 1fr; }
  .portrait-mark { width: min(520px, 100%); min-height: 520px; }
  .contact-section { padding-top: 88px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { padding-bottom: 62px; }
  .logo-link { width: 188px; }
  .hero { padding-top: 122px; }
  .hero-grid { gap: 50px; }
  .hero h1 { font-size: 3.45rem; line-height: .94; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-panel { padding: 34px 24px 24px; }
  .hero-panel h2 { font-size: 2rem; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid div { min-height: 104px; }
  .signal-inner { grid-template-columns: 1fr; }
  .display-heading { font-size: 3rem; }
  .expertise-grid, .sector-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: auto; }
  .card-topline { margin-bottom: 34px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step { min-height: auto; padding-bottom: 36px; }
  .portrait-mark { min-height: 440px; }
  .portrait-mark strong { left: 38px; top: 90px; font-size: 8rem; }
  .portrait-mark small { left: 40px; bottom: 42px; font-size: 1.25rem; }
  .contact-lead h2 { font-size: 3.4rem; }
  .contact-details a, .contact-details address { font-size: 1rem; overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-contact { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 62px; background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .legal-header .logo-link { width: 170px; }
  .legal-back { font-size: .62rem; }
  .legal-main { padding-top: 82px; }
  .legal-title h1 { font-size: 3.2rem; }
}

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

@media print {
  .site-header, .mobile-contact, .hero-actions, .signal-strip, .site-footer { display: none !important; }
  body { padding: 0; color: #000; background: #fff; }
  .hero, .sectors-section, .contact-section { color: #000; background: #fff; }
  .hero { min-height: auto; padding: 30px 0; }
  .section { padding: 40px 0; }
}