:root {
  color-scheme: light;
  --paper: #f6f1e7;
  --paper-soft: #fffaf0;
  --ink: #23201b;
  --ink-muted: #6e6659;
  --line: #ddd1bd;
  --line-strong: #c5b392;
  --teal: #176d68;
  --teal-dark: #0f4644;
  --amber: #c77a22;
  --amber-soft: #f0d4a6;
  --moss: #586a38;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(59, 46, 26, 0.18);
  --radius: 8px;
  --max: 1160px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(35, 32, 27, 0.1);
  background: rgba(246, 241, 231, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.94);
  box-shadow: 0 10px 24px rgba(35, 32, 27, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.site-nav a,
.header-action {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-muted);
  border-radius: 999px;
}

.site-nav a {
  padding: 8px 12px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.header-action {
  justify-self: end;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 18px rgba(23, 109, 104, 0.2);
}

.header-action:hover {
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-line {
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 132px 32px 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #d8cbb8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.94) contrast(0.96);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 241, 231, 0.96) 0%, rgba(246, 241, 231, 0.82) 42%, rgba(246, 241, 231, 0.28) 72%, rgba(246, 241, 231, 0.18) 100%),
    linear-gradient(0deg, rgba(246, 241, 231, 0.92) 0%, rgba(246, 241, 231, 0) 42%);
}

.hero-content {
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 820;
  letter-spacing: 0;
}

h2 {
  font-size: 42px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: #3d372f;
  font-size: 21px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 28px rgba(23, 109, 104, 0.2);
}

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

.button-secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(35, 32, 27, 0.14);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin: 0;
  border: 1px solid rgba(35, 32, 27, 0.12);
  background: rgba(35, 32, 27, 0.12);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 253, 248, 0.74);
}

.hero-proof dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 790;
}

.hero-proof dd {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.section {
  padding: 92px 32px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100%, 860px);
}

.intro-band {
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: end;
}

.intro-grid h2,
.intro-grid p {
  margin-bottom: 0;
}

.intro-grid p {
  color: var(--ink-muted);
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.compact {
  max-width: 720px;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 18px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.feature-large,
.feature-card,
.solution-card,
.price-card,
.pricing-panel,
.principles div,
.fact-list div,
.values-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
}

.feature-large {
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.workflow-board {
  width: 100%;
  display: grid;
  gap: 18px;
}

.workflow-lane {
  min-height: 92px;
  padding: 22px;
  border: 1px solid rgba(35, 32, 27, 0.16);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.workflow-lane span {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.workflow-lane strong {
  font-size: 21px;
}

.lane-accent {
  background: #e3f0e8;
  border-color: rgba(23, 109, 104, 0.24);
}

.workflow-line {
  height: 20px;
  width: 2px;
  margin-left: 28px;
  background: var(--line-strong);
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 24px;
}

.feature-card p,
.solution-card p,
.price-card p,
.values-grid p,
.legal-copy p,
.story-grid p {
  color: var(--ink-muted);
}

.muted-section {
  background: #ede5d6;
}

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

.solution-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.solution-index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 800;
}

.solution-card p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: start;
}

.split-section p {
  color: var(--ink-muted);
  font-size: 18px;
}

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

.principles div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px;
}

.principles strong {
  color: var(--teal-dark);
}

.principles span {
  color: var(--ink-muted);
}

.pricing-preview {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.pricing-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.pricing-grid p,
.contact-grid p {
  color: var(--ink-muted);
  font-size: 18px;
}

.pricing-panel {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 28px;
  text-decoration: none;
  background: var(--teal-dark);
  color: var(--white);
}

.pricing-panel span {
  color: #b9d7d4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-panel strong {
  font-size: 24px;
  line-height: 1.2;
}

.pricing-panel em {
  color: #d9e8df;
  font-style: normal;
}

.contact-section {
  background: var(--ink);
  color: var(--paper-soft);
}

.contact-grid p {
  color: #c9bfab;
}

.contact-section .eyebrow {
  color: var(--amber-soft);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 20px;
  font-weight: 760;
  background: rgba(255, 253, 248, 0.05);
}

.contact-actions a:hover {
  border-color: rgba(255, 253, 248, 0.34);
}

.site-footer {
  padding: 34px 32px;
  background: #191714;
  color: var(--paper-soft);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand .brand-mark {
  background: var(--paper-soft);
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: #c9bfab;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--paper-soft);
}

.footer-copy {
  justify-self: end;
  margin: 0;
  color: #a79d8c;
  font-size: 13px;
}

.subpage {
  padding-top: 72px;
}

.page-hero {
  padding: 98px 32px 72px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  font-size: 56px;
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 19px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 48px;
}

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

.fact-list div {
  padding: 18px;
}

.fact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 750;
}

.fact-list strong {
  font-size: 18px;
  line-height: 1.3;
}

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

.values-grid article {
  padding: 24px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 28px;
}

.featured-plan {
  background: #e3f0e8;
  border-color: rgba(23, 109, 104, 0.28);
  box-shadow: var(--shadow);
}

.plan-name {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card h2 {
  font-size: 28px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 30px;
  padding-left: 20px;
  color: var(--ink-muted);
}

.price-card .button {
  margin-top: auto;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 750;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .header-action {
    display: none;
  }

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

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    background: rgba(246, 241, 231, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .hero {
    min-height: 82vh;
    padding: 118px 20px 46px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(246, 241, 231, 0.98) 0%, rgba(246, 241, 231, 0.86) 58%, rgba(246, 241, 231, 0.5) 100%),
      linear-gradient(0deg, rgba(246, 241, 231, 0.94) 0%, rgba(246, 241, 231, 0) 40%);
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-proof,
  .intro-grid,
  .feature-layout,
  .split-section,
  .pricing-grid,
  .contact-grid,
  .story-grid,
  .price-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero {
    min-height: 78vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 29px;
  }

  .hero-proof {
    display: none;
  }

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

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

  .solution-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    min-height: 360px;
    padding: 18px;
  }

  .workflow-lane {
    min-height: 82px;
    padding: 17px;
  }

  .workflow-lane strong {
    font-size: 17px;
  }

  .principles div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-actions a {
    font-size: 17px;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
