:root {
  --ink: #12241f;
  --forest: #1c3a31;
  --moss: #2f6b56;
  --copper: #c46a2b;
  --copper-deep: #9a4e1c;
  --sand: #f3eadc;
  --paper: #faf7f2;
  --line: #d9cfc0;
  --muted: #5d6b66;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 36, 31, 0.08);
  --radius: 22px;
  --max: 1180px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--sand);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

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

.brand img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 22px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-light {
  background: var(--sand);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.hero {
  padding: 48px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--copper);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.45rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  background: var(--ink);
  color: var(--sand);
  border-radius: 32px;
  padding: 32px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -70px;
  border: 28px solid rgba(196, 106, 43, 0.28);
  border-radius: 50%;
}

.panel-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9b79a;
}

.panel-stat {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  margin: 8px 0 6px;
}

.panel-copy {
  color: #d7cbb8;
  max-width: 18rem;
}

.panel-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.panel-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(243, 234, 220, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}

.trust {
  padding: 18px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 42px;
  align-items: end;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.card.featured {
  background: var(--forest);
  color: var(--sand);
  border-color: var(--forest);
}

.card .num {
  font-family: var(--serif);
  color: var(--copper);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 18px;
}

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

.card.featured p {
  color: #d5c7b3;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 28px 24px 32px;
  min-height: 240px;
}

.step strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-block {
  border-radius: 28px;
  padding: 36px;
  min-height: 360px;
}

.split-block.dark {
  background: var(--ink);
  color: var(--sand);
}

.split-block.sand {
  background: var(--sand);
}

.split-block ul {
  padding-left: 18px;
  color: inherit;
}

.split-block.dark li + li,
.split-block.sand li + li {
  margin-top: 8px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 650;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
}

.contact-copy {
  background: var(--forest);
  color: var(--sand);
  padding: 40px;
}

.contact-copy p {
  color: #d5c7b3;
}

.contact-form {
  padding: 36px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  margin: 8px 0 0;
}

.form-status.ok {
  color: var(--moss);
}

.form-status.err {
  color: #9a2d1c;
}

.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 48px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.site-footer a {
  color: #e7d9c4;
  text-decoration: none;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.legal-note {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 234, 220, 0.12);
  color: #b7ab9a;
  font-size: 0.85rem;
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.legal-nav a[aria-current="page"] {
  color: var(--copper-deep);
}

.legal-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}

.legal-body h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-body h2 {
  font-size: 1.45rem;
  margin-top: 32px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.updated {
  font-size: 0.88rem;
  color: var(--moss);
  font-weight: 700;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid,
  .section-head,
  .cards,
  .steps,
  .split,
  .contact-grid,
  .footer-grid,
  .legal-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .split-block,
  .legal-nav {
    min-height: 0;
  }

  .legal-nav {
    position: static;
  }

  .section {
    padding: 64px 0;
  }
}
