:root {
  --ink: #0b0b0c;
  --charcoal: #171719;
  --graphite: #292a2d;
  --silver: #b9bbc0;
  --polished-silver: #c3c6cb;
  --polished-silver-dark: #4a4d52;
  --platinum: #e1e2e4;
  --ivory: #f6f4ef;
  --paper: #fffefa;
  --muted: #66676b;
  --line: rgba(17, 17, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.13);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
}

* { 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.68;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: .8rem 1rem;
  border: 1px solid var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: max-content;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.brand-word {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  position: relative;
  color: #333438;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .105em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1rem;
  border: 3px solid var(--polished-silver-dark);
  background: var(--polished-silver);
  color: #08090a !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 0 rgba(0,0,0,.2), 0 0 0 1px #eceef1, 0 8px 20px rgba(0,0,0,.24);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { color: #050506 !important; background: var(--polished-silver); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 0 rgba(0,0,0,.18), 0 0 0 1px #eceef1, 0 11px 25px rgba(0,0,0,.3); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .nav-toggle span { opacity: 0; }
.menu-open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.5rem), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.dark { background: var(--ink); color: white; }
.paper { background: var(--paper); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  color: #505156;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.dark .eyebrow { color: var(--silver); }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { font-size: clamp(3.05rem, 7vw, 6.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.3rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.55rem, 2.7vw, 2.1rem); letter-spacing: -.018em; }
p { margin-top: 0; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.72; color: #3f4044; }
.dark .lede { color: #d0d1d4; }
.measure { max-width: 67ch; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.3rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-outline { background: transparent; color: var(--ink); }
.dark .button { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.dark .button-outline { background: transparent; color: white; }
.button-silver,
.dark .button.button-silver {
  border: 3px solid var(--polished-silver-dark);
  background: var(--polished-silver);
  color: #08090a;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 0 rgba(0,0,0,.2), 0 0 0 1px #eceef1, 0 0 22px rgba(195,198,203,.38), 0 14px 30px rgba(0,0,0,.36);
}
.button-silver:hover,
.dark .button.button-silver:hover { background: var(--polished-silver); box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 0 rgba(0,0,0,.18), 0 0 0 1px #eceef1, 0 0 28px rgba(210,213,218,.45), 0 18px 38px rgba(0,0,0,.42); }
.section-action { display: flex; width: fit-content; margin-top: 1.25rem; }
.section-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; margin-top: 2rem; }
.section-links-end { justify-content: flex-end; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.09), transparent 24%),
    linear-gradient(128deg, #080809 0%, #171719 58%, #080809 100%);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 4rem; padding-block: 5rem; }
.hero h1 { max-width: 820px; margin-bottom: 1.5rem; }
.hero .lede { max-width: 650px; color: #d3d4d7; }
.hero-mark { position: relative; display: grid; place-items: center; min-height: 560px; }
.hero-mark::before,
.hero-mark::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-mark::before { width: 104%; aspect-ratio: 1; }
.hero-mark::after { width: 124%; aspect-ratio: 1; }
.hero-mark img { position: relative; z-index: 2; width: min(100%, 480px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 36px 100px rgba(0,0,0,.6); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 2rem; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-number { display: block; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.1rem); line-height: .95; }
.trust-label { display: block; margin-top: .65rem; color: var(--muted); font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.split-center { align-items: center; }
.statement { font-family: var(--serif); font-size: clamp(2.15rem, 3.8vw, 3.8rem); line-height: 1.04; letter-spacing: -.03em; }
.vertical-rule { border-left: 1px solid var(--line); padding-left: clamp(2rem, 5vw, 4.5rem); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); }
.service-card { min-height: 280px; padding: clamp(2rem, 4vw, 3.6rem); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.service-card:nth-child(even) { border-right: 0; }
.service-number { display: block; margin-bottom: 2.6rem; color: var(--silver); font-size: .74rem; letter-spacing: .16em; }
.service-card p { max-width: 48ch; color: #c5c6c9; }
.text-link { display: inline-flex; gap: .7rem; align-items: center; margin-top: 1rem; font-size: .77rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { padding: 2.2rem 1.8rem; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step b { display: block; margin-bottom: 1.3rem; color: var(--muted); font-size: .73rem; letter-spacing: .15em; text-transform: uppercase; }
.process-step h3 { margin-bottom: 1rem; font-size: 1.8rem; }

.founder-panel { display: grid; grid-template-columns: .8fr 1.2fr; box-shadow: var(--shadow); }
.founder-monogram { min-height: 560px; display: grid; place-items: center; padding: 3rem; background: var(--ink); color: white; text-align: center; }
.founder-monogram img { width: min(86%, 360px); border-radius: 50%; }
.founder-monogram .headshot { aspect-ratio: 1; object-fit: cover; object-position: center 42%; border: 6px solid var(--polished-silver); outline: 3px solid var(--polished-silver-dark); box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 0 0 2px #eceef1, 0 26px 70px rgba(0,0,0,.5); }
.founder-copy { padding: clamp(3rem, 7vw, 6.5rem); background: var(--paper); }
.credential-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.credential-list li { padding: .55rem .8rem; border: 1px solid var(--line); color: #45464a; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.recognition { margin-top: 2.25rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.recognition h3 { margin-bottom: 1rem; font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.recognition p { margin-bottom: .75rem; color: #45464a; }
.section-footer-action { display: flex; justify-content: flex-end; margin-top: 2.2rem; }

.page-hero { padding: clamp(5rem, 11vw, 10rem) 0 clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1000px; margin-bottom: 1.5rem; }
.page-hero .lede { max-width: 760px; }
.page-hero-dark { background: var(--ink); color: white; }
.page-hero-dark .lede { color: #d2d3d5; }

.value-grid, .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card, .case-card { min-height: 285px; padding: 2.4rem; background: var(--paper); }
.value-card .eyebrow { margin-bottom: 2.2rem; }
.value-card h3, .case-card h3 { font-size: 2rem; }
.case-card b { display: block; margin-bottom: .8rem; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.service-detail { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 2rem; padding: 3.4rem 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail > span { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.service-detail h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.service-detail ul { margin: 0; padding-left: 1.2rem; }
.service-detail li { margin-bottom: .55rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); }
.contact-block { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block b { display: block; margin-bottom: .4rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-block a { text-underline-offset: 4px; }

.form-shell { padding: clamp(2rem, 6vw, 4.5rem); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.field { display: grid; min-width: 0; gap: .45rem; }
.field-full { grid-column: 1 / -1; min-width: 0; }
.field label, .fieldset-label { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  border: 1px solid #c9c9ca;
  border-radius: 0;
  background: white;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:not([type="checkbox"]):focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: .85rem 1.5rem; width: 100%; margin-top: .55rem; }
.check { display: flex; align-items: flex-start; gap: .65rem; min-width: 0; min-height: 34px; }
.check input[type="checkbox"] { flex: 0 0 18px; width: 18px; height: 18px; min-width: 18px; min-height: 18px; margin: .18rem 0 0; padding: 0; accent-color: var(--ink); }
.check label { flex: 1 1 auto; width: auto; min-width: 0; max-width: 100%; font-size: .9rem; line-height: 1.45; overflow-wrap: anywhere; }
.field-full > .check { width: 100%; }
.field-full > button[type="submit"] { width: 100%; margin-top: .75rem; justify-self: stretch; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .83rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.status-banner { display: none; margin-bottom: 1.4rem; padding: 1rem; border: 1px solid var(--line); }
.status-banner.is-visible { display: block; }

.cta-band { background: var(--platinum); }
.cta-grid { display: grid; grid-template-columns: 1.2fr auto; align-items: end; gap: 2rem; }
.cta-grid h2 { max-width: 800px; margin-bottom: 0; }

.site-footer { background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; padding: 4.5rem 0 3rem; }
.footer-brand { max-width: 430px; }
.footer-brand .brand { margin-bottom: 1.2rem; color: white; }
.footer-brand p { color: #bdbec1; }
.footer-column h2 { margin-bottom: 1.2rem; font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: .55rem 0; color: #d6d7d9; text-decoration: none; }
.footer-column a:hover { text-decoration: underline; text-underline-offset: 4px; }
.social-links { display: flex; align-items: center; gap: .7rem; margin-top: 1.25rem; }
.social-icon { display: grid !important; place-items: center; width: 38px !important; height: 38px; margin: 0 !important; border: 1px solid rgba(255,255,255,.25); color: #ececef !important; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon:hover { border-color: white; background: rgba(255,255,255,.08); text-decoration: none !important; transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 2rem; border-top: 1px solid var(--line-dark); color: #9a9b9f; font-size: .76rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem 1.25rem 1.6rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: .8rem; border: 3px solid var(--polished-silver-dark); }
  .hero { min-height: auto; }
  .hero-grid, .split, .founder-panel, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 5rem; }
  .hero-mark { min-height: 400px; }
  .hero-mark img { width: min(78vw, 390px); }
  .vertical-rule { border-left: 0; border-top: 1px solid var(--line); padding: 2.3rem 0 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-grid, .case-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 70px 1fr; }
  .service-detail > div:last-child { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-wrap, .container, .narrow { width: min(calc(100% - 1.5rem), var(--max)); }
  .brand-word { font-size: 1.2rem; }
  .brand img { width: 42px; height: 42px; }
  .hero-grid { gap: 2rem; }
  .hero-mark { min-height: 310px; }
  .trust-grid, .services-grid, .process-grid, .form-grid, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .services-grid { border-left: 1px solid var(--line-dark); }
  .service-card, .service-card:nth-child(even) { border-right: 1px solid var(--line-dark); }
  .process-step, .process-step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .founder-monogram { min-height: 380px; }
  .service-detail { grid-template-columns: 1fr; gap: .7rem; }
  .service-detail > div:last-child { grid-column: 1; }
  .cta-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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