:root {
  --brand: #5a1916;
  --brand-strong: #42110f;
  --paper: #fbf9f6;
  --paper-soft: #f5f0ea;
  --ink: #2c2523;
  --muted: #8d746a;
  --line: #e5dfd9;
  --teal: #1f6f68;
  --steel: #496372;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(44, 37, 35, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 249, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-link img {
  width: 184px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(44, 37, 35, 0.78);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white) !important;
}

.section {
  padding: 92px 24px;
}

.section.compact {
  padding: 62px 24px;
}

.section.alt {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  padding: 76px 24px 96px;
  overflow: hidden;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 52px;
  align-items: center;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--ink);
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead {
  max-width: 740px;
  color: rgba(44, 37, 35, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.measure {
  max-width: 760px;
}

.text-muted {
  color: rgba(44, 37, 35, 0.68);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
}

.button.primary:hover {
  background: var(--brand-strong);
}

.button.secondary {
  background: transparent;
  border-color: var(--muted);
  color: var(--ink);
}

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

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

.trust-item {
  background: rgba(255, 255, 255, 0.55);
  padding: 20px;
}

.trust-item strong {
  display: block;
  color: var(--brand);
  font-size: 1.02rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: rgba(44, 37, 35, 0.64);
  font-size: 0.92rem;
}

.axis-panel {
  min-height: 560px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(229, 223, 217, 0.48) 1px, transparent 1px),
    linear-gradient(0deg, rgba(229, 223, 217, 0.48) 1px, transparent 1px),
    #fffdf9;
  background-size: 38px 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.axis-panel::before {
  position: absolute;
  inset: 44px 50% 44px auto;
  width: 4px;
  transform: translateX(50%);
  border-radius: 99px;
  background: linear-gradient(var(--brand), var(--teal));
  content: "";
}

.axis-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 174px;
  min-height: 174px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(90, 25, 22, 0.24);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  box-shadow: 0 22px 44px rgba(90, 25, 22, 0.18);
}

.axis-core img {
  width: 52px;
  margin: 0 auto 10px;
}

.axis-core strong {
  display: block;
  color: var(--brand);
  line-height: 1.15;
}

.axis-node {
  position: absolute;
  width: min(218px, 42%);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(44, 37, 35, 0.09);
}

.axis-node::after {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 1px;
  background: var(--line);
  content: "";
}

.axis-node.left::after {
  left: 100%;
}

.axis-node.right::after {
  right: 100%;
}

.axis-node strong {
  display: block;
  color: var(--ink);
}

.axis-node span {
  display: block;
  margin-top: 4px;
  color: rgba(44, 37, 35, 0.62);
  font-size: 0.9rem;
}

.node-1 { left: 7%; top: 10%; }
.node-2 { right: 7%; top: 22%; }
.node-3 { left: 7%; top: 43%; }
.node-4 { right: 7%; top: 60%; }
.node-5 { left: 7%; bottom: 9%; }

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 26px;
}

.card.strong {
  background: var(--white);
  box-shadow: 0 16px 42px rgba(44, 37, 35, 0.08);
}

.card-accent {
  border-top: 4px solid var(--brand);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(90, 25, 22, 0.09);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 18px;
}

.icon.teal {
  background: rgba(31, 111, 104, 0.1);
  color: var(--teal);
}

.list-clean {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list-clean li {
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line);
  position: relative;
}

.list-clean li::before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 48px;
  align-items: start;
}

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

.stat {
  background: var(--white);
  padding: 22px;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(44, 37, 35, 0.66);
  font-size: 0.9rem;
}

.page-hero {
  padding: 76px 24px 68px;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 900;
}

.callout {
  border-left: 4px solid var(--teal);
  background: var(--white);
  padding: 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.founder-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.founder-panel img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.footer {
  background: #2c2523;
  color: rgba(255, 255, 255, 0.76);
  padding: 54px 24px 28px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.4fr));
  gap: 36px;
}

.footer img {
  width: 190px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin: 8px 0;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero-grid,
  .two-col,
  .split-band {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .stat-band,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .axis-panel {
    min-height: 650px;
  }

  .axis-node {
    width: 42%;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    padding: 0 18px;
  }

  .brand-link img {
    width: 158px;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  .axis-panel {
    min-height: auto;
    padding: 24px;
    display: grid;
    gap: 14px;
  }

  .axis-panel::before,
  .axis-node::after {
    display: none;
  }

  .axis-core,
  .axis-node {
    position: static;
    width: auto;
    transform: none;
  }

  .axis-core {
    border-radius: var(--radius);
    min-height: auto;
  }

  .founder-panel,
  .timeline-item {
    grid-template-columns: 1fr;
  }

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