:root {
  --burgundy: #8e2e2a;
  --burgundy-deep: #6d221f;
  --olive: #5d6a2c;
  --olive-light: #a8b36c;
  --cream: #f8f5ef;
  --paper: #fffdf9;
  --ink: #2b2520;
  --ink-soft: #665e55;
  --line: #e6ded0;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid rgba(142, 46, 42, 0.34);
  outline-offset: 4px;
}

::selection {
  background: #e9c9c4;
  color: var(--burgundy-deep);
}

.site-page {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 197, 176, 0.72);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  display: block;
  flex: 0 0 auto;
}

.brand-copy,
.footer-brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.brand-copy span,
.footer-brand span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--burgundy);
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-cta span,
.button span {
  font-size: 16px;
  line-height: 1;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 92px 0 86px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(142, 46, 42, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 86px;
  height: 86px;
  top: 94px;
  left: max(24px, calc(50% - 680px));
}

.hero-orbit-two {
  width: 20px;
  height: 20px;
  right: max(30px, calc(50% - 630px));
  bottom: 112px;
  border: 0;
  background: var(--olive-light);
  box-shadow: 0 0 0 10px var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 74px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: rise 600ms ease both;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(93, 106, 44, 0.11);
}

.hero h1 {
  max-width: 710px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -4px;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--burgundy);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fffaf3;
  box-shadow: 0 12px 28px rgba(109, 34, 31, 0.16);
}

.button-primary:hover {
  border-color: var(--burgundy-deep);
  background: var(--burgundy-deep);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.62);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #cabdae;
  background: var(--paper);
}

.origin-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 28px 0 0;
  color: #7b7268;
  font-size: 12px;
}

.leaf-mark {
  color: var(--olive);
  font-size: 11px;
  transform: rotate(22deg);
}

.hero-visual {
  position: relative;
  animation: rise 650ms 120ms ease both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -38px;
  right: -42px;
  border: 1px solid rgba(93, 106, 44, 0.23);
  border-radius: 50%;
}

.trace-card {
  position: relative;
  z-index: 1;
  padding: 29px;
  overflow: hidden;
  border: 1px solid #403831;
  border-radius: 28px;
  background: var(--ink);
  color: #f4ecdf;
  box-shadow: 0 30px 70px rgba(43, 37, 32, 0.21);
}

.trace-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -126px;
  right: -100px;
  border: 38px solid rgba(168, 179, 108, 0.07);
  border-radius: 50%;
}

.trace-top,
.trace-brand,
.lot-panel,
.trace-footer,
.proof-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.trace-brand {
  justify-content: flex-start;
  gap: 12px;
}

.trace-brand img {
  display: block;
}

.trace-brand div {
  display: flex;
  flex-direction: column;
}

.trace-brand strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.trace-brand span {
  margin-top: 3px;
  color: #aba296;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.status-pill,
.organic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-pill {
  border: 1px solid rgba(168, 179, 108, 0.28);
  background: rgba(168, 179, 108, 0.11);
  color: #d8dfa8;
}

.status-pill b {
  font-size: 11px;
}

.lot-panel {
  position: relative;
  z-index: 1;
  margin: 24px 0 20px;
  padding: 16px;
  border: 1px solid #4a423b;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.lot-panel > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lot-panel div > span,
.trace-list div > span {
  color: #9e9589;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lot-panel div > strong {
  margin-top: 6px;
  overflow: hidden;
  color: #fffaf1;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.organic-pill {
  background: var(--olive);
  color: #f9fbec;
}

.trace-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trace-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 51px;
}

.trace-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: -5px;
  left: 13px;
  width: 1px;
  background: #514840;
}

.trace-node {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #5f554d;
  border-radius: 50%;
  background: var(--ink);
  color: #d2c9bc;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.trace-list div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 2px;
}

.trace-list div > span {
  font-size: 8px;
}

.trace-list div > strong {
  color: #ece4d8;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.trace-footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #453d36;
  color: #989084;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  min-height: 114px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 36px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.trust-grid span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 11px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 52px;
}

.section-heading h2,
.proof-copy h2,
.final-cta h2 {
  max-width: 730px;
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 500;
  letter-spacing: -2.3px;
  line-height: 1.05;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.compact-heading {
  display: block;
  max-width: 810px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-card {
  position: relative;
  min-height: 280px;
  padding: 28px 26px 32px;
}

.flow-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.flow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-card-top > span {
  color: var(--burgundy);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.flow-card-top i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(93, 106, 44, 0.08);
}

.flow-card h3,
.feature-card h3 {
  margin: 72px 0 12px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.7px;
}

.flow-card p,
.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.features-section {
  border-top: 1px solid rgba(230, 222, 208, 0.55);
  background: var(--paper);
}

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

.feature-card {
  position: relative;
  min-height: 274px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fdfaf5;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #cfc2b2;
  box-shadow: 0 18px 42px rgba(43, 37, 32, 0.08);
  transform: translateY(-4px);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feature-number {
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 25px;
}

.feature-tag {
  color: var(--olive);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-align: right;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 58px;
}

.feature-rule {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy) 0 34px, var(--line) 34px 100%);
}

.proof-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #f5ede2;
}

.proof-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -280px;
  left: -180px;
  border: 70px solid rgba(142, 46, 42, 0.09);
  border-radius: 50%;
}

.proof-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 86px;
}

.kicker-light {
  color: var(--olive-light);
}

.proof-copy h2 {
  max-width: 590px;
  color: #fffaf2;
}

.proof-copy > p:not(.kicker) {
  max-width: 570px;
  margin: 24px 0 0;
  color: #bcb3a7;
  font-size: 15px;
  line-height: 1.75;
}

.proof-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e8dfd3;
  font-size: 13px;
}

.proof-copy li span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 179, 108, 0.4);
  border-radius: 50%;
  color: var(--olive-light);
  font-size: 10px;
}

.proof-panel {
  padding: 28px;
  border: 1px solid #4d443d;
  background: rgba(255, 255, 255, 0.03);
}

.proof-panel-head {
  padding-bottom: 22px;
  border-bottom: 1px solid #4a413a;
}

.proof-panel-head > span {
  color: #e9e0d4;
  font-family: var(--display);
  font-size: 23px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
  border-top: 1px solid #4a413a;
  border-left: 1px solid #4a413a;
}

.role-grid > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-right: 1px solid #4a413a;
  border-bottom: 1px solid #4a413a;
}

.role-grid span {
  color: var(--olive-light);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.role-grid strong {
  color: #f1e8dc;
  font-size: 12px;
  font-weight: 600;
}

.proof-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #aaa095;
  font-size: 11px;
}

.proof-caption span {
  color: var(--olive-light);
  font-size: 18px;
}

.final-cta {
  position: relative;
  padding: 122px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before {
  width: 300px;
  height: 300px;
  top: -170px;
  right: -80px;
  border: 1px solid rgba(93, 106, 44, 0.18);
}

.final-cta::after {
  width: 110px;
  height: 110px;
  left: 9%;
  bottom: -58px;
  border: 1px solid rgba(142, 46, 42, 0.15);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-inner > img {
  display: block;
  margin-bottom: 21px;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(43px, 5.2vw, 68px);
}

.final-cta-inner > p:not(.kicker) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: #f5ede2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand span {
  color: #9f958a;
}

.footer-meta {
  display: flex;
  gap: 30px;
  color: #9f958a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.contact-page {
  background:
    linear-gradient(112deg, rgba(142, 46, 42, 0.025), transparent 42%),
    var(--cream);
}

.contact-hero {
  position: relative;
  min-height: calc(100vh - 78px - 107px);
  padding: 86px 0 104px;
  overflow: hidden;
}

.contact-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-orbit-one {
  width: 360px;
  height: 360px;
  top: -230px;
  left: -110px;
  border: 1px solid rgba(142, 46, 42, 0.15);
}

.contact-orbit-two {
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: 40px;
  border: 30px solid rgba(93, 106, 44, 0.06);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: 82px;
}

.contact-copy {
  padding-top: 22px;
  animation: rise 550ms ease both;
}

.contact-copy h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  font-family: var(--display);
  font-size: clamp(52px, 5.7vw, 76px);
  font-weight: 500;
  letter-spacing: -3.3px;
  line-height: 1;
}

.contact-lead {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.conversation-list {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.conversation-list > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.conversation-list span {
  color: var(--burgundy);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.conversation-list strong {
  font-size: 12px;
  font-weight: 650;
}

.contact-assurance {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding: 18px 0;
}

.contact-assurance img {
  display: block;
}

.contact-assurance p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.contact-assurance strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  border: 1px solid #d9cfbf;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 26px 70px rgba(43, 37, 32, 0.1);
  animation: rise 600ms 90ms ease both;
}

.contact-form-head {
  margin-bottom: 5px;
}

.contact-form-head h2 {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.08;
}

.contact-form-head > p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.field small {
  color: #9a9085;
  font-size: 8px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dcd2c4;
  border-radius: 9px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  height: 47px;
  padding: 0 13px;
}

.field textarea {
  min-height: 122px;
  padding: 13px;
  line-height: 1.55;
  resize: vertical;
}

.field textarea::placeholder {
  color: #a69c91;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #c7baa9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(142, 46, 42, 0.1);
}

.contact-submit {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form-note {
  margin: -3px 0 0;
  color: #8b8176;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.contact-form-note a {
  color: var(--burgundy);
  font-weight: 700;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.9vw, 70px);
  }

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

  .flow-card:nth-child(2) {
    border-right: 0;
  }

  .flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .proof-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
    gap: 44px;
  }

  .contact-copy h1 {
    font-size: clamp(48px, 6.7vw, 66px);
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .proof-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(54px, 11vw, 78px);
  }

  .hero-visual {
    max-width: 560px;
    margin: 30px auto 0;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 88px;
    padding: 19px 0;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .proof-panel {
    max-width: 620px;
  }

  .contact-hero {
    padding-top: 66px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .conversation-list {
    max-width: 580px;
  }

  .contact-assurance {
    max-width: 500px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 34px), 1200px);
  }

  .header-inner {
    min-height: 70px;
    gap: 14px;
  }

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

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy span {
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .header-cta {
    min-height: 37px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(46px, 14.2vw, 66px);
    letter-spacing: -2.7px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .trace-card {
    padding: 21px;
    border-radius: 20px;
  }

  .trace-brand img {
    width: 48px;
    height: 48px;
  }

  .trace-brand strong {
    font-size: 19px;
  }

  .status-pill {
    padding: 6px 8px;
    font-size: 8px;
  }

  .lot-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .trace-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .trace-list div > strong {
    text-align: left;
  }

  .trace-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .proof-copy h2,
  .final-cta h2 {
    font-size: clamp(39px, 11vw, 50px);
    letter-spacing: -1.7px;
  }

  .flow-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .flow-card,
  .flow-card:nth-child(2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-card:last-child {
    border-bottom: 0;
  }

  .flow-card h3 {
    margin-top: 50px;
  }

  .feature-card {
    min-height: 254px;
  }

  .proof-wrap {
    gap: 52px;
  }

  .proof-panel {
    padding: 20px;
  }

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

  .final-cta {
    padding: 88px 0;
  }

  .footer-inner,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    gap: 8px;
  }

  .contact-hero {
    padding: 54px 0 72px;
  }

  .contact-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
    letter-spacing: -2.3px;
  }

  .contact-lead {
    font-size: 15px;
  }

  .contact-form {
    gap: 18px;
    padding: 25px 20px;
    border-radius: 18px;
  }

  .contact-form-head h2 {
    font-size: 33px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
