:root {
  --ink: #f8fbff;
  --deep: #030914;
  --navy: #071423;
  --navy-2: #0b1d31;
  --panel: rgba(8, 22, 38, 0.78);
  --panel-solid: #0d2034;
  --line: rgba(185, 216, 232, 0.2);
  --muted: rgba(230, 239, 247, 0.72);
  --soft: rgba(230, 239, 247, 0.56);
  --cyan: #24c4d8;
  --cyan-strong: #0ea6bc;
  --gold: #d6b46a;
  --gold-soft: rgba(214, 180, 106, 0.16);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --page-max: 1400px;
  --hero-max: 1480px;
  --content-max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(36, 196, 216, 0.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(214, 180, 106, 0.11), transparent 26%),
    var(--deep);
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr) minmax(420px, auto) auto;
  align-items: center;
  gap: 18px;
  height: 88px;
  padding: 0 28px;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.92), rgba(3, 9, 20, 0.54));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: height 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(3, 9, 20, 0.95);
}

.brand {
  display: inline-grid;
  grid-template-columns: 8px auto;
  align-items: center;
  gap: 14px;
  width: 238px;
  min-width: 238px;
  overflow: hidden;
}

.brand-mark {
  display: block;
  width: 8px;
  height: 48px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy small {
  display: block;
  width: 190px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  white-space: normal;
}

.desktop-nav,
.site-switcher,
.language-toggle {
  display: flex;
  align-items: center;
}

.desktop-nav {
  justify-content: center;
  gap: clamp(18px, 1.55vw, 32px);
  min-width: 0;
  font-size: 15px;
  font-weight: 760;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.site-switcher {
  justify-self: end;
  gap: 12px;
  max-width: min(36vw, 620px);
  overflow: hidden;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 14, 28, 0.48);
}

.site-switcher a {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 0;
  width: max-content;
  max-width: 138px;
  padding-right: 15px;
  white-space: nowrap;
}

.site-switcher a:not(:last-child) {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.site-switcher span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
}

.site-switcher small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
}

.site-switcher i {
  position: absolute;
  top: 2px;
  right: 0;
  color: var(--cyan);
  font-size: 11px;
}

.language-toggle {
  justify-self: end;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 1px;
  width: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

html[lang="en"] .desktop-nav {
  gap: clamp(14px, 1.2vw, 26px);
  font-size: 14px;
}

html[lang="en"] .brand {
  width: 238px;
  max-width: 238px;
}

html[lang="en"] .brand-copy small {
  width: 186px;
  max-width: 186px;
  font-size: 10.5px;
  line-height: 1.18;
}

.language-toggle button {
  width: 30px;
  height: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 850;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.language-toggle button.is-active {
  color: #03101b;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.mobile-nav {
  position: fixed;
  z-index: 29;
  top: 78px;
  right: 16px;
  left: 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 10px;
  background: rgba(4, 12, 24, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a,
.mobile-nav button {
  min-height: 44px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 760;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
}

.mobile-nav button.is-active {
  color: #03101b;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 88px;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.97) 0%, rgba(3, 9, 20, 0.84) 34%, rgba(3, 9, 20, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.18) 0%, rgba(3, 9, 20, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  align-items: center;
  width: min(var(--hero-max), calc(100% - 92px));
  min-height: 620px;
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 30px;
  color: rgba(248, 251, 255, 0.8);
  font-size: 19px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 850;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.btn.primary {
  color: #07111b;
  background: linear-gradient(135deg, var(--gold), #f1d999);
  box-shadow: 0 20px 46px rgba(214, 180, 106, 0.18);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.advisory-panel {
  padding: 28px;
  border: 1px solid rgba(214, 180, 106, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 25, 42, 0.86), rgba(9, 25, 42, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.advisory-panel h2 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.28;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.signal-grid span {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.signal-grid strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.advisory-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--page-max), calc(100% - 92px));
  margin: -34px auto 0;
  border: 1px solid var(--line);
  background: rgba(7, 20, 35, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-strip article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 118px;
  padding: 24px 28px;
}

.proof-strip article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.proof-strip i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  font-size: 22px;
  border: 1px solid rgba(214, 180, 106, 0.34);
  border-radius: 50%;
  background: var(--gold-soft);
}

.proof-strip strong {
  font-size: 18px;
}

.proof-strip span {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
}

section:not(.hero) {
  width: min(var(--page-max), calc(100% - 92px));
  margin: 0 auto;
}

.position-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 130px 0 90px;
  border-bottom: 1px solid var(--line);
}

.position-copy {
  position: relative;
  padding-left: 24px;
}

.position-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: calc(100% - 16px);
  max-height: 176px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
}

.position-panel,
.section-heading p,
.clients-copy p,
.system-panel > p,
.contact-intro p {
  max-width: var(--content-max);
}

.position-panel {
  align-self: center;
  padding: 28px 30px;
  border: 1px solid rgba(185, 216, 232, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 22, 38, 0.32);
}

.position-section h2,
.section-heading h2,
.clients-copy h2,
.system-panel h2,
.contact-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.22;
  letter-spacing: 0;
}

.position-section h2 {
  font-size: clamp(26px, 2.1vw, 34px);
}

.position-panel > p,
.section-heading p,
.clients-copy p,
.system-panel p,
.contact-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.position-panel > p {
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 22px;
}

.position-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(185, 216, 232, 0.16);
}

.position-points span {
  display: grid;
  gap: 8px;
  padding: 18px 16px 2px 0;
  color: rgba(248, 251, 255, 0.9);
  font-size: 15px;
  font-weight: 850;
}

.position-points b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.pressure-section,
.practice-section,
.clients-section,
.deliverables-section,
.system-section,
.contact-section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 18px 58px;
  align-items: start;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
  padding-top: 12px;
}

.section-heading h2 {
  grid-column: 2;
  grid-row: 1;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: none;
  margin-top: 14px;
  padding-right: 12%;
  font-size: 16px;
  line-height: 1.8;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-map {
  display: none;
}

.practice-heading {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.section-side,
.section-main {
  display: grid;
  align-content: start;
}

.section-side {
  gap: 0;
}

.section-main {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 0;
}

.section-main h2,
.section-main p {
  grid-column: 1;
  grid-row: auto;
  margin: 0;
}

.section-main p {
  max-width: 900px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.practice-section .section-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(185, 216, 232, 0.16);
  background:
    linear-gradient(135deg, rgba(36, 196, 216, 0.12), rgba(214, 180, 106, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.section-map em,
.section-map span,
.section-map strong {
  grid-column: 1 / -1;
}

.section-map em {
  color: rgba(248, 251, 255, 0.76);
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

.section-map span {
  color: rgba(214, 180, 106, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 0.9;
}

.section-map strong {
  color: rgba(248, 251, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.section-map i {
  display: block;
  height: 6px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0.76;
}

.pressure-section {
  border-bottom: 1px solid var(--line);
}

.pressure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.pressure-grid article {
  min-height: 292px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pressure-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.pressure-grid strong {
  display: block;
  min-height: 0;
  font-size: 19px;
  line-height: 1.28;
  white-space: nowrap;
}

.pressure-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

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

.practice-grid article {
  position: relative;
  min-height: 318px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(185, 216, 232, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 34, 55, 0.9), rgba(7, 20, 35, 0.92));
}

.practice-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.practice-grid .index {
  display: block;
  margin: 0 0 18px;
  color: rgba(214, 180, 106, 0.36);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.practice-grid h3 {
  clear: both;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.32;
}

.practice-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.practice-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  color: rgba(248, 251, 255, 0.84);
  list-style: none;
}

.practice-grid li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.practice-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.clients-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-bottom: 58px;
}

.clients-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 180, 106, 0.36), rgba(36, 196, 216, 0.34), transparent);
}

.deliverables-section {
  padding-top: 58px;
}

.client-list {
  display: grid;
  gap: 12px;
}

.client-list a {
  display: grid;
  grid-template-columns: 0.45fr 1fr 24px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.client-list a:hover {
  border-color: rgba(214, 180, 106, 0.56);
  background: rgba(214, 180, 106, 0.08);
}

.client-list strong {
  font-size: 18px;
}

.client-list span {
  color: var(--muted);
  line-height: 1.65;
}

.client-list i {
  color: var(--gold);
}

.deliverable-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 100%);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.deliverable-board article {
  min-height: 118px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-board article:nth-child(4n) {
  border-right: 0;
}

.deliverable-board article:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.deliverable-board span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.deliverable-board strong {
  font-size: 16px;
  line-height: 1.45;
}

.system-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
}

.system-section img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.system-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 36, 58, 0.92), rgba(8, 22, 38, 0.94));
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.outcome-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(214, 180, 106, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.outcome-grid span {
  display: block;
  margin-bottom: 16px;
  color: rgba(214, 180, 106, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.outcome-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.35;
}

.outcome-grid p {
  margin: 0;
  color: rgba(214, 224, 235, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 68px;
  align-items: start;
  padding-bottom: 120px;
}

.contact-direct a {
  color: var(--gold);
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(214, 180, 106, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(248, 251, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(3, 9, 20, 0.46);
  outline: none;
}

.contact-form input,
.contact-form select {
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.contact-form select option {
  color: #071423;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  grid-column: 1 / -1;
  width: fit-content;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.form-note.is-success {
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020713;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1.25fr) auto;
  gap: 42px;
  width: min(var(--page-max), calc(100% - 56px));
  margin: 0 auto;
  padding: 52px 0 42px;
}

.footer-brand span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links p,
.brand-channels {
  margin: 0;
}

.footer-links p,
.brand-channels > p {
  color: rgba(248, 251, 255, 0.88);
  font-size: 15px;
  font-weight: 850;
}

.footer-links a,
.footer-links span {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

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

.brand-channels {
  display: grid;
  align-content: start;
  gap: 14px;
}

.channel-list {
  display: flex;
  gap: 14px;
}

.channel-list article {
  display: grid;
  gap: 8px;
  width: 96px;
  color: var(--soft);
  font-size: 12px;
  text-align: center;
}

.channel-list img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--page-max), calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0 24px;
  color: rgba(230, 239, 247, 0.48);
  font-size: 12px;
  border-top: 1px solid rgba(185, 216, 232, 0.14);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0 24px;
  }

  .desktop-nav,
  .site-switcher {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  section:not(.hero),
  .proof-strip {
    width: min(100% - 40px, 900px);
  }

  .hero-content,
  .position-section,
  .section-heading,
  .clients-section,
  .system-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 32px;
    padding: 74px 0 82px;
  }

  .proof-strip,
  .pressure-grid,
  .practice-grid,
  .deliverable-board {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .practice-grid article {
    min-height: auto;
  }

  .practice-section .section-heading > p:not(.eyebrow),
  .practice-section .section-map {
    grid-column: auto;
    grid-row: auto;
  }

  .practice-section .section-map {
    width: 100%;
    max-width: 360px;
    min-height: 118px;
    margin-top: 0;
  }

  .pressure-grid article:nth-child(2n) {
    border-right: 0;
  }

  .deliverable-board article:nth-child(2n) {
    border-right: 0;
  }

  .deliverable-board article:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .deliverable-board article:nth-child(2n) {
    border-right: 0;
  }

  .deliverable-board article:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .deliverable-board article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 40px, 900px);
  }

  .footer-brand p {
    max-width: 520px;
  }

  .footer-bottom {
    width: min(100% - 40px, 900px);
  }

  .position-panel {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 78px;
    gap: 12px;
    padding: 0 16px;
  }

  .brand {
    width: 188px;
    min-width: 188px;
    gap: 11px;
  }

  .brand-mark {
    width: 7px;
    height: 48px;
  }

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

  .brand-copy small,
  html[lang="en"] .brand-copy small {
    width: 145px;
    max-width: 145px;
    font-size: 10px;
    line-height: 1.18;
  }

  .language-toggle {
    display: flex;
    width: 36px;
  }

  .language-toggle button {
    width: 28px;
    height: 22px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 58px 0 72px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 18px;
  }

  .hero-lede,
  .position-panel > p,
  .section-heading p,
  .clients-copy p,
  .system-panel p,
  .contact-intro p {
    font-size: 15px;
    line-height: 1.72;
  }

  .position-section h2,
  .section-heading h2,
  .clients-copy h2,
  .system-panel h2,
  .contact-intro h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content {
    padding: 42px 0 56px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .btn {
    width: 100%;
  }

  .practice-section .section-map {
    display: none;
  }

  .advisory-panel,
  .system-panel,
  .contact-form {
    padding: 22px;
  }

  .signal-grid,
  .proof-strip,
  .pressure-grid,
  .practice-grid,
  .deliverable-board,
  .outcome-grid,
  .position-points,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:nth-child(2),
  .proof-strip article:nth-child(3),
  .pressure-grid article,
  .pressure-grid article:nth-child(2n),
  .deliverable-board article,
  .deliverable-board article:nth-child(4n),
  .deliverable-board article:nth-child(2n),
  .deliverable-board article:nth-last-child(-n + 2) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child,
  .deliverable-board article:last-child {
    border-bottom: 0;
  }

  section:not(.hero),
  .proof-strip {
    width: calc(100% - 32px);
  }

  .position-section,
  .pressure-section,
  .practice-section,
  .system-section,
  .contact-section {
    padding: 62px 0;
  }

  .clients-section {
    padding: 62px 0 42px;
  }

  .deliverables-section {
    padding: 42px 0 62px;
  }

  .position-copy {
    padding-left: 0;
    padding-top: 18px;
  }

  .position-copy::before {
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
  }

  .position-panel {
    padding: 22px;
  }

  .client-list a {
    grid-template-columns: 1fr 24px;
  }

  .client-list span {
    grid-column: 1 / -1;
  }

  .system-section img {
    min-height: 280px;
  }

  .footer-inner,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .footer-inner {
    padding: 42px 0 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    padding-bottom: 28px;
  }

  .channel-list {
    flex-wrap: wrap;
  }
}
