:root {
  color-scheme: light;
  --ink: #18201f;
  --ink-soft: #55615d;
  --paper: #f7f5ef;
  --white: #ffffff;
  --mist: #e8efe9;
  --green: #2f6d5a;
  --green-deep: #184c3f;
  --blue: #24557a;
  --amber: #a66f2c;
  --line: #d9d8d0;
  --line-strong: #aaa99f;
  --shadow: 0 14px 38px rgba(29, 35, 32, 0.1);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.site-header {
  align-items: center;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 10;
}

.site-header[data-elevated="true"] {
  background: rgba(247, 245, 239, 0.97);
  border-bottom-color: rgba(22, 33, 31, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  height: 40px;
  justify-content: center;
  text-transform: uppercase;
  width: 40px;
}

.brand-name,
.brand-local {
  display: block;
}

.brand-name {
  font-size: 15px;
  font-weight: 750;
}

.brand-local {
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--green-deep);
}

.hero {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 245, 239, 0)),
    var(--paper);
  display: grid;
  gap: clamp(36px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  min-height: 68vh;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.hero-content {
  max-width: 720px;
  min-width: 0;
  position: relative;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.98;
  max-width: 10ch;
}

.hero-copy {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.36;
  margin-top: 26px;
  max-width: 760px;
}

.hero-note {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.text-action {
  align-items: center;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  gap: 10px;
}

.text-action::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.text-action-light {
  color: var(--white);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
}

.panel-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.panel-header span,
.panel-list dt {
  color: var(--ink-soft);
  display: block;
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.panel-header strong {
  display: block;
  font-size: 28px;
  line-height: 1.12;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.panel-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  height: auto;
  min-width: 0;
  width: 100%;
}

.panel-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.panel-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  padding: 16px 0;
}

.panel-list div:first-child {
  padding-top: 0;
}

.panel-list dd {
  font-weight: 680;
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-panel p {
  font-size: 14px;
  line-height: 1.6;
}

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

.trust-strip > div {
  background: var(--white);
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 24px clamp(20px, 5vw, 72px);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.metric-label {
  color: var(--ink-soft);
  display: block;
  font-size: 12px;
  font-weight: 720;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  font-size: clamp(18px, 2.2vw, 26px);
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.section-white {
  background: var(--white);
}

.section-muted {
  background: #eef1ec;
}

.section-ink {
  background: #172523;
  color: var(--white);
}

.section-contact {
  background: #f2eee5;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading {
  max-width: 760px;
}

.compact-heading {
  max-width: 900px;
}

.section-heading h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  font-size: 17px;
  margin-top: 22px;
}

.section-ink p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.info-card {
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 250px;
  min-width: 0;
  padding: 24px;
}

.status-label {
  color: var(--amber);
  display: block;
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 34px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.info-card h3,
.feature-item h3 {
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.info-card p,
.feature-item p {
  font-size: 15px;
  margin-top: 14px;
  overflow-wrap: anywhere;
}

.split-layout {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
}

.workflow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.workflow > div {
  display: grid;
  gap: 20px;
  grid-template-columns: 54px minmax(140px, 180px) minmax(0, 1fr);
  padding: 24px;
}

.workflow > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 760;
}

.workflow strong {
  font-size: 18px;
}

.workflow p {
  font-size: 15px;
}

.feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 33, 31, 0.1);
  border-radius: var(--radius);
  min-width: 0;
  padding: 24px;
}

.company-layout,
.contact-layout {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
}

.company-facts {
  border-top: 1px solid var(--line);
  margin: 0;
}

.company-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr);
  padding: 18px 0;
}

.company-facts dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 740;
}

.company-facts dd {
  font-size: 16px;
  font-weight: 680;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-panel {
  background: var(--white);
  border: 1px solid rgba(22, 33, 31, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  font-style: normal;
  gap: 16px;
  padding: 28px;
}

.contact-panel a,
.contact-panel span {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 680;
  overflow-wrap: anywhere;
  padding-bottom: 16px;
}

.contact-panel span {
  border-bottom: 0;
  color: var(--ink-soft);
  font-weight: 560;
  line-height: 1.5;
  padding-bottom: 0;
}

.placeholder-value {
  background: rgba(200, 138, 44, 0.16);
  border-radius: 4px;
  color: #7d5518;
  overflow-wrap: anywhere;
  padding: 1px 4px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto) minmax(220px, 1fr);
  padding: 32px clamp(20px, 5vw, 72px);
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

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

.site-footer span,
.site-footer small {
  font-size: 13px;
}

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

.site-footer a {
  font-size: 13px;
  font-weight: 680;
}

.site-footer small {
  justify-self: end;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  margin: 0 auto;
  max-width: 880px;
  padding: 128px 24px 84px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(40px, 7vw, 76px);
  max-width: none;
}

.legal-main h2 {
  font-size: 24px;
  margin-top: 42px;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-main ul {
  padding-left: 20px;
}

.legal-meta {
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 730;
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    position: sticky;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .trust-strip,
  .card-grid,
  .split-layout,
  .feature-list,
  .company-layout,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer small {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-nav {
    gap: 12px 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-content,
  .hero-panel {
    max-width: calc(100vw - 40px);
    width: 100%;
  }

  .hero-panel {
    margin-top: 36px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .panel-header strong {
    font-size: 26px;
  }

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

  .workflow > div {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .workflow p {
    grid-column: 2;
  }

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

  .company-facts div {
    grid-template-columns: 1fr;
  }
}
