@font-face {
  font-family: "Cormorant Garamond ZBWY";
  src: url("./cormorant-4288c5e7d259.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter ZBWY";
  src: url("./inter-a2b82870823c.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Serif SC ZBWY";
  src: url("./source-han-serif-sc-2f53fa16807b.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #161310;
  --ink-soft: #211c17;
  --ivory: #f5f0e6;
  --ivory-soft: #ebe3d4;
  --gold: #c8a24b;
  --brown: #4a3b2a;
  --line-dark: rgba(245, 240, 230, 0.16);
  --line-light: rgba(22, 19, 16, 0.15);
  --serif-display: "Cormorant Garamond ZBWY", "Times New Roman", serif;
  --serif-zh: "Source Han Serif SC ZBWY", "Songti SC", "SimSun", serif;
  --sans-en: "Inter ZBWY", "Helvetica Neue", sans-serif;
  --sans-zh: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  --page: min(1180px, calc(100vw - 64px));
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans-zh);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
  font-family: var(--sans-en);
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 12px;
  transform: translateY(-180%);
  background: var(--ivory);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition:
    background-color 320ms ease,
    border-color 320ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(22, 19, 16, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.brand {
  width: max-content;
  font-family: var(--serif-zh);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

html[lang="en"] .brand {
  font-family: var(--serif-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

html[lang="en"] .site-nav {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a,
.language-link {
  position: relative;
  opacity: 0.68;
  transition:
    opacity 220ms ease,
    color 220ms ease;
}

.site-nav a::after,
.language-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 260ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.language-link:hover,
.language-link:focus-visible {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.language-link:hover::after,
.language-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  color: var(--gold);
  font-family: var(--sans-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.site-nav .writing-platform-link {
  color: var(--gold);
  opacity: 0.9;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 41%, rgba(200, 162, 75, 0.08), transparent 27%),
    radial-gradient(circle at 18% 82%, rgba(74, 59, 42, 0.22), transparent 34%),
    var(--ink);
}

.hero::before,
.dark-field::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.27;
  background-image:
    linear-gradient(108deg, transparent 47%, rgba(200, 162, 75, 0.09) 48%, transparent 49%),
    linear-gradient(73deg, transparent 53%, rgba(245, 240, 230, 0.045) 54%, transparent 55%);
  background-size: 310px 310px, 430px 430px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 72%);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 44px));
  padding: 112px 0 90px;
  text-align: center;
}

.siddham-mark {
  width: min(710px, 82vw);
  height: auto;
  margin: 0 auto 58px;
  overflow: visible;
}

.siddham-mark path {
  fill: rgba(200, 162, 75, 0);
  stroke: rgba(200, 162, 75, 0.22);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 0 rgba(200, 162, 75, 0));
  transform: translateY(12px);
  transform-origin: center;
  transition:
    fill 1500ms ease,
    stroke 1500ms ease,
    filter 1500ms ease,
    transform 1500ms ease;
}

.siddham-mark path:nth-child(2) {
  transition-delay: 160ms;
}

.siddham-mark path:nth-child(3) {
  transition-delay: 320ms;
}

.siddham-mark path:nth-child(4) {
  transition-delay: 480ms;
}

.siddham-mark path:nth-child(5) {
  transition-delay: 640ms;
}

.hero.is-visible .siddham-mark path {
  fill: rgba(200, 162, 75, 0.82);
  stroke: rgba(245, 240, 230, 0.34);
  filter: drop-shadow(0 0 18px rgba(200, 162, 75, 0.2));
  transform: translateY(0);
}

.hero-title,
.page-title,
.section-title,
.statement,
.vision-line {
  margin: 0;
  font-family: var(--serif-zh);
  font-weight: 700;
}

html[lang="en"] .hero-title,
html[lang="en"] .page-title,
html[lang="en"] .section-title,
html[lang="en"] .statement,
html[lang="en"] .vision-line {
  font-family: var(--serif-display);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.22;
  letter-spacing: 0.08em;
}

html[lang="en"] .hero-title {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(245, 240, 230, 0.64);
  font-size: 13px;
  letter-spacing: 0.12em;
}

html[lang="en"] .hero-subtitle {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 25px;
  height: 38px;
  transform: translateX(-50%);
  opacity: 0.55;
}

.scroll-cue::before,
.scroll-cue::after {
  content: "";
  position: absolute;
}

.scroll-cue::before {
  top: 0;
  left: 12px;
  width: 1px;
  height: 30px;
  background: var(--ivory);
}

.scroll-cue::after {
  bottom: 2px;
  left: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 1px solid var(--ivory);
  border-bottom: 1px solid var(--ivory);
}

.light-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(74, 59, 42, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(74, 59, 42, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 84px 84px;
  color: var(--ink);
}

.mission {
  min-height: 84svh;
  display: grid;
  align-items: center;
  padding: 150px 0;
}

.mission-copy {
  max-width: 890px;
  margin-left: 8.5%;
}

.mission-copy p {
  margin: 0 0 8px;
  font-family: var(--serif-zh);
  font-size: clamp(22px, 3.1vw, 40px);
  font-weight: 600;
  line-height: 1.62;
}

html[lang="en"] .mission-copy p {
  font-family: var(--serif-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.34;
}

.mission-copy .mission-break {
  margin-top: 46px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateX(4px);
}

.pillars-index {
  padding: 135px 0 150px;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.index-card {
  min-height: 350px;
  padding: 32px 26px 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

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

.index-card:hover,
.index-card:focus-visible {
  background: rgba(200, 162, 75, 0.07);
  transform: translateY(-6px);
}

.index-number,
.pillar-number,
.step-number,
.timeline-number {
  color: var(--gold);
  font-family: var(--serif-display);
  font-variant-numeric: lining-nums;
}

.index-number {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.index-card h2 {
  margin: auto 0 18px;
  font-family: var(--serif-zh);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

html[lang="en"] .index-card h2 {
  font-family: var(--serif-display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.02;
}

.index-card p {
  min-height: 58px;
  margin: 0;
  color: rgba(245, 240, 230, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 76% 30%, rgba(200, 162, 75, 0.12), transparent 29%),
    var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: -15vw;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 162, 75, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(200, 162, 75, 0.022),
    0 0 0 140px rgba(200, 162, 75, 0.018);
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
}

.page-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 15px;
  letter-spacing: 0.16em;
}

.page-title {
  max-width: 900px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: 0.03em;
}

html[lang="en"] .page-title {
  letter-spacing: -0.025em;
}

.narrative-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px 0;
}

.narrative-section + .narrative-section {
  border-top: 1px solid var(--line-light);
}

.narrative-section.dark-field + .narrative-section {
  border-color: var(--line-dark);
}

.dark-field {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--ivory);
}

.narrative-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(50px, 9vw, 150px);
}

.scene-label {
  position: sticky;
  top: 124px;
  align-self: start;
  padding-top: 7px;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.narrative-copy h2,
.block-heading {
  margin: 0 0 55px;
  font-family: var(--serif-zh);
  font-size: clamp(30px, 4.1vw, 55px);
  font-weight: 700;
  line-height: 1.34;
}

html[lang="en"] .narrative-copy h2,
html[lang="en"] .block-heading {
  font-family: var(--serif-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

.narrative-copy p {
  max-width: 770px;
  margin: 0 0 18px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.9;
}

html[lang="en"] .narrative-copy p {
  line-height: 1.72;
}

.statement {
  margin-top: 56px !important;
  color: var(--brown);
  font-size: clamp(30px, 4.2vw, 56px) !important;
  line-height: 1.35 !important;
}

.dark-field .statement {
  color: var(--gold);
}

.timeline {
  max-width: 830px;
  margin: 58px 0;
  padding: 0;
  list-style: none;
  counter-reset: achievement;
}

.timeline li {
  position: relative;
  min-height: 126px;
  padding: 28px 0 28px 82px;
  border-top: 1px solid currentColor;
  border-color: rgba(245, 240, 230, 0.14);
  color: rgba(245, 240, 230, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.timeline li::before {
  counter-increment: achievement;
  content: "0" counter(achievement);
  position: absolute;
  top: 23px;
  left: 4px;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 25px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.approach-step {
  min-height: 390px;
  padding: 30px 28px 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}

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

.step-number {
  font-size: 23px;
}

.approach-step h3 {
  margin: auto 0 22px;
  font-family: var(--serif-zh);
  font-size: 24px;
  line-height: 1.3;
}

html[lang="en"] .approach-step h3 {
  font-family: var(--serif-display);
  font-size: 35px;
  font-weight: 500;
}

.approach-step p {
  margin: 0;
  color: rgba(22, 19, 16, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.walk-with-us {
  min-height: 86svh;
  display: grid;
  place-items: center;
  padding: 130px 0;
  text-align: center;
}

.walk-with-us .narrative-copy {
  max-width: 900px;
}

.walk-with-us p {
  margin-inline: auto;
}

.business-intro {
  padding: 120px 0;
  border-bottom: 1px solid var(--line-light);
}

.business-intro p {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif-zh);
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.55;
}

html[lang="en"] .business-intro p {
  font-family: var(--serif-display);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.16;
}

.business-pillar {
  min-height: 74svh;
  display: grid;
  align-items: center;
  padding: 108px 0;
  border-bottom: 1px solid var(--line-light);
}

.business-pillar:nth-child(even) {
  background: var(--ivory-soft);
}

.pillar-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.pillar-number {
  font-size: clamp(96px, 15vw, 210px);
  line-height: 0.72;
}

.pillar-copy h2 {
  margin: 0 0 34px;
  font-family: var(--serif-zh);
  font-size: clamp(38px, 5vw, 68px);
}

html[lang="en"] .pillar-copy h2 {
  font-family: var(--serif-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.98;
}

.pillar-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(22, 19, 16, 0.72);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.85;
}

.about-block {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 130px 0;
  border-bottom: 1px solid var(--line-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: clamp(50px, 10vw, 150px);
}

.about-label {
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.about-copy p {
  max-width: 830px;
  margin: 0 0 18px;
  font-family: var(--serif-zh);
  font-size: clamp(21px, 2.6vw, 37px);
  font-weight: 600;
  line-height: 1.65;
}

html[lang="en"] .about-copy p {
  font-family: var(--serif-display);
  font-size: clamp(29px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.3;
}

.about-copy p:first-child {
  color: var(--brown);
}

.vision-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 28px;
  text-align: center;
  background: var(--ink);
}

.vision-line {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  color: var(--gold);
  font-size: clamp(40px, 6.8vw, 94px);
  line-height: 1.36;
}

html[lang="en"] .vision-line {
  line-height: 1.02;
}

.contact-section {
  min-height: 72svh;
  padding: 120px 0 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-card {
  min-height: 310px;
  padding: 32px 28px 38px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}

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

.contact-card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-family: var(--serif-zh);
  font-size: 20px;
}

html[lang="en"] .contact-card h2 {
  font-family: var(--serif-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.contact-card p {
  margin: 0;
  color: rgba(22, 19, 16, 0.6);
  font-size: 14px;
}

.contact-card a {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-family: var(--sans-en);
  font-size: 15px;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.letter-line {
  margin: 86px 0 0;
  text-align: center;
  font-family: var(--serif-zh);
  font-size: clamp(27px, 3.7vw, 48px);
  font-weight: 700;
}

html[lang="en"] .letter-line {
  font-family: var(--serif-display);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
}

.site-footer {
  padding: 68px 0 42px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
}

.footer-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-statement {
  max-width: 640px;
  margin: 0;
  font-family: var(--serif-zh);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}

html[lang="en"] .footer-statement {
  font-family: var(--serif-display);
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}

.footer-meta {
  margin: 0;
  color: rgba(245, 240, 230, 0.48);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: right;
}

.footer-meta a {
  transition: color 200ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--ivory);
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 28px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: clamp(130px, 28vw, 330px);
  font-weight: 400;
  line-height: 0.78;
}

.not-found .brand {
  margin: 55px auto 0;
}

.motion [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.motion [data-reveal="slow"] {
  transition-duration: 1100ms;
}

.motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  :root {
    --page: min(100% - 40px, 880px);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100vw - 40px);
    margin: -2px 0 13px;
    padding: 4px 0 8px;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .language-link {
    grid-column: 2;
    grid-row: 1;
  }

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

  .index-card:nth-child(2),
  .approach-step:nth-child(2) {
    border-right: 0;
  }

  .index-card:nth-child(-n + 2),
  .approach-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .approach-step:nth-child(-n + 2) {
    border-color: var(--line-light);
  }

  .narrative-grid,
  .pillar-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .scene-label {
    position: static;
  }

  .pillar-number {
    font-size: 112px;
  }
}

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

  body {
    font-size: 15px;
  }

  .header-inner {
    width: var(--page);
  }

  .brand {
    font-size: 16px;
  }

  html[lang="en"] .brand {
    font-size: 19px;
  }

  .site-nav {
    width: calc(100vw - 32px);
    gap: 21px;
    font-size: 12px;
  }

  html[lang="en"] .site-nav {
    font-size: 11px;
  }

  .hero-inner {
    width: calc(100vw - 30px);
  }

  .siddham-mark {
    width: 94vw;
    margin-bottom: 38px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 50px);
    letter-spacing: 0.04em;
  }

  html[lang="en"] .hero-title {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-subtitle {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.7;
  }

  .mission {
    min-height: auto;
    padding: 110px 0;
  }

  .mission-copy {
    margin-left: 0;
  }

  .mission-copy p {
    font-size: 25px;
    line-height: 1.7;
  }

  html[lang="en"] .mission-copy p {
    font-size: 32px;
  }

  .index-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .index-card,
  .approach-step,
  .contact-card {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .approach-step,
  .contact-card {
    border-color: var(--line-light);
  }

  .index-card:last-child,
  .approach-step:last-child,
  .contact-card:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 62svh;
    padding-bottom: 66px;
  }

  .page-title {
    font-size: clamp(48px, 17vw, 70px);
  }

  .narrative-section {
    min-height: auto;
    padding: 105px 0;
  }

  .narrative-copy h2,
  .block-heading {
    margin-bottom: 38px;
    font-size: 34px;
  }

  html[lang="en"] .narrative-copy h2,
  html[lang="en"] .block-heading {
    font-size: 44px;
  }

  .timeline li {
    min-height: 0;
    padding-left: 64px;
  }

  .statement {
    font-size: 35px !important;
  }

  .approach-step {
    min-height: 300px;
  }

  .business-intro {
    padding: 95px 0;
  }

  .business-pillar,
  .about-block {
    min-height: auto;
    padding: 100px 0;
  }

  .pillar-number {
    font-size: 92px;
  }

  .pillar-copy h2 {
    font-size: 43px;
  }

  html[lang="en"] .pillar-copy h2 {
    font-size: 54px;
  }

  .about-copy p {
    font-size: 24px;
  }

  html[lang="en"] .about-copy p {
    font-size: 32px;
  }

  .contact-card {
    min-height: 245px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    text-align: left;
  }
}

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

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

  .motion [data-reveal],
  .siddham-mark path {
    opacity: 1;
    transform: none;
  }

  .siddham-mark path {
    fill: rgba(200, 162, 75, 0.82);
    stroke: rgba(245, 240, 230, 0.34);
  }
}
