@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --ink: #1a1a1a;
  --ink-soft: #32302d;
  --sand: #f7f4ef;
  --cream: #f9f6f1;
  --gold: #b89a6a;
  --gold-light: #d4b896;
  --stone: #8c8070;
  --rule: #d8d0c4;
  --white: #ffffff;
  --page: 1240px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 9% 2%, rgba(184, 154, 106, 0.14), transparent 26rem),
    radial-gradient(circle at 91% 20%, rgba(212, 184, 150, 0.13), transparent 28rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(216, 208, 196, 0.9);
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  position: relative;
  width: min(calc(100% - 48px), var(--page));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--sand);
  content: "";
}

.brand-mark::before {
  top: -4px;
  left: 11px;
}

.brand-mark::after {
  right: -4px;
  top: 11px;
}

.brand-initial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.7vw, 40px);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #514c46;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switcher {
  min-width: 66px;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex: 0 0 auto;
  color: var(--stone);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.language-switcher a {
  padding: 8px 0;
  color: var(--stone);
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  color: var(--ink);
}

.language-switcher a[aria-current="page"] {
  border-bottom: 1px solid var(--gold);
}

main {
  overflow: hidden;
}

.error-main {
  min-height: calc(100vh - 89px);
  padding: 64px 24px;
  display: grid;
  place-items: center;
}

.error-card {
  width: min(100%, 720px);
  padding: clamp(42px, 8vw, 82px);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 80px rgba(26, 26, 26, 0.07);
}

.error-card h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.error-card p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: #5f5952;
  font-weight: 300;
}

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

.hero {
  padding: clamp(72px, 9vw, 136px) 0 clamp(64px, 8vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(52px, 8vw, 112px);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: 2px;
  bottom: 5px;
  left: -30px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(184, 154, 106, 0));
  content: "";
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 7vw, 6.7rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

h1 em,
h2 em {
  color: var(--stone);
  font-weight: 300;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 0;
  color: #4f4a45;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: var(--white);
}

.text-link {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold-light);
  color: #514c46;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.hero-aside {
  position: relative;
  padding: 34px 0 3px 34px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.hero-aside::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.aside-title {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.12;
}

.aside-copy {
  margin-bottom: 0;
  color: #625c55;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
}

.trust-bar {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.44);
}

.trust-list {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  min-height: 32px;
  padding: 0 24px;
  border-left: 1px solid var(--rule);
  display: grid;
  place-items: center;
  color: #5d5750;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.trust-list li:last-child {
  border-right: 1px solid var(--rule);
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-cream {
  background: rgba(249, 246, 241, 0.78);
}

.section-white {
  background: rgba(255, 255, 255, 0.72);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.section-heading h2,
.split-copy h2,
.statement h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.section-heading p,
.split-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  color: #5f5952;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
}

.section-dark .section-heading p,
.section-dark .split-copy > p {
  color: #c9c0b5;
}

.service-grid,
.outcome-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service-card,
.outcome-card,
.deliverable-card {
  position: relative;
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.4);
}

.service-number,
.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.service-card h3,
.outcome-card h3,
.deliverable-card h3,
.platform-card h3,
.step h3 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 400;
  line-height: 1.1;
}

.service-card p,
.outcome-card p,
.deliverable-card p,
.platform-card p,
.step p {
  margin-bottom: 0;
  color: #645e57;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.8;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(270px, 0.36fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.statement h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-style: italic;
}

.statement-rule {
  width: 1px;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(transparent, var(--gold), transparent);
}

.statement-note {
  margin: 0;
  color: #c9c0b5;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.9;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 140px;
}

.platform-stack {
  border-top: 1px solid var(--rule);
}

.platform-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
}

.platform-name {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

.step {
  min-height: 270px;
  padding: 38px clamp(20px, 3vw, 38px) 0;
  border-right: 1px solid var(--rule);
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
  border-right: 0;
}

.detail-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.detail-list li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-top: 1px solid rgba(216, 208, 196, 0.75);
  color: #514c46;
  font-size: 0.82rem;
  font-weight: 300;
}

.detail-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.outcome-card {
  min-height: 250px;
}

.outcome-card .card-kicker {
  margin-bottom: 34px;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-rail::before {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--rule);
  content: "";
}

.process-item {
  position: relative;
  padding: 46px clamp(20px, 3vw, 40px) 0 0;
}

.process-item::before {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 4px solid var(--sand);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.process-item h3 {
  margin-bottom: 9px;
  font-size: 1.45rem;
  font-weight: 400;
}

.process-item p {
  margin: 0;
  color: #645e57;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
}

.feature-band {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: clamp(34px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.5);
}

.feature-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
}

.feature-band p {
  max-width: 770px;
  margin-bottom: 0;
  color: #5f5952;
  font-size: 0.9rem;
  font-weight: 300;
}

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

.footer-main {
  min-height: 420px;
  padding: clamp(70px, 9vw, 120px) 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(56px, 8vw, 110px);
}

.footer-kicker {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-main h2 {
  max-width: 740px;
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.footer-contact {
  padding-left: 32px;
  border-left: 1px solid #4c4945;
}

.footer-contact p {
  margin-bottom: 18px;
  color: #c9c0b5;
  font-size: 0.86rem;
  font-weight: 300;
}

.footer-email {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-decoration: none;
}

.footer-base {
  min-height: 74px;
  border-top: 1px solid #3a3835;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8e8780;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Lead form */
.lead-page {
  overflow: visible;
  padding: clamp(64px, 8vw, 112px) 0;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
}

.lead-intro {
  position: sticky;
  top: 132px;
}

.lead-intro h1 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
}

.lead-intro-copy {
  max-width: 520px;
  color: #4f4a45;
  font-weight: 300;
  line-height: 1.85;
}

.expectation-note {
  max-width: 520px;
  margin-top: 36px;
  padding: 26px 0 0 26px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--gold);
}

.expectation-note p:last-child {
  margin-bottom: 0;
  color: #625c55;
  font-size: 0.86rem;
}

.lead-form-card {
  border: 1px solid var(--rule);
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 72px rgba(26, 26, 26, 0.07);
}

.lead-form {
  padding: clamp(28px, 5vw, 58px);
}

.form-section {
  margin: 0 0 46px;
  padding: 0 0 46px;
  border: 0;
  border-bottom: 1px solid var(--rule);
}

.form-section-heading,
.choice-section legend {
  width: 100%;
  margin-bottom: 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.form-section-heading > span,
.choice-section legend > span:first-child {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.form-section-heading h2,
.choice-section legend > span:last-child {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}

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

.field + .field {
  margin-top: 22px;
}

.form-grid .field + .field {
  margin-top: 0;
}

.field label,
.field-help {
  display: block;
  margin: 0 0 8px;
  color: #514c46;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.field-help {
  margin: -12px 0 18px;
  color: var(--stone);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cfc5b8;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(184, 154, 106, 0.24);
  outline-offset: 1px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b9287;
}

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

.choice {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(249, 246, 241, 0.75);
  color: #4f4a45;
  cursor: pointer;
  font-size: 0.83rem;
}

.choice:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184, 154, 106, 0.1);
  color: var(--ink);
}

.choice input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.form-submit-area {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.form-submit-area .button {
  min-width: 240px;
}

.form-message,
.config-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid #8c3c31;
  background: #f8efed;
  color: #6f3028;
  font-size: 0.82rem;
}

.lead-form[data-state="error"] .form-message,
.lead-form[data-state="configuration-error"] .config-message {
  display: block;
}

.privacy-note {
  margin: 0;
  color: #756e66;
  font-size: 0.75rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-success {
  min-height: 500px;
  padding: clamp(44px, 7vw, 82px);
  align-content: center;
}

.form-success h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1;
}

.form-success p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 30px;
  color: #5f5952;
  font-weight: 300;
}

.compact-footer .footer-base {
  border-top: 0;
}

.reveal {
  animation: rise 700ms cubic-bezier(0.21, 0.68, 0.32, 1) both;
}

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

@media (max-width: 980px) {
  .nav-shell {
    gap: 26px;
  }

  .nav-links {
    gap: 19px;
  }

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

  .hero-grid {
    align-items: start;
  }

  .hero-aside {
    max-width: 650px;
  }

  .split-copy {
    position: static;
  }

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

  .process-rail {
    grid-template-columns: 1fr 1fr;
    row-gap: 46px;
  }

  .process-rail::before {
    display: none;
  }

  .process-item {
    padding-top: 28px;
    border-top: 1px solid var(--rule);
  }

  .process-item::before {
    top: -6px;
    border-color: var(--sand);
  }

  .lead-layout {
    grid-template-columns: 1fr;
  }

  .lead-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 860px) and (min-width: 761px) {
  .nav-shell {
    width: min(calc(100% - 32px), var(--page));
    min-height: 0;
    padding: 17px 0 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .language-switcher {
    position: absolute;
    top: 15px;
    right: 0;
    min-width: 0;
    padding-left: 14px;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(calc(100% - 32px), var(--page));
    min-height: 0;
    padding: 17px 0 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .brand-mark::before {
    left: 9px;
  }

  .brand-mark::after {
    top: 9px;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 0.56rem;
  }

  .language-switcher {
    position: absolute;
    top: 15px;
    right: 0;
    min-width: 0;
    padding-left: 14px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--page));
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5.1rem);
  }

  .hero-aside {
    padding: 28px 0 0 24px;
  }

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

  .trust-list li {
    min-height: 64px;
    padding: 12px;
    border-bottom: 1px solid var(--rule);
  }

  .trust-list li:nth-child(3),
  .trust-list li:nth-child(4) {
    border-bottom: 0;
  }

  .service-grid,
  .deliverable-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .outcome-card,
  .deliverable-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 28px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .statement-rule {
    width: 72px;
    height: 1px;
    min-height: 0;
    background: var(--gold);
  }

  .platform-card {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .steps,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .process-item {
    padding-right: 0;
  }

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

  .footer-main {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    padding: 28px 0 0;
    border-top: 1px solid #4c4945;
    border-left: 0;
  }

  .lead-page {
    padding-top: 48px;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .nav-links {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    column-gap: 26px;
    row-gap: 0;
  }

  .nav-links a {
    padding: 6px 0;
  }

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

  .button {
    width: 100%;
  }

  .footer-base {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .lead-form {
    padding: 26px 20px;
  }

  .lead-form-card {
    margin-inline: -6px;
  }

  .form-submit-area,
  .form-submit-area .button {
    width: 100%;
  }
}

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

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