:root {
  --ink: #071a2d;
  --paper: #f4f0e8;
  --gold: #cba65a;
  --steel: #9fb4c6;
  --muted: #5f6f7b;
  --line: #d7c9af;
  --white: #ffffff;
  --soft: #eef3f6;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(244, 240, 232, 0.96);
  border-bottom: 1px solid rgba(7, 26, 45, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  display: block;
  width: min(260px, 44vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
}

.nav a:hover {
  color: #7a622e;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  opacity: 0.78;
}

.hero-visual {
  position: absolute;
  inset: auto -6vw -10vh auto;
  z-index: -2;
  width: min(960px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  opacity: 0.38;
  filter: saturate(0.78) contrast(1.04);
}

.hero-content {
  width: min(880px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 890px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.03;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d6e2eb;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.cta-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 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

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

.button.primary:hover {
  background: #dfbd70;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(244, 240, 232, 0.42);
  background: rgba(244, 240, 232, 0.08);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 32px);
}

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

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split p,
.founder-copy p,
.boundary p,
.cta p {
  color: var(--muted);
  font-size: 18px;
}

.problem-grid,
.method-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.method-grid article,
.deliverable-grid article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid p,
.method-grid p,
.deliverable-grid p {
  margin: 0;
  color: var(--muted);
}

.band {
  padding: clamp(58px, 8vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.split,
.deliverables .section-heading,
.deliverable-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split p,
.deliverables p,
.deliverables .section-heading p {
  color: #d6e2eb;
}

.facts {
  display: grid;
  gap: 12px;
}

.facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  border-radius: 8px;
  background: rgba(244, 240, 232, 0.08);
}

.facts span {
  color: var(--steel);
  font-weight: 800;
}

.facts strong {
  font-size: 22px;
}

.method-grid article {
  min-height: 190px;
  border-top: 4px solid var(--gold);
}

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

.workstream-list div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.workstream-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.workstream-list p {
  margin: 0;
  font-size: 18px;
}

.deliverables {
  padding-bottom: clamp(64px, 8vw, 96px);
}

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

.deliverable-grid article {
  min-height: 184px;
  color: var(--white);
  border-color: rgba(244, 240, 232, 0.16);
  background: rgba(244, 240, 232, 0.08);
}

.deliverable-grid p {
  color: #d6e2eb;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-points div {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  font-size: 22px;
}

.proof-points span {
  color: var(--muted);
}

.boundary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 90px) clamp(20px, 4vw, 32px);
}

.cta .button.secondary {
  color: var(--ink);
  border-color: rgba(7, 26, 45, 0.24);
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: #d6e2eb;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .section-heading,
  .split,
  .founder,
  .boundary,
  .cta {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .method-grid,
  .deliverable-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: min(245px, 76vw);
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .problem-grid,
  .method-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .facts div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .workstream-list div {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .site-footer {
    flex-direction: column;
  }
}
/* Final launch layout fixes */
.site-header,
.header,
header {
  min-height: 92px !important;
}

.site-header .container,
.site-header__inner,
.nav-wrap,
header .container,
header nav {
  align-items: center !important;
}

.brand,
.logo,
.site-logo,
.site-header a:first-child {
  background: transparent !important;
  box-shadow: none !important;
}

.brand img,
.logo img,
.site-logo img,
header img {
  display: block !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.hero {
  padding-top: clamp(64px, 7vw, 108px) !important;
}

.hero-visual,
.hero-band,
.top-band,
.banner-strip {
  min-height: 0 !important;
}

.section-eyebrow,
.eyebrow,
.kicker {
  display: block !important;
  margin-bottom: 14px !important;
  line-height: 1.1 !important;
}

.section-eyebrow + h1,
.section-eyebrow + h2,
.eyebrow + h1,
.eyebrow + h2,
.kicker + h1,
.kicker + h2 {
  margin-top: 0 !important;
}

.dark-section .section-eyebrow,
.dark-section .eyebrow,
.dark-section .kicker {
  margin-bottom: 16px !important;
}

@media (max-width: 760px) {
  .brand img,
  .logo img,
  .site-logo img,
  header img {
    max-width: 158px !important;
    max-height: 52px !important;
  }

  .hero {
    padding-top: 52px !important;
  }
}
