:root {
  --cream: #f4eddf;
  --cream-deep: #e7dcc9;
  --paper: #faf6ed;
  --terracotta: #b24c35;
  --terracotta-dark: #913826;
  --teal: #123e3a;
  --teal-deep: #092d2a;
  --ink: #153632;
  --muted: #64726c;
  --line: rgba(18, 62, 58, 0.2);
  --line-strong: rgba(18, 62, 58, 0.52);
  --page: min(100% - 64px, 1440px);
  --grid-gap: 24px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(18, 62, 58, 0.045) 0) 0 0 / calc((100vw - 64px) / 12) 100%,
    var(--cream);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--terracotta);
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 16px;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.page-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.meta-label {
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
}

.section-index,
.card-number,
.process-top span,
.principle-head span,
.question > span {
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 237, 223, .86);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--page);
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: var(--grid-gap);
}

.brand {
  grid-column: 1 / span 4;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  transform: rotate(0deg);
  transition: transform .5s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(90deg);
}

.brand-mark i {
  display: block;
  background: var(--teal);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  background: var(--terracotta);
  border-radius: 50%;
}

.site-nav {
  grid-column: 6 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.3vw, 44px);
  font-size: .86rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--paper);
  background: var(--teal);
  border: 1px solid var(--teal);
  transition: color .2s ease, background-color .2s ease;
}

.nav-cta:hover {
  color: var(--teal);
  background: transparent;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 820px;
  padding-top: 76px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(200, 95, 67, .2);
  border-radius: 50%;
}

.hero-grid {
  min-height: 690px;
  padding-top: clamp(76px, 11vh, 122px);
  padding-bottom: 88px;
  align-content: start;
  position: relative;
}

.hero-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-copy {
  grid-column: 1 / span 8;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding-top: 44px;
}

.hero-copy .section-index {
  grid-column: 1;
  margin: 10px 0 0;
  font-size: .76rem;
  font-weight: 800;
}

.hero h1 {
  grid-column: 2 / -1;
  margin: 0;
  font-size: clamp(4rem, 7.3vw, 8.6rem);
  font-weight: 850;
  line-height: .88;
  letter-spacing: -.075em;
}

.title-line {
  position: relative;
  display: block;
  width: fit-content;
}

.js .title-line {
  opacity: 0;
  transform: translateY(34px);
  animation: titleEnter .8s var(--ease) forwards;
}

.js .title-line:nth-child(2) {
  animation-delay: .08s;
}

.js .title-line:nth-child(3) {
  animation-delay: .16s;
}

.kinetic-word {
  color: var(--terracotta);
}

.kinetic-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.05em;
  bottom: .05em;
  left: -.05em;
  height: .12em;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine .75s .85s var(--ease) forwards;
}

.hero-lead {
  grid-column: 2 / span 5;
  margin: 34px 0 0;
  max-width: 610px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.85;
}

.hero-actions {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: .88rem;
  font-weight: 800;
  border: 1px solid currentColor;
  transition: transform .2s var(--ease), color .2s ease, background-color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 200px;
  color: var(--paper);
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover {
  color: var(--teal);
  background: transparent;
}

.text-link {
  position: relative;
  font-size: .88rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: scaleX(.45);
}

.hero-panel {
  grid-column: 10 / -1;
  align-self: start;
  margin-top: 44px;
  padding: 21px;
  background: rgba(250, 246, 237, .58);
  border: 1px solid rgba(18, 62, 58, .28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 13px;
}

.signal i {
  display: block;
  width: 3px;
  height: 5px;
  background: var(--terracotta);
}

.signal i:nth-child(2) { height: 9px; }
.signal i:nth-child(3) { height: 13px; }

.panel-statement {
  margin: 54px 0 46px;
  font-size: clamp(1.45rem, 2.15vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.04em;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
}

.panel-list span {
  color: var(--muted);
}

.panel-list strong {
  font-size: .78rem;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: 13.5%;
  bottom: 45px;
  width: 190px;
  height: 190px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: var(--terracotta);
  border-radius: 50%;
}

.orbit-core {
  position: absolute;
  inset: 33%;
  background: var(--teal);
  border-radius: 50%;
}

.orbit-caption {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 220px;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-align: center;
  transform: translateX(-50%);
}

.js .orbit-ring {
  animation: orbitSpin 12s linear infinite;
}

.hero-rail {
  width: 100%;
  min-height: 54px;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  color: var(--paper);
  background: var(--teal);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero-rail i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--terracotta);
  border-radius: 50%;
}

@keyframes titleEnter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
  to { transform: scaleX(1); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.section-shell {
  padding-block: clamp(96px, 12vw, 176px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  align-items: start;
  padding-bottom: clamp(50px, 7vw, 90px);
}

.heading-meta {
  grid-column: 1 / span 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
}

.heading-meta .section-index {
  margin: 0;
  font-size: .78rem;
  font-weight: 800;
}

.heading-copy {
  grid-column: 3 / span 6;
}

.heading-copy h2,
.about-intro h2,
.contact-main h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.4vw, 6.1rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.065em;
}

.heading-copy h2 span,
.about-intro h2 span,
.contact-main h2 span {
  color: var(--terracotta);
}

.heading-note {
  grid-column: 10 / -1;
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  color: #455e58;
  font-size: .9rem;
  line-height: 1.8;
}

.service-grid {
  row-gap: 0;
}

.service-card {
  grid-column: span 3;
  min-height: 490px;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--line);
  transition: color .35s ease, background-color .35s ease, transform .35s var(--ease);
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  color: var(--paper);
  background: var(--teal);
  transform: translateY(-8px);
}

.service-card-featured {
  color: var(--paper);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.service-card-featured:hover {
  background: var(--terracotta-dark);
}

.card-number {
  font-size: .68rem;
  font-weight: 800;
}

.card-symbol {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 56px auto 42px;
}

.service-card .card-symbol {
  color: var(--terracotta);
}

.service-card-featured .card-symbol {
  color: var(--paper);
}

.symbol-axis::before,
.symbol-axis::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.symbol-axis::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.symbol-axis::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.symbol-dot {
  position: absolute;
  top: 26px;
  right: 19px;
  width: 28px;
  height: 28px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: -42px 42px 0 currentColor;
}

.symbol-window {
  border: 1px solid currentColor;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}

.symbol-window span {
  background: currentColor;
}

.symbol-window span:nth-child(1) { grid-row: 1 / 3; }

.symbol-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.symbol-type span {
  height: 9px;
  background: currentColor;
}

.symbol-type span:nth-child(2) { width: 72%; }
.symbol-type span:nth-child(3) { width: 42%; }

.symbol-data {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 8px;
  border-bottom: 1px solid currentColor;
}

.symbol-data span {
  flex: 1;
  height: 28%;
  background: currentColor;
}

.symbol-data span:nth-child(2) { height: 70%; }
.symbol-data span:nth-child(3) { height: 48%; }
.symbol-data span:nth-child(4) { height: 92%; }

.card-content {
  margin-top: auto;
}

.card-content h3 {
  margin: 0 0 13px;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.card-content p {
  min-height: 82px;
  margin: 0;
  font-size: .82rem;
  line-height: 1.72;
}

.card-content ul {
  margin: 22px 0 0;
  padding: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  list-style: none;
  border-top: 1px solid currentColor;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.statement-section {
  padding-block: clamp(80px, 10vw, 150px);
  color: var(--paper);
  background: var(--teal);
}

.statement-grid {
  align-items: end;
}

.statement-grid > .meta-label {
  grid-column: 1 / span 2;
  align-self: start;
  margin: 12px 0 0;
  color: #c7d2ce;
}

.statement-main {
  grid-column: 3 / span 8;
  margin: 0;
  font-size: clamp(2.9rem, 6.25vw, 7rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.065em;
}

.statement-main span {
  position: relative;
  display: inline-block;
  color: var(--cream);
  z-index: 0;
}

.statement-main span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .02em;
  left: -.08em;
  height: .22em;
  background: var(--terracotta);
}

.statement-aside {
  grid-column: 11 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 246, 237, .46);
}

.statement-arrow {
  display: block;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-size: 2rem;
}

.statement-aside p {
  margin: 0;
  color: #dce4e0;
  font-size: .76rem;
  line-height: 1.7;
}

.process-list {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
}

.process-item {
  grid-column: span 3;
  min-height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(250, 246, 237, .4);
  border: 1px solid var(--line);
  transition: background-color .25s ease, border-color .25s ease;
}

.process-item:hover {
  background: rgba(250, 246, 237, .82);
  border-color: var(--terracotta);
}

.process-top,
.principle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 800;
}

.process-top i,
.principle-head i {
  width: 9px;
  height: 9px;
  background: var(--terracotta);
  border-radius: 50%;
}

.process-item h3 {
  margin: 62px 0 13px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.process-item p {
  margin: 0;
  color: #4b635e;
  font-size: .84rem;
  line-height: 1.78;
}

.process-output {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

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

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

.about-intro {
  grid-column: 1 / span 6;
  position: sticky;
  top: 120px;
}

.about-intro .heading-meta {
  width: 33.333%;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.about-intro h2 {
  margin-bottom: 38px;
}

.about-intro > p {
  width: 72%;
  margin: 0 0 0 16.666%;
  color: #49615b;
  font-size: .96rem;
  line-height: 1.9;
}

.principles {
  grid-column: 8 / -1;
  display: grid;
  gap: 14px;
}

.principle {
  min-height: 230px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--teal);
}

.principle:nth-child(2) {
  background: var(--cream);
  border: 1px solid var(--line);
}

.principle-head {
  grid-column: 1 / -1;
}

.principle h3 {
  align-self: end;
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.principle p {
  align-self: end;
  margin: 0;
  color: #526a64;
  font-size: .8rem;
  line-height: 1.75;
}

.contact {
  padding-bottom: 70px;
  border-bottom: 0;
}

.contact-card {
  min-height: 520px;
  padding: clamp(32px, 5vw, 72px);
  align-items: start;
  color: var(--paper);
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.contact-meta {
  grid-column: 1 / span 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.contact-main {
  grid-column: 3 / span 7;
  position: relative;
  z-index: 2;
}

.contact-main h2 span {
  color: #ed8b6e;
}

.contact-main p {
  width: 76%;
  margin: 30px 0;
  color: #d7e1dd;
  font-size: .9rem;
  line-height: 1.85;
}

.button-light {
  min-width: 210px;
  color: var(--teal);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  color: var(--cream);
  background: transparent;
}

.contact-orbit {
  position: absolute;
  right: -68px;
  bottom: -132px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(244, 237, 223, .32);
  border-radius: 50%;
}

.contact-orbit span,
.contact-orbit i,
.contact-orbit b {
  position: absolute;
  border-radius: 50%;
}

.contact-orbit span {
  inset: 76px;
  border: 1px solid rgba(244, 237, 223, .24);
}

.contact-orbit i {
  top: 77px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: var(--terracotta);
}

.contact-orbit b {
  inset: 164px;
  background: var(--terracotta);
}

.contact-details {
  padding-top: 52px;
  align-items: start;
}

.details-title {
  grid-column: 1 / span 3;
}

.details-title .meta-label {
  margin: 0 0 16px;
}

.details-title > p:last-child {
  width: 76%;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.question-list {
  grid-column: 4 / span 7;
  border-top: 1px solid var(--teal);
}

.question {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 6fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.question > span {
  color: var(--terracotta);
  font-size: .68rem;
  font-weight: 800;
}

.question p {
  margin: 0;
  font-size: .9rem;
  font-weight: 700;
}

.back-top {
  grid-column: 12;
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 48px, 1440px);
    --grid-gap: 18px;
  }

  body {
    background-size: calc((100vw - 48px) / 12) 100%;
  }

  .hero-copy { grid-column: 1 / span 9; }
  .hero-panel { grid-column: 10 / -1; }
  .hero h1 { font-size: clamp(4rem, 8.3vw, 7rem); }
  .hero-orbit { display: none; }

  .service-grid { row-gap: 18px; }
  .service-card { grid-column: span 6; }
  .service-card + .service-card { border-left: 0; }
  .service-card:nth-child(even) { border-left: 1px solid var(--line); }

  .statement-main { grid-column: 3 / span 8; }
  .statement-aside { grid-column: 11 / -1; }

  .process-list { row-gap: 18px; }
  .process-item { grid-column: span 6; }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 1440px);
    --grid-gap: 14px;
  }

  body {
    background-size: calc((100vw - 32px) / 6) 100%;
  }

  .page-grid,
  .header-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .header-inner {
    min-height: 68px;
  }

  html:not(.js) .site-header {
    position: static;
  }

  html:not(.js) .hero {
    padding-top: 0;
  }

  .brand { grid-column: 1 / span 4; }
  .brand-name { font-size: .92rem; }

  .js .menu-toggle {
    grid-column: 5 / -1;
    justify-self: end;
    position: relative;
    z-index: 102;
    width: 74px;
    padding: 8px 0 8px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 800;
  }

  .menu-icon {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .menu-icon i {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-open .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
  }

  .js .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 120px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--paper);
    background: var(--teal-deep);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
  }

  .js .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding: 18px 0;
    font-size: 1.55rem;
    border-bottom: 1px solid rgba(244, 237, 223, .2);
  }

  .js .site-nav .nav-cta {
    margin-top: 28px;
    padding: 16px;
    color: var(--teal);
    background: var(--cream);
    border: 1px solid var(--cream);
    text-align: center;
  }

  .menu-open .menu-toggle { color: var(--paper); }

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

  .hero-grid {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .hero-meta { grid-column: 1 / -1; }
  .hero-copy {
    grid-column: 1 / -1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hero-copy .section-index { display: none; }
  .hero h1 { grid-column: 1 / -1; font-size: clamp(3.5rem, 13.4vw, 6.5rem); }
  .hero-lead { grid-column: 1 / span 5; }
  .hero-actions { grid-column: 1 / -1; }

  .hero-panel {
    grid-column: 4 / -1;
    margin-top: 44px;
  }

  .hero-rail {
    padding-inline: 16px;
    gap: 14px;
  }

  .section-heading { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .heading-meta { grid-column: 1 / span 2; }
  .heading-copy { grid-column: 1 / span 5; margin-top: 22px; }
  .heading-note { grid-column: 4 / -1; margin-top: 28px; }

  .service-card { grid-column: span 3; min-height: 480px; }
  .service-card:nth-child(even) { border-left: 1px solid var(--line); }

  .statement-grid > .meta-label { grid-column: 1 / span 2; }
  .statement-main { grid-column: 1 / -1; margin-top: 38px; }
  .statement-aside { grid-column: 4 / -1; margin-top: 48px; }

  .process-item { grid-column: span 3; }

  .about-intro {
    grid-column: 1 / -1;
    position: static;
  }
  .about-intro .heading-meta { width: 33.333%; }
  .about-intro > p { width: 66.666%; margin-left: 16.666%; }
  .principles { grid-column: 2 / -1; margin-top: 72px; }

  .contact-card { min-height: 560px; }
  .contact-meta { grid-column: 1 / span 2; }
  .contact-main { grid-column: 1 / -1; margin-top: 60px; }
  .contact-main p { width: 65%; }
  .contact-orbit { opacity: .55; }

  .details-title { grid-column: 1 / span 2; }
  .question-list { grid-column: 3 / -1; }
  .back-top { grid-column: 6; margin-top: 28px; }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    background-image: none;
  }

  .brand-mark { width: 24px; height: 24px; }
  .hero-meta span:last-child { display: none; }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
    line-height: .92;
  }

  .hero-lead { grid-column: 1 / -1; margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button-primary { width: 100%; }
  .hero-panel { grid-column: 2 / -1; }
  .panel-statement { margin-block: 40px 34px; }

  .hero-rail span:nth-of-type(2),
  .hero-rail span:nth-of-type(4),
  .hero-rail i:nth-of-type(2),
  .hero-rail i:nth-of-type(4) { display: none; }

  .section-shell { padding-block: 86px; }
  .heading-meta { grid-column: 1 / span 3; }
  .heading-copy { grid-column: 1 / -1; }
  .heading-copy h2,
  .about-intro h2,
  .contact-main h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .heading-note { grid-column: 2 / -1; }

  .service-grid { display: block; }
  .service-card {
    min-height: 440px;
    margin-bottom: 14px;
    border-left: 0 !important;
  }

  .statement-main { font-size: clamp(2.55rem, 12.5vw, 4rem); }
  .statement-aside { grid-column: 3 / -1; }

  .process-list { display: block; }
  .process-item { min-height: 260px; margin-bottom: 12px; }
  .process-item h3 { margin-top: 46px; }

  .about-intro .heading-meta { width: 50%; margin-bottom: 60px; }
  .about-intro > p { width: 83.333%; margin-left: 16.666%; }
  .principles { grid-column: 1 / -1; margin-top: 58px; }
  .principle {
    min-height: 250px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }
  .principle h3 { align-self: end; margin-bottom: 18px; }
  .principle p { width: 82%; }

  .contact { padding-bottom: 48px; }
  .contact-card { width: 100%; min-height: 600px; padding: 26px 20px; }
  .contact-meta { grid-column: 1 / span 3; }
  .contact-main { margin-top: 72px; }
  .contact-main p { width: 100%; }
  .button-light { width: 100%; }
  .contact-orbit { right: -220px; bottom: -140px; }

  .contact-details { padding-top: 44px; }
  .details-title { grid-column: 1 / -1; margin-bottom: 30px; }
  .details-title > p:last-child { width: 100%; }
  .question-list { grid-column: 1 / -1; }
  .question { grid-template-columns: 38px 1fr; }
  .back-top { grid-column: 5 / -1; }
}

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

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

  .js .title-line {
    opacity: 1;
    transform: none;
  }

  .kinetic-word::after {
    transform: scaleX(1);
  }
}
