:root {
  color-scheme: dark;
  --bg: #100f0d;
  --bg-deep: #0c0b0a;
  --panel: #171511;
  --panel-warm: #1c1811;
  --panel-soft: #14120f;
  --border: #2e2a24;
  --border-soft: #221f1a;
  --text: #f3eee5;
  --muted: #b4ada1;
  --soft: #8a8276;
  --gold: #e6a92e;
  --gold-light: #f1c467;
  --green: #77b18c;
  --content: 1180px;
  --radius: 14px;
  --shadow: 0 28px 80px -42px rgba(0, 0, 0, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 78% 4%, rgba(230, 169, 46, 0.09), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 200;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(46, 42, 36, 0.86);
  background: rgba(16, 15, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-size: 24px;
  font-weight: 850;
}

.brand-sub {
  font-size: 11.5px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 30px);
}

.nav-links > a:not(.button) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links > a:not(.button):hover,
.nav-links > a[aria-current="page"] {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: #4b443a;
  background: var(--panel);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 0 5px rgba(230, 169, 46, 0.09);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  padding-block: clamp(72px, 9vw, 116px);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(43px, 6.3vw, 76px);
  font-weight: 780;
  letter-spacing: -0.047em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-intro {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

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

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 12.5px;
  font-weight: 600;
}

.micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.micro-trust span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.discovery-card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid #3a3329;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(29, 26, 21, 0.96), rgba(18, 17, 14, 0.98));
  box-shadow: var(--shadow);
}

.discovery-card::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 88px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.discovery-card h2 {
  margin: 0 0 14px;
  font-size: clamp(23px, 2.6vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.discovery-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.diagnostic-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: diagnostic;
}

.diagnostic-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: #d7d0c5;
  font-size: 14px;
  line-height: 1.45;
  counter-increment: diagnostic;
}

.diagnostic-list li::before {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  content: "0" counter(diagnostic);
}

.card-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(119, 177, 140, 0.25);
  border-radius: 9px;
  background: rgba(57, 105, 75, 0.1);
  color: #c6ddce;
  font-size: 13px;
  line-height: 1.5;
}

.card-result::before {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
  content: "\2713";
}

.trust-bar {
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-deep);
}

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

.trust-item {
  min-height: 128px;
  padding: 28px 26px;
  border-right: 1px solid var(--border-soft);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.trust-item span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding-block: clamp(78px, 10vw, 124px);
  border-bottom: 1px solid var(--border-soft);
}

.section-alt {
  background: rgba(12, 11, 10, 0.6);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.46fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(40px, 6vw, 68px);
}

.section-heading h2,
.split-copy h2,
.cta-panel h2,
.detail-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 750;
  letter-spacing: -0.038em;
  line-height: 1.06;
  text-wrap: balance;
}

.section-heading p,
.split-copy > p,
.detail-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.problem-card,
.scenario,
.value-card {
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--panel-soft);
}

.problem-card span,
.scenario-label,
.value-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.problem-card h3,
.scenario h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.problem-card p,
.scenario p,
.value-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.65;
}

.principle {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.5fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.principle-note {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-warm);
}

.principle-note blockquote {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.principle-note p {
  margin: 22px 0 0;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.process-step {
  position: relative;
  padding: 28px 24px 10px 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.process-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.process-step p {
  margin: 0;
  padding-right: 15px;
  color: var(--soft);
  font-size: 13.5px;
  line-height: 1.6;
}

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

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), var(--panel-soft));
}

.service-card:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.service-number {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.service-type {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.8vw, 31px);
  letter-spacing: -0.027em;
  line-height: 1.15;
}

.service-card > p {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card .text-link {
  margin-top: auto;
}

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

.scenario {
  min-height: 260px;
}

.scenario-label {
  margin-bottom: 34px;
  color: var(--soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario strong {
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(350px, 0.52fr);
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.split-copy > p {
  margin-top: 24px;
}

.split-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.split-list li::before {
  color: var(--gold);
  content: "\2713";
  font-weight: 900;
}

.accountability-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.accountability-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.accountability-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.accountability-flow {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.accountability-flow div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: var(--bg-deep);
  color: #d7d0c5;
  font-size: 13px;
}

.accountability-flow span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(54px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  margin: -6px 44px 22px 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.cta-section {
  padding-block: clamp(70px, 9vw, 110px);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid #473923;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(230, 169, 46, 0.17), transparent 22rem),
    var(--panel-warm);
}

.cta-panel h2 {
  max-width: 790px;
}

.cta-panel > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 44px;
  padding-block: 64px 50px;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 30px;
  border-top: 1px solid var(--border-soft);
  color: var(--soft);
  font-size: 11.5px;
  line-height: 1.5;
}

.page-hero {
  padding-block: clamp(80px, 10vw, 126px);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero-inner {
  max-width: 910px;
}

.page-hero .hero-intro {
  max-width: 760px;
}

.detail-section {
  padding-block: clamp(72px, 9vw, 110px);
  border-bottom: 1px solid var(--border-soft);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.detail-intro {
  position: sticky;
  top: 112px;
}

.detail-intro .service-number {
  display: block;
  margin-bottom: 22px;
}

.detail-intro > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.outcome-blocks {
  display: grid;
  gap: 12px;
}

.outcome-block {
  padding: 25px;
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  background: var(--panel-soft);
}

.outcome-block h3 {
  margin: 0 0 9px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-block p,
.outcome-block ul {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.outcome-block ul {
  display: grid;
  gap: 7px;
  padding-left: 18px;
}

.consultation-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #473923;
  border-radius: 11px;
  background: var(--panel-warm);
}

.consultation-note p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-standfirst {
  max-width: 900px;
  margin: 0;
  font-size: clamp(27px, 4vw, 45px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: balance;
}

.about-standfirst span {
  color: var(--gold);
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 6vw, 80px);
  margin-top: 54px;
}

.copy-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.copy-columns p + p {
  margin-top: 18px;
}

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

.value-card span {
  margin-bottom: 38px;
}

.legal-note {
  max-width: 900px;
  margin-top: 26px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.65;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .menu-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--border);
    background: rgba(16, 15, 13, 0.98);
    box-shadow: 0 22px 40px -30px #000;
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links > a:not(.button) {
    padding: 10px 4px;
    text-align: left;
  }

  .nav-links > .button {
    width: 100%;
    margin-top: 4px;
  }

  .hero-grid,
  .section-heading,
  .principle,
  .split,
  .faq-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 56px;
  }

  .discovery-card {
    max-width: 650px;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-soft);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .scenario-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .scenario,
  .value-card {
    min-height: auto;
  }

  .detail-intro {
    position: static;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--content));
  }

  .nav-wrap {
    min-height: 70px;
  }

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

  .brand-name {
    font-size: 21px;
  }

  .brand-sub {
    font-size: 10.5px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    letter-spacing: -0.043em;
  }

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

  .micro-trust {
    display: grid;
  }

  .trust-grid,
  .problem-grid,
  .services-grid,
  .process,
  .copy-columns {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .process-step {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-soft);
  }

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

  .process-number {
    margin-bottom: 14px;
  }

  .consultation-note {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
