:root {
  --bg: #141210;
  --bg-soft: #1b1713;
  --cream: #f2eee6;
  --cream-dim: #cbc2b7;
  --muted: #938a80;
  --line: rgba(242, 232, 216, 0.14);
  --line-strong: rgba(242, 232, 216, 0.22);
  --accent: #c9805c;
  --accent-soft: rgba(201, 128, 92, 0.22);
  --mouse-x: 50%;
  --mouse-y: 45%;
  --scroll-y: 0px;
  --photo-x: 0px;
  --photo-y: 0px;
  --orbit-x: 0px;
  --portrait-scroll: 0px;
  --content-scroll: 0px;
  --orbit-scroll: 0px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family:
    "Inter", "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei",
    sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(201, 128, 92, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(9, 9, 8, 0.98) 0%, rgba(16, 14, 12, 0.95) 45%, rgba(17, 15, 13, 0.72) 67%, rgba(18, 16, 14, 0.96) 100%),
    var(--bg);
}

.ambient-cursor {
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(203, 127, 88, 0.12), transparent 68%);
  filter: blur(14px);
  opacity: 0.72;
  transform: translate(calc(var(--mouse-x) - 8rem), calc(var(--mouse-y) - 8rem));
  transition: opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 12px);
  overflow: hidden;
  isolation: isolate;
  padding: 0 clamp(1.6rem, 4vw, 3.6rem);
  border-bottom: 1px solid rgba(242, 232, 216, 0.08);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 6.2rem;
  border-bottom: 1px solid var(--line-strong);
}

.brand {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.82rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(242, 232, 216, 0.18);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.4rem, 3.3vw, 3.6rem);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  color: rgba(242, 238, 230, 0.92);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0 0 1.6rem;
  font-size: clamp(0.9rem, 0.9vw, 1.05rem);
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1px;
  height: 1.6rem;
  background: var(--line);
  transition: background 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: #fff8ee;
  transform: translateY(-1px);
}

.nav-links a:hover::before {
  background: rgba(201, 128, 92, 0.5);
}

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

.menu-toggle {
  display: none;
}

.portrait-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  opacity: 0.82;
  transform: translate3d(0, var(--portrait-scroll), 0);
  will-change: transform;
}

.portrait-layer {
  position: absolute;
  inset: -5% -7% -4% -3%;
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 1) 0%, rgba(20, 18, 16, 0.96) 32%, rgba(20, 18, 16, 0.48) 54%, rgba(20, 18, 16, 0.05) 75%),
    linear-gradient(180deg, rgba(14, 12, 10, 0.82) 0%, rgba(14, 12, 10, 0.12) 34%, rgba(14, 12, 10, 0.7) 100%),
    url("assets/hero-portrait.png") right 4% center / auto 118% no-repeat;
  filter: saturate(0.84) contrast(1.04) brightness(0.76);
  transform: translate3d(var(--photo-x), var(--photo-y), 0) scale(1.035);
  transition: filter 320ms ease;
}

.portrait-field::before,
.portrait-field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.portrait-field::before {
  background:
    radial-gradient(circle at 74% 40%, rgba(201, 128, 92, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(20, 18, 16, 0.7), transparent 42%);
  mix-blend-mode: soft-light;
}

.portrait-field::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(20, 18, 16, 0.96) 28%, rgba(20, 18, 16, 0.44) 53%, transparent 74%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.72), transparent 22%, rgba(20, 18, 16, 0.92));
}

.hero-frame {
  position: absolute;
  z-index: 2;
  inset: 6.2rem clamp(1.6rem, 4vw, 3.6rem) 0 clamp(1.6rem, 4vw, 3.6rem);
  border-left: 1px solid rgba(242, 232, 216, 0.035);
  border-right: 1px solid rgba(242, 232, 216, 0.035);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(66rem, 75vw);
  padding-top: clamp(8.8rem, 17vh, 13rem);
  padding-left: clamp(15rem, 18.2vw, 23rem);
  transform: translate3d(0, var(--content-scroll), 0);
  will-change: transform;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.35rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 128, 92, 0.26);
  color: rgba(201, 128, 92, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 66rem;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(2.9rem, 4.05vw, 5.25rem);
  font-weight: 600;
  line-height: 1.32;
  color: var(--cream);
  text-wrap: balance;
  text-shadow:
    0 0 1px rgba(255, 249, 239, 0.3),
    0 1.5rem 5rem rgba(0, 0, 0, 0.55);
}

h1 span {
  color: var(--accent);
  text-shadow: 0 0 2.5rem rgba(201, 128, 92, 0.14);
}

.hero-copy {
  max-width: 47rem;
  margin: clamp(2.4rem, 4vh, 4rem) 0 0;
  color: rgba(203, 194, 183, 0.78);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1.05rem, 1.55vw, 1.68rem);
  line-height: 1.82;
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.8);
}

.read-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: clamp(2.5rem, 6vh, 4.7rem);
  padding: 0 0 1.25rem;
  color: var(--accent);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.read-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 128, 92, 0.56), transparent);
  transform-origin: left;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.read-link:hover {
  color: #e3a07d;
  transform: translateX(0.25rem);
}

.read-link:hover::after {
  width: 12rem;
  background: linear-gradient(90deg, rgba(227, 160, 125, 0.8), transparent);
}

.read-arrow {
  display: inline-block;
  transition: transform 220ms ease;
}

.read-link:hover .read-arrow {
  transform: translateX(0.25rem);
}

.orbit-lines {
  position: absolute;
  z-index: 3;
  left: -1.5rem;
  bottom: -5.2rem;
  width: min(48rem, 54vw);
  height: 22rem;
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(var(--orbit-x), var(--orbit-scroll), 0);
}

.orbit-lines svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-lines path {
  fill: none;
  stroke-width: 0.85;
}

.orbit-one {
  stroke: rgba(201, 128, 92, 0.58);
}

.orbit-two {
  stroke: rgba(242, 232, 216, 0.12);
}

.orbit-lines circle {
  fill: #e0936e;
  filter: drop-shadow(0 0 0.55rem rgba(224, 147, 110, 0.55));
}

.after-hero {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(1.6rem, 4vw, 3.6rem) 0;
  background:
    radial-gradient(circle at 4% 4%, rgba(201, 128, 92, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 22%, rgba(201, 128, 92, 0.08), transparent 24rem),
    linear-gradient(180deg, #171310 0%, #100f0d 54%, #0c0b0a 100%);
  color: var(--cream);
}

.after-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.22;
}

.manifesto,
.home-section,
.contact-band,
.site-footer {
  position: relative;
  z-index: 1;
  max-width: 132rem;
  margin: 0 auto;
}

.manifesto {
  display: grid;
  place-items: center;
  min-height: clamp(7.2rem, 15vh, 11rem);
  border-top: 1px solid rgba(242, 232, 216, 0.08);
  border-bottom: 1px solid rgba(242, 232, 216, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(201, 128, 92, 0.08), transparent),
    rgba(255, 255, 255, 0.012);
}

.manifesto::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #e0a17d;
  box-shadow: 0 0 1.2rem rgba(224, 161, 125, 0.75);
}

.manifesto p {
  margin: 0;
  max-width: 68rem;
  color: rgba(242, 238, 230, 0.9);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.home-section {
  padding: clamp(2.4rem, 5vw, 5.6rem) clamp(1.2rem, 2.5vw, 3rem);
  border-bottom: 1px solid rgba(242, 232, 216, 0.1);
}

.section-heading {
  max-width: 58rem;
}

.compact-heading {
  max-width: 46rem;
}

.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  letter-spacing: 0.06em;
}

.section-heading h2,
.about-copy h2,
.contact-band h2 {
  margin: 0;
  color: rgba(242, 238, 230, 0.94);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-weight: 500;
  line-height: 1.35;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 2.7vw, 3.1rem);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2.4rem, 4vw, 4rem);
}

.problem-item {
  min-height: 13rem;
  padding: 0 clamp(1.2rem, 2.5vw, 3rem);
  border-left: 1px solid rgba(242, 232, 216, 0.14);
}

.problem-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.line-icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(201, 128, 92, 0.52);
  border-radius: 999px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.problem-item h3,
.service-card h3,
.case-body h3,
.process-grid h3 {
  margin: 1.35rem 0 0.75rem;
  color: rgba(242, 238, 230, 0.9);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-weight: 500;
}

.problem-item p,
.service-card p,
.case-body span,
.process-grid p,
.about-copy p,
.contact-band p,
.site-footer p {
  margin: 0;
  color: rgba(203, 194, 183, 0.66);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.8;
}

.column-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 4.5rem);
  align-items: end;
  background:
    linear-gradient(135deg, rgba(201, 128, 92, 0.11), rgba(255, 255, 255, 0.016) 48%, rgba(242, 232, 216, 0.045)),
    rgba(255, 255, 255, 0.01);
}

.column-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(201, 128, 92, 0.18);
  border-bottom: 1px solid rgba(201, 128, 92, 0.16);
  background:
    linear-gradient(90deg, rgba(201, 128, 92, 0.18) 0 1px, transparent 1px) left top / clamp(5rem, 12vw, 11rem) 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 62%);
}

.column-copy,
.column-actions {
  position: relative;
  z-index: 1;
}

.column-copy {
  max-width: 62rem;
}

.column-copy h2 {
  margin: 0;
  color: rgba(242, 238, 230, 0.95);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: balance;
}

.column-copy p:last-child {
  max-width: 50rem;
  margin: 1.25rem 0 0;
  color: rgba(203, 194, 183, 0.72);
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.85;
}

.column-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  min-width: min(100%, 28rem);
}

.column-link,
.column-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(201, 128, 92, 0.45);
  border-radius: 6px;
  color: #f2c2a7;
  background: rgba(201, 128, 92, 0.12);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: 0.96rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.column-download {
  border-color: rgba(242, 232, 216, 0.16);
  color: rgba(242, 238, 230, 0.82);
  background: rgba(255, 255, 255, 0.035);
}

.column-link:hover,
.column-download:hover {
  border-color: rgba(240, 177, 143, 0.68);
  background: rgba(201, 128, 92, 0.18);
  transform: translateY(-0.12rem);
}

.services-section,
.cases-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.section-link {
  align-self: start;
  justify-self: end;
}

.section-link a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d6926d;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.section-link a:hover,
.service-card a:hover {
  color: #f0b18f;
  transform: translateX(0.22rem);
}

.service-grid,
.case-grid {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

.service-card {
  min-height: 17rem;
  padding: clamp(1.3rem, 2vw, 2rem);
  border: 1px solid rgba(242, 232, 216, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
    rgba(20, 17, 14, 0.68);
  box-shadow: inset 0 0 0 1px rgba(201, 128, 92, 0.035);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.service-card:hover {
  border-color: rgba(201, 128, 92, 0.42);
  background:
    linear-gradient(145deg, rgba(201, 128, 92, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(22, 18, 15, 0.82);
  transform: translateY(-0.35rem);
}

.service-card h3 {
  color: #d6926d;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
}

.service-card a {
  margin-top: 1.45rem;
}

.editorial-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  padding: clamp(1.35rem, 2.2vw, 2.2rem);
  border: 1px solid rgba(242, 232, 216, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
    rgba(20, 17, 14, 0.68);
  box-shadow: inset 0 0 0 1px rgba(201, 128, 92, 0.035);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -6rem auto;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(201, 128, 92, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(201, 128, 92, 0.46);
  background:
    linear-gradient(145deg, rgba(201, 128, 92, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(22, 18, 15, 0.82);
  transform: translateY(-0.32rem);
}

.large-card {
  grid-row: 1 / span 2;
  min-height: clamp(24rem, 31vw, 34rem);
  padding: clamp(1.7rem, 3vw, 3.3rem);
  background:
    radial-gradient(circle at 72% 62%, rgba(201, 128, 92, 0.17), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.008)),
    rgba(20, 17, 14, 0.76);
}

.small-card {
  min-height: 15rem;
}

.card-label {
  margin: 0 0 1rem;
  color: rgba(201, 128, 92, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-card h3 {
  position: relative;
  margin: 0;
  max-width: 46rem;
  color: rgba(242, 238, 230, 0.94);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1.35rem, 2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.42;
  text-wrap: balance;
}

.small-card h3 {
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
}

.feature-card p:not(.card-label) {
  position: relative;
  max-width: 48rem;
  margin: 1.2rem 0 0;
  color: rgba(203, 194, 183, 0.68);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.85;
}

.feature-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.55rem;
  color: #d6926d;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.feature-card a:hover {
  color: #f0b18f;
  transform: translateX(0.22rem);
}

.topic-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.7rem;
}

.topic-tags span {
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(242, 232, 216, 0.12);
  border-radius: 999px;
  color: rgba(242, 238, 230, 0.72);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
}

.signal-card {
  background:
    radial-gradient(circle at 68% 58%, rgba(224, 161, 125, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.008)),
    rgba(18, 16, 14, 0.78);
}

.view-card {
  background:
    radial-gradient(circle at 75% 45%, rgba(242, 232, 216, 0.08), transparent 10rem),
    radial-gradient(circle at 46% 72%, rgba(201, 128, 92, 0.13), transparent 13rem),
    rgba(19, 16, 14, 0.78);
}

.consult-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  max-width: 132rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.6vw, 2rem) clamp(1.2rem, 2.5vw, 3rem);
  border-bottom: 1px solid rgba(242, 232, 216, 0.1);
  background:
    linear-gradient(90deg, rgba(201, 128, 92, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.012);
}

.consult-note p {
  margin: 0;
  color: rgba(242, 238, 230, 0.82);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.6;
}

.consult-note a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d6926d;
  white-space: nowrap;
}

.consult-note a::after,
.copy-contact::after {
  content: attr(data-price);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  min-width: max-content;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(201, 128, 92, 0.35);
  border-radius: 4px;
  background: rgba(15, 12, 10, 0.94);
  color: rgba(242, 238, 230, 0.86);
  font-size: 0.78rem;
  transform: translateX(-50%) translateY(0.25rem);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.consult-note a:hover::after,
.copy-contact:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  overflow: hidden;
  border: 1px solid rgba(242, 232, 216, 0.14);
  border-radius: 6px;
  background: rgba(14, 12, 10, 0.72);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.case-card:hover {
  border-color: rgba(201, 128, 92, 0.5);
  transform: translateY(-0.3rem);
}

.case-visual {
  position: relative;
  min-height: clamp(12rem, 18vw, 18rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 232, 216, 0.1);
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 64%, rgba(224, 161, 125, 0.28), transparent 2rem),
    linear-gradient(180deg, transparent, rgba(12, 11, 10, 0.68));
}

.visual-orbit {
  background:
    radial-gradient(circle at 68% 68%, rgba(224, 161, 125, 0.9), transparent 0.5rem),
    radial-gradient(ellipse at 50% 52%, transparent 0 34%, rgba(201, 128, 92, 0.62) 34.2% 34.6%, transparent 34.8%),
    radial-gradient(ellipse at 64% 48%, transparent 0 42%, rgba(242, 232, 216, 0.13) 42.2% 42.6%, transparent 42.8%),
    linear-gradient(135deg, rgba(201, 128, 92, 0.08), rgba(0, 0, 0, 0.55));
}

.visual-notes {
  background:
    linear-gradient(140deg, rgba(246, 230, 204, 0.12), transparent 44%),
    radial-gradient(circle at 54% 52%, rgba(210, 153, 117, 0.18), transparent 16rem),
    linear-gradient(105deg, rgba(16, 14, 12, 0.8), rgba(80, 62, 48, 0.36));
}

.visual-notes::before {
  content: "";
  position: absolute;
  inset: 24% 18% 20% 28%;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(180deg, rgba(233, 214, 188, 0.2), rgba(77, 52, 39, 0.28));
  box-shadow:
    -3rem 1.4rem 3rem rgba(0, 0, 0, 0.22),
    3rem -1.4rem 3.5rem rgba(201, 128, 92, 0.09);
  transform: rotate(-4deg);
}

.visual-eclipse {
  background:
    radial-gradient(circle at 64% 42%, transparent 0 16%, rgba(224, 161, 125, 0.78) 16.4% 17.3%, rgba(224, 161, 125, 0.14) 19%, transparent 35%),
    linear-gradient(180deg, rgba(70, 50, 38, 0.34), rgba(8, 8, 7, 0.86)),
    radial-gradient(circle at 60% 46%, rgba(242, 232, 216, 0.16), transparent 18rem);
}

.case-body {
  padding: clamp(1.15rem, 2vw, 1.8rem);
}

.case-body p {
  margin: 0 0 0.65rem;
  color: rgba(201, 128, 92, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 3.5vw, 3.5rem);
}

.process-grid article {
  position: relative;
  padding-top: 1.1rem;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 1.62rem;
  left: 3.4rem;
  right: -0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 128, 92, 0.4), rgba(242, 232, 216, 0.1));
}

.process-grid article:last-child::before {
  display: none;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(201, 128, 92, 0.65);
  border-radius: 999px;
  color: #d6926d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.process-grid h3 {
  color: #d6926d;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(18rem, 31rem) minmax(0, 1fr) minmax(17rem, 28rem);
  gap: clamp(1.7rem, 4vw, 5rem);
  align-items: center;
}

.about-photo {
  min-height: clamp(15rem, 22vw, 22rem);
  border: 1px solid rgba(242, 232, 216, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.28), rgba(15, 13, 11, 0.08)),
    url("assets/hero-portrait.png") center 36% / cover no-repeat;
  filter: saturate(0.84) contrast(1.08) brightness(0.78);
}

.about-copy h2 {
  max-width: 56rem;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
}

.about-copy h2 span {
  color: var(--accent);
}

.about-copy p {
  max-width: 65rem;
  margin-top: 1.2rem;
}

.about-list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0 0 0 clamp(1.2rem, 3vw, 3rem);
  border-left: 1px solid rgba(242, 232, 216, 0.12);
  color: rgba(242, 238, 230, 0.8);
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
}

.about-list li::before {
  content: "◇";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 38rem);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.2rem, 3vw, 4rem);
  border-bottom: 1px solid rgba(242, 232, 216, 0.1);
  background:
    radial-gradient(circle at 3% 50%, rgba(201, 128, 92, 0.16), transparent 18rem),
    linear-gradient(90deg, rgba(201, 128, 92, 0.12), rgba(255, 255, 255, 0.02));
}

.contact-band h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.contact-band p:last-child {
  margin-top: 0.85rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.8rem;
  min-height: 8.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(242, 232, 216, 0.14);
  border-radius: 6px;
  background: rgba(12, 11, 10, 0.46);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-card:hover {
  border-color: rgba(201, 128, 92, 0.54);
  transform: translateY(-0.25rem);
}

.contact-card span {
  color: rgba(242, 238, 230, 0.8);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
}

.copy-contact {
  position: relative;
  align-self: end;
  width: fit-content;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 128, 92, 0.44);
  border-radius: 4px;
  background: transparent;
  color: #d6926d;
  cursor: pointer;
  font-weight: 500;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.copy-contact:hover {
  border-color: rgba(201, 128, 92, 0.68);
  color: #f0b18f;
  transform: translateY(-1px);
}

.copy-contact.is-copied {
  color: rgba(242, 238, 230, 0.92);
  border-color: rgba(242, 232, 216, 0.36);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.4rem;
  align-items: center;
  min-height: 6.8rem;
  padding: 1.6rem clamp(1.2rem, 3vw, 4rem);
  color: rgba(203, 194, 183, 0.54);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-weight: 600;
  letter-spacing: 0.42em;
}

.site-footer p:last-child {
  justify-self: end;
  color: rgba(201, 128, 92, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 5.35rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 8;
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(242, 232, 216, 0.16);
    background: rgba(242, 232, 216, 0.03);
    color: var(--cream);
    cursor: pointer;
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    width: 1.05rem;
    height: 1px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-0.25rem);
  }

  .menu-toggle span:last-child {
    transform: translateY(0.25rem);
  }

  body.nav-open .menu-toggle span:first-child {
    transform: rotate(38deg);
  }

  body.nav-open .menu-toggle span:last-child {
    transform: rotate(-38deg);
  }

  .nav-links {
    position: fixed;
    z-index: 7;
    inset: 5.35rem 1.1rem auto;
    display: grid;
    gap: 0;
    padding: 0.8rem 0;
    border: 1px solid rgba(242, 232, 216, 0.16);
    background: rgba(23, 20, 17, 0.92);
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    transform: translateY(-0.65rem);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 3rem;
    padding: 0 1.2rem;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a::after {
    left: 1.2rem;
    right: 1.2rem;
  }

  .hero {
    min-height: calc(100svh - 10px);
    padding-inline: 1.1rem;
  }

  .hero-frame {
    inset: 5.35rem 1.1rem 0;
  }

  .portrait-field {
    width: 100vw;
    inset: auto -14vw 0 auto;
    height: min(58svh, 43rem);
    opacity: 0.52;
  }

  .portrait-layer {
    inset: -8% -4% -10% -8%;
    background:
      linear-gradient(180deg, rgba(20, 18, 16, 1) 0%, rgba(20, 18, 16, 0.82) 26%, rgba(20, 18, 16, 0.32) 54%, rgba(20, 18, 16, 0.92) 100%),
      linear-gradient(90deg, rgba(20, 18, 16, 0.95), rgba(20, 18, 16, 0.12) 55%, rgba(20, 18, 16, 0.36)),
      url("assets/hero-portrait.png") center right 28% / cover no-repeat;
  }

  .hero-content {
    width: min(100%, 44rem);
    padding-top: clamp(7.3rem, 14vh, 9rem);
    padding-left: clamp(0.25rem, 4vw, 1.8rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
    line-height: 1.28;
  }

  .hero-copy {
    max-width: 33rem;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }

  .hero-copy br {
    display: none;
  }

  .orbit-lines {
    width: 35rem;
    left: -11rem;
    bottom: -7rem;
    opacity: 0.52;
  }

  .after-hero {
    padding-inline: 1.1rem;
  }

  .home-section,
  .contact-band,
  .site-footer {
    padding-inline: clamp(0.9rem, 3.5vw, 1.8rem);
  }

  .problem-grid,
  .service-grid,
  .editorial-grid,
  .case-grid,
  .process-grid,
  .about-section,
  .column-spotlight,
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }

  .services-section,
  .cases-section {
    grid-template-columns: 1fr;
  }

  .section-link {
    justify-self: start;
  }

  .column-spotlight {
    align-items: start;
  }

  .column-actions {
    justify-content: flex-start;
  }

  .problem-item {
    min-height: 12rem;
    padding: 1.5rem;
    border-left: 0;
    border-top: 1px solid rgba(242, 232, 216, 0.12);
  }

  .problem-item:first-child,
  .problem-item:nth-child(2) {
    border-top: 0;
  }

  .problem-item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(242, 232, 216, 0.1);
  }

  .process-grid article::before {
    display: none;
  }

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

  .about-photo {
    min-height: 22rem;
  }

  .about-copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .about-list {
    border-left: 0;
    padding-left: 0;
  }

  .contact-actions {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.08rem;
    letter-spacing: 0.34em;
  }

  .hero {
    min-height: calc(100svh - 10px);
  }

  .portrait-field {
    height: 50svh;
    opacity: 0.45;
  }

  .hero-content {
    padding-top: clamp(6.5rem, 12vh, 7.4rem);
  }

  .eyebrow {
    display: none;
  }

  h1 {
    max-width: 20rem;
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.34;
  }

  .hero-copy {
    margin-top: 1.55rem;
    font-size: 1rem;
    line-height: 1.78;
  }

  .read-link {
    margin-top: 2.3rem;
    font-size: 1rem;
  }

  .read-link::after {
    width: 8.25rem;
  }

  .manifesto {
    min-height: 8.5rem;
    padding-inline: 0.75rem;
  }

  .home-section {
    padding-block: 2.7rem;
  }

  .problem-grid,
  .service-grid,
  .case-grid,
  .process-grid,
  .about-section,
  .column-spotlight,
  .contact-band,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .problem-item,
  .problem-item:nth-child(odd) {
    padding: 1.45rem 0;
    border-right: 0;
    border-top: 1px solid rgba(242, 232, 216, 0.12);
  }

  .problem-item:first-child {
    border-top: 0;
  }

  .problem-item:nth-child(2) {
    border-top: 1px solid rgba(242, 232, 216, 0.12);
  }

  .service-card {
    min-height: 14.5rem;
  }

  .column-actions {
    min-width: 0;
  }

  .column-link,
  .column-download {
    width: 100%;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large-card {
    grid-row: auto;
    min-height: 22rem;
  }

  .consult-note {
    grid-template-columns: 1fr;
  }

  .consult-note a {
    width: fit-content;
  }

  .case-visual {
    min-height: 13.5rem;
  }

  .process-grid {
    gap: 0;
  }

  .process-grid article {
    padding: 1.1rem 0 1.55rem;
    border-bottom: 1px solid rgba(242, 232, 216, 0.1);
  }

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

  .about-photo {
    min-height: 18rem;
  }

  .contact-card {
    min-height: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .portrait-field,
  .portrait-layer,
  .hero-content,
  .orbit-lines,
  .ambient-cursor {
    transform: none !important;
  }
}
