:root {
  --black: #050505;
  --charcoal: #18191b;
  --ink: #111315;
  --muted: #60646b;
  --paper: #f7f4ed;
  --warm: #ede5d6;
  --white: #ffffff;
  --gold: #b9974a;
  --red: #a51f24;
  --sage: #4f6259;
  --line: #d8d1c4;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(17, 19, 21, 0.12);
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
}

.brand span {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 800;
}

nav a,
.button {
  text-decoration: none;
}

nav a {
  padding-block: 8px;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: 46px;
  align-items: stretch;
  padding: 34px clamp(20px, 5vw, 76px) 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--charcoal);
  background-size: 56px 56px;
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: 4.25rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  color: #ded7ca;
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-note {
  display: none;
  margin: 18px 0 0;
  color: var(--gold);
  font-weight: 950;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

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

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

.button:focus-visible,
nav a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  overflow: hidden;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.78) 78%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.04));
  content: "";
}

.hero-panel-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-content {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.panel-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  position: relative;
  max-width: 420px;
  font-size: 2.2rem;
}

.hero-panel p {
  position: relative;
  max-width: 440px;
  color: #d9d2c4;
  font-size: 1.06rem;
  line-height: 1.65;
}

.panel-lines {
  position: relative;
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.panel-lines span {
  padding: 14px 16px;
  background: rgba(24, 25, 27, 0.92);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 8px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-band span {
  min-height: 74px;
  padding: 22px clamp(16px, 3vw, 28px);
  border-right: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-band span:last-child {
  border-right: 0;
}

.pattern-strip {
  height: clamp(132px, 18vw, 238px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.pattern-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 82px clamp(20px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading p:last-child,
.leadership-copy p,
.method-item p,
article p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

article {
  min-height: 326px;
  padding: 28px;
  background: var(--white);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.outcomes-section {
  background: var(--warm);
  border-block: 1px solid var(--line);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome-grid article {
  min-height: 284px;
  background: var(--paper);
}

.lens-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  overflow: hidden;
}

.policy-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 314px;
  object-fit: cover;
}

.policy-visual-copy {
  align-self: center;
  padding: 32px;
  color: var(--white);
}

.policy-visual-copy h3 {
  max-width: 440px;
  font-size: 2rem;
  line-height: 1.06;
}

.policy-visual-copy p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: #ded7ca;
  font-size: 1.03rem;
  line-height: 1.65;
}

.lens-grid article {
  min-height: 334px;
  background: var(--paper);
}

.advisory-note {
  margin-top: 18px;
  padding: 24px 28px;
  border-left: 6px solid var(--gold);
  background: var(--charcoal);
  color: #e7dfd1;
  font-size: 1rem;
  line-height: 1.65;
}

.advisory-note strong {
  color: var(--gold);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  background: var(--warm);
  border-block: 1px solid var(--line);
}

.method-intro h2 {
  max-width: 620px;
}

.method-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  background: var(--paper);
}

.method-item span {
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 950;
}

.method-item p {
  margin-bottom: 0;
}

.bench-section {
  background: var(--paper);
}

.bench-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bench-grid article {
  min-height: 292px;
  background: var(--white);
}

.bench-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.leadership-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: stretch;
  background: var(--white);
}

.leadership-cards {
  display: grid;
  gap: 18px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.leader-mark {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
}

.leader-mark-single {
  font-size: 4.25rem;
  line-height: 1;
}

.leadership-card h2 {
  margin-bottom: 8px;
}

.role {
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
}

.leadership-card .leader-bio {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.leadership-card .leader-bio:last-child {
  margin-bottom: 0;
}

.leadership-copy {
  align-self: center;
}

.leadership-copy h3 {
  max-width: 520px;
  font-size: 2rem;
  line-height: 1.05;
}

ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 28px;
  font-weight: 850;
  line-height: 1.45;
}

li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--red);
  content: "";
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
  padding: 76px clamp(20px, 5vw, 76px);
  background: var(--charcoal);
  color: var(--white);
}

.contact p {
  max-width: 680px;
  color: #ded7ca;
}

.direct-contacts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-weight: 900;
}

.direct-contacts a {
  color: var(--gold);
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.42);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label,
.contact-form fieldset {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span,
.contact-form legend {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 138px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.contact-form fieldset,
.full-field {
  margin-top: 18px;
}

.contact-form legend {
  margin-bottom: 12px;
  padding: 0;
}

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

.service-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.service-options input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.service-options span {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.contact .button.secondary,
.form-actions .button.secondary {
  color: var(--white);
}

.contact .form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #ded7ca;
  font-size: 0.95rem;
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--paper);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero,
  .section-heading,
  .method-section,
  .leadership-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .service-grid,
  .outcome-grid,
  .bench-grid,
  .lens-grid,
  .signal-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-visual {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .form-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .hero-copy {
    min-height: 0;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-note {
    display: block;
  }

  .hero-panel {
    display: block;
    min-height: 238px;
  }

  .hero-panel-content {
    display: none;
  }

  .service-grid,
  .outcome-grid,
  .bench-grid,
  .lens-grid,
  .signal-band {
    grid-template-columns: 1fr;
  }

  .policy-visual img {
    min-height: 190px;
  }

  .policy-visual-copy {
    padding: 24px;
  }

  .signal-band span {
    min-height: 60px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-item,
  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leader-mark {
    width: 104px;
    height: 104px;
    font-size: 1.5rem;
  }

  .leader-mark-single {
    font-size: 3.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 26px;
  }

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

  .contact-form {
    padding: 20px;
  }

  .form-grid,
  .service-options {
    grid-template-columns: 1fr;
  }
}
