:root {
  --navy-990: #010814;
  --navy-970: #03101f;
  --navy-930: #081b2e;
  --navy-860: #102b44;
  --steel: #35485a;
  --paper: #f3efe7;
  --paper-soft: #fbf9f4;
  --paper-warm: #ece5d9;
  --ink: #151923;
  --muted: #606875;
  --line: #ddd4c6;
  --line-dark: rgba(224, 202, 166, 0.22);
  --gold: #d6a66a;
  --gold-soft: #e2bd86;
  --max: 1320px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "PingFang TC",
    "Noto Sans TC",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body {
  margin: 0;
  overscroll-behavior-y: contain;
}

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

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

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

.site-shell {
  min-height: 100vh;
  background: var(--paper);
}

.subpage-html {
  scroll-snap-type: none;
}

.about-slides-html {
  scroll-snap-type: y mandatory;
}

.slide-page-html {
  scroll-snap-type: y mandatory;
}

.subpage-body {
  overscroll-behavior-y: auto;
}

.about-slides-body {
  overscroll-behavior-y: contain;
}

.slide-page-body {
  overscroll-behavior-y: contain;
}

.page-shell {
  min-height: 100vh;
  background: var(--paper-soft);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 26px clamp(28px, 4.1vw, 72px);
  border-bottom: 1px solid rgba(226, 205, 171, 0.18);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(1, 8, 20, 0.92), rgba(1, 8, 20, 0.66)),
    rgba(1, 8, 20, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(250px, 20vw, 348px);
  flex: 0 0 auto;
  color: var(--gold);
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.35vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 560;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.nav a[aria-current="page"] {
  color: #fff;
}

.nav-service {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-service__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-service__trigger::before {
  order: 2;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  opacity: 0.78;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-service:hover .nav-service__trigger::before,
.nav-service:focus-within .nav-service__trigger::before,
.nav-service--open .nav-service__trigger::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-service__menu {
  position: absolute;
  top: calc(100% + 20px);
  right: -28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, calc(100vw - 56px));
  border: 1px solid rgba(224, 202, 166, 0.24);
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(4, 16, 29, 0.98), rgba(1, 8, 20, 0.98)),
    var(--navy-990);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-service__menu::before {
  position: absolute;
  top: -21px;
  right: 0;
  left: 0;
  height: 21px;
  content: "";
}

.nav-service:hover .nav-service__menu,
.nav-service:focus-within .nav-service__menu,
.nav-service--open .nav-service__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-service__menu a {
  display: grid;
  gap: 5px;
  min-height: 74px;
  align-content: center;
  padding: 15px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-service__menu a::after {
  display: none;
}

.nav-service__menu a:hover,
.nav-service__menu a[aria-current="page"] {
  color: #fff;
  background: rgba(214, 166, 106, 0.13);
}

.nav-service__menu span {
  font-size: 16px;
  line-height: 1.25;
}

.nav-service__menu small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.nav .nav__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(214, 166, 106, 0.78);
  border-radius: 2px;
  padding: 0 18px;
  color: var(--navy-990);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav .nav__cta::after {
  display: none;
}

.nav .nav__cta:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  z-index: 70;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214, 166, 106, 0.62);
  border-radius: 50%;
  padding: 0;
  background: rgba(2, 11, 21, 0.42);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-toggle--open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle--open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.home-slide,
.contact-section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-slide {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 34px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 72px;
}

.slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  display: grid;
  align-content: center;
  color: #fff;
  background:
    url("../images/hero-data-landscape.png") right center / cover no-repeat,
    var(--navy-990);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 58%, rgba(35, 114, 196, 0.14), transparent 40%),
    linear-gradient(90deg, rgba(1, 8, 20, 0.86) 0%, rgba(3, 15, 28, 0.62) 34%, rgba(5, 19, 34, 0.12) 68%, rgba(2, 11, 21, 0.04) 100%),
    linear-gradient(180deg, rgba(1, 8, 20, 0.18), rgba(1, 8, 20, 0.04) 50%, rgba(1, 8, 20, 0.36));
}

.hero::after,
.home-slide--strengths::after,
.home-slide--process::after,
.home-slide--cta::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 1px;
  content: "";
  background: rgba(226, 205, 171, 0.22);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media video {
  width: 100%;
  height: 100%;
  filter: saturate(1.14) contrast(1.04) brightness(1.04);
  object-fit: cover;
  object-position: center center;
}

.hero--static-reference .hero__media {
  display: none;
}

.hero--static-reference {
  background:
    url("../images/hero-data-landscape.png") right center / cover no-repeat,
    var(--navy-990);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__content::before {
  position: absolute;
  inset: -80px auto -78px -44px;
  z-index: -1;
  width: min(800px, 72vw);
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at left center, rgba(1, 8, 20, 0.54), rgba(1, 8, 20, 0.24) 54%, transparent 78%);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

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

.hero h1,
.home-slide h2,
.contact-section h2 {
  margin: 0;
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-weight: 560;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  color: var(--gold);
  font-size: clamp(62px, 5.55vw, 96px);
  font-weight: 650;
  line-height: 1.22;
}

.hero__rule {
  width: 74px;
  height: 2px;
  margin: 26px 0 0;
  background: var(--gold);
}

.hero__lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.95;
  letter-spacing: 0;
}

.hero__actions,
.cta-panel .button {
  margin-top: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  border-radius: 2px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.button--primary {
  color: var(--navy-990);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.button--ghost {
  border: 1px solid rgba(214, 166, 106, 0.86);
  color: var(--gold);
  background: rgba(2, 11, 21, 0.08);
}

.button--ghost-light {
  color: var(--navy-930);
  background: rgba(255, 255, 255, 0.34);
}

.section__header {
  max-width: 820px;
  margin-bottom: 42px;
}

.section__header--split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: end;
  gap: 48px;
  max-width: none;
}

.home-slide h2,
.contact-section h2 {
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.13;
}

.section-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.home-slide--strengths {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 166, 106, 0.14), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(16, 43, 68, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    var(--paper);
}

.home-slide--cta h2 {
  color: #fff;
}

.home-slide--cta p {
  color: rgba(255, 255, 255, 0.72);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.strength-card {
  min-height: 292px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 32px 30px 0 0;
}

.strength-card + .strength-card {
  padding-left: 30px;
}

.strength-card:last-child {
  border-right: 0;
}

.card-index {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.strength-card h3,
.service-card h3,
.process-step h3,
.principle-card h3,
.insights-coming h2 {
  margin: 0;
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-weight: 520;
  letter-spacing: 0;
}

.strength-card h3 {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.35;
}

.strength-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.home-slide--process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0)),
    var(--paper-soft);
}

.home-slide--process .section__header {
  margin-bottom: 26px;
}

.home-slide--process .section-lead {
  font-size: 17px;
  line-height: 1.6;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border: 0;
  background: transparent;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 0;
  border: 0;
}

.process-step__number {
  display: none;
}

.process-step__card {
  display: grid;
  grid-template-rows: minmax(238px, 1fr) 132px;
  height: 100%;
}

.process-step__copy {
  min-height: 238px;
  border-right: 1px solid var(--line);
  padding: 0 28px 24px;
  text-align: center;
}

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

.process-step__label {
  display: block;
  color: #9a7444;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.process-step__label--step {
  margin-bottom: 18px;
  font-size: 22px;
}

.process-step__label--name {
  display: none;
}

.process-step h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.process-step p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.process-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  height: 132px;
  place-items: center;
  margin-left: -21px;
  padding-left: 21px;
  color: var(--gold);
  background: linear-gradient(135deg, #071c31, #122c45);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%, 34px 50%);
}

.process-step:first-child .process-step__icon {
  margin-left: 0;
  padding-left: 0;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
}

.process-step__icon svg {
  width: 88px;
  height: 88px;
  overflow: visible;
}

.process-step__icon img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.process-step__icon circle,
.process-step__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-slide--cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 8, 20, 0.96), rgba(6, 18, 30, 0.82)),
    url("../images/contact-room.jpg") center center / cover no-repeat;
}

.home-slide--cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(226, 205, 171, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 205, 171, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.46;
  pointer-events: none;
}

.cta-panel {
  max-width: 780px;
}

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

.cta-panel p {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.85;
}

.principle-card p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.92;
}

.principle-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--paper-soft);
}

.principle-card span {
  color: #9a7444;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.principle-card h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 292px;
  gap: 14px;
  max-width: var(--max);
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 0;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 24px 20px;
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.service-card__icon {
  display: block;
  width: min(230px, 74%);
  height: 128px;
  margin-bottom: 8px;
  color: var(--navy-930);
  object-fit: contain;
  overflow: visible;
}

.service-card h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
}

.service-card__label {
  display: block;
  margin-top: 8px;
  color: #a6763f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.service-card p {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.subpage-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 56svh;
  padding: calc(var(--header-height) + 96px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 82px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(58, 127, 196, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy-990), var(--navy-930) 52%, #07111c);
}

.subpage-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(226, 205, 171, 0.22);
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.subpage-hero h1 {
  margin: 0;
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: 0;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.86;
}

.page-section {
  padding: 88px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.about-page-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--paper);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.74fr);
  gap: 72px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-feature {
  max-width: 760px;
}

.about-feature h2,
.page-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-feature__copy {
  margin-top: 38px;
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.about-feature__copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.94;
}

.about-feature__copy p + p {
  margin-top: 22px;
}

.about-principles {
  display: grid;
  align-content: start;
  gap: 18px;
}

.page-shell--about {
  background:
    radial-gradient(circle at 92% 12%, rgba(214, 166, 106, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, var(--paper-soft) 42%, var(--paper) 100%);
}

.about-slide {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.services-slide,
.insights-slide {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.services-slide.subpage-hero,
.insights-slide.subpage-hero,
.services-slide.page-section,
.insights-slide.page-section,
.services-slide.page-cta,
.insights-slide.page-cta {
  display: grid;
  align-content: center;
}

.about-slide.page-section {
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 42px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 58px;
}

.about-editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  min-height: 100svh;
  padding: calc(var(--header-height) + 52px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 66px;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 43, 68, 0.1);
  background:
    radial-gradient(circle at 82% 44%, rgba(21, 70, 112, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f1eb 0%, #fbf9f4 100%);
}

.about-editorial-hero::before {
  position: absolute;
  top: 28%;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  width: min(540px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background-image: radial-gradient(rgba(16, 43, 68, 0.16) 1px, transparent 1.8px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, #000 0 58%, transparent 76%);
  opacity: 0.42;
}

.about-editorial-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-editorial-hero h1,
.about-narrative h2,
.about-capability h2,
.about-belief h2,
.about-statement h2,
.about-principles-simple h2,
.about-principles-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-weight: 520;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-editorial-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 76px);
}

.about-editorial-hero__lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.64;
}

.about-editorial-hero__copy p:not(.eyebrow, .about-editorial-hero__lead) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.about-visual-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 68px rgba(16, 43, 68, 0.15);
}

.about-visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(1, 8, 20, 0.02), rgba(1, 8, 20, 0.14)),
    radial-gradient(circle at 74% 26%, rgba(214, 166, 106, 0.18), transparent 28%);
  pointer-events: none;
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-card--hero {
  height: min(520px, 56svh);
}

.about-visual-card--inline {
  height: min(260px, 28svh);
  margin-top: 34px;
}

.about-visual-card--research {
  height: min(330px, 36svh);
}

.about-visual-card--statement {
  height: min(430px, 48svh);
}

.about-narrative-section {
  background: var(--paper-soft);
}

.about-narrative,
.about-capability,
.about-belief,
.about-principle-list {
  max-width: var(--max);
  margin: 0 auto;
}

.about-narrative,
.about-capability {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(42px, 6vw, 86px);
}

.about-narrative h2,
.about-capability h2,
.about-belief h2 {
  font-size: clamp(36px, 3.6vw, 54px);
}

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

.about-narrative__copy p,
.about-capability p,
.about-belief p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.92;
}

.about-narrative__copy p + p {
  margin-top: 22px;
}

.about-capability-section {
  background:
    linear-gradient(180deg, rgba(214, 166, 106, 0.08), rgba(255, 255, 255, 0)),
    var(--paper);
}

.about-capability > div:first-child p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 28px;
}

.capability-tags {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 360px;
  border-radius: 8px;
  padding: 48px;
  background:
    radial-gradient(circle at 72% 26%, rgba(214, 166, 106, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(236, 229, 217, 0.76));
}

.capability-tags span {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(214, 166, 106, 0.32);
  border-radius: 4px;
  padding: 0 22px;
  color: var(--navy-930);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(16, 43, 68, 0.07);
  font-weight: 700;
}

.capability-tags span:nth-child(even) {
  justify-self: end;
}

.decision-contexts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-contexts article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  padding: 26px 24px 28px;
}

.decision-contexts article:last-child {
  border-right: 0;
}

.decision-contexts span,
.about-principle-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.decision-contexts h3,
.about-principle-list h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 25px;
  font-weight: 520;
  line-height: 1.26;
}

.decision-contexts p,
.about-principle-list p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.about-belief-section {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(1, 8, 20, 0.97), rgba(8, 27, 46, 0.94)),
    var(--navy-930);
}

.about-belief {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.about-belief h2 {
  max-width: 980px;
  color: #fff;
}

.about-belief p {
  max-width: 760px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
}

.about-belief__image {
  margin: 0;
}

.about-belief__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(214, 166, 106, 0.24);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.about-statement-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 166, 106, 0.1), transparent 28%),
    var(--paper);
}

.about-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  max-width: var(--max);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  margin: 0 auto;
}

.about-statement h2,
.about-principles-simple h2 {
  font-size: clamp(42px, 4vw, 62px);
}

.about-statement p,
.about-principles-simple p {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.92;
}

.about-statement__copy p + p {
  margin-top: 20px;
}

.about-principles-section {
  background:
    linear-gradient(180deg, rgba(16, 43, 68, 0.04), rgba(255, 255, 255, 0)),
    var(--paper-soft);
}

.about-principles-section .section__header {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.about-principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-principle-list article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  padding: 28px 30px 32px;
}

.about-principle-list article:last-child {
  border-right: 0;
}

.about-principles-actions {
  display: flex;
  max-width: var(--max);
  align-items: center;
  gap: 18px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.about-principles-actions .eyebrow {
  margin-right: auto;
}

.about-principles-actions h3 {
  max-width: 440px;
  margin: 0 24px 0 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.24;
  letter-spacing: 0;
}

.about-principles-simple {
  max-width: 920px;
  margin: 0 auto;
}

.about-principles-actions--simple {
  max-width: 920px;
}

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

.services-slide--overview {
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 40px;
}

.services-overview__header {
  width: 100%;
  max-width: var(--max);
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
}

.services-overview__header h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(36px, 3.4vw, 50px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
}

.services-overview__header .section-lead {
  margin-top: 14px;
}

.service-grid--page {
  max-width: var(--max);
  margin: 0 auto;
}

.services-slide--overview .service-grid--page {
  grid-auto-rows: 246px;
}

.services-slide--overview .service-card {
  padding: 16px 22px 18px;
}

.services-slide--overview .service-card__icon {
  height: 108px;
  margin-bottom: 6px;
}

.services-slide--overview .service-card h2 {
  font-size: 25px;
}

.services-slide--overview .service-card p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.5;
}

.service-card--link {
  color: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-card--link:hover {
  border-color: rgba(166, 118, 63, 0.6);
  box-shadow: 0 22px 52px rgba(20, 24, 32, 0.08);
  transform: translateY(-3px);
}

.service-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 28px;
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: 0;
}

.service-detail-section {
  background: var(--paper);
}

.services-slide--details {
  align-content: start;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 36px;
}

.service-detail-section .section__header {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.services-slide--details .section__header {
  margin-bottom: 22px;
}

.services-slide--details .section__header h2 {
  font-size: clamp(34px, 3.4vw, 46px);
}

.services-slide--details .section-lead {
  font-size: 16px;
  line-height: 1.65;
}

.service-detail-list {
  display: grid;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.services-slide--details .service-detail-list {
  gap: 8px;
}

.service-detail {
  scroll-margin-top: calc(var(--header-height) + 20px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.service-detail summary {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
}

.services-slide--details .service-detail summary {
  grid-template-columns: 54px minmax(0, 1fr) 32px;
  padding: 17px 24px;
}

.service-detail summary::-webkit-details-marker {
  display: none;
}

.service-detail summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(166, 118, 63, 0.42);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.service-detail[open] summary::after {
  content: "-";
}

.service-detail summary .card-index {
  margin: 0;
  font-size: 24px;
}

.services-slide--details .service-detail summary .card-index {
  font-size: 20px;
}

.service-detail summary strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.22;
}

.services-slide--details .service-detail summary strong {
  margin-top: 4px;
  font-size: 25px;
}

.service-detail__body {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: 44px;
  border-top: 1px solid var(--line);
  padding: 30px;
}

.services-slide--details .service-detail__body {
  gap: 30px;
  padding: 22px 24px;
}

.service-detail__body > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.services-slide--details .service-detail__body > p {
  font-size: 16px;
  line-height: 1.72;
}

.benefit-block {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}

.benefit-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 24px;
  font-weight: 520;
  line-height: 1.28;
}

.benefit-block h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.24;
  letter-spacing: 0;
}

.services-slide--details .benefit-block h3 {
  font-size: 22px;
}

.benefit-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  list-style: none;
}

.services-slide--details .benefit-block ul {
  gap: 8px 22px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.48;
}

.benefit-block li {
  position: relative;
  padding-left: 18px;
}

.benefit-block li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.page-shell--single-service {
  background: var(--paper-soft);
}

.service-page-slide {
  display: grid;
  min-height: 100svh;
  align-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: calc(var(--header-height) + 58px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 72px;
}

.single-service {
  background:
    radial-gradient(circle at 80% 16%, rgba(214, 166, 106, 0.1), transparent 28%),
    linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.single-service__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(48px, 7vw, 96px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.single-service__identity {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 24px;
  align-items: start;
  padding-right: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.single-service__identity .card-index {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 10px;
  color: rgba(166, 118, 63, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.single-service__icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 72px;
  height: 72px;
  margin: 4px 0 0;
  object-fit: contain;
  object-position: left top;
}

.single-service__identity .service-card__label {
  grid-column: 2;
  grid-row: 2;
}

.single-service__identity h1 {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 20px 0 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  align-self: start;
}

.single-service__back {
  grid-column: 1 / -1;
  grid-row: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #8f672f;
  font-size: 15px;
  font-weight: 660;
}

.single-service__back::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.single-service__content {
  display: grid;
  align-content: center;
  gap: 34px;
}

.single-service__lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 520;
  line-height: 1.42;
  letter-spacing: 0;
}

.single-service__benefits {
  max-width: 760px;
  border-left-color: rgba(166, 118, 63, 0.62);
}

.single-service__benefits ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.service-page-cta {
  min-height: 100svh;
}

.insights-page-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 166, 106, 0.12), transparent 28%),
    var(--paper);
}

.insights-coming {
  max-width: 860px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.insights-coming h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", "MingLiU", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: 0;
}

.insights-coming p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.insights-coming__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.page-cta {
  padding: 90px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 8, 20, 0.96), rgba(6, 18, 30, 0.86)),
    url("../images/contact-room.jpg") center center / cover no-repeat;
}

.page-cta h2 {
  max-width: 760px;
  color: #fff;
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.text-link::after {
  width: 38px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-content: center;
  gap: 74px;
  padding: calc(var(--header-height) + 44px) max(28px, calc((100vw - var(--max)) / 2 + 28px)) 70px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 8, 20, 0.96), rgba(8, 17, 28, 0.84)),
    url("../images/contact-room.jpg") center center / cover no-repeat;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(226, 205, 171, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 205, 171, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
  pointer-events: none;
}

.contact-section__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(36px, 3.8vw, 54px);
}

.contact-section p {
  max-width: 460px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.86;
}

.contact-warning {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.contact-list li {
  border-left: 1px solid var(--gold);
  padding-left: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding-top: 8px;
}

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

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(226, 205, 171, 0.36);
  border-radius: 0;
  padding: 13px 0 15px;
  color: #fff;
  background: transparent;
  outline: none;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(226, 205, 171, 0.82);
}

.form-submit {
  justify-self: end;
  min-height: 46px;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-submit::after {
  display: inline-block;
  width: 44px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  content: "";
  background: var(--gold);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.form-status--success {
  color: #9fe6b8;
}

.form-status--error {
  color: #f3a6a6;
}

.back-to-top {
  position: fixed;
  right: calc(clamp(18px, 2.4vw, 34px) + env(safe-area-inset-right));
  bottom: calc(clamp(18px, 2.4vw, 34px) + env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(214, 166, 106, 0.62);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(2, 11, 21, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    opacity 200ms ease;
  backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(2, 11, 21, 0.92);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 18px 28px;
  }

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

  .nav {
    position: fixed;
    inset: 0;
    z-index: 65;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    overflow-y: auto;
    padding: calc(var(--header-height) + 24px) 28px 44px;
    background: rgba(1, 8, 20, 0.96);
    font-size: 21px;
  }

  .nav--open {
    display: flex;
  }

  .nav > a,
  .nav-service__trigger {
    justify-content: center;
    align-self: center;
  }

  .nav-service {
    display: grid;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .nav-service__menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 12px;
    border-color: rgba(224, 202, 166, 0.2);
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-service__menu::before {
    display: none;
  }

  .nav-service__menu a {
    min-height: 58px;
    padding: 12px 14px;
  }

  .nav .nav__cta {
    min-height: 52px;
    margin-left: 0;
    padding: 0 28px;
  }

  .section__header--split,
  .about-page-grid,
  .about-editorial-hero,
  .about-narrative,
  .about-capability,
  .about-belief,
  .about-statement,
  .contact-section,
  .service-detail__body {
    grid-template-columns: 1fr;
  }

  .single-service__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 780px;
  }

  .single-service__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 0;
    padding-bottom: 34px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .single-service__icon {
    align-self: center;
    object-position: center top;
  }

  .single-service__identity h1 {
    align-self: center;
  }

  .single-service__back {
    margin-top: 24px;
  }

  .section__header--split {
    gap: 18px;
  }

  .strength-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strength-card,
  .strength-card + .strength-card {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 26px 22px;
  }

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

  .strength-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-slide--process {
    align-content: start;
  }

  .home-slide--process .section__header {
    margin-bottom: 26px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 760px;
    margin: 0 auto;
    padding: 8px 0;
  }

  .process-flow::before {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 50%;
    width: 2px;
    content: "";
    background: var(--navy-930);
    transform: translateX(-1px);
  }

  .process-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
  }

  .process-step__number {
    z-index: 3;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 48px;
    place-self: center;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: #fff;
    background: var(--navy-930);
    box-shadow: 0 0 0 3px rgba(214, 166, 106, 0.24);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
  }

  .process-step__card {
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 18px;
    align-items: center;
    height: auto;
    min-height: 132px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
  }

  .process-step:nth-child(even) .process-step__card {
    grid-column: 3;
  }

  .process-step__copy {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    border-right: 0;
    padding: 0;
    text-align: left;
  }

  .process-step__label--step {
    display: none;
  }

  .process-step__label--name {
    display: block;
    margin: 5px 0 0;
    font-size: 11px;
    line-height: 1.3;
  }

  .process-step h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .process-step p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
  }

  .process-step__icon {
    grid-column: 1;
    grid-row: 1;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    color: #b98a51;
    background: rgba(151, 123, 83, 0.1);
    clip-path: none;
  }

  .process-step:first-child .process-step__icon {
    padding-left: 0;
    clip-path: none;
  }

  .process-step__icon svg {
    width: 34px;
    height: 34px;
  }

  .process-step__icon img {
    width: 46px;
    height: 46px;
  }

  .contact-section {
    gap: 46px;
  }

  .about-editorial-hero {
    min-height: 100svh;
    gap: 46px;
    padding-top: calc(var(--header-height) + 70px);
  }

  .about-editorial-hero::before {
    top: auto;
    right: 24px;
    bottom: 80px;
    width: min(520px, 82vw);
  }

  .about-visual-card--hero {
    height: min(420px, 44svh);
  }

  .about-visual-card--inline,
  .about-visual-card--research {
    height: min(300px, 34svh);
  }

  .about-visual-card--statement {
    height: min(360px, 38svh);
  }

  .about-narrative,
  .about-capability,
  .about-statement {
    gap: 34px;
  }

  .about-narrative__copy {
    padding-left: 28px;
  }

  .capability-tags {
    min-height: 300px;
  }

  .decision-contexts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .about-principle-list article,
  .about-principle-list article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-principle-list article:last-child {
    border-bottom: 0;
  }

  .about-belief__image img {
    max-height: 360px;
  }

  .about-principles-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
  }

  .about-principles-actions .eyebrow,
  .about-principles-actions h3 {
    grid-column: 1 / -1;
  }

  .about-principles-actions--simple {
    grid-template-columns: 1fr auto auto;
  }

  .subpage-hero {
    min-height: 48svh;
    padding-top: calc(var(--header-height) + 72px);
  }

  .services-slide.subpage-hero,
  .insights-slide.subpage-hero {
    min-height: 100svh;
  }

  .services-slide--overview {
    align-content: start;
    padding-top: calc(var(--header-height) + 38px);
  }

  .services-slide--overview .service-grid--page {
    grid-auto-rows: auto;
  }

  .services-slide--details {
    padding-top: calc(var(--header-height) + 34px);
  }

  .about-page-grid {
    gap: 44px;
  }

  .service-detail__body {
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 18px 22px;
  }

  .brand {
    width: min(226px, calc(100vw - 104px));
  }

  .home-slide {
    padding: calc(var(--header-height) + 24px) 22px 56px;
  }

  .page-section,
  .page-cta,
  .contact-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .subpage-hero {
    min-height: 420px;
    padding-right: 22px;
    padding-bottom: 56px;
    padding-left: 22px;
  }

  .services-slide.subpage-hero,
  .insights-slide.subpage-hero {
    min-height: 100svh;
  }

  .subpage-hero h1 {
    font-size: 48px;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.82;
  }

  .hero h1 {
    font-size: 47px;
    line-height: 1.28;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.82;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    min-width: 0;
    min-height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }

  .home-slide h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .about-editorial-hero {
    padding: calc(var(--header-height) + 58px) 22px 64px;
  }

  .about-slide.page-section {
    padding: calc(var(--header-height) + 48px) 22px 58px;
  }

  .about-editorial-hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .about-editorial-hero__lead {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.72;
  }

  .about-editorial-hero__copy p:not(.eyebrow, .about-editorial-hero__lead) {
    font-size: 16px;
    line-height: 1.82;
  }

  .about-visual-card--hero {
    height: 250px;
  }

  .about-visual-card--inline {
    height: 210px;
    margin-top: 24px;
  }

  .about-visual-card--research {
    height: 230px;
  }

  .about-visual-card--statement {
    height: 240px;
  }

  .about-narrative h2,
  .about-capability h2,
  .about-belief h2,
  .about-statement h2,
  .about-principles-simple h2,
  .about-principles-section h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .about-narrative__copy {
    padding-left: 20px;
  }

  .about-narrative__copy p,
  .about-capability p,
  .about-belief p,
  .about-statement p,
  .about-principles-simple p {
    font-size: 16px;
    line-height: 1.82;
  }

  .capability-tags {
    min-height: 0;
    padding: 26px;
  }

  .capability-tags span {
    min-height: 40px;
    padding: 0 16px;
    font-size: 15px;
  }

  .decision-contexts {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .decision-contexts article,
  .decision-contexts article:nth-child(2n),
  .decision-contexts article:nth-child(-n + 2),
  .decision-contexts article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .decision-contexts article:last-child {
    border-bottom: 0;
  }

  .decision-contexts h3,
  .about-principle-list h3 {
    margin-top: 20px;
    font-size: 25px;
  }

  .about-principle-list {
    margin-top: 34px;
  }

  .about-principle-list article,
  .about-principle-list article:last-child {
    padding: 26px 0;
  }

  .about-principles-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
    padding-top: 24px;
  }

  .about-principles-actions h3 {
    margin: 0;
    font-size: 26px;
  }

  .about-principles-actions .button {
    width: 100%;
  }

  .section-lead,
  .cta-panel p,
  .about-feature__copy p,
  .principle-card p,
  .decision-contexts p,
  .about-principle-list p,
  .insights-coming p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.82;
  }

  .strength-grid,
  .service-grid,
  .process-flow,
  .form-row {
    grid-template-columns: 1fr;
  }

  .strength-card,
  .strength-card + .strength-card,
  .strength-card:nth-child(2n),
  .strength-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

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

  .service-card,
  .principle-card {
    padding: 24px;
  }

  .service-grid {
    grid-auto-rows: auto;
  }

  .service-card {
    height: auto;
    min-height: 0;
  }

  .service-card__icon {
    width: min(168px, 58%);
    height: 122px;
    margin-bottom: 16px;
  }

  .page-section,
  .page-cta {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .service-page-slide {
    align-content: start;
    padding: calc(var(--header-height) + 42px) 22px 58px;
  }

  .single-service__identity {
    padding-bottom: 28px;
  }

  .single-service__identity .card-index {
    margin-bottom: 14px;
  }

  .single-service__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .single-service__identity h1 {
    font-size: 38px;
  }

  .single-service__content {
    gap: 22px;
  }

  .single-service__lead {
    font-size: 25px;
    line-height: 1.5;
  }

  .single-service__benefits {
    padding-left: 18px;
  }

  .single-service__benefits ul {
    grid-template-columns: 1fr;
    font-size: 16px;
  }

  .services-slide--overview,
  .services-slide--details,
  .insights-slide.page-section {
    align-content: start;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 54px;
  }

  .services-slide--overview .service-card {
    padding: 22px 18px;
  }

  .services-slide--overview .service-card__icon {
    height: 116px;
  }

  .about-feature__copy {
    padding-left: 20px;
  }

  .service-card h2 {
    font-size: 24px;
  }

  .service-detail summary {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 14px;
    padding: 22px 18px;
  }

  .service-detail summary .card-index {
    font-size: 18px;
  }

  .service-detail summary strong {
    font-size: 24px;
  }

  .service-detail__body {
    padding: 22px 18px;
  }

  .service-detail__body > p {
    font-size: 16px;
    line-height: 1.78;
  }

  .benefit-block {
    padding-left: 18px;
  }

  .benefit-block ul {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 40px;
  }

  .form-submit {
    justify-self: start;
  }

  .form-status {
    text-align: left;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .process-flow {
    max-width: 100%;
    gap: 18px;
    padding-left: 0;
  }

  .process-flow::before {
    left: 24px;
  }

  .process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step__number {
    grid-column: 1;
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .process-step__card,
  .process-step:nth-child(even) .process-step__card {
    grid-column: 2;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 124px;
    padding: 16px;
  }

  .process-step__icon {
    width: 50px;
    height: 50px;
  }

  .process-step__icon svg {
    width: 30px;
    height: 30px;
  }

  .process-step__icon img {
    width: 40px;
    height: 40px;
  }

  .process-step h3 {
    font-size: 22px;
  }
}

@media (min-width: 981px) and (max-height: 840px) {
  :root {
    --header-height: 94px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-slide {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 44px;
  }

  .contact-section {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 48px;
  }

  .section__header {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(56px, 5.2vw, 82px);
  }

  .hero__lead {
    font-size: 19px;
    line-height: 1.78;
  }

  .strength-card {
    min-height: 236px;
  }

  .strength-card p,
  .process-step p,
  .service-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .process-step {
    min-height: 0;
  }

  .service-card {
    height: 100%;
    min-height: 0;
    padding: 16px 20px;
  }

  .service-grid {
    grid-auto-rows: 248px;
  }

  .service-card__icon {
    width: min(128px, 44%);
    height: 74px;
    margin-bottom: 8px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card h2 {
    font-size: 24px;
  }

  .service-card__label {
    font-size: 12px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.48;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 0 12px;
  }

  .services-slide--overview {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 24px;
  }

  .services-overview__header {
    margin-bottom: 16px;
  }

  .services-overview__header h1 {
    font-size: clamp(32px, 3vw, 42px);
  }

  .services-overview__header .section-lead {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .services-slide--overview .service-grid--page {
    grid-auto-rows: 208px;
  }

  .services-slide--overview .service-card {
    padding: 12px 18px 14px;
  }

  .services-slide--overview .service-card__icon {
    height: 84px;
    margin-bottom: 4px;
  }

  .services-slide--overview .service-card h2 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    display: none;
  }
}
