:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --paper: #eee7d8;
  --ink: #f4efe6;
  --text: #d1c8bb;
  --muted: #82796e;
  --line: rgba(244, 239, 230, 0.16);
  --red: #b8322b;
  --red-bright: #d84238;
  --red-dark: #6b1b18;
  --blue: #18334d;
  --blue-bright: #315879;
  --gold: #d7b957;
  --green: #536f56;
  --max: 1260px;
  --display: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", STSong, serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(184, 50, 43, 0.08) 0 1px, transparent 1px 130px),
    radial-gradient(circle at 10% 6%, rgba(184, 50, 43, 0.18), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(49, 88, 121, 0.12), transparent 28%),
    linear-gradient(180deg, #020202 0%, var(--bg) 42%, #090807 100%);
  font-family: var(--sans);
  letter-spacing: 0;
}

.wechat-share-anchor {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 500px;
  height: 500px;
  opacity: 0.01;
  pointer-events: none;
}

body.home-photo {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0 38%, rgba(5, 5, 5, 0.72) 58%, rgba(5, 5, 5, 0.94) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.28) 46%, rgba(5, 5, 5, 0.9) 100%),
    url("./assets/yuni-private.jpg"),
    linear-gradient(180deg, #020202 0%, var(--bg) 42%, #090807 100%);
  background-size: auto, auto, min(56vw, 760px) auto, auto;
  background-position: center, center, right 72px top 76px, center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 5px
    ),
    radial-gradient(circle at 18% 30%, rgba(244, 239, 230, 0.08) 0 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

body.career-story-theme {
  --story-bg: #0f0d0c;
  --story-bg-2: #19120f;
  --story-paper: #efe6d6;
  --story-muted: #a89988;
  color: var(--story-paper);
  background:
    linear-gradient(115deg, rgba(239, 230, 214, 0.045) 0 1px, transparent 1px 160px),
    radial-gradient(circle at 8% 4%, rgba(184, 50, 43, 0.13), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(215, 185, 87, 0.08), transparent 30%),
    linear-gradient(180deg, #070706 0%, var(--story-bg) 48%, var(--story-bg-2) 100%);
}

body.career-story-theme::before {
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(239, 230, 214, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 230, 214, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

body.career-story-theme::after {
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(239, 230, 214, 0.026) 0,
      rgba(239, 230, 214, 0.026) 1px,
      transparent 1px,
      transparent 6px
    );
}

body.career-story-theme .site-header {
  background: rgba(7, 7, 6, 0.78);
  border-bottom-color: rgba(239, 230, 214, 0.12);
}

body.career-story-theme .wordmark {
  color: var(--red);
}

body.career-story-theme .nav-links a {
  color: rgba(239, 230, 214, 0.64);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 58px);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  backdrop-filter: blur(18px);
}

.wordmark {
  color: var(--red);
  font-size: 16px;
  font-weight: 850;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

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

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 54px);
  align-content: center;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) 0 clamp(34px, 6vw, 58px);
}

.hero::after {
  content: "";
  position: absolute;
  right: calc(50% - 50vw);
  top: 0;
  bottom: auto;
  width: min(45vw, 620px);
  height: min(66vh, 650px);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.34) 34%, rgba(5, 5, 5, 0.1) 66%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.04) 46%, rgba(5, 5, 5, 0.98) 100%),
    url("./assets/yuni-home-portrait.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.58;
  filter: saturate(0) contrast(1.14) brightness(0.92);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 0;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(244, 239, 230, 0.08) 11% calc(11% + 1px), transparent calc(11% + 1px)),
    linear-gradient(90deg, transparent 0 63%, rgba(184, 50, 43, 0.12) 63% calc(63% + 1px), transparent calc(63% + 1px));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(58vw, 760px);
}

.inline-photo::after,
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.72)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.5), transparent 44%);
}

.inline-photo img,
.story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
}

.eyebrow,
.entry-number {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(58px, 9.2vw, 126px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 16px;
  background: var(--red);
}

.hero-intro {
  max-width: min(47vw, 620px);
  margin-top: clamp(24px, 3.4vw, 38px);
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 2px solid rgba(184, 50, 43, 0.72);
  color: var(--text);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.86;
}

.hero-intro p {
  margin: 0;
}

.hero-intro p + p {
  margin-top: 10px;
}

.intro-main {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 1.75vw, 26px);
  line-height: 1.68;
  font-weight: 600;
}

.intro-secondary {
  max-width: 590px;
  margin-left: 0 !important;
  color: var(--text);
}

.intro-note {
  max-width: 560px;
  margin-left: 0 !important;
  color: var(--muted);
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(72vw, 980px);
  border-top: 1px solid rgba(244, 239, 230, 0.26);
  border-left: 1px solid rgba(244, 239, 230, 0.16);
  box-shadow: inset 0 1px 0 rgba(212, 60, 51, 0.24);
}

.hero-index a {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 1.8vw, 22px);
  border-right: 1px solid rgba(244, 239, 230, 0.16);
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
  background:
    linear-gradient(135deg, rgba(212, 60, 51, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.025);
  transition: background 0.18s ease, color 0.18s ease;
}

.hero-index a:hover {
  background: var(--red);
  color: #080808;
}

.hero-index span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hero-index a:hover span {
  color: rgba(8, 8, 8, 0.58);
}

.hero-index b {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 500;
}

.hero-index em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.hero-index a:hover em {
  color: rgba(8, 8, 8, 0.72);
}

.universe-list {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  margin: 0 auto;
  padding: 0 0 clamp(84px, 12vw, 150px);
}

.universe-entry {
  position: relative;
  min-height: 360px;
  border-top: 1px solid var(--line);
  color: var(--text);
  isolation: isolate;
}

.universe-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: clamp(80px, 14vw, 180px);
  height: 2px;
  background: var(--red);
}

.universe-entry:hover h2 {
  color: var(--red);
}

.entry-copy h2,
.business-headline h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", var(--display);
  font-size: clamp(46px, 6.6vw, 88px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.subtitle {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.28;
  font-weight: 760;
}

.entry-copy p:not(.entry-number):not(.subtitle),
.business-notes p,
.method-actions p {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.82;
}

.map-entry {
  min-height: auto;
  padding: clamp(30px, 5vw, 56px) 0;
}

.business-entry {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(330px, 0.78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(36px, 6vw, 74px) 0;
}

.business-headline .lead {
  margin: clamp(24px, 4vw, 48px) 0 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 700;
  line-height: 1.22;
}

.business-record {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper) 0 4%, #050505 4.4% 13%, rgba(244, 239, 230, 0.14) 13.2% 14.3%, transparent 14.6%),
    repeating-radial-gradient(circle, #161616 0 7px, #080808 8px 12px);
  border: 1px solid rgba(244, 239, 230, 0.12);
}

.record-core {
  position: absolute;
  inset: 37%;
  border-radius: 50%;
  background: var(--red);
}

.needle {
  position: absolute;
  right: -2%;
  top: 12%;
  width: 44%;
  height: 2px;
  background: var(--paper);
  transform: rotate(32deg);
  transform-origin: right center;
}

.business-notes {
  align-self: end;
  padding-bottom: 14px;
}

.inline-photo {
  position: relative;
  width: min(100%, 420px);
  height: 160px;
  margin: 24px 0 0;
  border: 1px solid rgba(244, 239, 230, 0.14);
  overflow: hidden;
}

.career-photo img {
  object-position: 45% 50%;
}

.business-proof {
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.business-proof a {
  min-height: 132px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(244, 239, 230, 0.16);
  background:
    linear-gradient(90deg, rgba(212, 60, 51, 0.42) 0 4px, transparent 4px),
    linear-gradient(135deg, rgba(212, 60, 51, 0.16), transparent 56%),
    #0b0b0b;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.business-proof a:hover {
  border-color: rgba(244, 239, 230, 0.34);
  background:
    linear-gradient(90deg, rgba(184, 50, 43, 0.72) 0 4px, transparent 4px),
    rgba(244, 239, 230, 0.055);
  transform: translateX(6px);
}

.business-proof a:nth-child(2) {
  margin-left: clamp(0px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(45, 113, 189, 0.62) 0 4px, transparent 4px),
    linear-gradient(135deg, rgba(45, 113, 189, 0.16), transparent 56%),
    #0b0b0b;
}

.business-proof a:nth-child(3) {
  margin-right: clamp(0px, 5vw, 72px);
}

.business-proof span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.business-proof b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.18;
}

.business-proof p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
}

.method-entry {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0;
}

.method-actions {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}

.method-actions div {
  position: relative;
  padding: clamp(22px, 3vw, 34px) clamp(0px, 2vw, 22px);
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  background:
    linear-gradient(90deg, rgba(184, 50, 43, 0.32) 0 2px, transparent 2px),
    transparent;
}

.method-actions div:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(184, 50, 43, 0.56) 0 2px, transparent 2px),
    rgba(244, 239, 230, 0.035) !important;
  color: var(--text) !important;
}

.method-actions div:nth-child(2) {
  margin-left: clamp(0px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(49, 88, 121, 0.56) 0 2px, transparent 2px),
    rgba(244, 239, 230, 0.025);
}

.method-actions div:nth-child(3) {
  margin-right: clamp(0px, 7vw, 110px);
}

.method-actions span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.method-actions div:nth-child(1) span {
  color: var(--red);
}

.method-actions b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.voice-entry {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0;
}

.voice-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  gap: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
}

.voice-links > span,
.voice-links > a {
  position: relative;
  display: block;
  min-width: 0;
  padding: 18px 46px 18px 20px;
  border-right: 1px solid rgba(244, 239, 230, 0.14);
  color: var(--paper);
  transition: background 0.18s ease, color 0.18s ease;
}

.voice-links > span:last-child,
.voice-links > a:last-child {
  border-right: 0;
}

.voice-links > span:hover,
.voice-links > a:hover {
  background: rgba(244, 239, 230, 0.08);
}

.voice-links b {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  font-weight: 760;
  white-space: nowrap;
}

.voice-links em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voice-links > span::after,
.voice-links > a::after {
  content: "↗";
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.community-entry {
  display: block;
  padding: clamp(34px, 6vw, 76px) 0;
}

.community-entry .entry-copy {
  max-width: 780px;
}

.community-photo {
  position: relative;
  min-height: 440px;
  background:
    linear-gradient(rgba(244, 239, 230, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(23, 71, 123, 0.72), transparent 58%),
    linear-gradient(315deg, rgba(215, 185, 87, 0.54), transparent 50%),
    #0d1118;
  background-size: 100% 28px, auto, auto, auto;
  border: 1px solid rgba(244, 239, 230, 0.16);
  overflow: hidden;
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  background: rgba(212, 60, 51, 0.18);
}

.visit-link::after {
  content: "->";
  color: var(--red-bright);
}

.window {
  position: absolute;
  inset: 10% 12% 28%;
  border: 1px solid rgba(244, 239, 230, 0.28);
  background:
    linear-gradient(90deg, transparent 49%, rgba(244, 239, 230, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(244, 239, 230, 0.18) 50%, transparent 51%);
}

.table {
  position: absolute;
  left: 22%;
  bottom: 14%;
  width: 58%;
  height: 18%;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.82);
}

.people {
  position: absolute;
  bottom: 29%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
}

.people::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: 34px;
  height: 58px;
  border-radius: 22px 22px 0 0;
  background: rgba(244, 239, 230, 0.72);
  transform: translateX(-50%);
}

.people-one {
  left: 30%;
}

.people-two {
  left: 46%;
  background: var(--gold);
}

.people-three {
  left: 62%;
  background: var(--blue);
}

.private-entry {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(330px, 0.92fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0;
  cursor: pointer;
}

.private-film {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.private-film-single {
  grid-template-columns: minmax(240px, 430px);
  justify-content: center;
}

.private-film,
.private-film * {
  pointer-events: none;
}

.private-film span {
  display: block;
  height: 62%;
  overflow: hidden;
  background: #151311;
  border: 10px solid var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-5deg);
}

.private-film img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--private-photo-position, center);
  filter: saturate(0.94) contrast(1.03);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.private-entry:hover .private-film img {
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.05);
}

.private-film span:nth-child(2) {
  height: 84%;
  transform: rotate(3deg) translateY(-10px);
}

.private-film span:nth-child(3) {
  transform: rotate(8deg) translateY(22px);
}

.private-film span:nth-child(3) img {
  object-position: 58% center;
}

.private-film-single span,
.private-film-single span:nth-child(2),
.private-film-single span:nth-child(3) {
  height: 84%;
  transform: rotate(2deg) translateY(-8px);
}

.connect-entry {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0 clamp(10px, 4vw, 32px);
}

.email-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(244, 239, 230, 0.16);
  background:
    linear-gradient(145deg, rgba(244, 239, 230, 0.08), rgba(244, 239, 230, 0.025)),
    rgba(8, 8, 8, 0.78);
}

.email-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-card a {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.email-card a:hover {
  color: var(--red-bright);
}

.email-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.connect-door {
  position: relative;
  min-height: 380px;
  background: #080808;
  border: 1px solid rgba(244, 239, 230, 0.16);
}

.connect-door::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 9%;
  width: 34%;
  height: 82%;
  border: 2px solid var(--red);
  border-right-color: rgba(244, 239, 230, 0.24);
  transform: perspective(600px) rotateY(-24deg);
  transform-origin: left center;
}

.connect-door span {
  position: absolute;
  left: 56%;
  top: 47%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 clamp(86px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.detail-panel h2 {
  max-width: 980px;
  margin: 14px 0 34px;
  font-family: var(--display);
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 1.04;
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 42px;
  max-width: 980px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.detail-grid p {
  margin: 0;
}

.story-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.story-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(240px, 0.42fr);
  grid-template-areas:
    "eyebrow ."
    "title .";
  gap: 0 clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(62px, 8vw, 100px) 0 clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(239, 230, 214, 0.16);
}

.story-hero::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: 0;
  bottom: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0 52%, rgba(7, 7, 6, 0.72) 100%),
    linear-gradient(120deg, transparent 0 58%, rgba(184, 50, 43, 0.14) 58% calc(58% + 1px), transparent calc(58% + 1px)),
    linear-gradient(90deg, transparent 0 78%, rgba(239, 230, 214, 0.08) 78% calc(78% + 1px), transparent calc(78% + 1px));
}

.story-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: clamp(38px, 6vw, 72px);
  width: min(58vw, 680px);
  height: 6px;
  background: var(--red);
}

.story-hero .eyebrow {
  grid-area: eyebrow;
  align-self: end;
  color: var(--red);
}

.story-hero h1 {
  grid-area: title;
  max-width: 1000px;
  margin: 22px 0 0;
  color: var(--story-paper, var(--ink));
  font-family: var(--display);
  font-size: clamp(34px, 4.7vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  white-space: nowrap;
}

.story-hero p:not(.eyebrow) {
  grid-area: intro;
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--story-muted, var(--text));
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.78;
}

.story-cover-photo {
  grid-area: photo;
  position: relative;
  width: 100%;
  height: clamp(460px, 58vw, 700px);
  margin: 0;
  border: 1px solid rgba(239, 230, 214, 0.12);
  overflow: hidden;
  align-self: stretch;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
}

.story-hero .story-cover-photo {
  display: none;
}

.story-cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.36), transparent 46%, rgba(5, 5, 5, 0.42)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.46), transparent 50%);
}

.story-cover-photo img,
.story-inline-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.92);
}

.story-cover-photo img {
  object-position: center 36%;
}

.story-photo {
  position: relative;
  width: min(100%, 920px);
  height: clamp(220px, 34vw, 420px);
  margin: clamp(34px, 5vw, 58px) 0 0;
  border: 1px solid rgba(244, 239, 230, 0.14);
  overflow: hidden;
}

.story-photo img {
  object-position: 45% 50%;
}

.story-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(96px, 0.22fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(70px, 9vw, 124px) 0 clamp(94px, 12vw, 156px);
}

.story-side-note {
  position: sticky;
  top: 92px;
  display: grid;
  align-self: start;
  gap: 12px;
  padding-top: 8px;
}

.story-side-note span {
  display: block;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  color: rgba(239, 230, 214, 0.34);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.story-article {
  color: var(--story-paper, var(--text));
  font-size: clamp(17px, 1.32vw, 19px);
  line-height: 1.96;
}

.story-flow {
  display: grid;
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 0.76fr) minmax(190px, 0.42fr);
  column-gap: clamp(22px, 5vw, 74px);
  align-items: start;
}

.story-flow > p,
.story-flow > ol {
  grid-column: 2;
}

.story-lede {
  grid-column: 1 / 4 !important;
  color: var(--story-paper, var(--ink));
  font-family: var(--display);
  font-size: clamp(31px, 4.2vw, 66px);
  line-height: 1.24;
  font-weight: 700;
  max-width: 900px;
  margin-bottom: clamp(36px, 6vw, 76px) !important;
}

.story-article p {
  margin: 0;
}

.story-article p + p {
  margin-top: 22px;
}

.story-article h2 {
  grid-column: 1 / 3;
  margin: clamp(54px, 8vw, 92px) 0 22px;
  color: var(--story-paper, var(--ink));
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 700;
}

.story-marker {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 74px);
  margin: clamp(54px, 8vw, 98px) 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(239, 230, 214, 0.18);
}

.story-marker span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-marker h2 {
  margin: 0;
}

.story-quote {
  grid-column: 1 / 4;
  margin: clamp(44px, 6vw, 76px) 0;
  padding: clamp(22px, 3vw, 36px) 0 clamp(22px, 3vw, 38px) clamp(22px, 3vw, 42px);
  border-left: 3px solid var(--red);
  background:
    linear-gradient(90deg, rgba(184, 50, 43, 0.11), transparent 66%);
  color: var(--story-paper, var(--ink));
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.42;
  font-weight: 700;
}

.story-margin-note {
  grid-column: 3;
  grid-row: span 2;
  margin-top: 8px;
  padding: 18px 0 18px 18px;
  border-left: 1px solid rgba(184, 50, 43, 0.72);
  color: rgba(239, 230, 214, 0.58);
  font-size: 14px;
  line-height: 1.68;
}

.story-highlight {
  padding: clamp(22px, 3vw, 34px);
  border-left: 3px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(215, 185, 87, 0.13), rgba(215, 185, 87, 0.025));
  color: rgba(239, 230, 214, 0.9);
}

.story-inline-photo,
.story-photo-slot {
  grid-column: 1 / 4;
  position: relative;
  margin: clamp(46px, 7vw, 84px) 0;
  border: 1px solid rgba(239, 230, 214, 0.12);
  overflow: hidden;
}

.story-photo-slot {
  display: grid;
  place-items: center;
  color: rgba(239, 230, 214, 0.44);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(239, 230, 214, 0.08) 0 1px, transparent 1px 20px),
    rgba(239, 230, 214, 0.035);
}

.story-inline-photo.is-pair,
.story-inline-photo.is-maimai {
  display: grid;
  gap: clamp(14px, 2.2vw, 24px);
  border: 0;
  overflow: visible;
}

.story-inline-photo.is-single {
  width: min(72%, 720px);
  height: clamp(230px, 28vw, 380px);
  margin-left: clamp(0px, 5vw, 70px);
}

.story-inline-photo.is-pair {
  grid-template-columns: minmax(220px, 0.82fr) minmax(260px, 1fr);
  align-items: end;
  margin-left: clamp(0px, 4vw, 52px);
}

.story-inline-photo.is-pair img,
.story-inline-photo.is-maimai img,
.story-extra-proof img {
  border: 1px solid rgba(239, 230, 214, 0.14);
}

.story-inline-photo.is-pair img:first-child {
  height: clamp(230px, 29vw, 370px);
}

.story-inline-photo.is-pair img:last-child {
  height: clamp(280px, 38vw, 520px);
}

.story-inline-photo.is-offset {
  width: min(88%, 920px);
  height: clamp(220px, 30vw, 360px);
  margin-left: auto;
  margin-top: clamp(-42px, -3vw, -24px);
}

.story-inline-photo.is-baidu-awards {
  width: min(82%, 860px);
  height: clamp(250px, 34vw, 440px);
  margin-left: 0;
}

.story-inline-photo.is-baidu-team {
  width: min(88%, 940px);
  height: clamp(210px, 26vw, 340px);
  margin-left: auto;
  margin-top: clamp(12px, 2.5vw, 34px);
}

.story-inline-photo.is-maimai {
  grid-template-columns: minmax(180px, 0.36fr) minmax(220px, 0.64fr);
  align-items: center;
  width: min(78%, 780px);
  margin-left: clamp(0px, 7vw, 96px);
}

.story-inline-photo.is-maimai img:first-child {
  height: clamp(360px, 48vw, 560px);
}

.story-inline-photo.is-maimai img:last-child {
  height: clamp(170px, 22vw, 260px);
}

.story-inline-photo.is-maimai-award {
  grid-column: 1 / 3;
  width: min(38%, 360px);
  height: clamp(360px, 48vw, 560px);
  margin-left: clamp(0px, 6vw, 78px);
}

.story-inline-photo.is-maimai-team {
  grid-column: 2 / 4;
  width: min(58%, 560px);
  height: clamp(170px, 22vw, 260px);
  margin-left: auto;
  margin-top: clamp(-18px, -1.4vw, -8px);
}

.story-inline-photo.is-wide,
.story-photo-slot.is-wide {
  width: min(100%, 1040px);
  height: clamp(260px, 36vw, 470px);
  margin-left: clamp(0px, 6vw, 86px);
}

.story-inline-photo.is-wide img {
  object-position: center 46%;
}

.story-inline-photo.is-portrait,
.story-photo-slot.is-portrait {
  grid-column: 1 / 3;
  width: min(72%, 540px);
  height: clamp(240px, 36vw, 420px);
  margin-left: 0;
}

.story-inline-photo.is-portrait img {
  object-position: center 36%;
}

.story-article ol {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(239, 230, 214, 0.16);
}

.story-article li {
  position: relative;
  min-height: 0;
  padding: 18px 0 18px 48px;
  border: 0;
  border-bottom: 1px solid rgba(239, 230, 214, 0.16);
  background: transparent;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.story-article li::before {
  content: counter(list-item);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.career-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(620px, 100%);
  border-top: 1px solid rgba(239, 230, 214, 0.18);
  border-left: 1px solid rgba(239, 230, 214, 0.14);
  margin-top: -1px;
}

.career-subnav.is-bottom {
  margin: 0 0 clamp(80px, 10vw, 130px);
  border-top-color: rgba(239, 230, 214, 0.24);
}

.career-subnav a {
  min-height: 76px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-right: 1px solid rgba(239, 230, 214, 0.14);
  border-bottom: 1px solid rgba(239, 230, 214, 0.14);
  color: rgba(239, 230, 214, 0.62);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.35;
}

.career-subnav a:hover {
  color: var(--story-paper);
  background: rgba(184, 50, 43, 0.13);
}

.story-extra-proof {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.5fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: end;
  margin: clamp(66px, 9vw, 112px) 0 0;
  padding-top: clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(239, 230, 214, 0.16);
}

.story-extra-proof:has(figure:only-child) {
  grid-template-columns: minmax(260px, 0.54fr);
  justify-content: end;
}

.story-extra-proof figure {
  margin: 0;
}

.story-extra-proof figure:nth-child(2) {
  transform: translateY(clamp(0px, 4vw, 46px));
}

.story-extra-proof figure:only-child {
  transform: none;
}

.story-extra-proof img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03) brightness(0.92);
}

.story-extra-proof figure:first-child img {
  aspect-ratio: 16 / 9;
}

.story-extra-proof figure:nth-child(2) img {
  aspect-ratio: 4 / 3;
}

.story-extra-proof figcaption {
  margin-top: 12px;
  color: rgba(239, 230, 214, 0.66);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.5;
}

.career-index {
  display: grid;
  gap: 0;
  padding: clamp(50px, 8vw, 96px) 0 clamp(90px, 12vw, 150px);
}

.career-index article {
  display: grid;
  grid-template-columns: 84px minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(24px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
}

.career-index article:last-child {
  border-bottom: 1px solid var(--line);
}

.career-index span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.career-index h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 3.4vw, 48px);
  line-height: 1.18;
  font-weight: 700;
}

.career-index p {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.brand-library-theme {
  background:
    linear-gradient(115deg, rgba(244, 239, 230, 0.045) 0 1px, transparent 1px 150px),
    radial-gradient(circle at 78% 8%, rgba(184, 50, 43, 0.18), transparent 28%),
    radial-gradient(circle at 16% 24%, rgba(49, 88, 121, 0.11), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0a0807 54%, #120d0b 100%);
}

.brand-library {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) 0 clamp(80px, 10vw, 130px);
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding-bottom: clamp(34px, 6vw, 68px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}

.brand-hero h1 {
  grid-column: 1;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: 1.04;
  font-weight: 700;
}

.brand-hero p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.85;
}

.brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: clamp(22px, 4vw, 38px) 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.brand-filter span {
  padding: 8px 12px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  color: rgba(244, 239, 230, 0.68);
  font-size: 13px;
  font-weight: 760;
}

.brand-filter span:first-child {
  color: var(--ink);
  background: rgba(184, 50, 43, 0.2);
  border-color: rgba(184, 50, 43, 0.56);
}

.brand-masonry {
  column-count: 2;
  column-gap: clamp(12px, 2vw, 22px);
  padding: clamp(20px, 4vw, 42px) 0 clamp(54px, 8vw, 94px);
}

.brand-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(12px, 2vw, 22px);
  break-inside: avoid;
  border: 1px solid rgba(244, 239, 230, 0.14);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.045), rgba(244, 239, 230, 0.018)),
    rgba(255, 255, 255, 0.018);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 50, 43, 0.72);
  background:
    linear-gradient(180deg, rgba(184, 50, 43, 0.12), rgba(244, 239, 230, 0.018)),
    rgba(255, 255, 255, 0.03);
}

.brand-card-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(150px, 28vw, 250px);
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(160deg, rgba(184, 50, 43, 0.28), transparent 56%),
    #11100f;
}

.brand-card.is-tall .brand-card-image {
  min-height: clamp(230px, 42vw, 380px);
}

.brand-card.is-wide .brand-card-image {
  min-height: clamp(170px, 30vw, 280px);
}

.brand-card.is-short .brand-card-image {
  min-height: clamp(120px, 22vw, 190px);
}

.brand-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(244, 239, 230, 0.16), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.brand-card-image span {
  position: relative;
  z-index: 1;
  color: rgba(244, 239, 230, 0.42);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-card-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-redbook {
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.08) 0 1px, transparent 1px 20px),
    linear-gradient(150deg, rgba(184, 50, 43, 0.52), transparent 58%),
    #140909;
}

.image-xhs-koc {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 24% 26%, rgba(255, 69, 58, 0.62), transparent 23%),
    radial-gradient(circle at 76% 68%, rgba(244, 239, 230, 0.22), transparent 28%),
    linear-gradient(150deg, rgba(184, 50, 43, 0.72), rgba(20, 9, 9, 0.92) 56%),
    #130808;
  background-size: 32px 32px, 32px 32px, auto, auto, auto, auto;
}

.image-xhs-koc span {
  color: rgba(244, 239, 230, 0.82);
  font-size: clamp(18px, 2.8vw, 38px);
  font-family: var(--display);
  text-transform: none;
  letter-spacing: 0;
}

.image-product {
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.08) 0 1px, transparent 1px 32px),
    linear-gradient(150deg, rgba(49, 88, 121, 0.46), transparent 58%),
    #0b1014;
}

.image-budget {
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(150deg, rgba(215, 185, 87, 0.32), transparent 54%),
    #11100b;
}

.image-ai {
  background:
    linear-gradient(rgba(244, 239, 230, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.08) 1px, transparent 1px),
    linear-gradient(160deg, rgba(83, 111, 86, 0.46), transparent 58%),
    #09110c;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.image-operator {
  background:
    radial-gradient(circle at 24% 30%, rgba(244, 239, 230, 0.16), transparent 18%),
    linear-gradient(160deg, rgba(244, 239, 230, 0.08), rgba(184, 50, 43, 0.18)),
    #111;
}

.image-data {
  background:
    linear-gradient(rgba(244, 239, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 64% 32%, rgba(184, 50, 43, 0.38), transparent 26%),
    #0d0d0d;
  background-size: 22px 22px, 22px 22px, auto, auto;
}

.image-career-note {
  background:
    linear-gradient(160deg, rgba(244, 239, 230, 0.12), transparent 48%),
    linear-gradient(28deg, rgba(184, 50, 43, 0.34), transparent 58%),
    #100c0b;
}

.brand-card-copy {
  padding: clamp(13px, 2vw, 22px);
}

.brand-source {
  margin: 0 0 9px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 900;
}

.brand-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.2;
  font-weight: 700;
}

.brand-card p:not(.brand-source) {
  margin: 11px 0 0;
  color: var(--text);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.62;
}

.brand-card em {
  display: inline-block;
  margin-top: 13px;
  color: rgba(244, 239, 230, 0.48);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.brand-article-page {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) 0 clamp(90px, 12vw, 150px);
}

.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.brand-article-shell {
  margin-top: clamp(36px, 6vw, 76px);
  padding-top: clamp(28px, 5vw, 54px);
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}

.brand-article-shell h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.08;
  font-weight: 700;
}

.article-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
}

.article-cover {
  margin: clamp(34px, 6vw, 70px) 0 0;
  width: min(640px, 100%);
  border: 1px solid rgba(244, 239, 230, 0.16);
  background: #f8f6f2;
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.article-body {
  max-width: 760px;
  margin-top: clamp(34px, 5vw, 64px);
  color: var(--text);
}

.article-body p,
.article-body li {
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.86;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body h2 {
  margin: clamp(38px, 6vw, 70px) 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.16;
}

.article-body h3 {
  margin: clamp(30px, 5vw, 56px) 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.28;
}

.article-body ol {
  margin: 0 0 22px;
  padding-left: 1.3em;
}

.article-data-figure {
  margin: clamp(28px, 4vw, 46px) 0 clamp(30px, 4.5vw, 54px);
  color: var(--text);
}

.article-data-figure figcaption {
  margin-top: 12px;
  text-align: center;
  color: rgba(244, 239, 230, 0.62);
  font-size: 14px;
  font-weight: 760;
}

.data-table-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(244, 239, 230, 0.18);
  background:
    linear-gradient(180deg, rgba(217, 184, 95, 0.18), rgba(217, 184, 95, 0.06)),
    rgba(244, 239, 230, 0.04);
}

.data-table-visual span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid rgba(244, 239, 230, 0.12);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  color: rgba(244, 239, 230, 0.72);
  font-size: 13px;
  font-weight: 820;
}

.line-chart-visual {
  position: relative;
  height: clamp(260px, 42vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.16);
  background:
    linear-gradient(rgba(244, 239, 230, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.08) 1px, transparent 1px),
    rgba(244, 239, 230, 0.035);
  background-size: 100% 25%, 25% 100%;
}

.line-chart-visual .line {
  position: absolute;
  inset: 11% 6% 12%;
  border-radius: 50%;
  border-top: 5px solid currentColor;
  border-left: 4px solid transparent;
  transform: skewX(-18deg);
}

.line-chart-visual .orange {
  color: #ff7a2f;
  clip-path: polygon(0 72%, 8% 34%, 14% 88%, 23% 24%, 30% 74%, 39% 32%, 48% 82%, 57% 30%, 66% 74%, 73% 42%, 82% 70%, 91% 48%, 100% 66%, 100% 100%, 0 100%);
}

.line-chart-visual .green {
  color: #2bd087;
  clip-path: polygon(0 84%, 10% 48%, 17% 90%, 26% 56%, 35% 82%, 44% 50%, 54% 90%, 63% 58%, 70% 86%, 80% 62%, 90% 86%, 100% 60%, 100% 100%, 0 100%);
}

.line-chart-visual .gray {
  color: rgba(244, 239, 230, 0.58);
  clip-path: polygon(56% 100%, 58% 72%, 62% 28%, 66% 88%, 70% 18%, 74% 82%, 78% 26%, 82% 76%, 86% 34%, 90% 78%, 94% 42%, 100% 64%, 100% 100%);
}

.article-placeholder {
  display: grid;
  gap: 0;
  margin-top: clamp(36px, 6vw, 70px);
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}

.article-placeholder span {
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
  color: rgba(244, 239, 230, 0.52);
  font-size: 14px;
  font-weight: 760;
}

.article-origin-link {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(184, 50, 43, 0.66);
  color: var(--ink);
  background: rgba(184, 50, 43, 0.18);
  font-size: 14px;
  font-weight: 820;
}

.career-notes-page {
  --note-paper: #f4efe6;
  --note-muted: rgba(244, 239, 230, 0.62);
  --note-faint: rgba(244, 239, 230, 0.22);
}

.career-notes-hero {
  min-height: clamp(330px, 52vh, 560px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.34fr);
  gap: clamp(28px, 5vw, 72px);
  align-content: end;
  padding: clamp(70px, 10vw, 136px) 0 clamp(42px, 7vw, 82px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}

.career-notes-hero h1 {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--note-paper);
  font-family: var(--display);
  font-size: clamp(42px, 6.8vw, 100px);
  line-height: 0.99;
  font-weight: 700;
}

.career-notes-hero p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  max-width: 360px;
  margin: 0 0 8px;
  color: var(--note-muted);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.85;
}

.career-notes-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  column-gap: clamp(28px, 6vw, 86px);
  row-gap: clamp(44px, 7vw, 100px);
  padding: clamp(58px, 8vw, 112px) 0 clamp(100px, 13vw, 170px);
}

.notes-photo-strip {
  grid-column: 1 / 3;
  position: relative;
  min-height: clamp(300px, 42vw, 560px);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.notes-photo-strip img {
  position: absolute;
  inset: -12% 0 -18%;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: 54% 43%;
  filter: saturate(0.72) contrast(1.08) brightness(0.6);
}

.notes-photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(8, 7, 6, 0.02), rgba(8, 7, 6, 0.58) 54%, #080706 94%),
    linear-gradient(90deg, #080706 0 14%, transparent 45%, #080706 96%),
    linear-gradient(0deg, #080706 0, transparent 36%, transparent 62%, #080706 100%);
}

.notes-manifesto {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  padding-top: clamp(24px, 4vw, 52px);
}

.notes-manifesto span,
.note-kicker,
.note-num {
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.notes-manifesto p {
  margin: 0;
  color: var(--note-paper);
  font-family: var(--display);
  font-size: clamp(27px, 4.3vw, 62px);
  line-height: 1.18;
}

.note-fragment {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}

.note-fragment.is-large {
  grid-column: 1 / 3;
  grid-template-columns: minmax(88px, 0.16fr) minmax(0, 0.88fr);
}

.note-fragment.is-offset {
  transform: translateY(clamp(24px, 5vw, 70px));
}

.note-fragment.is-wide {
  grid-column: 1 / 3;
  width: min(880px, 86%);
  margin-left: auto;
}

.note-num {
  color: rgba(244, 239, 230, 0.36);
  font-size: clamp(16px, 2vw, 24px);
}

.note-kicker {
  margin: 0 0 16px;
}

.note-fragment h2 {
  margin: 0;
  color: var(--note-paper);
  font-family: var(--display);
  font-size: clamp(30px, 4.8vw, 78px);
  line-height: 1.06;
  font-weight: 700;
}

.note-fragment:not(.is-large) h2 {
  font-size: clamp(26px, 3.6vw, 50px);
}

.note-fragment p:not(.note-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--note-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.88;
}

@media (max-width: 920px) {
  .quote-cover-copy {
    width: 100%;
  }

  .quote-wall-grid,
  .quote-option-cut {
    grid-template-columns: 1fr;
  }

  .quote-wall-grid p:nth-child(2),
  .quote-wall-grid p:nth-child(3) {
    transform: none;
  }

  .quote-option-index li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero,
  .map-entry,
  .business-entry,
  .method-entry,
  .voice-entry,
  .community-entry,
  .private-entry,
  .connect-entry,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .voice-links,
  .glass-home .voice-links {
    grid-template-columns: 1fr;
  }

  .voice-links > span,
  .voice-links > a,
  .glass-home .voice-links > span,
  .glass-home .voice-links > a {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.14);
  }

  .voice-links > span:last-child,
  .voice-links > a:last-child,
  .glass-home .voice-links > span:last-child,
  .glass-home .voice-links > a:last-child {
    border-bottom: 0;
  }

  .career-subnav,
  .career-index article {
    grid-template-columns: 1fr;
  }

  .story-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "intro";
    gap: 0;
  }

  .story-cover-photo {
    display: none;
  }

  .story-body {
    grid-template-columns: 1fr;
  }

  .story-side-note {
    position: static;
    display: flex;
    gap: 18px;
    padding-top: 0;
  }

  .story-side-note span {
    writing-mode: horizontal-tb;
  }

  .story-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-flow > p,
  .story-flow > ol,
  .story-lede,
  .story-marker,
  .story-quote,
  .story-margin-note,
  .story-inline-photo,
  .story-inline-photo.is-wide,
  .story-inline-photo.is-portrait,
  .story-inline-photo.is-pair,
  .story-inline-photo.is-maimai,
  .story-extra-proof,
  .story-article h2 {
    grid-column: 1 !important;
  }

  .story-marker {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-margin-note {
    grid-row: auto;
    margin: 30px 0;
  }

  .story-inline-photo.is-wide,
  .story-inline-photo.is-portrait,
  .story-inline-photo.is-offset,
  .story-inline-photo.is-maimai,
  .story-inline-photo.is-single,
  .story-inline-photo.is-baidu-awards,
  .story-inline-photo.is-baidu-team,
  .story-inline-photo.is-maimai-award,
  .story-inline-photo.is-maimai-team,
  .story-photo-slot.is-wide,
  .story-photo-slot.is-portrait {
    width: 100%;
    margin-left: 0;
  }

  .story-inline-photo.is-pair,
  .story-inline-photo.is-maimai,
  .story-extra-proof {
    grid-template-columns: 1fr;
  }

  .story-inline-photo.is-pair img:first-child,
  .story-inline-photo.is-pair img:last-child,
  .story-inline-photo.is-maimai img:first-child,
  .story-inline-photo.is-maimai img:last-child,
  .story-inline-photo.is-single,
  .story-inline-photo.is-baidu-awards,
  .story-inline-photo.is-baidu-team,
  .story-inline-photo.is-maimai-award,
  .story-inline-photo.is-maimai-team {
    height: auto;
    aspect-ratio: auto;
  }

  .story-inline-photo img,
  .story-extra-proof img {
    height: auto;
  }

  .story-extra-proof figure:nth-child(2) {
    transform: none;
  }

  .brand-hero {
    grid-template-columns: 1fr;
  }

  .brand-hero p:not(.eyebrow) {
    grid-column: 1;
  }

  .brand-masonry {
    column-count: 2;
  }

  .story-article ol {
    grid-template-columns: 1fr 1fr;
  }

  .private-entry .entry-copy {
    order: 2;
  }

  .private-film {
    order: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .universe-list,
  .detail-panel,
  .story-page {
    width: min(100% - 28px, var(--max));
  }

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

  .hero-intro {
    max-width: none;
    margin-top: 18px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero h1 {
    white-space: nowrap;
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .hero h1::after {
    width: 72px;
    height: 5px;
    margin-top: 12px;
  }

  .hero::after {
    top: 0;
    right: calc(50% - 50vw);
    bottom: auto;
    width: 100vw;
    height: 66vh;
    opacity: 0.68;
    background-size: auto 72vh;
    background-repeat: no-repeat;
    background-position: right -42px top 0;
    mask-image: linear-gradient(180deg, #000 0%, #000 56%, transparent 100%);
  }

  .intro-main {
    font-size: 15px;
    line-height: 1.62;
  }

  .intro-secondary {
    display: none;
  }

  .intro-note {
    max-width: none;
    margin-left: 0 !important;
  }

  .hero-index {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-index a {
    min-height: 104px;
  }

  .brand-library {
    width: min(100% - 20px, var(--max));
  }

  .brand-filter {
    gap: 8px;
  }

  .brand-filter span {
    padding: 7px 9px;
    font-size: 12px;
  }

  .brand-masonry {
    column-gap: 10px;
  }

  .brand-card {
    margin-bottom: 10px;
  }

  .brand-card-copy {
    padding: 12px;
  }

  .brand-card h2 {
    font-size: 19px;
  }

  .brand-card p:not(.brand-source) {
    font-size: 13px;
  }

  .story-aside {
    grid-template-columns: 1fr;
  }

  .story-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .story-lede {
    font-size: clamp(28px, 9vw, 44px);
  }

  .story-quote {
    font-size: clamp(18px, 5vw, 24px);
  }

  .story-article ol {
    grid-template-columns: 1fr;
  }

  .community-photo,
  .private-film,
  .connect-door {
    min-height: 320px;
  }

  .private-film {
    grid-template-columns: 1fr;
  }

  .private-film span {
    height: 180px;
  }
}

/* Services page clean editorial pass */
.services-theme .services-page {
  width: min(1080px, calc(100% - 40px));
}

.services-theme .services-hero {
  min-height: 420px;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.services-theme .service-section {
  padding: clamp(54px, 7vw, 86px) 0;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.services-theme .project-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  max-width: none;
}

.services-theme .project-heading > p {
  margin-top: 14px;
}

.services-theme .project-heading h2 {
  grid-column: 1;
  grid-row: 2 / span 2;
  font-size: clamp(46px, 6.2vw, 74px);
}

.services-theme .project-heading h3,
.services-theme .project-heading > span {
  grid-column: 2;
}

.services-theme .project-heading h3 {
  margin-top: 0;
  font-size: clamp(25px, 3.2vw, 38px);
}

.services-theme .service-tags {
  gap: 0;
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-theme .service-tags span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 251, 244, 0.82);
  font-size: 15px;
  font-weight: 600;
}

.services-theme .service-tags span::after {
  content: "/";
  margin: 0 12px;
  color: rgba(247, 251, 244, 0.34);
}

.services-theme .service-tags span:last-child::after {
  content: "";
  margin: 0;
}

.services-theme .process-flow {
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  border: 0;
  padding: 18px 0 0;
}

.services-theme .process-flow span {
  font-size: 15px;
  font-weight: 650;
}

.services-theme .service-proof-quote {
  width: auto;
  margin: 34px 0 0 calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  padding: 0;
  border: 0;
}

.services-theme .service-proof-quote p {
  margin: 0;
  color: rgba(247, 251, 244, 0.86);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.45;
}

.services-theme .service-proof-quote cite {
  display: block;
  margin-top: 10px;
  color: rgba(247, 251, 244, 0.52);
  font-style: normal;
  font-size: 12px;
}

.services-theme .case-label {
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  color: rgba(247, 251, 244, 0.72);
  font-size: 15px;
}

.services-theme .advisory-case {
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  padding: 0;
  border: 0;
  background: transparent;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
}

.services-theme .case-copy h3 {
  color: rgba(247, 251, 244, 0.94);
  font-size: clamp(24px, 2.7vw, 34px);
}

.services-theme .case-copy li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: rgba(247, 251, 244, 0.72);
}

.services-theme .advisory-case img,
.services-theme .brand-wall img,
.services-theme .reviews-source img {
  opacity: 0.82;
}

.services-theme .training-duration {
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
  border-color: rgba(255, 255, 255, 0.16);
}

.services-theme .training-duration b {
  font-weight: 650;
}

.services-theme .training-photo-area,
.services-theme .brand-wall {
  margin-left: calc(min(190px, 34%) + clamp(24px, 5vw, 70px));
}

.services-theme .training-photo-area h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.services-theme .training-photo-grid {
  gap: 8px;
}

.services-theme .training-photo-grid div {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 26, 29, 0.18);
}

.services-theme .brand-wall img,
.services-theme .reviews-source img {
  background: transparent;
}

.services-theme .service-reviews h2,
.services-theme .services-contact h2 {
  font-size: clamp(38px, 5.6vw, 68px);
}

.services-theme .service-review-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-theme .service-review-grid blockquote,
.services-theme .service-review-grid .review-featured {
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

.services-theme .service-review-grid p,
.services-theme .service-review-grid .review-featured p {
  max-width: 900px;
  font-size: clamp(21px, 2.4vw, 31px);
}

@media (max-width: 760px) {
  .services-theme .project-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-theme .project-heading h2,
  .services-theme .project-heading h3,
  .services-theme .project-heading > span {
    grid-column: 1;
    grid-row: auto;
  }

  .services-theme .service-tags,
  .services-theme .process-flow,
  .services-theme .service-proof-quote,
  .services-theme .case-label,
  .services-theme .advisory-case,
  .services-theme .training-duration,
  .services-theme .training-photo-area,
  .services-theme .brand-wall {
    margin-left: 0;
  }

  .services-theme .advisory-case {
    grid-template-columns: 1fr;
  }
}

/* Services hierarchy reset: same information architecture for every project */
body.services-theme .services-page {
  width: min(980px, calc(100% - 40px));
}

body.services-theme .services-hero {
  min-height: 360px;
}

body.services-theme .services-hero h1 {
  font-size: clamp(52px, 8vw, 88px);
}

body.services-theme .service-section {
  padding: clamp(46px, 6vw, 76px) 0;
}

body.services-theme .project-heading {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  margin-bottom: 26px;
}

body.services-theme .project-heading > p {
  grid-column: 1;
  grid-row: 1;
  margin: 10px 0 0;
  color: rgba(247, 251, 244, 0.56);
  font-size: 11px;
}

body.services-theme .project-heading h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
}

body.services-theme .project-heading h3 {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
}

body.services-theme .service-brief {
  margin-left: calc(128px + clamp(20px, 4vw, 52px));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.services-theme .service-brief section {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.services-theme .service-brief h3 {
  margin: 0;
  color: rgba(247, 251, 244, 0.56);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
}

body.services-theme .service-brief p {
  margin: 0;
  color: rgba(247, 251, 244, 0.84);
  font-size: clamp(23px, 2.15vw, 29px);
  line-height: 1.62;
}

body.services-theme .service-brief section {
  grid-template-columns: 155px minmax(0, 1fr);
  padding: 24px 0;
}

body.services-theme .service-brief b {
  color: var(--glass-ink);
  font-weight: 720;
}

body.services-theme .brief-flow {
  white-space: normal;
}

body.services-theme .service-evidence,
body.services-theme .training-photo-area,
body.services-theme .brand-wall {
  margin-left: calc(128px + clamp(20px, 4vw, 52px));
}

body.services-theme .service-evidence {
  margin-top: 28px;
  opacity: 0.78;
}

body.services-theme .service-evidence img {
  width: 100%;
  display: block;
}

body.services-theme .service-evidence figcaption {
  margin-top: 10px;
  color: rgba(247, 251, 244, 0.5);
  font-size: 12px;
}

body.services-theme .training-photo-area {
  margin-top: 32px;
}

body.services-theme .training-photo-area h3 {
  font-size: clamp(22px, 2.7vw, 32px);
}

body.services-theme .training-photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.services-theme .brand-wall {
  margin-top: 30px;
}

@media (max-width: 760px) {
  body.services-theme .project-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.services-theme .project-heading > p,
  body.services-theme .project-heading h2,
  body.services-theme .project-heading h3 {
    grid-column: 1;
    grid-row: auto;
  }

  body.services-theme .service-brief,
  body.services-theme .service-evidence,
  body.services-theme .training-photo-area,
  body.services-theme .brand-wall {
    margin-left: 0;
  }

  body.services-theme .service-brief section {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Compact services rhythm */
.services-theme .service-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.services-theme .project-heading {
  margin-bottom: 28px;
}

.services-theme .project-heading h2 {
  font-size: clamp(52px, 7vw, 84px);
}

.services-theme .project-heading h3 {
  margin: 18px 0 10px;
  font-size: clamp(25px, 3.2vw, 39px);
}

.services-theme .process-flow {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 0;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-theme .process-flow span {
  flex: 0 0 auto;
  color: var(--glass-ink);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 720;
}

.services-theme .process-flow i {
  flex: 0 0 auto;
  transform: none;
  color: rgba(247, 251, 244, 0.62);
  font-size: 19px;
}

.services-theme .service-proof-quote {
  margin-top: 42px;
}

.services-theme .service-proof-quote p {
  font-size: clamp(23px, 3vw, 37px);
}

.services-theme .advisory-case {
  padding: clamp(22px, 3vw, 36px);
}

.services-theme .case-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 39px);
}

.services-theme .case-copy li {
  padding: 11px 0;
}

.services-theme .case-copy blockquote {
  margin-top: 28px;
}

.services-theme .training-duration {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-theme .training-duration p {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 0;
  border: 0;
}

.services-theme .training-duration b {
  flex: 0 0 auto;
  font-size: 20px;
}

.services-theme .training-duration span {
  color: rgba(247, 251, 244, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.services-theme .training-duration > i {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.22);
}

.services-theme .training-photo-area {
  margin-top: 52px;
}

.services-theme .brand-wall {
  margin-top: 48px;
}

.services-theme .service-reviews {
  padding: clamp(64px, 9vw, 106px) 0;
}

.services-theme .service-reviews header {
  margin-bottom: 36px;
}

.services-theme .service-review-grid blockquote {
  min-height: 185px;
}

.services-theme .service-review-grid .review-featured {
  min-height: 230px;
}

.services-theme .reviews-source {
  margin-top: 32px;
}

.services-theme .services-contact {
  min-height: 450px;
}

@media (max-width: 620px) {
  .services-theme .training-duration {
    display: flex;
    gap: 12px;
  }

  .services-theme .training-duration > i {
    width: 1px;
    height: auto;
  }

  .services-theme .training-duration p {
    display: grid;
    gap: 5px;
  }

  .services-theme .training-duration b {
    font-size: 17px;
  }

  .services-theme .training-duration span {
    font-size: 12px;
  }
}

/* Glass visual system prototype: homepage + career notes */
.glass-theme {
  --glass-ink: #f7fbf4;
  --glass-soft: rgba(247, 251, 244, 0.72);
  --glass-muted: rgba(247, 251, 244, 0.48);
  --glass-line: rgba(255, 255, 255, 0.46);
  --glass-panel: rgba(222, 241, 228, 0.18);
  --glass-deep: #071a1d;
  color: var(--glass-ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(211, 237, 229, 0.72), transparent 28%),
    radial-gradient(circle at 20% 44%, rgba(56, 98, 87, 0.62), transparent 34%),
    linear-gradient(145deg, #051317 0%, #16313a 42%, #d7e8df 100%);
}

.glass-theme::before {
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  mask-image: none;
}

.glass-theme::after {
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.09) 0,
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px,
      transparent 7px
    );
}

.glass-theme .site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(24px) saturate(1.25);
}

.glass-theme .wordmark,
.glass-theme .nav-links a:hover,
.glass-theme .eyebrow,
.glass-theme .entry-number {
  color: var(--glass-ink);
}

.glass-theme .nav-links {
  color: var(--glass-soft);
}

.glass-home .hero {
  min-height: calc(100vh - 88px);
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  padding-top: clamp(58px, 8vw, 100px);
}

.glass-home .hero::after {
  right: calc(50% - 50vw);
  top: 0;
  width: min(48vw, 640px);
  height: min(72vh, 700px);
  border: 0;
  border-radius: 0;
  opacity: 0.5;
  background:
    linear-gradient(90deg, rgba(7, 26, 29, 0.96) 0%, rgba(7, 26, 29, 0.2) 28%, rgba(7, 26, 29, 0.12) 66%, rgba(7, 26, 29, 0.82) 100%),
    linear-gradient(180deg, rgba(247, 251, 244, 0.12), rgba(7, 26, 29, 0.04) 42%, rgba(7, 26, 29, 0.9)),
    url("./assets/yuni-home-portrait.jpg");
  background-size: cover;
  background-position: center top;
  box-shadow: none;
  filter: saturate(0) contrast(1.06) brightness(1.18);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 74%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
}

.glass-home .hero::before {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    radial-gradient(ellipse at 78% 34%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(ellipse at 13% 16%, rgba(9, 36, 47, 0.92), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 62%);
}

.glass-home .hero-copy {
  z-index: 2;
  max-width: 690px;
}

.hero-orbit {
  position: relative;
  z-index: 3;
  width: min(28vw, 310px);
  min-height: 210px;
  justify-self: end;
  align-self: end;
  margin: 0 6vw 7vh 0;
  pointer-events: auto;
}

.orbit-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(236, 250, 239, 0.22), rgba(236, 250, 239, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 26px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px) saturate(1.28);
}

.orbit-card span,
.orbit-card em {
  display: block;
  color: rgba(247, 251, 244, 0.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.25;
}

.orbit-card-proof {
  inset: auto 0 0 auto;
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 30px;
}

.orbit-card-proof span {
  font-size: 11px;
  letter-spacing: 0;
}

.orbit-card-proof dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.orbit-card-proof div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.orbit-card-proof dt {
  color: var(--glass-ink);
  font-size: 22px;
  font-weight: 720;
  line-height: 1;
}

.orbit-card-proof dd {
  margin: 0;
  color: rgba(247, 251, 244, 0.7);
  font-size: 13px;
  line-height: 1.3;
}

.glass-home .hero h1 {
  max-width: 740px;
  font-family: var(--sans);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.98;
  font-weight: 520;
  text-wrap: balance;
  white-space: normal;
  text-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

.glass-home .hero h1::after {
  width: 0;
  height: 0;
  margin: 0;
}

.glass-home .hero-intro {
  max-width: 630px;
  margin-top: 28px;
  padding: 0 0 0 clamp(16px, 2vw, 26px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  color: var(--glass-soft);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.glass-home .intro-main {
  color: var(--glass-ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 560;
  line-height: 1.7;
}

.glass-home .intro-secondary,
.glass-home .intro-note {
  color: var(--glass-soft);
}

.glass-home .hero-index {
  grid-column: 1;
  width: min(100%, 560px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  border: 0;
  box-shadow: none;
  align-self: start;
  margin-top: -18px;
}

.glass-home .hero-index a,
.glass-home .business-proof a,
.glass-home .method-actions a,
.glass-home .method-actions div,
.glass-home .email-card,
.glass-home .voice-links > span,
.glass-home .voice-links > a {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 22px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(26px) saturate(1.18);
}

.glass-home .hero-index a {
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-home .hero-index a:hover,
.glass-home .business-proof a:hover {
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-4px);
}

.glass-home .hero-index span,
.glass-home .hero-index em,
.glass-home .business-proof span,
.glass-home .business-proof p,
.glass-home .email-card p {
  color: var(--glass-soft);
}

.glass-home .hero-index b,
.glass-home .business-proof b,
.glass-home .email-card a {
  color: var(--glass-ink);
  font-family: var(--sans);
  font-weight: 560;
}

.glass-home .hero-index span {
  display: none;
}

.glass-home .hero-index b {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 620;
}

.glass-home .hero-index em {
  display: none;
}

.glass-home .universe-list {
  width: min(1180px, calc(100% - 40px));
}

.glass-home .universe-entry {
  min-height: auto;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 44px;
  color: var(--glass-soft);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 28px 90px rgba(3, 16, 18, 0.22);
  backdrop-filter: blur(30px) saturate(1.22);
}

.glass-home .universe-entry::before {
  display: none;
}

.glass-home .universe-entry:hover h2 {
  color: var(--glass-ink);
}

.glass-home .entry-copy h2,
.glass-home .business-headline h2 {
  color: var(--glass-ink);
  font-family: var(--sans);
  font-weight: 520;
}

.glass-home .subtitle,
.glass-home .entry-copy p:not(.entry-number):not(.subtitle),
.glass-home .business-notes p,
.glass-home .method-actions p {
  color: var(--glass-soft);
}

.glass-home .business-proof {
  gap: 14px;
}

.glass-home .business-proof a:nth-child(2),
.glass-home .business-proof a:nth-child(3) {
  margin: 0;
}

.glass-home .method-actions {
  gap: 14px;
  border: 0;
}

.glass-home .method-actions a:nth-child(1),
.glass-home .method-actions a:nth-child(2),
.glass-home .method-actions a:nth-child(3),
.glass-home .method-actions div:nth-child(1),
.glass-home .method-actions div:nth-child(2),
.glass-home .method-actions div:nth-child(3) {
  margin: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08) !important;
}

.glass-home .method-actions a {
  margin: 0;
  border-bottom: 0;
}

.glass-home .method-actions span,
.glass-home .method-actions a:nth-child(1) span,
.glass-home .method-actions div:nth-child(1) span,
.glass-home .method-actions b,
.glass-home .voice-links b,
.glass-home .email-card span {
  color: var(--glass-ink);
}

.glass-home .voice-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.glass-home .voice-links > span,
.glass-home .voice-links > a {
  min-height: 0;
  padding: 20px 46px 20px 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.glass-home .voice-links > span:last-child,
.glass-home .voice-links > a:last-child {
  border-right: 0;
}

.glass-home .voice-links > span:hover,
.glass-home .voice-links > a:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: none;
}

.glass-home .voice-links em {
  color: rgba(247, 251, 244, 0.58);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.glass-home .voice-links > span::after,
.glass-home .voice-links > a::after {
  color: rgba(247, 251, 244, 0.72);
}

.glass-home .voice-links > span:hover::after,
.glass-home .voice-links > a:hover::after {
  color: var(--glass-ink);
}

.glass-home .email-card {
  align-self: stretch;
  align-content: center;
}

.glass-home .email-card a {
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 620;
}

.glass-home .email-card span {
  color: var(--red-bright);
}

.glass-home .connect-entry {
  border-color: rgba(247, 251, 244, 0.5);
  background:
    linear-gradient(90deg, rgba(216, 66, 56, 0.24) 0 5px, transparent 5px),
    linear-gradient(145deg, rgba(18, 31, 32, 0.98), rgba(4, 14, 16, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 28px 90px rgba(3, 16, 18, 0.42);
}

.glass-home .connect-entry .entry-number,
.glass-home .connect-entry h2,
.glass-home .connect-entry .subtitle {
  color: #f7fbf4;
}

.glass-home .connect-entry .entry-copy p:not(.entry-number):not(.subtitle) {
  color: rgba(247, 251, 244, 0.82);
}

.glass-home .connect-entry .email-card {
  border-color: rgba(247, 251, 244, 0.46);
  background:
    linear-gradient(145deg, rgba(247, 251, 244, 0.18), rgba(247, 251, 244, 0.06)),
    rgba(2, 12, 14, 0.92);
}

.glass-home .connect-entry .email-card a {
  color: #f7fbf4;
}

.glass-home .connect-entry .email-card p {
  color: rgba(247, 251, 244, 0.84);
}

.glass-notes .story-page {
  width: min(1180px, calc(100% - 40px));
  position: relative;
  isolation: isolate;
}

.glass-notes .career-notes-hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0 clamp(22px, 4vw, 42px);
  border-bottom: 0;
}

.glass-notes .career-notes-hero::before {
  content: "";
  position: absolute;
  inset: 70px calc(50% - 50vw) auto calc(50% - 50vw);
  height: min(78vh, 780px);
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 18% 26%, rgba(247, 251, 244, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(218, 235, 226, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(7, 26, 29, 0.58), rgba(218, 235, 226, 0.18));
  background-size: 34px 34px, auto, auto, auto;
  filter: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, transparent 100%);
}

.glass-notes .career-notes-hero h1 {
  max-width: 760px;
  color: var(--glass-ink);
  font-family: var(--sans);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.98;
  font-weight: 520;
}

.glass-notes .career-notes-hero p:not(.eyebrow) {
  grid-column: auto;
  max-width: 560px;
  margin-top: 26px;
  color: var(--glass-soft);
  font-size: clamp(16px, 1.38vw, 19px);
  line-height: 1.78;
}

.notes-floating-panel {
  align-self: end;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 46px;
  background: rgba(219, 238, 227, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(32px) saturate(1.26);
}

.notes-floating-panel span {
  color: var(--glass-soft);
  font-size: 13px;
  font-weight: 800;
}

.notes-floating-panel b {
  display: block;
  margin-top: 44px;
  color: var(--glass-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 520;
}

.notes-floating-panel p {
  margin: 16px 0 0;
  color: var(--glass-soft);
  font-size: 16px;
  line-height: 1.6;
}

.glass-notes .career-subnav {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}

.glass-notes .career-subnav a {
  border-right-color: rgba(255, 255, 255, 0.18);
  color: var(--glass-soft);
}

.glass-notes .career-subnav a:hover {
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.16);
}

.glass-notes .career-notes-editorial {
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 48px);
  padding-top: clamp(26px, 5vw, 58px);
}

.glass-notes .notes-photo-strip {
  position: absolute;
  left: calc(50% - 50vw);
  top: clamp(18px, 5vw, 58px);
  z-index: 0;
  width: min(72vw, 940px);
  height: min(104vh, 980px);
  min-height: 0;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  opacity: 0.88;
  pointer-events: none;
}

.glass-notes .notes-photo-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: scale(1.34);
  transform-origin: 64% 15%;
  filter: saturate(0) contrast(1.12) brightness(0.98);
  mask-image:
    linear-gradient(90deg, #000 0%, #000 56%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

.glass-notes .notes-photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  background:
    linear-gradient(90deg, rgba(7, 26, 29, 0), rgba(7, 26, 29, 0.02) 46%, rgba(7, 26, 29, 0.68)),
    linear-gradient(180deg, rgba(7, 26, 29, 0), rgba(7, 26, 29, 0.1) 64%, rgba(7, 26, 29, 0.8));
  pointer-events: none;
}

.glass-notes .notes-manifesto,
.glass-notes .note-fragment,
.glass-notes .note-fragment.is-wide,
.glass-notes .note-fragment.is-large,
.glass-notes .note-fragment.is-offset {
  grid-column: 2;
  margin: 0;
  position: relative;
  z-index: 1;
}

.glass-notes .notes-manifesto {
  grid-template-columns: 110px 1fr;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(26px) saturate(1.16);
}

.glass-notes .notes-manifesto span,
.glass-notes .note-kicker,
.glass-notes .note-num {
  color: var(--glass-ink);
}

.glass-notes .note-kicker {
  width: fit-content;
  margin: 0 0 clamp(14px, 2vw, 22px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(247, 251, 244, 0.86);
  font-size: clamp(15px, 1.55vw, 21px);
  line-height: 1;
  font-weight: 760;
  text-transform: none;
}

.glass-notes .notes-manifesto p {
  color: var(--glass-soft);
}

.glass-notes .note-fragment {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 28px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(28px) saturate(1.18);
}

.glass-notes .note-fragment:nth-of-type(n + 6) {
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(11, 35, 39, 0.52), rgba(7, 26, 29, 0.36)),
    rgba(7, 26, 29, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 80px rgba(0, 0, 0, 0.2);
}

.glass-notes .note-fragment h2 {
  color: var(--glass-ink);
  font-family: var(--sans);
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 540;
}

.glass-notes .note-fragment p:not(.note-kicker) {
  color: var(--glass-soft);
  font-size: clamp(15px, 1.26vw, 18px);
  line-height: 1.86;
}

@media (max-width: 900px) {
  .glass-home .hero,
  .glass-notes .career-notes-hero,
  .glass-notes .career-notes-editorial {
    grid-template-columns: 1fr;
  }

  .glass-home .hero {
    align-content: start;
    gap: clamp(18px, 5vw, 30px);
    padding-top: clamp(24px, 6vw, 42px);
  }

  .glass-home .hero::after {
    position: absolute;
    grid-column: 1;
    grid-row: auto;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    top: 0;
    width: auto;
    height: clamp(300px, 72vw, 390px);
    justify-self: auto;
    opacity: 0.56;
    background-position: 56% top;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 9%, #000 88%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  }

  .glass-home .hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
    padding-top: clamp(210px, 50vw, 270px);
  }

  .glass-home .hero-index {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
  }

  .glass-notes .notes-photo-strip,
  .glass-notes .notes-manifesto,
  .glass-notes .note-fragment,
  .glass-notes .note-fragment.is-wide,
  .glass-notes .note-fragment.is-large,
  .glass-notes .note-fragment.is-offset {
    grid-column: 1;
  }

  .glass-notes .notes-photo-strip {
    position: absolute;
    left: calc(50% - 50vw);
    top: clamp(8px, 3vw, 28px);
    width: 100vw;
    height: clamp(440px, 116vw, 640px);
    min-height: 0;
    margin: 0;
    opacity: 0.76;
  }

  .glass-notes .notes-photo-strip img {
    width: min(120vw, 700px);
    object-position: left top;
    transform: scale(1.5) translateX(-7vw);
    transform-origin: 68% 10%;
    mask-image:
      linear-gradient(90deg, #000 0%, #000 52%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
  }

  .glass-notes .notes-photo-strip::after {
    width: 100vw;
    background:
      linear-gradient(90deg, rgba(7, 26, 29, 0.02), rgba(7, 26, 29, 0.2) 42%, rgba(7, 26, 29, 0.9)),
      linear-gradient(180deg, rgba(7, 26, 29, 0.02), rgba(7, 26, 29, 0.52) 48%, rgba(7, 26, 29, 0.96));
  }
}

@media (max-width: 620px) {
  .glass-theme .site-header {
    width: min(100% - 24px, 1180px);
    border-radius: 26px;
  }

  .glass-home .hero,
  .glass-home .universe-list,
  .glass-notes .story-page {
    width: min(100% - 24px, 1180px);
  }

  .glass-home .hero h1,
  .glass-notes .career-notes-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .glass-home .hero::after {
    height: clamp(270px, 70vw, 340px);
    border-radius: 0;
  }

  .glass-home .hero-index {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
  }

  .glass-home .hero-index a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .glass-home .universe-entry {
    border-radius: 32px;
  }

  .glass-notes .notes-manifesto,
  .glass-notes .note-fragment {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }
}

/* Glass visual system for Career detail pages */
.glass-story.career-story-theme,
.glass-brand.brand-library-theme {
  background:
    radial-gradient(circle at 82% 9%, rgba(226, 242, 235, 0.58), transparent 25%),
    radial-gradient(circle at 14% 28%, rgba(42, 86, 81, 0.72), transparent 34%),
    linear-gradient(145deg, #061316 0%, #18353b 45%, #cfe3dc 100%);
}

.glass-story.career-story-theme::before,
.glass-brand.brand-library-theme::before {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  mask-image: none;
}

.glass-story .story-page,
.glass-brand .brand-library {
  width: min(1180px, calc(100% - 40px));
}

.glass-story .story-hero,
.glass-brand .brand-hero {
  position: relative;
  min-height: clamp(360px, 56vh, 620px);
  display: grid;
  align-content: end;
  padding: clamp(80px, 10vw, 132px) clamp(22px, 4vw, 52px) clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 46px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 90px rgba(3, 16, 18, 0.18);
  backdrop-filter: blur(30px) saturate(1.18);
}

.glass-story .story-hero::before,
.glass-brand .brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(7, 26, 29, 0.86), rgba(7, 26, 29, 0.2) 56%, rgba(7, 26, 29, 0.8)),
    url("./assets/career-notes-bg.jpg");
  background-size: cover;
  background-position: center 45%;
  filter: saturate(0.55) brightness(0.92);
}

.glass-story .story-hero::after,
.glass-brand .brand-hero::after {
  display: none;
}

.glass-story .story-hero h1,
.glass-brand .brand-hero h1 {
  max-width: 820px;
  color: var(--glass-ink);
  font-family: var(--sans);
  font-size: clamp(48px, 7vw, 94px);
  line-height: 1;
  font-weight: 520;
  text-wrap: balance;
}

.glass-story .story-hero .eyebrow,
.glass-brand .brand-hero .eyebrow,
.glass-story .story-side-note span,
.glass-brand .brand-source {
  color: rgba(247, 251, 244, 0.72);
}

.glass-brand .brand-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.32fr);
  gap: clamp(26px, 5vw, 70px);
  min-height: auto;
  align-content: center;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 4vw, 52px);
}

.glass-brand .brand-hero::before {
  opacity: 0.62;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, rgba(7, 26, 29, 0.82), rgba(7, 26, 29, 0.12) 56%, rgba(7, 26, 29, 0.5)),
    radial-gradient(circle at 18% 24%, rgba(247, 251, 244, 0.22), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(247, 251, 244, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(18, 56, 61, 0.86), rgba(198, 223, 214, 0.2));
  background-size: 34px 34px, auto, auto, auto, auto;
  filter: none;
}

.glass-brand .brand-hero p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  color: rgba(247, 251, 244, 0.72);
  font-size: clamp(15px, 1.2vw, 17px);
}

.glass-story .story-body {
  margin-top: clamp(42px, 7vw, 86px);
}

.glass-story .story-article {
  color: rgba(247, 251, 244, 0.78);
}

.glass-story .story-article p,
.glass-story .story-article li {
  color: rgba(247, 251, 244, 0.78);
}

.glass-story .story-marker,
.glass-story .story-highlight,
.glass-story .story-margin-note,
.glass-story .story-quote,
.glass-story .story-extra-proof figure {
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px) saturate(1.14);
}

.glass-story .story-marker {
  padding: clamp(22px, 3vw, 34px);
}

.glass-story .story-marker h2,
.glass-story .story-article h2 {
  color: var(--glass-ink);
  font-family: var(--sans);
  font-weight: 540;
}

.glass-story .story-quote {
  color: var(--glass-ink);
}

.glass-story .story-inline-photo,
.glass-story .story-extra-proof img {
  border: 0;
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.glass-brand .brand-filter {
  gap: 8px;
}

.glass-brand .brand-filter span,
.glass-brand .career-subnav,
.glass-story .career-subnav {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(247, 251, 244, 0.74);
  backdrop-filter: blur(22px) saturate(1.16);
}

.glass-brand .brand-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 24px 80px rgba(3, 16, 18, 0.18);
  backdrop-filter: blur(26px) saturate(1.16);
}

.glass-brand .brand-card::before {
  content: counter(brand-card, decimal-leading-zero);
  position: absolute;
  top: clamp(22px, 3vw, 32px);
  right: clamp(22px, 3vw, 32px);
  color: rgba(247, 251, 244, 0.34);
  font-size: 12px;
  font-weight: 850;
}

.glass-brand .brand-masonry {
  counter-reset: brand-card;
}

.glass-brand .brand-card {
  counter-increment: brand-card;
}

.glass-brand .brand-card:hover {
  border-color: rgba(255, 255, 255, 0.46);
  transform: translateY(-5px);
}

.glass-brand .brand-card-image {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 18, 20, 0.22);
}

.glass-brand .brand-card-copy {
  background: transparent;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  min-height: clamp(260px, 30vw, 360px);
  padding: clamp(24px, 3.2vw, 36px);
}

.glass-brand .brand-card.is-short .brand-card-copy {
  min-height: clamp(220px, 24vw, 280px);
}

.glass-brand .brand-card.is-tall .brand-card-copy {
  min-height: clamp(320px, 40vw, 440px);
}

.glass-brand .brand-card h2 {
  margin: 0;
  color: var(--glass-ink);
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 560;
}

.glass-brand .brand-source {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 244, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.glass-brand .brand-card p:not(.brand-source) {
  margin: 0;
  align-self: end;
  padding-top: clamp(18px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.82;
}

.glass-brand .brand-card em {
  justify-self: start;
  margin: 0;
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.glass-brand .brand-card p:not(.brand-source),
.glass-brand .brand-card em {
  color: rgba(247, 251, 244, 0.72);
}

.method-actions .method-course-link {
  position: relative;
  display: block;
  padding: clamp(22px, 3vw, 34px) clamp(0px, 2vw, 22px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  background:
    linear-gradient(90deg, rgba(184, 50, 43, 0.56) 0 2px, transparent 2px),
    rgba(244, 239, 230, 0.035);
}

.method-actions .method-service-link {
  background:
    linear-gradient(90deg, rgba(49, 88, 121, 0.65) 0 2px, transparent 2px),
    rgba(244, 239, 230, 0.025);
}

/* Consulting, advisory and brand training */
.services-theme {
  min-height: 100vh;
}

.services-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 140px) 0 140px;
}

.services-hero {
  min-height: min(680px, 82vh);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  gap: clamp(28px, 6vw, 82px);
  align-content: center;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.services-kicker,
.service-heading > p {
  color: rgba(247, 251, 244, 0.64);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.services-hero .services-kicker {
  grid-column: 1 / 3;
}

.services-hero h1 {
  margin: 14px 0 0;
  color: var(--glass-ink);
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.94;
  font-weight: 520;
}

.services-hero > p:last-child {
  margin: 0 0 12px;
  color: rgba(247, 251, 244, 0.82);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.85;
}

.services-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.services-index a {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.services-index a:last-child {
  border-right: 0;
}

.services-index span,
.services-index small {
  color: rgba(247, 251, 244, 0.6);
  font-size: 12px;
}

.services-index b {
  color: var(--glass-ink);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 560;
}

.service-section {
  scroll-margin-top: 90px;
  padding: clamp(90px, 13vw, 170px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.32fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 96px);
}

.service-heading > p {
  grid-column: 1 / 3;
  margin: 0;
}

.service-heading h2 {
  margin: 0;
  color: var(--glass-ink);
  font-size: clamp(44px, 6.7vw, 84px);
  line-height: 1.04;
  font-weight: 520;
}

.service-heading > span {
  color: rgba(247, 251, 244, 0.78);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.8;
}

.consulting-directions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.consulting-directions p {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--glass-ink);
  line-height: 1.45;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.service-process article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 26, 29, 0.28);
}

.service-process span {
  display: block;
  margin-bottom: 54px;
  color: rgba(247, 251, 244, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.service-process b {
  color: var(--glass-ink);
  font-size: 22px;
}

.service-process p {
  color: rgba(247, 251, 244, 0.74);
  line-height: 1.7;
}

.service-proof-quote {
  width: min(840px, 86%);
  margin: 80px 0 0 auto;
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 2px solid rgba(247, 251, 244, 0.7);
}

.service-proof-quote p {
  margin: 0;
  color: var(--glass-ink);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.35;
}

.advisory-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.case-copy h3 {
  margin: 18px 0 32px;
  color: var(--glass-ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 540;
}

.case-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-copy li {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(247, 251, 244, 0.78);
  line-height: 1.6;
}

.case-copy blockquote {
  margin: 52px 0 0;
}

.case-copy blockquote p {
  color: var(--glass-ink);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.45;
}

.case-copy cite,
.service-review-grid cite {
  color: rgba(247, 251, 244, 0.56);
  font-size: 12px;
  font-style: normal;
}

.advisory-case figure,
.brand-wall,
.reviews-source {
  margin: 0;
}

.advisory-case img,
.brand-wall img,
.reviews-source img {
  width: 100%;
  display: block;
}

.advisory-case figcaption,
.brand-wall figcaption {
  margin-bottom: 12px;
  color: rgba(247, 251, 244, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.training-format {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 70px;
}

.training-format p {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 26, 29, 0.26);
}

.training-format b {
  color: var(--glass-ink);
  font-size: 24px;
}

.training-format span {
  color: rgba(247, 251, 244, 0.72);
}

.training-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.training-programs article {
  min-height: 250px;
  padding: 30px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.training-programs article:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.training-programs span {
  color: rgba(247, 251, 244, 0.55);
  font-size: 12px;
  font-weight: 850;
}

.training-programs h3 {
  margin: 46px 0 12px;
  color: var(--glass-ink);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 540;
}

.training-programs p {
  color: rgba(247, 251, 244, 0.72);
  line-height: 1.7;
}

.brand-wall {
  margin-top: 80px;
}

.brand-wall img {
  background: #f5f8fa;
}

.service-reviews {
  padding: clamp(100px, 14vw, 180px) 0;
}

.service-reviews header {
  max-width: 760px;
  margin-bottom: 64px;
}

.service-reviews h2,
.services-contact h2 {
  margin: 16px 0 0;
  color: var(--glass-ink);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.03;
  font-weight: 520;
}

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

.service-review-grid blockquote {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 30px;
  margin: 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 26, 29, 0.3);
}

.service-review-grid p {
  margin: 0;
  color: var(--glass-ink);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.5;
}

.service-review-grid .review-featured {
  grid-column: 1 / 3;
  min-height: 320px;
}

.service-review-grid .review-featured p {
  max-width: 920px;
  font-size: clamp(30px, 4vw, 52px);
}

.reviews-source {
  margin-top: 54px;
  overflow: hidden;
  max-height: 560px;
}

.reviews-source img {
  opacity: 0.86;
}

.services-contact {
  min-height: 620px;
  display: grid;
  align-content: center;
  padding: clamp(80px, 12vw, 150px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.services-contact > p:not(.services-kicker) {
  max-width: 700px;
  margin: 32px 0;
  color: rgba(247, 251, 244, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.contact-wechat {
  width: fit-content;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-wechat span {
  color: rgba(247, 251, 244, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.contact-wechat b {
  color: var(--glass-ink);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 560;
}

/* Services page, independent project structure */
.services-hero {
  min-height: 470px;
  padding-top: 70px;
}

.services-hero h1 {
  font-size: clamp(58px, 9vw, 112px);
}

.project-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.project-heading > p {
  margin: 0 0 18px;
  color: rgba(247, 251, 244, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-heading h2 {
  margin: 0;
  color: var(--glass-ink);
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.95;
  font-weight: 520;
}

.project-heading h3 {
  margin: 26px 0 12px;
  color: var(--glass-ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 520;
}

.project-heading > span {
  display: block;
  max-width: 760px;
  color: rgba(247, 251, 244, 0.78);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 26, 29, 0.24);
  color: rgba(247, 251, 244, 0.9);
  font-size: 14px;
  font-weight: 720;
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 52px;
}

.process-flow div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-flow span {
  color: rgba(247, 251, 244, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.process-flow b {
  color: var(--glass-ink);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.35;
}

.process-flow i {
  color: rgba(247, 251, 244, 0.64);
  font-size: 24px;
  font-style: normal;
}

.case-label {
  margin: 0 0 24px;
  color: var(--glass-ink);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 720;
}

.advisory-case {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 26, 29, 0.3);
}

.training-tags {
  max-width: 900px;
}

.training-duration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.training-duration p {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  margin: 0;
  padding: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.training-duration span {
  color: rgba(247, 251, 244, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.training-duration b {
  color: var(--glass-ink);
  font-size: clamp(21px, 2.5vw, 30px);
}

.training-duration small {
  color: rgba(247, 251, 244, 0.72);
  font-size: 14px;
}

.training-photo-area {
  margin-top: 90px;
}

.training-photo-area header {
  margin-bottom: 28px;
}

.training-photo-area h3 {
  margin: 10px 0;
  color: var(--glass-ink);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 520;
}

.training-photo-area header > span {
  color: rgba(247, 251, 244, 0.68);
}

.training-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.training-photo-grid div {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(7, 26, 29, 0.34));
}

.training-photo-grid span {
  color: rgba(247, 251, 244, 0.44);
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 900px) {
  .services-hero,
  .advisory-case {
    grid-template-columns: 1fr;
  }

  .services-hero .services-kicker {
    grid-column: 1;
  }

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

  .process-flow i {
    transform: rotate(90deg);
    justify-self: center;
  }

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

@media (max-width: 620px) {
  .services-page {
    width: min(100% - 24px, 1180px);
    padding-top: 48px;
  }

  .services-hero {
    min-height: 610px;
  }

  .training-duration,
  .service-review-grid {
    grid-template-columns: 1fr;
  }

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

  .service-review-grid .review-featured {
    grid-column: auto;
  }

  .reviews-source {
    max-height: none;
  }
}

.courses-theme {
  min-height: 100vh;
}

.courses-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 100px) 0 clamp(90px, 12vw, 150px);
}

.courses-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  padding: clamp(42px, 6vw, 74px) clamp(22px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 90px rgba(3, 16, 18, 0.16);
  backdrop-filter: blur(28px) saturate(1.16);
}

.courses-hero h1 {
  grid-column: 1;
  margin: 18px 0 0;
  font-size: clamp(52px, 8vw, 106px);
  line-height: 0.98;
  font-weight: 520;
}

.courses-hero > p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--glass-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.course-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.course-index a {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(24px);
}

.course-index a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.17);
}

.course-index span,
.course-number,
.course-label {
  color: rgba(247, 251, 244, 0.64);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.course-index b {
  color: var(--glass-ink);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 560;
}

.course-price {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(7, 26, 29, 0.24);
  color: var(--glass-ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.course-tags em {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(247, 251, 244, 0.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
}

.course-index p {
  margin: 0;
  color: var(--glass-soft);
  font-size: 14px;
  line-height: 1.65;
}

.course-detail {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(80px, 12vw, 150px);
  padding-top: clamp(28px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.course-heading {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.34fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(20px, 4vw, 42px);
}

.course-heading h2 {
  grid-column: 1;
  margin: 12px 0 0;
  color: var(--glass-ink);
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: 1;
  font-weight: 520;
}

.course-heading > p:last-child {
  grid-column: 2;
  margin: 0;
  color: var(--glass-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.course-panel,
.course-catalog,
.course-reviews {
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 24px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(26px) saturate(1.14);
}

.course-intro {
  grid-column: 1 / 8;
  padding: clamp(26px, 4vw, 44px);
}

.course-audience {
  grid-column: 8 / 13;
  padding: clamp(26px, 4vw, 44px);
}

.course-panel h3 {
  margin: 18px 0 0;
  color: var(--glass-ink);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 540;
}

.course-panel > p:not(.course-label) {
  margin: 20px 0 0;
  color: var(--glass-soft);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.85;
}

.membership-pillars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.membership-pillars p {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.membership-pillars b {
  color: var(--glass-ink);
  font-size: 18px;
}

.membership-pillars span {
  color: var(--glass-soft);
  line-height: 1.65;
}

.membership-map {
  grid-column: 2 / 12;
  padding: clamp(28px, 4vw, 48px);
}

.membership-map-heading {
  max-width: 760px;
}

.membership-map-heading h3 {
  margin-bottom: 16px;
}

.membership-map-heading > p:last-child {
  margin: 0;
  color: var(--glass-soft);
  line-height: 1.75;
}

.membership-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.membership-map-grid article {
  min-height: 158px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.membership-map-grid span,
.membership-map-grid b,
.membership-map-grid small {
  display: block;
}

.membership-map-grid span {
  margin-bottom: 22px;
  color: var(--glass-soft);
  font-size: 13px;
  font-weight: 800;
}

.membership-map-grid b {
  margin-bottom: 8px;
  color: var(--glass-ink);
  font-size: clamp(16px, 1.5vw, 20px);
}

.membership-map-grid small {
  color: var(--glass-soft);
  font-size: 13px;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.audience-grid p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--glass-soft);
  line-height: 1.65;
}

.audience-grid p b {
  color: var(--glass-ink);
  font-weight: 720;
}

.course-catalog {
  grid-column: 2 / 12;
  overflow: hidden;
}

.course-catalog summary {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  cursor: pointer;
  list-style: none;
}

.course-catalog summary::-webkit-details-marker {
  display: none;
}

.course-catalog summary span {
  flex: 0 0 auto;
  color: var(--glass-ink);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 540;
  white-space: nowrap;
}

.course-catalog summary b {
  color: var(--glass-soft);
  font-size: 14px;
  font-weight: 720;
}

.course-catalog summary::after {
  content: "+";
  color: var(--glass-ink);
  font-size: 30px;
  font-weight: 400;
}

.course-catalog[open] summary::after {
  content: "−";
}

.catalog-content {
  padding: 0 clamp(24px, 3vw, 36px) clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.catalog-module {
  padding: clamp(26px, 4vw, 42px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.catalog-module:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-module header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.catalog-module header span {
  color: rgba(247, 251, 244, 0.46);
  font-size: 13px;
  font-weight: 850;
}

.catalog-module h4 {
  margin: 0;
  color: var(--glass-ink);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.18;
  font-weight: 560;
}

.catalog-description {
  margin: 0 0 16px 48px;
  color: var(--glass-soft);
  font-size: 15px;
  line-height: 1.7;
}

.membership-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 48px;
}

.membership-topics span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 244, 0.76);
  font-size: 12px;
  font-weight: 720;
}

.catalog-subsection + .catalog-subsection,
.catalog-bonus + .catalog-subsection {
  margin-top: 26px;
}

.catalog-subsection h5 {
  margin: 0 0 12px;
  color: rgba(247, 251, 244, 0.78);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.4;
  font-weight: 680;
}

.catalog-module ol,
.catalog-module ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-module ol {
  counter-reset: catalog-item;
}

.catalog-module ol[start="8"] {
  counter-reset: catalog-item 7;
}

.catalog-module ol[start="11"] {
  counter-reset: catalog-item 10;
}

.catalog-module ol[start="14"] {
  counter-reset: catalog-item 13;
}

.catalog-module li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0 15px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.catalog-module ol li {
  counter-increment: catalog-item;
}

.catalog-module ol li::before {
  content: counter(catalog-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 17px;
  color: rgba(247, 251, 244, 0.48);
  font-size: 12px;
  font-weight: 820;
}

.catalog-module li b {
  color: rgba(247, 251, 244, 0.9);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  font-weight: 560;
}

.catalog-module li em,
.catalog-bonus em {
  color: rgba(247, 251, 244, 0.52);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.catalog-bonus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.catalog-bonus b {
  color: var(--glass-ink);
  line-height: 1.5;
}

.catalog-bonus span {
  grid-column: 1;
  color: var(--glass-soft);
  font-size: 13px;
}

.course-purchase {
  grid-column: 1 / 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
}

.course-purchase-qr-only {
  grid-template-columns: 1fr;
  justify-items: center;
}

.course-purchase-qr-only .course-qr {
  justify-self: center;
}

.qr-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(7, 26, 29, 0.32);
  background-size: 12px 12px;
}

.qr-placeholder span {
  color: var(--glass-ink);
  font-size: 28px;
  font-weight: 800;
}

.qr-placeholder p {
  margin: 0;
  color: var(--glass-soft);
  font-size: 12px;
}

.course-qr {
  width: 150px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.course-qr img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  padding: 8px;
  background: #fff;
  object-fit: contain;
}

.course-qr p {
  margin: 0;
  color: var(--glass-soft);
  font-size: 12px;
}

#growth-course .course-heading > p:last-child,
#growth-course .membership-map-heading > p:last-child,
#growth-course .audience-grid p,
#growth-course .catalog-description,
#growth-course .course-purchase > div > p:last-child,
#growth-course .review-track blockquote p {
  color: rgba(247, 251, 244, 0.88);
}

#growth-course .course-panel,
#growth-course .course-catalog,
#growth-course .course-reviews {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(7, 26, 29, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 24px 70px rgba(0, 0, 0, 0.2);
}

#growth-course .membership-map-grid,
#growth-course .membership-map-grid article,
#growth-course .audience-grid p,
#growth-course .catalog-content,
#growth-course .catalog-module {
  border-color: rgba(255, 255, 255, 0.25);
}

#growth-course .membership-map-grid small,
#growth-course .membership-map-grid span,
#growth-course .course-label,
#growth-course .course-number,
#growth-course .course-catalog summary b {
  color: rgba(247, 251, 244, 0.72);
}

.course-reviews {
  grid-column: 1 / 13;
  padding: clamp(26px, 4vw, 44px);
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.review-track blockquote {
  margin: 0;
  padding: 20px;
  border-left: 2px solid rgba(247, 251, 244, 0.54);
  background: rgba(7, 26, 29, 0.18);
  color: var(--glass-soft);
  line-height: 1.7;
}

.review-track blockquote p {
  margin: 0;
}

.review-track blockquote cite {
  display: block;
  margin-top: 18px;
  color: rgba(247, 251, 244, 0.48);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.review-track .review-long {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .glass-brand .brand-hero {
    grid-template-columns: 1fr;
  }

  .glass-brand .brand-hero p:not(.eyebrow) {
    grid-column: 1;
  }

  .courses-hero,
  .course-heading {
    grid-template-columns: 1fr;
  }

  .courses-hero > p:not(.eyebrow),
  .course-heading > p:last-child {
    grid-column: 1;
  }

  .course-index {
    grid-template-columns: 1fr;
  }

  .course-intro,
  .membership-map,
  .course-audience,
  .course-catalog,
  .course-purchase,
  .course-reviews {
    grid-column: 1 / 13;
  }

  .review-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .courses-page {
    width: min(100% - 24px, 1180px);
  }

  .courses-hero,
  .course-index a,
  .course-panel,
  .course-catalog,
  .course-reviews {
    border-radius: 28px;
  }

  .courses-hero h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .course-heading h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .course-purchase {
    grid-template-columns: 1fr;
  }

  .course-catalog summary {
    gap: 14px;
  }

  .course-catalog summary span {
    min-width: max-content;
  }

  .catalog-module li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .catalog-description,
  .membership-topics {
    margin-left: 0;
  }

  .membership-pillars p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .membership-map-grid article {
    min-height: 142px;
    padding: 17px 14px;
  }

  .catalog-module li em {
    white-space: normal;
  }

  .review-track {
    grid-template-columns: 1fr;
  }

  .review-track .review-long {
    grid-column: auto;
  }

  .qr-placeholder {
    width: min(180px, 58vw);
  }

  .course-qr {
    width: min(180px, 58vw);
  }
}

/* Final services cleanup: quiet editorial layout */
body.services-theme .services-page {
  width: min(1040px, calc(100% - 40px));
}

body.services-theme .services-hero,
body.services-theme .service-section,
body.services-theme .service-reviews,
body.services-theme .services-contact {
  border-color: rgba(255, 255, 255, 0.16);
}

body.services-theme .service-section {
  padding: clamp(52px, 7vw, 84px) 0;
}

body.services-theme .project-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  margin-bottom: 26px;
}

body.services-theme .project-heading > p {
  grid-column: 1;
  margin: 8px 0 0;
}

body.services-theme .project-heading h2 {
  grid-column: 1;
  grid-row: 2 / span 2;
  font-size: clamp(44px, 6vw, 68px);
}

body.services-theme .project-heading h3,
body.services-theme .project-heading > span {
  grid-column: 2;
}

body.services-theme .project-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}

body.services-theme .service-tags,
body.services-theme .process-flow,
body.services-theme .service-proof-quote,
body.services-theme .case-label,
body.services-theme .advisory-case,
body.services-theme .training-duration,
body.services-theme .training-photo-area,
body.services-theme .brand-wall {
  margin-left: calc(170px + clamp(22px, 5vw, 64px));
}

body.services-theme .service-tags {
  padding: 14px 0;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.services-theme .service-tags span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 251, 244, 0.78);
  font-size: 14px;
  font-weight: 600;
}

body.services-theme .service-tags span::after {
  content: "/";
  margin: 0 10px;
  color: rgba(247, 251, 244, 0.28);
}

body.services-theme .service-tags span:last-child::after {
  content: "";
  margin: 0;
}

body.services-theme .process-flow {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  padding: 16px 0 0;
  border: 0;
  overflow-x: auto;
}

body.services-theme .process-flow span {
  flex: 0 0 auto;
  color: rgba(247, 251, 244, 0.86);
  font-size: 14px;
  font-weight: 650;
}

body.services-theme .process-flow i {
  flex: 0 0 auto;
  color: rgba(247, 251, 244, 0.44);
  font-size: 18px;
  font-style: normal;
}

body.services-theme .service-proof-quote {
  width: auto;
  margin-top: 28px;
  padding: 0;
  border: 0;
}

body.services-theme .service-proof-quote p {
  color: rgba(247, 251, 244, 0.84);
  font-size: clamp(20px, 2.3vw, 28px);
}

body.services-theme .advisory-case {
  padding: 0;
  border: 0;
  background: transparent;
  gap: clamp(22px, 4vw, 44px);
}

body.services-theme .advisory-case figure,
body.services-theme .brand-wall,
body.services-theme .reviews-source {
  opacity: 0.78;
}

body.services-theme .training-duration {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.services-theme .training-duration p {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

body.services-theme .training-duration b {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 650;
}

body.services-theme .training-duration span {
  color: rgba(247, 251, 244, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

body.services-theme .training-duration > i {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.16);
}

body.services-theme .training-photo-grid div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 26, 29, 0.16);
}

body.services-theme .service-review-grid blockquote,
body.services-theme .service-review-grid .review-featured {
  min-height: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

@media (max-width: 760px) {
  body.services-theme .project-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.services-theme .project-heading > p,
  body.services-theme .project-heading h2,
  body.services-theme .project-heading h3,
  body.services-theme .project-heading > span {
    grid-column: 1;
    grid-row: auto;
  }

  body.services-theme .service-tags,
  body.services-theme .process-flow,
  body.services-theme .service-proof-quote,
  body.services-theme .case-label,
  body.services-theme .advisory-case,
  body.services-theme .training-duration,
  body.services-theme .training-photo-area,
  body.services-theme .brand-wall {
    margin-left: 0;
  }
}

/* Services page aligned with the course visual system */
body.services-theme .services-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 100px) 0 clamp(90px, 12vw, 150px);
}

body.services-theme .services-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  padding: clamp(42px, 6vw, 74px) clamp(22px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 90px rgba(3, 16, 18, 0.16);
  backdrop-filter: blur(28px) saturate(1.16);
}

body.services-theme .services-hero .services-kicker {
  grid-column: 1 / 3;
  margin: 0;
}

body.services-theme .services-hero h1 {
  grid-column: 1;
  margin: 18px 0 0;
  color: var(--glass-ink);
  font-size: clamp(52px, 8vw, 106px);
  line-height: 0.98;
  font-weight: 520;
}

body.services-theme .services-hero-intro {
  grid-column: 2;
}

body.services-theme .services-hero-intro > p:first-child {
  margin: 0;
  color: var(--glass-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

body.services-theme .services-hero-contact {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(247, 251, 244, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

body.services-theme .services-hero-contact b {
  color: var(--glass-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
}

body.services-theme .services-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

body.services-theme .services-index a {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(24px);
}

body.services-theme .services-index a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.17);
}

body.services-theme .services-index span {
  color: rgba(247, 251, 244, 0.64);
  font-size: 12px;
  font-weight: 850;
}

body.services-theme .services-index b {
  color: var(--glass-ink);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 560;
}

body.services-theme .services-index p {
  margin: 0;
  color: var(--glass-soft);
  font-size: 14px;
  line-height: 1.65;
}

body.services-theme .service-section {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(80px, 12vw, 150px);
  padding: clamp(28px, 5vw, 56px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
}

body.services-theme .project-heading {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.34fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin: 0 0 clamp(20px, 4vw, 42px);
}

body.services-theme .project-heading > p {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: rgba(247, 251, 244, 0.64);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

body.services-theme .project-heading h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 12px 0 0;
  color: var(--glass-ink);
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: 1;
  font-weight: 520;
}

body.services-theme .project-heading h3 {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  color: var(--glass-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
  font-weight: 400;
}

body.services-theme .service-brief {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin: 0;
  border: 0;
}

body.services-theme .service-brief section {
  min-height: 220px;
  display: block;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 24px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(26px) saturate(1.14);
}

body.services-theme .service-brief h3 {
  margin: 0;
  color: rgba(247, 251, 244, 0.64);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
}

body.services-theme .service-brief p {
  margin: 20px 0 0;
  color: var(--glass-soft);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.85;
}

body.services-theme .service-brief b {
  color: var(--glass-ink);
  font-weight: 720;
}

body.services-theme .service-format-lines {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

body.services-theme .service-format-lines p {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 15px;
  line-height: 1.6;
}

body.services-theme .service-format-lines span {
  color: var(--glass-soft);
}

body.services-theme .service-evidence,
body.services-theme .brand-wall {
  grid-column: 2 / 12;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  opacity: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 70px rgba(0, 0, 0, 0.1);
}

body.services-theme .service-evidence img,
body.services-theme .brand-wall img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

body.services-theme .service-evidence figcaption,
body.services-theme .brand-wall figcaption {
  margin: 0 0 14px;
  color: rgba(247, 251, 244, 0.6);
  font-size: 12px;
  line-height: 1.55;
}

body.services-theme .services-contact {
  min-height: 0;
  display: block;
  margin-top: clamp(90px, 12vw, 150px);
  padding: clamp(42px, 6vw, 74px) clamp(22px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 28px 90px rgba(3, 16, 18, 0.16);
}

body.services-theme .services-contact h2 {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--glass-ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 520;
}

body.services-theme .services-contact > p:not(.services-kicker) {
  max-width: 700px;
  margin: 26px 0;
  color: var(--glass-soft);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.8;
}

/* WeChat index */
.wechat-theme {
  min-height: 100vh;
}

.wechat-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 132px);
}

.wechat-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.wechat-hero-copy h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 520;
  line-height: 0.98;
}

.wechat-hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--glass-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.85;
}

.wechat-qr-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.15);
}

.wechat-qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.wechat-qr-card span {
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wechat-qr-card b {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 760;
}

.wechat-qr-card p {
  margin: 8px 0 0;
  color: var(--glass-soft);
  font-size: 14px;
  line-height: 1.7;
}

.wechat-directory-section {
  margin-top: clamp(52px, 8vw, 96px);
}

.wechat-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-line);
}

.wechat-directory-head h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 520;
  line-height: 1;
}

.wechat-directory-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--glass-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.wechat-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.wechat-directory li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.wechat-directory span {
  color: rgba(216, 66, 56, 0.88);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.wechat-directory b {
  color: rgba(244, 239, 230, 0.9);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 560;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .wechat-hero,
  .wechat-directory {
    grid-template-columns: 1fr;
  }

  .wechat-qr-card {
    max-width: 320px;
  }

  .wechat-directory-head {
    display: grid;
  }

  .wechat-directory-head > p {
    text-align: left;
  }
}

/* Private travel map */
.private-map-theme {
  --travel-ink: #f7fbf4;
  --travel-soft: rgba(247, 251, 244, 0.7);
  min-height: 100vh;
  color: var(--travel-ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 66, 56, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(49, 88, 121, 0.24), transparent 32%),
    linear-gradient(180deg, #071011 0%, #0b1212 48%, #070707 100%);
}

.travel-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 132px);
}

.travel-hero {
  max-width: 860px;
}

.travel-kicker {
  margin: 0;
  color: rgba(247, 251, 244, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.travel-hero h1 {
  margin: 18px 0 0;
  color: var(--travel-ink);
  font-size: clamp(58px, 9vw, 118px);
  line-height: 1;
  font-weight: 520;
}

.travel-hero > p:not(.travel-kicker) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--travel-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
}

.travel-board {
  margin-top: clamp(42px, 6vw, 76px);
}

.map-shell {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 90px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(26px) saturate(1.15);
}

.map-shell {
  padding: clamp(18px, 3vw, 34px);
}

.world-map {
  position: relative;
  width: 100%;
  aspect-ratio: 570 / 370;
  min-height: 0;
  overflow: visible;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 72% 36%, rgba(216, 66, 56, 0.08), transparent 28%),
    radial-gradient(circle at 62% 54%, rgba(79, 132, 154, 0.09), transparent 24%),
    radial-gradient(circle at 17% 13%, rgba(215, 185, 87, 0.07), transparent 18%),
    rgba(255, 255, 255, 0.035);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.coordinate-field::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.coordinate-region {
  position: absolute;
  color: rgba(247, 251, 244, 0.2);
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.region-europe {
  left: 12%;
  top: 28%;
}

.region-east-asia {
  left: 70%;
  top: 15%;
}

.region-southeast-asia {
  left: 56%;
  top: 67%;
}

.region-oceania {
  right: 6%;
  bottom: 9%;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  z-index: 20;
}

.map-pin-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 7px rgba(216, 66, 56, 0.16);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-pin-dot::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(216, 66, 56, 0.42);
  border-radius: 50%;
  animation: travel-pin-pulse 2.4s ease-out infinite;
}

.map-memory {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: clamp(210px, 22vw, 270px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transform-origin: left bottom;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.map-memory img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: var(--photo-position, center);
}

.map-pin-landscape .map-memory {
  width: clamp(250px, 30vw, 360px);
}

.map-pin-landscape .map-memory img {
  aspect-ratio: 4 / 3;
}

.map-pin.card-left .map-memory {
  right: 18px;
  left: auto;
  transform-origin: right bottom;
}

.map-pin.card-below .map-memory {
  top: 18px;
  bottom: auto;
  transform-origin: left top;
}

.map-pin.card-left.card-below .map-memory {
  transform-origin: right top;
}

.map-memory-copy {
  display: grid;
  gap: 5px;
  padding: 12px 14px 13px;
  color: #fff;
  text-align: left;
}

.map-memory-copy b {
  font-size: 15px;
  font-weight: 760;
}

.map-memory-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.map-memory-copy em {
  max-width: 24em;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.map-pin:hover .map-pin-dot,
.map-pin:focus-visible .map-pin-dot,
.map-pin.is-active .map-pin-dot {
  box-shadow: 0 0 0 9px rgba(216, 66, 56, 0.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.map-pin:hover .map-memory,
.map-pin:focus-visible .map-memory,
.map-pin.is-active .map-memory {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.map-note {
  margin: 18px 4px 0;
  color: rgba(247, 251, 244, 0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.memory-viewer[hidden] {
  display: none;
}

.memory-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(3, 7, 7, 0.82);
  backdrop-filter: blur(18px);
}

.memory-viewer-frame {
  width: min(82vw, 620px);
  max-height: calc(100vh - 64px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #0b0d0d;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
}

.memory-viewer-image {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
}

.memory-viewer-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px 18px;
  color: #fff;
}

.memory-viewer-caption span {
  display: grid;
  gap: 6px;
}

.memory-viewer-caption b {
  font-size: 20px;
}

.memory-viewer-caption em {
  max-width: 34em;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.memory-viewer-caption small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
}

.memory-viewer-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 10, 10, 0.62);
  font: 300 32px/1 sans-serif;
  cursor: pointer;
}

.memory-viewer-open {
  overflow: hidden;
}

@keyframes travel-pin-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 900px) {
  .world-map {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .travel-page {
    width: min(100% - 24px, 1180px);
  }

  .travel-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .map-shell {
    border-radius: 28px;
  }

  .world-map {
    width: 100%;
    aspect-ratio: 570 / 370;
    min-height: 0;
    border-radius: 22px;
  }

  .world-map-art {
    object-fit: contain;
  }

  .map-memory {
    left: auto;
    right: -24px;
    bottom: 18px;
    width: min(62vw, 230px);
    transform-origin: right bottom;
  }

  .memory-viewer {
    padding: 14px;
  }

  .memory-viewer-frame {
    width: min(94vw, 520px);
    max-height: calc(100vh - 28px);
  }

  .memory-viewer-image {
    height: min(76vh, 680px);
  }

  .memory-viewer-caption {
    display: grid;
    gap: 8px;
    padding: 13px 14px 15px;
  }

  .memory-viewer-caption small {
    text-align: left;
  }

  .memory-viewer-close {
    top: 20px;
    right: 20px;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  body.services-theme .services-hero,
  body.services-theme .project-heading {
    grid-template-columns: 1fr;
  }

  body.services-theme .services-hero .services-kicker,
  body.services-theme .services-hero h1,
  body.services-theme .services-hero-intro,
  body.services-theme .project-heading > p,
  body.services-theme .project-heading h2,
  body.services-theme .project-heading h3 {
    grid-column: 1;
    grid-row: auto;
  }

  body.services-theme .services-index {
    grid-template-columns: 1fr;
  }

  body.services-theme .service-evidence,
  body.services-theme .brand-wall {
    grid-column: 1 / 13;
  }
}

@media (max-width: 620px) {
  body.services-theme .services-page {
    width: min(100% - 24px, 1180px);
  }

  body.services-theme .services-hero,
  body.services-theme .services-index a,
  body.services-theme .service-brief section,
  body.services-theme .service-evidence,
  body.services-theme .brand-wall,
  body.services-theme .services-contact {
    border-radius: 28px;
  }

  body.services-theme .services-hero h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  body.services-theme .project-heading h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  body.services-theme .service-brief {
    grid-template-columns: 1fr;
  }

  body.services-theme .service-brief section {
    min-height: 0;
  }

}

/* Mobile publish pass */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  svg,
  video {
    max-width: 100%;
  }

  .site-header,
  .glass-theme .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 9px;
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 24px;
  }

  .wordmark {
    font-size: 14px;
    line-height: 1;
  }

  .nav-links,
  .glass-theme .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 5px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0;
    color: rgba(247, 251, 244, 0.72);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .glass-theme .nav-links a {
    flex: 0 0 auto;
    padding: 6px 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(247, 251, 244, 0.78);
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    line-height: 1;
    scroll-snap-align: start;
  }

  .glass-home .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .glass-home .hero-copy {
    padding-top: clamp(220px, 58vw, 280px);
  }

  .glass-home .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
  }

  .glass-home .hero-intro {
    margin-top: 18px;
    padding-left: 14px;
  }

  .glass-home .intro-main {
    font-size: 15px;
    line-height: 1.66;
  }

  .glass-home .intro-note {
    font-size: 14px;
    line-height: 1.7;
  }

  .glass-home .universe-list {
    gap: 18px;
    padding-bottom: 64px;
  }

  .glass-home .universe-entry {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .glass-home .entry-copy h2,
  .glass-home .business-headline h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .glass-home .subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .glass-home .entry-copy p:not(.entry-number):not(.subtitle),
  .glass-home .business-notes p,
  .glass-home .method-actions p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.72;
  }

  .glass-home .business-proof a,
  .glass-home .method-actions a,
  .glass-home .email-card,
  .glass-home .voice-links > a {
    border-radius: 24px;
  }

  .glass-home .voice-links {
    grid-template-columns: 1fr;
  }

  .glass-home .voice-links > a {
    padding: 16px 42px 16px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .glass-home .voice-links > a:last-child {
    border-bottom: 0;
  }

  .glass-home .voice-links b,
  .voice-links b {
    white-space: normal;
  }

  .glass-home .voice-links em,
  .voice-links em {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .private-film {
    min-height: auto;
    gap: 12px;
  }

  .private-film span,
  .private-film span:nth-child(2),
  .private-film span:nth-child(3) {
    height: 172px;
    border-width: 8px;
    transform: none;
  }

  .private-film-single span,
  .private-film-single span:nth-child(2),
  .private-film-single span:nth-child(3) {
    height: min(74vw, 360px);
  }

  .wechat-page,
  .brand-library,
  .travel-page {
    width: min(100% - 24px, 1180px);
    padding-top: 36px;
    padding-bottom: 72px;
  }

  .brand-masonry,
  .glass-brand .brand-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    column-count: auto;
    column-gap: 0;
    padding-top: 20px;
  }

  .brand-card,
  .glass-brand .brand-card {
    display: block;
    margin: 0;
  }

  .glass-brand .brand-card-copy,
  .glass-brand .brand-card.is-tall .brand-card-copy,
  .glass-brand .brand-card.is-short .brand-card-copy {
    min-height: 0;
    padding: 20px;
  }

  .glass-brand .brand-card h2 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .glass-brand .brand-card p:not(.brand-source) {
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .wechat-hero {
    gap: 24px;
  }

  .wechat-hero-copy h1 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 1.05;
  }

  .wechat-qr-card {
    max-width: none;
    padding: 16px;
  }

  .wechat-directory-section {
    margin-top: 42px;
  }

  .wechat-directory-head {
    gap: 12px;
    padding-bottom: 18px;
  }

  .wechat-directory-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .wechat-directory {
    gap: 8px;
    margin-top: 20px;
  }

  .wechat-directory li {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 12px;
  }

  .wechat-directory b {
    font-size: 14px;
    line-height: 1.48;
  }

  .travel-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .travel-hero > p:not(.travel-kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.72;
  }

  .travel-board {
    margin-top: 32px;
  }

  .map-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .world-map {
    aspect-ratio: 1 / 1.05;
    min-height: 350px;
    border-radius: 18px;
  }

  .region-europe {
    left: 10%;
    top: 31%;
  }

  .region-east-asia {
    left: 64%;
    top: 12%;
  }

  .region-southeast-asia {
    left: 39%;
    top: 76%;
  }

  .region-oceania {
    right: 5%;
    bottom: 5%;
  }

  .map-pin {
    left: var(--mx, var(--x));
    top: var(--my, var(--y));
    width: 22px;
    height: 22px;
  }

  .map-pin-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(216, 66, 56, 0.18);
  }

  .map-pin-dot::after {
    display: none;
  }

  .map-pin:hover .map-pin-dot,
  .map-pin:focus-visible .map-pin-dot,
  .map-pin.is-active .map-pin-dot {
    box-shadow: 0 0 0 5px rgba(216, 66, 56, 0.22);
  }

  .world-map .map-pin:nth-of-type(1) {
    --mx: 74%;
    --my: 93%;
  }

  .world-map .map-pin:nth-of-type(2) {
    --mx: 30%;
    --my: 73%;
  }

  .world-map .map-pin:nth-of-type(3) {
    --mx: 42%;
    --my: 27%;
  }

  .world-map .map-pin:nth-of-type(4) {
    --mx: 73%;
    --my: 39%;
  }

  .world-map .map-pin:nth-of-type(5) {
    --mx: 69%;
    --my: 17%;
  }

  .world-map .map-pin:nth-of-type(6) {
    --mx: 75%;
    --my: 48%;
  }

  .world-map .map-pin:nth-of-type(7) {
    --mx: 91%;
    --my: 13%;
  }

  .world-map .map-pin:nth-of-type(8) {
    --mx: 72%;
    --my: 69%;
  }

  .world-map .map-pin:nth-of-type(9) {
    --mx: 80%;
    --my: 20%;
  }

  .world-map .map-pin:nth-of-type(10) {
    --mx: 41%;
    --my: 81%;
  }

  .world-map .map-pin:nth-of-type(11) {
    --mx: 22%;
    --my: 15%;
  }

  .world-map .map-pin:nth-of-type(12) {
    --mx: 14%;
    --my: 19%;
  }

  .world-map .map-pin:nth-of-type(13) {
    --mx: 66%;
    --my: 83%;
  }

  .world-map .map-pin:nth-of-type(14) {
    --mx: 82%;
    --my: 51%;
  }

  .world-map .map-pin:nth-of-type(15) {
    --mx: 48%;
    --my: 70%;
  }

  .world-map .map-pin:nth-of-type(16) {
    --mx: 55%;
    --my: 77%;
  }

  .world-map .map-pin:nth-of-type(17) {
    --mx: 62%;
    --my: 19%;
  }

  .world-map .map-pin:nth-of-type(18) {
    --mx: 62%;
    --my: 48%;
  }

  .world-map .map-pin:nth-of-type(19) {
    --mx: 48%;
    --my: 88%;
  }

  .world-map .map-pin:nth-of-type(20) {
    --mx: 24%;
    --my: 31%;
  }

  .world-map .map-pin:nth-of-type(21) {
    --mx: 10%;
    --my: 37%;
  }

  .world-map .map-pin:nth-of-type(22) {
    --mx: 95%;
    --my: 68%;
  }

  .world-map .map-pin:nth-of-type(23) {
    --mx: 68%;
    --my: 57%;
  }

  .world-map .map-pin:nth-of-type(24) {
    --mx: 84%;
    --my: 33%;
  }

  .world-map .map-pin:nth-of-type(25) {
    --mx: 87%;
    --my: 43%;
  }

  .world-map .map-pin:nth-of-type(26) {
    --mx: 48%;
    --my: 43%;
  }

  .world-map .map-pin:nth-of-type(27) {
    --mx: 68%;
    --my: 35%;
  }

  .world-map .map-pin:nth-of-type(28) {
    --mx: 8%;
    --my: 8%;
  }

  .world-map .map-pin:nth-of-type(29) {
    --mx: 90%;
    --my: 58%;
  }

  .world-map .map-pin:nth-of-type(30) {
    --mx: 55%;
    --my: 63%;
  }

  .world-map .map-pin:nth-of-type(31) {
    --mx: 61%;
    --my: 58%;
  }

  .world-map .map-pin:nth-of-type(32) {
    --mx: 92%;
    --my: 27%;
  }

  .world-map .map-pin:nth-of-type(33) {
    --mx: 93%;
    --my: 47%;
  }

  .world-map .map-pin:nth-of-type(34) {
    --mx: 53%;
    --my: 22%;
  }

  .world-map .map-pin:nth-of-type(35) {
    --mx: 91%;
    --my: 95%;
  }

  .map-memory {
    display: none;
  }

  .map-note {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .memory-viewer-frame {
    width: min(94vw, 520px);
  }

  .memory-viewer-image {
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    background: #050505;
  }
}

@media (max-width: 380px) {
  .nav-links a,
  .glass-theme .nav-links a {
    padding: 6px 4px;
    font-size: 10px;
  }

  .glass-home .hero h1 {
    font-size: clamp(35px, 10.8vw, 42px);
  }
}
