:root {
  --navy: #0d2a43;
  --navy-deep: #082039;
  --gold: #b89554;
  --gold-dark: #9b793d;
  --ivory: #fbfaf7;
  --paper: #f4f1eb;
  --ink: #172536;
  --muted: #5f6871;
  --line: #ddd8ce;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1160px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid rgba(184, 149, 84, .48); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, .9);
  box-shadow: 0 10px 32px rgba(13, 42, 67, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 64px, 1240px);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }

.brand-mark {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.06em;
}

.brand-divider { width: 1px; height: 42px; background: var(--gold); }

.brand-name {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-name small { font-family: var(--sans); font-size: 9px; letter-spacing: .28em; }

.main-nav { display: flex; align-items: center; gap: clamp(28px, 3.2vw, 52px); }

.main-nav a {
  position: relative;
  color: #25313d;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 646px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(100deg, #fbfaf7 0%, #f9f7f2 50%, #eee9e0 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 104px clamp(48px, 7.5vw, 132px) 152px max(48px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow { display: none; }

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 4.45vw, 75px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.gold-rule { width: 52px; height: 2px; margin: 38px 0 28px; background: var(--gold); }

.hero-lead { max-width: 480px; margin: 0 0 35px; color: #4a5662; font-size: 17px; line-height: 1.75; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.button:hover { transform: translateY(-2px); }

.button-gold { background: var(--gold); color: var(--white); }

.button-gold:hover { background: var(--gold-dark); box-shadow: 0 12px 28px rgba(155, 121, 61, .2); }

.hero-visual { min-width: 0; margin: 0; overflow: hidden; }

.hero-visual img { height: 100%; object-fit: cover; object-position: center top; transform: scale(1.005); }

.trust-bar {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -49px;
  width: min(780px, calc(100% - 48px));
  min-height: 99px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(13, 42, 67, .14);
}

.trust-bar div { padding: 2px 34px; text-align: center; }
.trust-bar div + div { border-left: 1px solid rgba(255,255,255,.42); }
.trust-bar strong { display: block; color: #d7b56f; font-size: 17px; font-weight: 500; text-transform: uppercase; }
.trust-bar span { display: block; margin-top: 3px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.section { padding: 104px 0; }

.container { width: min(100% - 64px, var(--container)); margin: 0 auto; }

.section-kicker {
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-align: center;
  text-transform: uppercase;
}

.section-kicker.align-left { text-align: left; }

.section-title {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.practices { padding-top: 128px; background: var(--ivory); }

.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

.practice-card {
  min-height: 325px;
  padding: 35px 35px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
}

.practice-card:hover { transform: translateY(-7px); border-color: rgba(184,149,84,.7); box-shadow: 0 18px 42px rgba(13,42,67,.08); }

.line-icon { width: 52px; height: 52px; margin-bottom: 23px; fill: none; stroke: var(--gold); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }

.practice-card h3 { margin: 0 0 14px; color: var(--navy); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.practice-card p { max-width: 300px; margin: 0 auto 19px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.practice-card .text-link { margin-top: auto; }

.text-link { color: var(--gold-dark); font-size: 13px; font-weight: 500; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform .22s ease; }
.text-link:hover span { transform: translateX(5px); }

.about {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.about-copy { padding: 68px clamp(48px, 8vw, 135px) 68px max(48px, calc((100vw - 1160px) / 2)); align-self: center; }

.about h2 { margin: 0 0 26px; color: var(--navy); font-family: var(--serif); font-size: clamp(38px, 3.6vw, 54px); font-weight: 400; line-height: 1.08; }
.about p:not(.section-kicker) { max-width: 570px; margin: 0 0 26px; color: #47525b; font-size: 15px; line-height: 1.72; }
.about-visual { min-width: 0; margin: 0; overflow: hidden; }
.about-visual img { height: 100%; min-height: 480px; object-fit: cover; transition: transform .7s var(--ease); }
.about:hover .about-visual img { transform: scale(1.02); }

.team { padding-bottom: 72px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.person-card { min-width: 0; }
.portrait { margin-bottom: 14px; overflow: hidden; background: #ddd5ca; aspect-ratio: 1.25 / 1; }
.portrait img { height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .5s ease; }
.person-card:hover .portrait img { transform: scale(1.035); filter: saturate(.85); }
.person-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.person-card p { margin: 1px 0 4px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.person-card a { color: var(--gold-dark); font-size: 12px; }
.person-card a span { margin-left: 5px; }

.insights { padding-top: 40px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.insight-card { min-width: 0; }
.insight-image { display: block; margin-bottom: 15px; overflow: hidden; aspect-ratio: 3.1 / 1; background: var(--paper); }
.insight-image img { height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.insight-card:hover .insight-image img { transform: scale(1.05); }
.insight-card time { color: #69717a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { min-height: 62px; margin: 7px 0 15px; color: #14283d; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.22; }
.insight-card h3 a:hover { color: var(--gold-dark); }

.contact-section { padding: 25px 32px 56px; }
.contact-panel {
  width: min(100%, var(--container));
  min-height: 136px;
  margin: 0 auto;
  padding: 30px 66px;
  display: grid;
  grid-template-columns: 1.2fr 1px 1fr auto;
  gap: 48px;
  align-items: center;
  background: linear-gradient(105deg, var(--navy) 0%, #0a3655 100%);
  color: var(--white);
}
.contact-panel h2 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 38px); font-weight: 400; line-height: 1.1; }
.contact-panel p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; }
.contact-divider { align-self: stretch; background: rgba(255,255,255,.45); }
.contact-panel .button { white-space: nowrap; }

.site-footer { background: var(--ivory); }
.footer-grid {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
  padding: 22px 0 45px;
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr 1fr;
  gap: 54px;
}
.footer-brand .brand-mark { font-size: 34px; }
.footer-brand .brand-name { font-size: 11px; }
.footer-note { max-width: 285px; margin: 24px 0 0; color: var(--muted); font-size: 12px; }
.footer-grid h3 { margin: 11px 0 14px; color: #52606a; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand), .footer-grid address a { display: block; width: fit-content; margin: 4px 0; color: #46515a; font-size: 12px; }
.footer-grid a:hover { color: var(--gold-dark); }
.footer-grid address { font-style: normal; }
.footer-grid address p { margin: 0 0 9px; color: #46515a; font-size: 12px; line-height: 1.65; }
.footer-bottom {
  min-height: 50px;
  padding: 0 max(32px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  font-size: 10px;
}
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--white); }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

@media (max-width: 980px) {
  .header-inner { width: min(100% - 40px, 940px); min-height: 78px; }
  .brand-mark { font-size: 33px; }
  .main-nav { gap: 22px; }
  .main-nav a { font-size: 10px; }
  .hero { min-height: 590px; }
  .hero-copy { padding: 76px 46px 132px 40px; }
  .hero h1 { font-size: clamp(42px, 5.6vw, 58px); }
  .trust-bar { width: min(720px, calc(100% - 40px)); }
  .practice-grid { gap: 18px; }
  .practice-card { padding-inline: 22px; }
  .about-copy { padding: 58px 42px; }
  .about h2 { font-size: 41px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .contact-panel { padding: 32px; grid-template-columns: 1fr 1px 1fr; gap: 28px; }
  .contact-panel .button { grid-column: 3; justify-self: start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid address { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .header-inner { width: min(100% - 32px, 680px); min-height: 72px; }
  .brand { gap: 10px; }
  .brand-mark { font-size: 31px; }
  .brand-divider { height: 34px; }
  .brand-name { font-size: 10px; }
  .brand-name small { font-size: 7px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 1px; display: block; background: var(--navy); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    padding: 58px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    background: var(--ivory);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 31px; text-transform: none; letter-spacing: 0; }
  .hero { min-height: auto; padding-bottom: 0; display: block; }
  .hero-copy { padding: 72px 28px 68px; }
  .eyebrow { display: block; margin: 0 0 17px; color: var(--gold-dark); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
  .hero h1 { max-width: 540px; font-size: clamp(43px, 12vw, 62px); }
  .gold-rule { margin: 27px 0 23px; }
  .hero-lead { font-size: 16px; }
  .hero-visual { height: 420px; }
  .hero-visual img { object-position: center top; }
  .trust-bar { position: relative; left: auto; bottom: auto; width: 100%; transform: none; grid-template-columns: 1fr; box-shadow: none; }
  .trust-bar div { padding: 22px; }
  .trust-bar div + div { border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .section { padding: 78px 0; }
  .container { width: min(100% - 40px, 680px); }
  .practices { padding-top: 74px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 288px; }
  .about { grid-template-columns: 1fr; }
  .about-copy { padding: 64px 28px; }
  .about h2 { font-size: clamp(38px, 10vw, 48px); }
  .about-visual { order: -1; height: 330px; }
  .about-visual img { min-height: 330px; }
  .team-grid { gap: 28px 16px; }
  .section-title { margin-bottom: 34px; }
  .insights-grid { grid-template-columns: 1fr; gap: 45px; }
  .insight-card h3 { min-height: auto; }
  .insight-image { aspect-ratio: 2.7 / 1; }
  .contact-section { padding: 10px 20px 48px; }
  .contact-panel { min-height: 0; padding: 40px 28px; grid-template-columns: 1fr; gap: 24px; }
  .contact-panel .contact-divider { width: 42px; height: 1px; }
  .contact-panel .button { grid-column: auto; justify-self: start; }
  .footer-grid { width: min(100% - 40px, 680px); padding: 18px 0 38px; grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid address { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-visual { height: 330px; }
  .team-grid { grid-template-columns: 1fr; }
  .portrait { aspect-ratio: 1.4 / 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid address { grid-column: auto; }
  .footer-bottom div { flex-direction: column; gap: 4px; }
}

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