:root {
  --ink: #080909;
  --panel: #191a1a;
  --panel-2: #1d1e1e;
  --gold: #deb242;
  --gold-bright: #e7c158;
  --gold-muted: #987f35;
  --text: #f1f0ec;
  --muted: #aaa9a4;
  --muted-dark: #7c796d;
  --line: rgba(222, 178, 66, 0.34);
  --soft-line: rgba(255, 255, 255, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 18px 0;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom: 1px solid rgba(222,178,66,0.15);
  background: rgba(8, 9, 9, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner,
.brand,
.desktop-nav,
.button-row {
  display: flex;
  align-items: center;
}

.header-inner { justify-content: space-between; }

.brand {
  gap: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img { width: 36px; height: 45px; object-fit: contain; }

.desktop-nav { gap: 36px; font-size: 14px; }
.desktop-nav > a:not(.button) { color: #d7d6d1; transition: color 160ms ease; }
.desktop-nav > a:not(.button):hover,
.desktop-nav > a[aria-current="location"] { color: var(--gold); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--gold); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: #15130d;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { background: var(--gold-bright); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.button-small { min-height: 40px; padding: 9px 20px; }
.button-outline { background: transparent; color: var(--gold); }
.button-outline:hover { background: var(--gold); color: #15130d; }
.button-row { gap: 14px; margin-top: 32px; }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(150px, 16vw, 200px);
  padding-bottom: clamp(90px, 10vw, 130px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 4vw, 64px);
}

.hero-content { min-width: 0; }

.hero-office {
  position: relative;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 16 / 10;
  justify-self: end;
  margin: 0 12px 0 0;
}

.hero-office img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--gold-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ornament { position: relative; display: inline-block; padding: 0 20px; }
.ornament::before,
.ornament::after,
.corner-card::after,
.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: var(--gold-muted);
  opacity: 0.72;
}
.ornament::before { left: 0; top: -8px; border-top: 1px solid; border-left: 1px solid; }
.ornament::after { right: 0; bottom: -8px; border-right: 1px solid; border-bottom: 1px solid; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }

h1 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--gold);
  font-size: clamp(56px, 5.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

#home-title br {
  display: block !important;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.ring-motif {
  position: absolute;
  border: 1px solid rgba(222,178,66,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.ring-motif::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(222,178,66,0.05);
  border-radius: inherit;
}
.hero-rings { right: -210px; top: 205px; width: 520px; aspect-ratio: 1; }

.stats {
  border-block: 1px solid var(--soft-line);
  background: #181919;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 34px;
}
.stats-grid div { display: grid; place-items: center; padding: 0 20px; text-align: center; }
.stats-grid div + div { border-left: 1px solid var(--soft-line); }
.stats-grid strong { color: var(--gold); font-family: var(--serif); font-size: 30px; line-height: 1; }
.stats-grid span { margin-top: 7px; color: var(--muted-dark); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

.section-pad { padding-block: 100px; }
.section-heading { margin-bottom: 54px; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; }
.ruled-heading { display: flex; align-items: end; gap: 30px; }
.ruled-heading::after { content: ""; flex: 1; height: 1px; margin-bottom: 8px; background: var(--line); }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.corner-card { position: relative; border-top: 1px solid var(--line); background: var(--panel); }
.corner-card::after { right: 14px; bottom: 14px; border-right: 1px solid; border-bottom: 1px solid; }
.service-card { min-height: 132px; padding: 28px; }
.service-card h3 { margin-bottom: 11px; color: var(--gold); font-size: 20px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.cta-band {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-muted);
  background: var(--panel);
}
.narrow-left { position: relative; z-index: 1; padding-block: 112px; }
.narrow-left > * { max-width: 650px; }
.gold-rule { display: block; width: 44px; height: 1px; margin-bottom: 30px; background: var(--gold); }
.cta-band h2 { margin-bottom: 18px; font-size: clamp(42px, 4vw, 58px); line-height: 1; }
.cta-band p { color: #878274; max-width: 760px; }
.text-link { display: inline-block; margin-top: 10px; color: var(--gold); font-weight: 700; }
.side-rings { right: -190px; top: 28px; width: 410px; aspect-ratio: 1; }

.section-intro { padding-block: 120px 92px; }
.section-intro .eyebrow { margin-bottom: 20px; }
.display-title {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: clamp(54px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.section-intro > p:last-child { max-width: 690px; margin-bottom: 0; color: var(--muted); font-size: 17px; }

.service-list { display: grid; gap: 28px; padding-bottom: 120px; }
.detail-card { display: grid; grid-template-columns: 1fr 0.95fr; gap: 70px; min-height: 220px; padding: 42px; }
.detail-card h3 { margin-bottom: 12px; color: var(--gold); font-size: 28px; }
.detail-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.detail-card h4,
.consultation-aside h4,
.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 13px;
  color: var(--gold-muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-card ul,
.consultation-aside ul { margin: 0; padding: 0; list-style: none; }
.detail-card li,
.consultation-aside li { position: relative; margin: 0 0 10px; padding-left: 19px; color: var(--muted); font-size: 13px; }
.detail-card li::before,
.consultation-aside li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.services-cta .narrow-left { padding-block: 96px; }
.services-cta h2 { font-size: clamp(40px, 4vw, 54px); }
.services-cta .button,
.approach-cta .button { margin-top: 18px; }

.about-intro { padding-bottom: 100px; }
.bio-band { padding-block: 120px; background: var(--panel); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 58px; }
.portrait-wrap { margin: 0; }
.portrait-frame { position: relative; aspect-ratio: 1.08 / 1; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; }
.corner-frame::before { left: -12px; top: -12px; border-top: 1px solid; border-left: 1px solid; }
.corner-frame::after { right: -12px; bottom: -12px; border-right: 1px solid; border-bottom: 1px solid; }
.portrait-wrap figcaption { margin-top: 24px; padding-left: 20px; border-left: 1px solid var(--line); }
.portrait-wrap blockquote { margin: 0 0 8px; color: #858175; font-family: var(--serif); font-size: 13px; font-style: italic; }
.portrait-wrap cite { color: var(--gold-muted); font-size: 11px; font-style: normal; }
.bio-copy h2 { margin-bottom: 32px; font-size: clamp(34px, 3.3vw, 48px); line-height: 1; }
.bio-copy p { color: var(--muted); font-size: 14px; }
.credentials { background: var(--ink); }
.credentials .service-card { min-height: 150px; }
.approach-cta .eyebrow { margin-bottom: 16px; }
.approach-cta .gold-rule { margin-bottom: 27px; }

.consultation-section { min-height: 1040px; padding-bottom: 120px; }
.consultation-intro { padding-block: 120px 75px; }
.consultation-intro .eyebrow { margin-bottom: 20px; }
.consultation-intro > p:last-child { max-width: 620px; color: var(--muted); font-size: 17px; }
.consultation-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr); gap: 70px; align-items: start; }
.consultation-form { padding: 42px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 24px; margin-bottom: 28px; }
.field { display: grid; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--gold-muted); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #303131;
  border-radius: 0;
  background: #090a0a;
  color: var(--text);
  padding: 13px 16px;
}
.field input,
.field select { min-height: 48px; }
.field textarea { min-height: 144px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #747168; }
.consultation-form .button { min-width: 220px; }
.form-status { min-height: 1.5em; margin: 16px 0 0; color: var(--gold); font-size: 13px; }
.consultation-aside { display: grid; gap: 36px; padding-top: 1px; }
.consultation-aside .gold-rule { margin-bottom: 24px; }
.consultation-aside h3 { font-size: 25px; }
.aside-block { padding-top: 28px; border-top: 1px solid var(--soft-line); }
.aside-block p { margin-bottom: 0; color: #817d71; font-size: 13px; }

.site-footer { border-top: 1px solid var(--gold-muted); padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.75fr 1fr; gap: 80px; padding-bottom: 48px; }
.footer-brand .brand { width: fit-content; }
.footer-brand > p { max-width: 300px; margin: 20px 0 16px; color: #817d71; font-size: 13px; }
.footer-brand > strong { color: var(--gold-muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-credential {
  width: min(250px, 100%);
  margin-top: 26px;
  padding: 8px 10px;
  border: 1px solid rgba(222, 178, 66, 0.18);
  background: #fff;
}
.footer-credential img { width: 100%; height: auto; }
.footer-nav,
.footer-contact { display: grid; align-content: start; justify-items: start; gap: 10px; }
.footer-nav a,
.footer-contact a { color: #d1d0ca; font-size: 13px; }
.footer-contact p { margin: 0; color: #777469; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--soft-line); color: #66645d; font-size: 10px; }

@media (max-width: 1050px) {
  .hero { min-height: 0; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-office {
    width: min(100%, 680px);
    height: clamp(300px, 52vw, 420px);
    aspect-ratio: auto;
    justify-self: start;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .container { width: min(100% - 40px, 1180px); }
  .site-header { padding-block: 14px; }
  .menu-toggle { display: block; }
  .desktop-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 73px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(8,9,9,0.98);
  }
  .desktop-nav.is-open { display: flex; }
  .desktop-nav > a { padding: 14px 4px; }
  .desktop-nav .button { margin-top: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-grid div { padding-block: 24px; }
  .stats-grid div:nth-child(3) { border-left: 0; border-top: 1px solid var(--soft-line); }
  .stats-grid div:nth-child(4) { border-top: 1px solid var(--soft-line); }
  .detail-card { gap: 36px; padding: 34px; }
  .bio-grid { gap: 40px; }
  .consultation-grid { grid-template-columns: 1fr; }
  .consultation-aside { grid-template-columns: repeat(2, 1fr); }
  .consultation-aside > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1180px); }
  .brand { font-size: 16px; }
  .brand img { width: 31px; height: 39px; }
  .hero { min-height: 0; }
  .hero .eyebrow { line-height: 1.5; }
  h1 { font-size: clamp(43px, 13.5vw, 61px); }
  .hero-copy { font-size: 16px; }
  .button-row { align-items: stretch; flex-direction: column; max-width: 290px; }
  .hero-layout { gap: 46px; }
  .hero-office {
    width: 100%;
    height: clamp(240px, 72vw, 340px);
  }
  .hero-rings { right: -310px; top: 220px; }
  .stats-grid strong { font-size: 26px; }
  .section-pad { padding-block: 76px; }
  .ruled-heading::after { display: none; }
  .card-grid,
  .detail-card,
  .bio-grid,
  .form-grid,
  .consultation-aside,
  .footer-grid { grid-template-columns: 1fr; }
  .overview-grid { gap: 14px; }
  .service-card { padding: 24px; }
  .cta-band { min-height: 420px; }
  .narrow-left { padding-block: 88px; }
  .cta-band h2 { font-size: 42px; }
  .section-intro { padding-block: 98px 64px; }
  .display-title { font-size: clamp(45px, 13vw, 62px); }
  .display-title br { display: none; }
  .section-intro > p:last-child { font-size: 16px; }
  .service-list { gap: 18px; padding-bottom: 90px; }
  .detail-card { gap: 28px; min-height: 0; padding: 28px 24px; }
  .bio-band { padding-block: 80px; }
  .bio-grid { gap: 58px; }
  .portrait-frame { aspect-ratio: 0.92 / 1; }
  .consultation-intro { padding-block: 98px 54px; }
  .consultation-section { padding-bottom: 90px; }
  .consultation-grid { gap: 54px; }
  .consultation-form { padding: 28px 22px; }
  .field-wide { grid-column: auto; }
  .consultation-aside > div:first-child { grid-column: auto; }
  .site-footer { padding-top: 52px; }
  .footer-grid { gap: 36px; }
  .footer-credential { width: min(230px, 100%); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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

@media print {
  .site-header, .button, .menu-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  section { break-inside: avoid; }
}
