:root {
  --off-white: #f8f6f2;
  --warm-grey: #efede8;
  --forest: #0e2a1c;
  --text: #1a1a1a;
  --muted: #6b6760;
  --amber: #b8852e;
  --amber-dark: #9a6e22;
  --border: #ded9d1;
  --white: #ffffff;
  --red: #9b3a3a;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 88px 0;
}

.bg-warm {
  background: var(--warm-grey);
}

.bg-forest {
  background: var(--forest);
  color: var(--white);
}

.label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.body-stack > * + * {
  margin-top: 24px;
}

.accent-line {
  width: 40px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--amber);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary:hover {
  background: var(--amber-dark);
}

.button-ghost {
  border-color: var(--text);
  color: var(--text);
}

.button-ghost:hover {
  background: var(--text);
  color: var(--white);
}

.button-ghost-light {
  border-color: var(--white);
  color: var(--white);
}

.button-ghost-light:hover {
  background: var(--white);
  color: var(--forest);
}

.text-link {
  color: var(--amber);
  font-weight: 600;
}

.text-link:hover {
  color: var(--amber-dark);
  text-decoration: underline;
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: var(--off-white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home .site-nav {
  background: transparent;
  color: var(--white);
}

.home .site-nav.is-light,
.site-nav.is-light {
  border-color: var(--border);
  background: var(--off-white);
  color: var(--text);
}

.nav-inner {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

.wordmark-line {
  display: block;
}

.wordmark-sub {
  display: block;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.mobile-page-links {
  display: none;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

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

.nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
}

.home .site-nav:not(.is-light) .nav-button {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.home .site-nav:not(.is-light) .nav-button:hover {
  background: var(--white);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: center;
  justify-content: center;
  padding: 120px 0 96px;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: -32px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.hero .lede {
  max-width: 620px;
  margin: 0 auto;
  color: rgb(255 255 255 / 75%);
}

.hero .lede .verdict {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin: 24px auto 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
}

.hero-checks > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.hero-checks > span + span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgb(255 255 255 / 25%);
  transform: translateY(-50%);
}

.hero-checks .check {
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg) translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 36px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgb(255 255 255 / 75%);
  font-size: 13px;
}

.scroll-cue::before {
  width: min(100%, var(--max));
  height: 1px;
  background: rgb(184 133 46 / 30%);
  content: "";
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: 64px;
  align-items: start;
}

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

.section-heading-center {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading-center h2 {
  margin-top: 12px;
}

.section-heading-center .lede {
  margin-top: 20px;
  font-size: 17px;
}

.callout-card {
  border-radius: 4px;
  background: var(--forest);
  box-shadow: 0 1px 3px rgb(0 0 0 / 7%);
  color: var(--white);
  padding: 40px 32px;
}

.stat {
  margin-top: 28px;
}

.stat-value {
  margin-bottom: 8px;
  font-family: "Lora", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.stat-caption,
.footer-muted {
  color: rgb(255 255 255 / 70%);
}

.decision-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  padding-top: 18px;
  border-top: 1px solid rgb(184 133 46 / 45%);
  color: rgb(255 255 255 / 88%);
  font-size: 15px;
  line-height: 1.55;
}

.decision-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.supplier-risk-intro {
  margin-top: 24px;
}

.supplier-risk-intro p {
  max-width: 680px;
}

.risk-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.risk-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.risk-item span {
  grid-row: span 2;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.risk-item strong {
  font-size: 17px;
  line-height: 1.4;
}

.risk-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.mini-rule {
  width: 32px;
  height: 1px;
  margin: 22px 0;
  background: var(--amber);
}

.phase-grid,
.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

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

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

.card {
  border-radius: 4px;
  background: var(--warm-grey);
  box-shadow: 0 1px 3px rgb(0 0 0 / 7%);
  padding: 40px;
}

.bg-warm .card,
.bg-warm .diagram-box {
  background: var(--off-white);
}

.card h3 {
  margin: 10px 0 16px;
}

.card-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-footer > * + * {
  margin-top: 8px;
}

.center-link {
  margin-top: 40px;
  text-align: center;
}

.feature-grid {
  gap: 48px 56px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--amber);
}

.feature h3 {
  margin-bottom: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.feature p,
.muted {
  color: var(--muted);
}

.importer-pain {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.importer-pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 6fr);
  gap: 56px;
  align-items: start;
}

.importer-pain h2 {
  max-width: 520px;
  margin-top: 12px;
}

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

.pain-point {
  border-top: 2px solid var(--amber);
  padding-top: 18px;
}

.pain-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.4;
}

.pain-point p,
.pain-summary {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pain-summary {
  grid-column: 1 / -1;
  max-width: 660px;
  margin-top: 2px;
  color: var(--text);
}

.pricing-list {
  display: grid;
  gap: 34px;
  align-content: center;
}

.pricing-item {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-marker {
  color: var(--amber);
  font-family: "Lora", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.final-cta {
  text-align: center;
}

.final-cta .lede {
  max-width: 520px;
  margin: 16px auto 32px;
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
}

.section-compact.home-faq {
  background: var(--off-white);
  padding-top: 48px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  padding: 24px 0;
  list-style: none;
  color: var(--text);
  transition: color 200ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--amber);
}

.faq-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--amber);
  transition: transform 300ms ease, color 200ms ease;
}

.faq-list details[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--text);
}

.faq-content {
  padding: 0 48px 32px 0;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-content p + p {
  margin-top: 16px;
}

.page-hero {
  padding: 152px 0 72px;
}

.page-hero .lede {
  margin-top: 22px;
  max-width: 640px;
}

.service-redesign {
  padding-bottom: 0;
}

.service-narrow {
  max-width: 800px;
}

.service-hero {
  padding: 152px 0 64px;
  text-align: center;
}

.service-hero h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.1;
}

.service-hero .lede {
  max-width: 740px;
  margin: 28px auto 0;
  font-size: clamp(20px, 2.3vw, 24px);
  line-height: 1.5;
}

.service-hero .lede strong {
  color: var(--text);
}

.service-process {
  padding: 0 0 96px;
}

.phase-heading {
  margin-bottom: 48px;
}

.phase-heading h2 {
  font-size: clamp(32px, 4vw, 40px);
}

.phase-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.phase-two {
  margin-top: 80px;
}

.service-steps {
  position: relative;
  display: grid;
  gap: 48px;
  margin-left: 32px;
  padding: 0 0 64px;
  border-left: 4px solid var(--border);
}

.service-step {
  position: relative;
  padding-left: 56px;
}

.service-step-marker {
  position: absolute;
  top: 0;
  left: -26px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--off-white);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.service-step-marker.amber {
  background: var(--amber);
}

.service-step-marker.dark {
  background: var(--text);
}

.service-step-body h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 0;
}

.service-icon {
  width: 8px;
  height: 24px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--amber);
}

.service-step-marker.dark + .service-step-body .service-icon {
  background: var(--text);
}

.service-step-body > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-step-body > p + p {
  margin-top: 14px;
}

.result-box {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
  padding: 20px 22px 20px 58px;
}

.result-box::before {
  position: absolute;
  top: 23px;
  left: 22px;
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.result-box.success::before {
  background: #2e7d32;
  content: "";
}

.result-box.warning::before {
  background: var(--red);
  content: "!";
}

.result-box strong {
  font-size: 16px;
  line-height: 1.35;
}

.result-box span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.approval-gate {
  margin: 32px -16px 0;
  border-radius: 12px;
  background: var(--text);
  box-shadow: 0 20px 45px rgb(0 0 0 / 18%);
  color: var(--white);
  padding: 48px;
  text-align: center;
}

.approval-gate h2 {
  margin-top: 12px;
  color: var(--white);
}

.approval-gate p {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgb(255 255 255 / 78%);
  font-size: 20px;
  line-height: 1.6;
}

.approval-gate p strong {
  color: var(--white);
}

.approval-pill {
  display: inline-flex;
  margin-top: 32px;
  border-radius: 6px;
  background: var(--amber);
  color: var(--white);
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.service-pricing {
  padding: 0 0 96px;
}

.pricing-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--warm-grey);
  padding: 48px;
}

.pricing-panel h2 {
  font-size: clamp(30px, 3.5vw, 36px);
}

.pricing-panel p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.pricing-checks {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-checks li {
  position: relative;
  padding-left: 36px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.pricing-checks li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  content: "";
  font-size: 14px;
  line-height: 1;
}

.service-final-cta {
  margin-top: 0;
  border-radius: 40px 40px 0 0;
  background: var(--forest);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.service-final-cta h2 {
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(34px, 4vw, 42px);
}

.service-final-cta p {
  max-width: 620px;
  margin: 24px auto 36px;
  color: rgb(255 255 255 / 78%);
  font-size: 20px;
  line-height: 1.6;
}

.section-lede {
  max-width: 860px;
  margin-top: 20px;
  color: var(--text);
}

.section-heading-left {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading-left h2 {
  margin-top: 12px;
}

.section-heading-left .lede {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--off-white);
}

.timeline-item {
  position: relative;
  min-height: 176px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--off-white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item span {
  display: block;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.timeline-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.timeline-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.detail-block {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.detail-block + .detail-block {
  margin-top: 40px;
}

.note {
  border-left: 3px solid var(--amber);
  background: var(--warm-grey);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 20px 24px;
}

.deliverable {
  margin-top: 48px;
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  background: var(--warm-grey);
  padding: 32px;
}

.checkpoint-section {
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
  background: var(--warm-grey);
}

.inline-list-heading {
  margin-bottom: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.structured-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.structured-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.structured-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.structured-list.compact {
  gap: 12px;
}

.structured-list.compact li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.body-stack .inline-list-heading + .structured-list {
  margin-top: 0;
}

.steps {
  display: grid;
  gap: 34px;
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.step-number {
  color: var(--border);
  font-family: "Lora", Georgia, serif;
  font-size: 64px;
  line-height: 1;
}

.step h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}

.step-meta {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--amber);
  background: var(--warm-grey);
  padding: 14px 18px;
}

.step-meta.risk {
  border-left-color: var(--forest);
}

.step-meta strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.step-meta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.diagram-box {
  border-radius: 4px;
  background: var(--warm-grey);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.45;
}

.diagram-arrow {
  color: var(--amber);
  text-align: center;
}

.about-option h3 {
  margin-bottom: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.about-option p {
  color: var(--muted);
}

.manifesto-list {
  display: grid;
  gap: 34px;
}

.manifesto-item {
  padding-top: 18px;
}

.manifesto-item::before {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--amber);
  content: "";
}

.manifesto-item h3 {
  margin-bottom: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.manifesto-item p {
  color: var(--muted);
}

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

.founder-placeholder {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--off-white);
}

.founder-photo {
  display: block;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--off-white);
}

.founder-card h3 {
  margin-bottom: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}

.founder-role {
  color: var(--muted);
  font-size: 15px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 64px;
  align-items: start;
}

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

.field label {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 16px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: none;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
}

.error-message,
.form-error {
  margin-top: 6px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.45;
}

.form-error {
  margin-top: 0;
}

.success-box {
  border-left: 4px solid var(--forest);
  border-radius: 4px;
  background: var(--warm-grey);
  padding: 28px;
}

.sidebar-card {
  border-radius: 4px;
  background: var(--warm-grey);
  padding: 32px;
}

.sidebar-card hr {
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: var(--border);
}

.footer {
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer h2,
.footer-heading {
  margin-bottom: 16px;
  color: rgb(255 255 255 / 70%);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding-top: 28px;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 48px, var(--max));
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-page-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .mobile-page-links a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 7px;
    border-radius: 4px;
    color: currentColor;
    opacity: 0.72;
  }

  .mobile-page-links a[aria-current="page"] {
    color: var(--amber);
    opacity: 1;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    gap: 26px;
    background: var(--off-white);
    color: var(--text);
    padding: 36px 24px;
    justify-content: flex-end;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
  }

  .mobile-menu .button {
    font-size: 16px;
  }

  .two-col,
  .split-even,
  .phase-grid,
  .feature-grid,
  .card-grid,
  .card-grid.three,
  .card-grid.four,
  .importer-pain-grid,
  .founder-grid,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .timeline-item::after {
    top: auto;
    right: auto;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .service-hero {
    padding: 136px 0 56px;
  }

  .phase-heading {
    text-align: left;
  }

  .service-steps {
    margin-left: 24px;
  }

  .approval-gate {
    margin-right: 0;
    margin-left: 0;
  }

  .pricing-item {
    grid-template-columns: 88px 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 48px, var(--max));
  }

  .wordmark {
    font-size: 15px;
  }

  .mobile-page-links {
    gap: 2px;
    margin-right: 4px;
    font-size: 12px;
  }

  .mobile-page-links a {
    min-height: 34px;
    padding: 0 5px;
  }

  .section,
  .section-compact {
    padding: 64px 0;
  }

  .hero {
    min-height: 78vh;
    padding: 112px 0 112px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }

  .card,
  .callout-card,
  .deliverable,
  .sidebar-card {
    padding: 28px 24px;
  }

  .pain-points {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-number {
    font-size: 42px;
  }

  .page-hero {
    padding: 128px 0 56px;
  }

  .service-hero {
    padding: 124px 0 48px;
  }

  .service-hero .lede,
  .service-step-body > p,
  .phase-heading p,
  .pricing-panel p,
  .pricing-checks li,
  .approval-gate p,
  .service-final-cta p {
    font-size: 17px;
  }

  .service-process {
    padding-bottom: 72px;
  }

  .service-steps {
    gap: 40px;
    margin-left: 20px;
    padding-bottom: 56px;
  }

  .service-step {
    padding-left: 42px;
  }

  .service-step-marker {
    left: -24px;
    width: 44px;
    height: 44px;
    border-width: 7px;
  }

  .service-step-body h3 {
    align-items: flex-start;
    font-size: 21px;
  }

  .service-icon {
    margin-top: 2px;
  }

  .result-box {
    padding: 18px 18px 18px 52px;
  }

  .result-box::before {
    left: 18px;
  }

  .approval-gate,
  .pricing-panel {
    padding: 32px 24px;
  }

  .approval-pill {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .service-pricing {
    padding-bottom: 72px;
  }

  .service-final-cta {
    border-radius: 28px 28px 0 0;
    padding: 64px 0;
  }

  .faq-list summary {
    font-size: 18px;
    padding: 20px 0;
  }

  .faq-content {
    padding: 0 0 24px 0;
  }
}
