:root {
  --orange: #cf6f1e;
  --orange-bright: #e57b2f;
  --orange-soft: #f5dfca;
  --charcoal: #2c2a26;
  --charcoal-mid: #5f5a52;
  --stone: #e8e4dd;
  --ink: #252421;
  --ink-soft: #56534e;
  --paper: #fbfaf7;
  --warm: #f3eee7;
  --white: #ffffff;
  --line: #dedbd4;
  --line-strong: #c9c4bb;
  --shadow: 0 12px 32px rgba(42, 39, 34, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 3px;
}

.wrap {
  margin: 0 auto;
  max-width: 1160px;
  padding-left: 28px;
  padding-right: 28px;
}

.skip-link {
  background: var(--charcoal);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 999;
}

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

.site-nav {
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.nav-inner {
  align-items: center;
  display: flex;
  height: 68px;
  justify-content: space-between;
}

.nav-brand {
  align-items: center;
  color: var(--orange);
  display: flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
}

.nav-brand svg {
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

.nav-brand span {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 500;
  margin-top: 4px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links .nav-cta {
  background: var(--charcoal);
  border-radius: 4px;
  color: var(--white);
  padding: 9px 15px;
}

.nav-links .nav-cta:hover {
  background: var(--charcoal-mid);
  color: var(--white);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hero {
  align-items: center;
  background-color: var(--paper);
  background-image: url("../images/hero-portrait.jpg");
  background-position: 82% 40%;
  background-repeat: no-repeat;
  background-size: auto 118%;
  display: flex;
  min-height: clamp(650px, calc(100svh - 120px), 760px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: transparent;
  content: "";
  inset: 0;
  position: absolute;
}

.hero::after {
  background: var(--orange);
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.24;
  margin-top: 22px;
  max-width: 720px;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 24px;
  max-width: 520px;
}

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

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-bright);
}

.btn-secondary {
  background: rgba(251, 250, 247, 0.82);
  border-color: var(--ink);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-signature {
  border-left: 3px solid var(--charcoal);
  display: flex;
  flex-direction: column;
  margin-top: 42px;
  padding-left: 16px;
}

.hero-signature strong {
  font-size: 15px;
}

.hero-signature span {
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 2px;
  max-width: 640px;
}

.credibility {
  background: var(--charcoal);
  color: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 34px;
  padding-top: 34px;
}

.metric {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-width: 0;
  padding: 4px 24px;
  text-align: center;
}

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

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

.metric strong {
  color: #f3b46f;
  display: block;
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.25;
}

.metric span {
  display: block;
  font-size: 12px;
  margin-top: 7px;
  opacity: 0.78;
}

.endorsement {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.endorsement-summary {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 13px;
  gap: 28px;
  justify-content: center;
  line-height: 1.75;
  padding-bottom: 18px;
  padding-top: 18px;
  text-align: center;
}

.endorsement-summary strong {
  color: var(--charcoal);
}

.endorsement-summary span {
  border-left: 1px solid var(--line-strong);
  padding-left: 28px;
}

.section {
  padding-bottom: 86px;
  padding-top: 86px;
}

.section h2,
.contact h2 {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.section-heading {
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.section-intro h2,
.about-story h2 {
  margin-top: 10px;
}

.section-heading > p:last-child,
.section-intro > p:not(.section-label),
.about-story > p {
  color: var(--ink-soft);
  margin-top: 14px;
}

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

.problem-layout {
  display: grid;
  gap: 92px;
  grid-template-columns: 0.82fr 1.18fr;
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 112px;
}

.section-emphasis {
  border-left: 4px solid var(--orange);
  color: var(--ink) !important;
  font-weight: 700;
  padding-left: 18px;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px 1fr;
  padding: 25px 0;
}

.problem-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.problem-list span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.problem-list p {
  font-size: 17px;
}

.problem-list p strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.method {
  background: var(--warm);
}

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

.method-flow article {
  border-right: 1px solid var(--line-strong);
  padding: 34px 28px 38px;
}

.method-flow article:last-child {
  border-right: 0;
}

.method-flow span,
.service-index {
  color: var(--charcoal-mid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.method-flow strong {
  color: var(--orange);
  display: block;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 25px;
  margin: 12px 0 10px;
}

.method-flow p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.method blockquote {
  color: var(--charcoal);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  margin-top: 34px;
  text-align: center;
}

.services {
  background: var(--paper);
}

.service-path {
  align-items: center;
  color: var(--charcoal);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 16px;
  margin: -20px 0 30px;
}

.service-path i {
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--charcoal);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 26px;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  border-top-color: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  margin: 10px 0 12px;
}

.service-card > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.service-card .service-copy-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 18px;
}

.service-deliverables {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin-top: 18px;
}

.service-deliverables li {
  background: var(--warm);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 9px;
}

.service-closing {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 8px 28px;
  grid-template-columns: 1fr auto;
  margin-top: 22px;
  padding: 28px 30px;
}

.service-closing p {
  font-size: 13px;
  grid-column: 1;
  opacity: 0.72;
}

.service-closing strong {
  font-size: 16px;
  grid-column: 1;
}

.service-closing .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
}

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

.case-feature {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 50px;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 46px 48px;
}

.case-status {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.case-status span,
.case-status strong {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.3;
  padding: 6px 9px;
}

.case-status strong {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.case-feature .case-status span {
  color: rgba(255, 255, 255, 0.72);
}

.case-copy h3,
.case-secondary h3 {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 25px;
  margin: 10px 0 14px;
}

.case-details {
  display: grid;
  gap: 14px;
}

.case-details div {
  display: grid;
  gap: 4px;
}

.case-details dt {
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.case-details dd {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.case-feature .case-details dd {
  color: rgba(255, 255, 255, 0.76);
}

.case-result {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding-left: 46px;
  text-align: center;
}

.case-result span {
  font-size: 11px;
  opacity: 0.68;
}

.case-result strong {
  color: #f3b46f;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 27px;
  line-height: 1.35;
}

.case-result small {
  font-size: 10px;
  line-height: 1.7;
  opacity: 0.62;
}

.case-result .case-result-scope {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  opacity: 1;
}

.case-secondary {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  margin-top: 1px;
}

.case-secondary article {
  background: var(--warm);
  min-width: 0;
  padding: 36px 40px;
}

.case-secondary article:first-child {
  border-right: 1px solid var(--line);
}

.case-secondary .case-status span {
  color: var(--charcoal-mid);
}

.case-secondary .case-status strong {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.case-secondary .case-outcome {
  border-top: 1px solid var(--line-strong);
  margin-top: 5px;
  padding-top: 13px;
}

.case-secondary .case-outcome dd {
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.case-secondary .case-outcome-result {
  color: var(--orange);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
}

.case-secondary .case-outcome dd span {
  color: var(--ink-soft);
}

.case-training {
  background: #eee7dd !important;
}

.about {
  background: var(--warm);
  padding-bottom: 82px;
  padding-top: 82px;
}

.about-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.9fr;
}

.about-story > p {
  font-size: 15px;
  line-height: 1.78;
}

.about-highlight {
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  color: var(--ink) !important;
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: 18px !important;
  font-weight: 700;
  padding: 20px 0;
}

.roles {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.about-role {
  color: var(--orange) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.roles span {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 12px;
}

.brand-note {
  color: var(--charcoal) !important;
  font-size: 13px !important;
}

.timeline {
  border-left: 1px solid var(--line-strong);
  padding-left: 34px;
}

.timeline h3 {
  color: var(--orange);
  font-size: 15px;
  margin-bottom: 24px;
}

.timeline > div {
  display: grid;
  gap: 18px;
  grid-template-columns: 84px 1fr;
  padding-bottom: 20px;
  position: relative;
}

.timeline > div::before {
  background: var(--orange);
  border: 4px solid var(--warm);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: -41px;
  position: absolute;
  top: 7px;
  width: 12px;
}

.timeline time {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.timeline p {
  display: flex;
  flex-direction: column;
}

.timeline strong {
  font-size: 14px;
}

.timeline span {
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 3px;
}

.moments {
  background: var(--paper);
  padding-bottom: 82px;
  padding-top: 82px;
}

.moment-coverage {
  border-left: 2px solid var(--orange);
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 14px;
  padding-left: 12px;
}

.moment-coverage strong {
  color: var(--charcoal);
}

.moment-grid {
  display: grid;
  gap: 10px;
  grid-auto-rows: 360px;
  grid-template-columns: 2fr 1fr 1fr;
}

.moment-grid figure {
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.moment-grid .moment-main {
  grid-column: span 1;
  grid-row: span 1;
}

.moment-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

.moment-grid figure:nth-child(3) img {
  object-position: 28% center;
}

.moment-grid figure:hover img {
  transform: scale(1.025);
}

.moment-grid figcaption {
  background: rgba(44, 42, 38, 0.92);
  bottom: 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.55;
  left: 0;
  padding: 9px 12px;
  position: absolute;
  right: 0;
}

.certifications {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
  padding-top: 22px;
}

.certifications span {
  color: var(--ink-soft);
  font-size: 12px;
}

.certifications span:first-child {
  color: var(--orange);
  font-weight: 800;
}

.articles {
  background: var(--white);
  padding-bottom: 82px;
  padding-top: 82px;
}

.article-layout {
  display: grid;
  gap: 92px;
  grid-template-columns: 0.8fr 1.2fr;
}

.article-list {
  border-top: 1px solid var(--line-strong);
}

.article-list a {
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 4px 18px;
  grid-template-columns: 120px 1fr auto;
  padding: 25px 0;
}

.article-list a:hover h3,
.article-list a:hover i {
  color: var(--orange);
}

.article-list span {
  color: var(--charcoal-mid);
  font-size: 11px;
  font-weight: 700;
}

.article-list h3 {
  font-size: 16px;
  grid-column: 2;
  grid-row: 1;
  line-height: 1.5;
}

.article-list small {
  color: var(--ink-soft);
  font-size: 11px;
  grid-column: 2;
  grid-row: 2;
}

.article-list i {
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
  grid-column: 3;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.partners {
  background: var(--stone);
}

.partner-grid {
  border-left: 1px solid rgba(44, 42, 38, 0.2);
  border-top: 1px solid rgba(44, 42, 38, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.partner-grid article {
  border-bottom: 1px solid rgba(44, 42, 38, 0.2);
  border-right: 1px solid rgba(44, 42, 38, 0.2);
  padding: 28px 32px;
}

.partner-grid span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 13px;
}

.partner-grid h3 {
  font-size: 16px;
  margin: 5px 0 7px;
}

.partner-grid p {
  color: var(--ink-soft);
  font-size: 13px;
}

.partner-note {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  margin: -24px 0 24px;
  text-align: center;
}

.contact {
  background: var(--charcoal);
  color: var(--white);
  padding: 88px 0;
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact .section-label {
  color: #f3b46f;
}

.contact h2 {
  font-size: 42px;
  margin-top: 8px;
}

.contact-copy > p:not(.section-label) {
  margin: 12px 0 28px;
  opacity: 0.76;
}

.contact-copy > span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.72;
}

.contact-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: -8px 0 24px;
}

.contact-service-list li {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  padding: 6px 10px;
}

.contact-note {
  display: block;
  font-size: 11px;
  line-height: 1.65;
  margin-top: 8px;
  opacity: 0.58;
}

.contact-copy .copy-feedback {
  color: #f3b46f;
  min-height: 22px;
  opacity: 1;
}

.contact-action,
.qr-download {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
}

.contact-action {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  margin-top: 16px;
  padding: 8px 16px;
}

.contact-action:hover,
.qr-download:hover {
  border-color: #f3b46f;
  color: #f3b46f;
}

.contact-options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 0;
  padding: 16px;
  text-align: center;
}

.contact-card-primary {
  align-items: center;
  background: rgba(207, 111, 30, 0.12);
  border-color: rgba(243, 180, 111, 0.72);
  box-shadow: inset 4px 0 0 rgba(243, 180, 111, 0.86);
  display: grid;
  gap: 22px;
  grid-column: 1 / -1;
  grid-template-columns: 210px 1fr;
  padding: 20px;
  text-align: left;
}

.contact-card-primary .qr-frame {
  margin-bottom: 0;
}

.contact-card-primary strong {
  color: #f3b46f;
  font-size: 17px;
}

.contact-options > .contact-card:not(.contact-card-primary) .qr-frame {
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
}

.qr-frame {
  aspect-ratio: 1;
  background: var(--white);
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 7px;
  width: 100%;
}

.qr-image {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.contact-options strong {
  display: block;
  font-size: 13px;
}

.contact-options small {
  display: block;
  font-size: 10px;
  margin-top: 3px;
  opacity: 0.62;
}

.contact-card-copy {
  display: block;
}

.qr-download {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
  padding: 8px 10px;
  width: 100%;
}

footer {
  background: #211f1c;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  padding: 22px 0;
}

footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

footer a:hover,
footer a:focus-visible {
  color: var(--white);
}

.footer-inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 16px;
  }

  .hero {
    background-position: 95% 42%;
  }

  .hero h1 {
    font-size: 49px;
    max-width: 650px;
  }

  .problem-layout,
  .article-layout {
    gap: 56px;
  }

  .about-grid {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 22px 18px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    padding: 13px 0;
  }

  .nav-links .nav-cta {
    border-bottom: 0;
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    align-items: flex-start;
    background-position: center bottom;
    background-size: auto 59%;
    min-height: 760px;
  }

  .hero::before {
    background: transparent;
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 40px;
    max-width: 620px;
  }

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

  .hero-signature {
    margin-top: 28px;
  }

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

  .metric {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 16px;
  }

  .metric:first-child {
    padding-left: 16px;
  }

  .metric:last-child {
    padding-right: 16px;
  }

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

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

  .section {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .problem-layout,
  .article-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

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

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

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

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

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

  .case-result {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 0;
    padding-top: 26px;
  }

  .moment-grid {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr 1fr;
  }

  .moment-grid .moment-main {
    grid-column: span 2;
  }

  .contact-layout {
    gap: 46px;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-brand small {
    display: none;
  }

  .hero {
    background-size: auto 380px;
    min-height: 940px;
  }

  .hero::before {
    background: transparent;
  }

  .hero-content {
    padding-top: 34px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.28;
    margin-top: 14px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.68;
    margin-top: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
  }

  .btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 9px 14px;
    width: 100%;
  }

  .hero-signature {
    margin-top: 20px;
  }

  .credibility-grid {
    padding: 0 18px;
  }

  .metric {
    padding: 20px 10px;
  }

  .metric:first-child {
    padding-left: 10px;
  }

  .metric:last-child {
    padding-right: 10px;
  }

  .metric strong {
    font-size: 22px;
  }

  .metric span {
    font-size: 11px;
    line-height: 1.5;
  }

  .endorsement-summary {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
    gap: 4px;
    text-align: left;
  }

  .endorsement-summary span {
    border-left: 0;
    padding-left: 0;
  }

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

  .section h2,
  .contact h2 {
    font-size: 31px;
  }

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

  .problem-layout,
  .article-layout,
  .about-grid {
    gap: 40px;
  }

  .problem-list li {
    gap: 12px;
    grid-template-columns: 42px 1fr;
  }

  .problem-list p {
    font-size: 15px;
  }

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

  .method-flow article,
  .method-flow article:nth-child(2) {
    border-bottom: 1px solid var(--line-strong);
    border-right: 0;
    padding: 25px 20px;
  }

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

  .method-flow strong {
    font-size: 26px;
  }

  .service-path {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .service-path i {
    transform: rotate(90deg);
  }

  .service-card {
    padding: 25px 21px;
  }

  .service-closing {
    grid-template-columns: 1fr;
    padding: 24px 21px;
  }

  .service-closing p,
  .service-closing strong,
  .service-closing .btn {
    grid-column: 1;
    grid-row: auto;
  }

  .case-feature {
    gap: 30px;
    padding: 32px 22px;
  }

  .case-result strong {
    font-size: 24px;
  }

  .case-secondary {
    grid-template-columns: 1fr;
  }

  .case-secondary article {
    padding: 30px 22px;
  }

  .case-secondary article:first-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .roles,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline > div::before {
    left: -31px;
  }

  .timeline > div {
    gap: 10px;
    grid-template-columns: 78px 1fr;
  }

  .moment-grid {
    grid-auto-rows: 210px;
    grid-template-columns: 1fr;
  }

  .moment-grid .moment-main {
    grid-column: span 1;
    grid-row: span 1;
  }

  .article-list a {
    gap: 7px;
    grid-template-columns: 1fr auto;
    padding: 20px 0;
  }

  .article-list span {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .article-list h3 {
    font-size: 15px;
    grid-column: 1;
    grid-row: auto;
  }

  .article-list small {
    grid-column: 1;
    grid-row: auto;
  }

  .article-list i {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .partner-grid article {
    padding: 24px 20px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: center;
    display: grid;
    gap: 4px 16px;
    grid-template-columns: 124px 1fr;
    text-align: left;
  }

  .qr-frame {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .contact-card-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

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

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