:root {
  --black: #101010;
  --ink: #242424;
  --muted: #5f5f5f;
  --subtle: #777064;
  --gold: #a9792b;
  --gold-dark: #715019;
  --gold-soft: #f4efe6;
  --paper: #fffdfa;
  --panel: #f8f6f1;
  --line: #e4ded2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 16, 16, 0.09);
  --max-width: 1180px;
  --header-height: 78px;
  --section-space: 58px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only,
.skip-link {
  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:focus {
  z-index: 100;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(169, 121, 43, 0.48);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 8px clamp(18px, 4vw, 44px);
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(138px, 12vw, 176px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.35;
  transform: scaleX(1);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta:hover,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--gold-soft);
}

.button-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--black);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--black);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: clamp(540px, calc(100svh - var(--header-height) - 42px), 620px);
  overflow: hidden;
  padding: 0;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.86) 0%, rgba(16, 16, 16, 0.66) 44%, rgba(16, 16, 16, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 16, 16, 0.22), rgba(16, 16, 16, 0.04));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

p {
  text-align: justify;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 3.8rem;
}

h2 {
  font-size: 3.15rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero .eyebrow {
  color: #d8b56d;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
}

.hero .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hero .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-facts div {
  padding: 12px 14px 12px 0;
}

.quick-facts div + div {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-facts dt {
  margin: 0 0 2px;
  color: #d8b56d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  background: var(--black);
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-note {
  display: none;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: var(--section-space) 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child,
.section-heading p,
.feature-copy p,
.firm-panel p,
.profile-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.services-section .section-heading {
  display: block;
  max-width: 860px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card h3 {
  max-width: 310px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--black);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div,
.highlight-list li {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: var(--panel);
}

.highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  color: var(--black);
  font-weight: 700;
}

.feature-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.firm-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--panel);
}

.firm-panel {
  display: block;
  max-width: 980px;
}

.firm-panel p:first-of-type {
  margin-top: 0;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.profile-media {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--panel);
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.credential-grid div {
  min-height: 146px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.credential-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.credential-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(310px, 0.72fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 8px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-card a {
  color: var(--black);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-facts div {
  padding: 14px 14px 14px 0;
}

.contact-facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.contact-facts dt {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding: 54px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand img {
  width: 176px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.footer-social a {
  color: var(--white);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #d8b56d;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1080px) {
  :root {
    --section-space: 50px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 52px rgba(16, 16, 16, 0.14);
  }

  .site-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a::after {
    display: none;
  }

  .hero,
  .intro-band,
  .section-heading,
  .feature-section,
  .firm-panel,
  .profile-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(600px, calc(100svh - var(--header-height) - 74px), 650px);
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-media {
    position: static;
    max-width: 520px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
    --section-space: 42px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 164px;
  }

  .section {
    width: min(100% - 32px, var(--max-width));
  }

  .hero {
    width: 100%;
    padding: 0;
  }

  .hero-copy {
    width: min(100% - 32px, var(--max-width));
    padding: 32px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
  }

  .quick-facts div,
  .quick-facts div + div {
    padding: 10px 8px;
  }

  .quick-facts div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .quick-facts dt {
    font-size: 0.64rem;
  }

  .quick-facts dd {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .contact-facts div,
  .contact-facts div + div {
    padding: 12px 0;
  }

  .contact-facts div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(16, 16, 16, 0.9) 0%, rgba(16, 16, 16, 0.76) 62%, rgba(16, 16, 16, 0.34) 100%);
  }

  .services-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .credential-grid div {
    min-height: auto;
  }

  .profile-media {
    max-width: none;
  }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

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