:root {
  color-scheme: light;
  --paper: #f6f0e7;
  --paper-soft: #fbf8f2;
  --ink: #292521;
  --ink-soft: #6f675e;
  --ink-faint: #9b9288;
  --amber: #b97340;
  --amber-light: #e6ae74;
  --peach: #d98d69;
  --rose: #b96c64;
  --green: #718a73;
  --night: #26211f;
  --night-soft: #332b27;
  --line: rgba(83, 67, 54, 0.14);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 199, 151, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 34%, rgba(202, 151, 126, 0.15), transparent 34rem),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
}

.ambient-one {
  top: 18rem;
  left: -14rem;
  width: 35rem;
  height: 35rem;
  background: rgba(229, 167, 104, 0.22);
}

.ambient-two {
  top: 72rem;
  right: -20rem;
  width: 42rem;
  height: 42rem;
  background: rgba(172, 118, 101, 0.16);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 72px));
  height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.project-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-self: start;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px 5px 5px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-link:hover {
  color: var(--amber);
  transform: translateY(-1px);
}

.project-link.is-current {
  border-color: rgba(185, 115, 64, 0.2);
  color: var(--ink);
  background: rgba(255, 251, 244, 0.54);
}

.project-link img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(90, 59, 39, 0.1);
}

.nav-links {
  display: flex;
  gap: 38px;
  color: var(--ink-soft);
  font-size: 13px;
}

.nav-links a,
.header-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.header-link:hover {
  color: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  border: 1px solid rgba(91, 72, 57, 0.14);
  border-radius: 999px;
  color: var(--ink-faint);
  background: rgba(251, 248, 242, 0.56);
}

.language-switcher button {
  min-width: 28px;
  padding: 4px 5px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  transition: color 180ms ease, background 180ms ease;
}

.language-switcher button[aria-pressed="true"] {
  color: #fffaf2;
  background: var(--amber);
}

.header-link {
  font-size: 13px;
  font-weight: 600;
}

.header-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--amber);
  transition: transform 180ms ease;
}

.header-link:hover span {
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 5vw;
  width: min(1240px, calc(100% - 96px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 86px 0 112px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-number {
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 4px 0;
  content: "";
  background: var(--amber);
}

html[lang="en"] .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
}

h1,
h2,
.large-copy {
  font-family: var(--serif);
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(50px, 5.25vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

h1 span {
  position: relative;
  color: var(--amber);
  white-space: nowrap;
}

h1 span::after {
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 72%;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: rgba(213, 145, 82, 0.22);
  transform: rotate(-2deg);
}

.hero-lead {
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 2;
}

.primary-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.primary-link {
  padding: 8px 8px 8px 0;
}

.primary-link::before {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
}

.arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 115, 64, 0.42);
  border-radius: 50%;
  color: var(--amber);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.primary-link:hover .arrow {
  color: #fffaf3;
  background: var(--amber);
  transform: translateY(3px);
}

.hero-visual {
  position: relative;
  width: min(43vw, 560px);
  aspect-ratio: 1;
  justify-self: end;
  filter: drop-shadow(0 28px 55px rgba(118, 76, 49, 0.11));
}

.hero-visual::before {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 42% 39%, rgba(255, 250, 238, 0.96) 0 3%, transparent 4%),
    radial-gradient(circle at 50% 50%, rgba(229, 169, 111, 0.22), rgba(255, 250, 242, 0.7) 38%, rgba(221, 180, 140, 0.11) 62%, transparent 70%);
  box-shadow:
    inset 0 0 60px rgba(197, 128, 76, 0.12),
    0 0 80px rgba(226, 161, 99, 0.13);
}

.halo,
.orbit {
  position: absolute;
  border-radius: 50%;
}

.halo {
  border: 1px solid rgba(126, 100, 80, 0.15);
}

.halo::before,
.halo::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.halo-outer {
  inset: 1%;
}

.halo-outer::before {
  inset: 5%;
  border: 1px dashed rgba(185, 115, 64, 0.12);
}

.halo-inner {
  inset: 21%;
  border-color: rgba(185, 115, 64, 0.21);
}

.orbit-one {
  inset: 10%;
  animation: orbitSpin 42s linear infinite;
}

.orbit-two {
  inset: 27%;
  animation: orbitSpinReverse 30s linear infinite;
}

.light {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 251, 241, 0.9);
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 0 6px rgba(222, 153, 90, 0.1), 0 0 24px rgba(198, 119, 64, 0.55);
  animation: lightBreathe 3.8s ease-in-out infinite;
}

.light::before {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(185, 115, 64, 0.2);
  border-radius: 50%;
  content: "";
}

.light-a { top: 2%; left: 48%; }
.light-b { top: 44%; right: -1%; animation-delay: -1.2s; }
.light-c { bottom: 4%; left: 25%; animation-delay: -2s; }
.light-d { top: 28%; left: 1%; animation-delay: -2.8s; }
.light-e { top: 5%; right: 20%; animation-delay: -0.7s; }
.light-f { bottom: 3%; right: 30%; animation-delay: -1.8s; }
.light-g { top: 40%; left: -2%; animation-delay: -2.6s; }

.heart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.heart-spark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border: 1px solid rgba(185, 115, 64, 0.22);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(255, 251, 242, 0.7);
  box-shadow: 0 0 26px rgba(208, 136, 76, 0.14);
  font-size: 17px;
  animation: centerBreathe 4.5s ease-in-out infinite;
}

.heart-center strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.heart-center small {
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.floating-word {
  position: absolute;
  padding: 8px 14px;
  border: 1px solid rgba(93, 73, 58, 0.11);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(251, 248, 242, 0.72);
  box-shadow: 0 10px 30px rgba(91, 67, 50, 0.06);
  backdrop-filter: blur(8px);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  animation: wordFloat 5s ease-in-out infinite;
}

.word-one { top: 20%; left: 1%; }
.word-two { top: 15%; right: 6%; animation-delay: -1.7s; }
.word-three { right: 2%; bottom: 18%; animation-delay: -3.2s; }

.hero-note {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 0 6px rgba(230, 174, 116, 0.14);
}

.hero-note p {
  margin: 0;
}

.section-shell {
  width: min(1140px, calc(100% - 96px));
  margin: 0 auto;
}

.belief {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  padding: 160px 0 150px;
  border-top: 1px solid var(--line);
}

.section-intro h2,
.beauty-copy h2,
.voices-heading h2,
.future h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.belief-copy {
  max-width: 560px;
  padding-top: 48px;
}

.belief-copy .large-copy {
  margin-bottom: 34px;
  color: var(--amber);
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.55;
}

.belief-copy > p:not(.large-copy),
.beauty-copy > p,
.future-copy > p:not(.section-number) {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(251, 248, 242, 0.48);
  box-shadow: 0 35px 80px rgba(87, 62, 45, 0.06);
}

.manifesto::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 90%, rgba(224, 158, 98, 0.18), transparent 45%);
}

.manifesto-line {
  position: absolute;
  top: 98px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 115, 64, 0.34) 20%, rgba(185, 115, 64, 0.34) 80%, transparent);
}

.manifesto-card {
  position: relative;
  z-index: 1;
  min-height: 420px;
  padding: 62px 58px 54px;
}

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

.card-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.value-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 72px;
  border: 1px solid rgba(185, 115, 64, 0.28);
  border-radius: 50%;
  background: rgba(249, 238, 222, 0.72);
  box-shadow: 0 0 0 8px rgba(241, 221, 196, 0.28);
}

.value-icon::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 122px;
  height: 122px;
  border: 1px dashed rgba(185, 115, 64, 0.14);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.value-icon-seen i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid var(--amber);
  border-radius: 50% 50% 48% 52%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 7px rgba(185, 115, 64, 0.08);
}

.value-icon-seen i::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
}

.value-icon-held i {
  position: absolute;
  top: 29px;
  width: 24px;
  height: 18px;
  border: 1px solid var(--peach);
  border-radius: 50%;
}

.value-icon-held i:first-child { left: 17px; transform: rotate(24deg); }
.value-icon-held i:last-child { right: 17px; transform: rotate(-24deg); }

.value-icon-remembered i {
  position: absolute;
  inset: 21px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 16px rgba(185, 115, 64, 0.45);
}

.value-icon-remembered i::before,
.value-icon-remembered i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(185, 115, 64, 0.32);
  transform: translate(-50%, -50%);
}

.value-icon-remembered i::before { width: 44px; height: 1px; }
.value-icon-remembered i::after { width: 1px; height: 44px; }

.manifesto-card h3 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.manifesto-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.beauty {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 9vw;
  padding: 10px 0 190px;
}

.beauty-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 300px 300px 36px 36px;
  background:
    radial-gradient(circle at 50% 32%, rgba(234, 184, 125, 0.24), transparent 26%),
    linear-gradient(165deg, #39302c, #211d1b 70%);
  box-shadow: 0 38px 80px rgba(50, 36, 29, 0.2);
}

.beauty-visual::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 241, 222, 0.12);
  border-radius: inherit;
  content: "";
}

.window-glow {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 196, 134, 0.24), transparent 68%);
  transform: translateX(-50%);
  filter: blur(8px);
}

.memory-orbit {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 226, 190, 0.19);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: orbitSpin 36s linear infinite;
}

.memory-orbit::before,
.memory-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 226, 190, 0.1);
  border-radius: 50%;
  content: "";
}

.memory-orbit::before { inset: 16%; }
.memory-orbit::after { inset: -17%; border-style: dashed; }

.memory-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 247, 233, 0.92);
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 18px rgba(233, 175, 111, 0.7);
}

.dot-one { top: -5px; left: 50%; }
.dot-two { top: 50%; right: -5px; }
.dot-three { bottom: -5px; left: 38%; }
.dot-four { top: 35%; left: -5px; }

.memory-copy {
  position: absolute;
  z-index: 2;
  top: 32%;
  left: 50%;
  width: 72%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.memory-copy small {
  display: block;
  margin-bottom: 18px;
  color: var(--amber-light);
  font-size: 10px;
  letter-spacing: 0.26em;
}

.memory-copy strong {
  color: #fff4e7;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.55;
}

.memory-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 34px;
  border-top: 1px solid rgba(255, 241, 222, 0.1);
  color: rgba(255, 241, 222, 0.57);
  text-align: center;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.beauty-copy h2 {
  margin-bottom: 38px;
}

.beauty-copy > p:not(.section-number) {
  margin-bottom: 45px;
}

.quiet-values {
  border-top: 1px solid var(--line);
}

.quiet-values > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.quiet-values > div > span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 20px;
}

.quiet-values p,
.quiet-values strong,
.quiet-values small {
  display: block;
  margin: 0;
}

.quiet-values strong {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 17px;
}

.quiet-values small {
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.6;
}

.voices {
  padding: 150px max(48px, calc((100vw - 1140px) / 2)) 170px;
  overflow: hidden;
  background: #eee5d9;
}

.voices-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: end;
  gap: 5vw;
}

.voices-heading .section-number {
  align-self: start;
  padding-top: 18px;
}

.voice-stream {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 88px;
}

.voice-card {
  position: relative;
  min-height: 300px;
  padding: 50px 44px 38px;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 55, 0.1);
  border-radius: 160px 160px 24px 24px;
  background: rgba(250, 246, 239, 0.62);
}

.voice-card::after {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(220, 151, 92, 0.18), transparent 68%);
}

.voice-card-two { transform: translateY(28px); }
.voice-card-three { transform: translateY(-16px); }

.quote-mark {
  display: block;
  height: 66px;
  color: var(--amber-light);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
}

.voice-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.65;
}

.voice-card small {
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.future {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 120px 32px;
  color: #f7ede2;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(194, 120, 73, 0.24), transparent 30rem),
    linear-gradient(180deg, #292321, #1f1b19);
}

.future::before,
.future::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 230, 200, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.future::before {
  width: min(78vw, 960px);
  aspect-ratio: 1;
}

.future::after {
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbitSpin 60s linear infinite;
}

.future-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.future .section-number {
  color: var(--amber-light);
}

.future h2 {
  margin-bottom: 34px;
}

.future-copy > p:not(.section-number) {
  max-width: 580px;
  margin: 0 auto 44px;
  color: rgba(247, 237, 226, 0.66);
}

.light-link {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 226, 190, 0.28);
  color: #f7ede2;
}

.light-link span {
  color: var(--amber-light);
  transition: transform 180ms ease;
}

.light-link:hover span {
  transform: translateY(-3px);
}

.future-stars i {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 16px rgba(230, 174, 116, 0.8);
  animation: starBreathe 4s ease-in-out infinite;
}

.future-stars i:nth-child(1) { top: 19%; left: 15%; }
.future-stars i:nth-child(2) { top: 31%; right: 14%; animation-delay: -1.1s; }
.future-stars i:nth-child(3) { bottom: 18%; left: 26%; animation-delay: -2.2s; }
.future-stars i:nth-child(4) { right: 28%; bottom: 23%; animation-delay: -3s; }
.future-stars i:nth-child(5) { top: 18%; left: 54%; animation-delay: -1.8s; }
.future-stars i:nth-child(6) { top: 52%; left: 8%; animation-delay: -2.7s; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 140px;
  padding: 30px max(48px, calc((100vw - 1320px) / 2));
  color: rgba(247, 237, 226, 0.57);
  background: #1f1b19;
  border-top: 1px solid rgba(255, 234, 210, 0.09);
}

.company-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.company-footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.company-footer-text em {
  font-style: normal;
}

.geo-attribution {
  margin-top: 5px;
  color: inherit;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.58;
  text-underline-offset: 2px;
}

.geo-attribution:hover,
.geo-attribution:focus-visible {
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 900ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

.reveal-delay-one { transition-delay: 120ms; }
.reveal-delay-two { transition-delay: 240ms; }
.reveal-delay-three { transition-delay: 360ms; }

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

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

@keyframes lightBreathe {
  0%, 100% { transform: scale(0.9); opacity: 0.74; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes centerBreathe {
  0%, 100% { transform: scale(0.96); box-shadow: 0 0 18px rgba(208, 136, 76, 0.1); }
  50% { transform: scale(1.05); box-shadow: 0 0 32px rgba(208, 136, 76, 0.22); }
}

@keyframes wordFloat {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(5px); }
}

@keyframes starBreathe {
  0%, 100% { opacity: 0.25; transform: scale(0.65); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 48px, 920px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.92fr;
    width: min(100% - 56px, 920px);
    gap: 24px;
  }

  h1 {
    font-size: clamp(44px, 6vw, 58px);
  }

  .hero-visual {
    width: 44vw;
  }

  .manifesto-card {
    padding-right: 34px;
    padding-left: 34px;
  }

  .beauty {
    gap: 6vw;
  }

  .beauty-visual {
    min-height: 560px;
  }

  .voice-stream {
    grid-template-columns: repeat(3, 340px);
    overflow-x: auto;
    padding: 16px 28px 36px 0;
    scroll-snap-type: x mandatory;
  }

  .voice-card {
    scroll-snap-align: start;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 36px);
    height: 76px;
  }

  .project-switcher {
    gap: 3px;
  }

  .project-link {
    padding: 3px;
  }

  .project-link img {
    width: 29px;
    height: 29px;
  }

  .project-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-link {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px 4px;
  }

  .language-switcher button {
    min-width: 26px;
    padding: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    min-height: auto;
    padding: 74px 0 104px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(41px, 12.3vw, 56px);
    line-height: 1.27;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  html[lang="en"] .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: block;
  }

  .hero-visual {
    width: min(94vw, 480px);
    margin-top: 22px;
    justify-self: center;
  }

  .hero-note {
    bottom: 38px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .belief {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 110px 0;
  }

  .section-intro h2,
  .beauty-copy h2,
  .voices-heading h2,
  .future h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .belief-copy {
    padding-top: 10px;
  }

  .belief-copy .large-copy {
    font-size: 25px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-bottom: 116px;
    border-radius: 28px;
  }

  .manifesto-line {
    display: none;
  }

  .manifesto-card {
    min-height: 330px;
    padding: 52px 38px 44px;
  }

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

  .value-icon {
    margin-bottom: 48px;
  }

  .beauty {
    grid-template-columns: 1fr;
    gap: 74px;
    padding-bottom: 120px;
  }

  .beauty-visual {
    min-height: 540px;
    border-radius: 220px 220px 30px 30px;
  }

  .memory-copy strong {
    font-size: 30px;
  }

  .beauty-copy {
    order: -1;
  }

  .voices {
    padding: 104px 0 120px 20px;
  }

  .voices-heading {
    display: block;
    padding-right: 20px;
  }

  .voice-stream {
    grid-template-columns: repeat(3, min(78vw, 330px));
    gap: 16px;
    margin-top: 58px;
  }

  .voice-card {
    min-height: 286px;
    padding: 44px 34px 34px;
  }

  .voice-card-two,
  .voice-card-three {
    transform: none;
  }

  .future {
    min-height: 680px;
    padding: 100px 22px;
  }

  .future::before {
    width: 150vw;
  }

  .future::after {
    width: 105vw;
  }

  .site-footer {
    gap: 8px;
    min-height: 150px;
    padding: 36px 20px;
    text-align: center;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
