:root {
  --navy: #07182b;
  --navy-2: #0d2845;
  --navy-3: #153b60;
  --gold: #cfa25d;
  --gold-light: #e4c18d;
  --ivory: #f7f1e8;
  --paper: #fbfaf7;
  --ink: #172031;
  --muted: #667083;
  --line: #dcd8cf;
  --white: #ffffff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: .8rem 1rem;
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  background: var(--navy);
}
.brand { width: min(310px, 42vw); }
.brand img { width: 100%; height: auto; }
.navigation { display: flex; gap: 1.7rem; align-items: center; }
.navigation a {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.navigation a:hover, .navigation a:focus-visible { color: var(--gold-light); }
.navigation .nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 1rem;
  align-items: center;
  color: var(--navy);
  background: var(--gold);
}
.navigation .nav-cta:hover, .navigation .nav-cta:focus-visible { color: var(--navy); background: var(--gold-light); }
.menu-button { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 720px;
  padding: clamp(4rem, 8vw, 7rem) max(20px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(207,162,93,.16), transparent 26%),
    linear-gradient(125deg, var(--navy), #061525 62%, #0b2239);
}
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 5%, transparent 65%);
}
.hero-copy { align-self: center; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { display: inline-block; width: 28px; height: 1px; margin: 0 .7rem .2rem 0; content: ""; background: currentColor; }
.eyebrow.dark { color: #8e672f; }
.eyebrow.light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 790px;
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.6vw, 6.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}
.lead {
  max-width: 640px;
  color: rgba(255,255,255,.64);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.gold { color: var(--navy); background: var(--gold); }
.button.gold:hover { background: var(--gold-light); }
.button.outline { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.28); }
.hero-metrics {
  display: flex;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-metrics > div {
  display: grid;
  gap: .2rem;
  flex: 1;
  padding: 1.1rem 1rem 0 0;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-metrics > div + div { padding-left: 1rem; }
.hero-metrics strong { color: var(--gold-light); font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.hero-metrics span { color: rgba(255,255,255,.46); font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; }

.hero-visual { position: relative; align-self: center; min-height: 570px; }
.photo-frame {
  position: absolute;
  inset: 0 0 50px 60px;
  overflow: hidden;
  border: 1px solid rgba(207,162,93,.55);
  background: var(--navy-2);
}
.photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(7,24,43,.66));
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(.8) contrast(1.03); }
.profile-tag {
  position: absolute;
  right: 35px;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: .25rem;
  padding: 1.2rem 1.4rem;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.profile-tag span { font-size: .61rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.profile-tag strong { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.profile-tag small { color: rgba(7,24,43,.68); }
.corner-mark {
  position: absolute;
  top: -28px;
  right: -20px;
  color: transparent;
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(207,162,93,.35);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.principles article {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: .6rem;
  padding: 1.6rem max(20px, 3vw);
  border-right: 1px solid var(--line);
}
.principles article > span { grid-row: span 2; color: #9a733b; font-family: Georgia, serif; font-size: .7rem; }
.principles strong { font-size: .9rem; }
.principles p { margin: .25rem 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.section { padding: clamp(4.5rem, 9vw, 8rem) max(20px, calc((100vw - var(--max)) / 2)); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.3rem;
}
.section-heading h2, .firm h2, .credentials h2, .contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.05em;
}
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 330px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(7,24,43,.08); }
.area-card.primary { grid-column: span 8; color: var(--white); border-color: var(--navy-2); background: var(--navy-2); }
.area-card.accent { grid-column: span 8; background: var(--ivory); }
.area-number { color: #9a733b; font-family: Georgia, serif; font-size: .72rem; }
.area-card.primary .area-number { color: var(--gold-light); }
.area-card h3 { max-width: 430px; margin: 2.6rem 0 1rem; font-family: Georgia, serif; font-size: clamp(1.55rem, 2.7vw, 2.5rem); font-weight: 400; line-height: 1.05; }
.area-card p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.65; }
.area-card.primary p { color: rgba(255,255,255,.62); }
.area-card > span {
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: #8c7659;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.area-card.primary > span { border-color: rgba(255,255,255,.15); color: var(--gold-light); }
.partnerships {
  display: grid;
  grid-template-columns: .45fr 1fr .8fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gold);
  background: #fffdfa;
}
.partnerships > span { color: #8e672f; font-size: .65rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.partnerships > div { display: flex; gap: .8rem; flex-wrap: wrap; }
.partnerships strong { padding: .65rem .8rem; color: var(--white); background: var(--navy); font-size: .77rem; }
.partnerships p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }

.firm {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    var(--navy);
  background-size: 80px 80px;
}
.firm-title { align-self: start; position: sticky; top: 2rem; }
.firm-copy > p { max-width: 620px; color: rgba(255,255,255,.62); font-size: 1.05rem; line-height: 1.8; }
.value-list { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.16); }
.value-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.value-list article > span { grid-row: span 2; color: var(--gold-light); font-family: Georgia, serif; font-size: .75rem; }
.value-list strong { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.value-list p { margin: .4rem 0 0; color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.6; }

.profile {
  display: grid;
  grid-template-columns: minmax(290px, .55fr) 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
  background: var(--ivory);
}
.profile-card {
  position: relative;
  min-height: 420px;
  padding: 2rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}
.profile-initials {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  color: transparent;
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: .7;
  -webkit-text-stroke: 1px rgba(207,162,93,.25);
}
.profile-card p { color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.profile-card h2 { position: relative; z-index: 1; max-width: 380px; margin-top: 7rem; font-family: Georgia, serif; font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 400; line-height: .95; }
.profile-card > strong { position: relative; z-index: 1; color: rgba(255,255,255,.65); font-size: .8rem; letter-spacing: .08em; }
.credentials h2 { max-width: 730px; margin-bottom: 2rem; }
.credentials ul { margin: 0; padding: 0; border-top: 1px solid #cfc5b5; list-style: none; }
.credentials li { display: grid; grid-template-columns: 125px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid #cfc5b5; }
.credentials li span { color: #8e672f; font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.credentials li strong { font-family: Georgia, serif; font-size: 1rem; font-weight: 400; }

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(330px, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  color: var(--white);
  background: var(--navy-2);
}
.contact-copy h2 { max-width: 750px; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; margin: 1.5rem 0 2rem; color: rgba(255,255,255,.56); line-height: 1.75; }
.contact-details { align-self: center; border-top: 1px solid rgba(255,255,255,.17); }
.contact-details > a, .contact-details address { display: grid; gap: .4rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.17); font-style: normal; text-decoration: none; }
.contact-details small { color: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-details strong { overflow-wrap: anywhere; font-family: Georgia, serif; font-size: clamp(1.05rem, 2.1vw, 1.5rem); font-weight: 400; }
.contact-details span { color: rgba(255,255,255,.48); font-size: .8rem; }
.socials { display: flex; gap: 1rem; padding-top: 1.2rem; }
.socials a { color: var(--gold-light); font-size: .72rem; font-weight: 700; text-decoration: none; }

footer {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2rem max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,.5);
  background: #04101e;
  font-size: .68rem;
  line-height: 1.6;
}
footer img { width: 220px; }
footer p { margin: 0; }
footer a { text-decoration: none; }
.floating-contact {
  position: fixed;
  z-index: 30;
  right: 17px;
  bottom: 17px;
  display: none;
  gap: .6rem;
  align-items: center;
  padding: .85rem 1rem;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 35px rgba(7,24,43,.3);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 940px) {
  .site-header { min-height: 78px; }
  .menu-button {
    display: grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
  }
  .menu-button span { width: 20px; height: 2px; background: var(--white); }
  .navigation {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1rem 20px 1.5rem;
    background: var(--navy);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  .navigation[data-open="false"] { display: none; }
  .navigation a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .navigation .nav-cta { justify-content: center; margin-top: .7rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 590px); }
  .principles { grid-template-columns: 1fr; }
  .section-heading, .firm, .profile, .contact { grid-template-columns: 1fr; }
  .firm-title { position: static; }
  .area-card { grid-column: span 6; }
  .area-card.primary, .area-card.accent { grid-column: span 12; }
  .partnerships { grid-template-columns: 1fr; }
  .profile-card { max-width: 600px; }
  footer { grid-template-columns: 220px 1fr; }
  footer > a { grid-column: 2; }
}

@media (max-width: 600px) {
  .brand { width: 220px; }
  .hero { padding-top: 4.5rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { display: grid; grid-template-columns: 1fr; }
  .hero-metrics > div, .hero-metrics > div + div { padding: .9rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-visual { min-height: 510px; }
  .photo-frame { inset: 0 0 55px 20px; }
  .corner-mark { right: -8px; font-size: 5rem; }
  .area-card, .area-card.primary, .area-card.accent { grid-column: span 12; min-height: 300px; }
  .credentials li { grid-template-columns: 1fr; }
  .socials { flex-direction: column; }
  footer { grid-template-columns: 1fr; padding-bottom: 6rem; }
  footer > a { grid-column: auto; }
  .floating-contact { display: inline-flex; }
}

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