:root {
  --ink: #10282b;
  --ink-deep: #091d1f;
  --forest: #385a55;
  --paper: #f4efe6;
  --linen: #e8ded0;
  --sand: #d7c8b5;
  --gold: #a77b40;
  --gold-bright: #c39a62;
  --clay: #a7634d;
  --white: #fffdf8;
  --ink-8: rgba(16, 40, 43, 0.08);
  --ink-12: rgba(16, 40, 43, 0.12);
  --ink-18: rgba(16, 40, 43, 0.18);
  --paper-10: rgba(244, 239, 230, 0.1);
  --paper-18: rgba(244, 239, 230, 0.18);
  --paper-72: rgba(244, 239, 230, 0.72);
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", "Source Han Serif TC",
    "Songti TC", "PMingLiU", serif;
  --sans:
    "Avenir Next", "Noto Sans TC", "Source Han Sans TC", "PingFang TC",
    "Microsoft JhengHei", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
  --page: min(1320px, calc(100vw - 80px));
  --section-space: clamp(7.5rem, 12vw, 11rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 400ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-space {
  position: relative;
  padding-block: var(--section-space);
}

.phrase {
  display: block;
  line-break: strict;
  text-wrap: balance;
}

.eyebrow {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.5rem;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.9rem;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.7;
}

.eyebrow-light {
  color: var(--gold-bright);
}

.section-title {
  max-width: 15ch;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
  line-break: strict;
  text-wrap: balance;
}

.section-title-light {
  color: var(--paper);
}

.section-intro {
  max-width: 31rem;
  color: rgba(16, 40, 43, 0.7);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Navigation */

.site-header {
  position: fixed;
  top: 1.25rem;
  right: 0;
  left: 0;
  z-index: 40;
  width: min(1220px, calc(100vw - 40px));
  margin-inline: auto;
}

.nav-island {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 13.25rem 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.45rem 0.55rem 0.45rem 1.1rem;
  overflow: hidden;
  background: rgba(244, 239, 230, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.76);
  border-radius: 999px;
  box-shadow:
    0 1.4rem 4rem rgba(9, 29, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-brand {
  display: block;
  width: 12.7rem;
  height: 3.05rem;
  overflow: hidden;
}

.brand-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("assets/brand/benran-wordmark-source.jpg");
  background-repeat: no-repeat;
  background-position: center 49%;
  background-size: cover;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(16, 40, 43, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 500ms var(--ease-out);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 600ms var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.3rem 0.35rem 0.3rem 1.35rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    color 700ms var(--ease-heavy),
    background-color 700ms var(--ease-heavy),
    transform 700ms var(--ease-heavy);
}

.primary-button {
  min-height: 4rem;
  padding-left: 1.6rem;
  font-size: 0.9rem;
}

.magnetic-button:active {
  transform: scale(0.98);
}

.button-orbit {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  transition:
    transform 700ms var(--ease-heavy),
    background-color 700ms var(--ease-heavy);
}

.primary-button .button-orbit {
  width: 3.2rem;
  height: 3.2rem;
}

.magnetic-button:hover .button-orbit {
  background: var(--white);
  transform: translate3d(0.18rem, -0.08rem, 0) scale(1.04);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 35;
  padding: 8.5rem max(1.5rem, calc((100vw - 36rem) / 2)) 3rem;
  pointer-events: none;
  opacity: 0;
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(24px);
  transform: translate3d(0, -2rem, 0);
  transition:
    opacity 700ms var(--ease-heavy),
    transform 700ms var(--ease-heavy),
    visibility 700ms;
}

.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: 8.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(167, 123, 64, 0.13), transparent 29rem),
    linear-gradient(138deg, var(--paper) 0%, #f6f2eb 54%, #e9dfd1 100%);
}

.hero::before {
  position: absolute;
  top: -18rem;
  left: -18rem;
  width: 38rem;
  height: 38rem;
  content: "";
  border: 1px solid rgba(167, 123, 64, 0.2);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(32rem, 7fr);
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  min-height: calc(100svh - 12.5rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 3rem 5rem;
}

.hero h1 {
  max-width: 8.8ch;
  font-family: var(--serif);
  font-size: clamp(4.75rem, 7vw, 7.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
  line-break: strict;
  text-wrap: balance;
}

.hero h1 .accent-line,
.manifesto-title .accent-line {
  color: var(--clay);
  font-style: italic;
}

.hero-lead {
  max-width: 35rem;
  margin-top: 2.2rem;
  color: rgba(16, 40, 43, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph;
}

.hero-actions {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.3rem;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  padding-block: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.text-link span:last-child {
  color: var(--gold);
  transition: transform 600ms var(--ease-out);
}

.text-link:hover span:last-child {
  transform: translate3d(0.22rem, 0.16rem, 0);
}

.hero-principle {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 3rem;
  color: rgba(16, 40, 43, 0.58);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.hero-principle i {
  width: 0.24rem;
  height: 0.24rem;
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual-wrap {
  position: relative;
  min-height: min(72svh, 52rem);
}

.visual-bezel {
  height: 100%;
  padding: 0.55rem;
  background: rgba(16, 40, 43, 0.07);
  border: 1px solid rgba(16, 40, 43, 0.09);
  border-radius: 17rem 17rem 2.5rem 2.5rem;
  box-shadow:
    0 2.6rem 6rem rgba(9, 29, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: min(70svh, 50rem);
  overflow: hidden;
  background: var(--ink);
  border-radius: calc(17rem - 0.55rem) calc(17rem - 0.55rem) 2rem 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(9, 29, 31, 0.52) 100%),
    linear-gradient(90deg, rgba(9, 29, 31, 0.08), transparent 35%);
}

.hero-visual img,
.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}

.hero-visual img {
  object-position: 56% center;
}

.hero-visual-wrap:hover img,
.vision-media:hover img {
  transform: scale(1.014);
}

.hero-visual figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 230, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.open-circle {
  position: absolute;
  top: -4.25rem;
  right: -4.3rem;
  z-index: 2;
  width: min(29vw, 25rem);
  overflow: visible;
  transform: rotate(-24deg);
}

.open-circle circle,
.manifesto-mark circle {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 930 113;
  stroke-dashoffset: 40;
}

.open-circle circle {
  animation: circle-draw 1600ms var(--ease-out) 300ms both;
}

@keyframes circle-draw {
  from {
    stroke-dashoffset: 1040;
  }
  to {
    stroke-dashoffset: 40;
  }
}

.hero-seal {
  position: absolute;
  top: 1rem;
  right: -0.3rem;
  z-index: 3;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  color: var(--paper);
  background: var(--clay);
  border: 0.35rem solid rgba(244, 239, 230, 0.78);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  box-shadow: 0 1.25rem 2.5rem rgba(9, 29, 31, 0.18);
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0.5rem;
  border-top: 1px solid var(--ink-12);
}

.hero-index span {
  position: relative;
  padding: 1.35rem 1rem 1.5rem;
  color: rgba(16, 40, 43, 0.58);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-align: center;
}

.hero-index span + span::before {
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 0;
  width: 1px;
  content: "";
  background: var(--ink-12);
}

/* About */

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 4fr 4fr 2fr;
  gap: 2rem;
  align-items: start;
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.4rem;
}

.section-index span:first-child {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.section-index span:last-child {
  max-width: 8rem;
  color: rgba(16, 40, 43, 0.45);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.about-statement {
  grid-column: 2 / 4;
}

.about-statement .section-title {
  max-width: 12ch;
}

.about-copy {
  grid-column: 2 / 3;
  padding-top: 3rem;
  color: rgba(16, 40, 43, 0.7);
  font-size: 1.04rem;
  line-height: 1.95;
  text-align: justify;
  text-justify: inter-ideograph;
}

.about-copy p + p {
  margin-top: 1.5rem;
}

.education-scope {
  grid-column: 3 / 5;
  padding-top: 3rem;
}

.education-scope > p {
  margin-bottom: 0.9rem;
  color: rgba(16, 40, 43, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.education-scope ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink-12);
  border-left: 1px solid var(--ink-12);
}

.education-scope li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.1rem 0.8rem;
  align-content: center;
  min-height: 7.2rem;
  padding: 1.1rem;
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}

.education-scope li > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.education-scope strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.education-scope small {
  color: rgba(16, 40, 43, 0.38);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Life assets */

.life-assets {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(167, 99, 77, 0.08), transparent 24rem),
    var(--linen);
}

.living-line {
  position: absolute;
  top: 0;
  left: 6vw;
  width: 1px;
  height: 100%;
  overflow: visible;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(167, 123, 64, 0.48) 15%,
    rgba(167, 123, 64, 0.28) 84%,
    transparent
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1500ms var(--ease-out);
}

.life-assets:has(.is-visible) .living-line {
  transform: scaleY(1);
}

.assets-header {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 5rem;
  align-items: end;
}

.assets-header .section-title {
  max-width: 10ch;
}

.assets-experience {
  display: grid;
  grid-template-columns: minmax(30rem, 6fr) minmax(24rem, 5fr);
  gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
  margin-top: clamp(5rem, 8vw, 8rem);
}

.asset-orbit {
  position: relative;
  display: grid;
  width: min(100%, 37rem);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.orbit-rings {
  position: absolute;
  inset: 0;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(16, 40, 43, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    border-color 700ms var(--ease-out),
    box-shadow 700ms var(--ease-out),
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.orbit-ring::after {
  position: absolute;
  top: 50%;
  right: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background: var(--linen);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    background-color 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.ring-1 {
  width: 100%;
  height: 100%;
}

.ring-2 {
  width: 82%;
  height: 82%;
}

.ring-3 {
  width: 64%;
  height: 64%;
}

.ring-4 {
  width: 46%;
  height: 46%;
}

.ring-5 {
  width: 28%;
  height: 28%;
}

.orbit-ring.is-active {
  z-index: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.42rem rgba(167, 123, 64, 0.06);
  transform: translate(-50%, -50%) scale(1.012);
}

.orbit-ring.is-active::after {
  background: var(--gold);
  transform: translateY(-50%) scale(1.45);
}

.orbit-axis {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: 1px;
  background: rgba(16, 40, 43, 0.09);
  transform: rotate(-18deg);
}

.orbit-content {
  position: relative;
  z-index: 2;
  width: 15.5rem;
  padding: 1.4rem;
  text-align: center;
}

.orbit-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.orbit-english {
  margin-top: 1.1rem;
  color: rgba(16, 40, 43, 0.44);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.orbit-content h3 {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.orbit-content > p:last-child {
  margin-top: 1rem;
  color: rgba(16, 40, 43, 0.68);
  font-size: 0.9rem;
  line-height: 1.8;
}

.asset-list {
  border-top: 1px solid rgba(16, 40, 43, 0.16);
}

.asset-list li {
  border-bottom: 1px solid rgba(16, 40, 43, 0.16);
}

.asset-trigger {
  display: grid;
  grid-template-columns: 3rem 1fr 2.2rem;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.55rem 0.25rem;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition:
    color 600ms var(--ease-out),
    padding 600ms var(--ease-out);
}

.asset-trigger:hover,
.asset-trigger.is-active {
  color: var(--clay);
  padding-left: 0.75rem;
}

.asset-list-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.86rem;
}

.asset-list-main {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}

.asset-list-main strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.asset-list-main small {
  color: rgba(16, 40, 43, 0.4);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asset-arrow {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(16, 40, 43, 0.16);
  border-radius: 50%;
  transition:
    color 600ms var(--ease-out),
    background-color 600ms var(--ease-out),
    border-color 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.asset-trigger:hover .asset-arrow,
.asset-trigger.is-active .asset-arrow {
  color: var(--paper);
  background: var(--clay);
  border-color: var(--clay);
  transform: rotate(45deg);
}

.asset-mobile-description {
  display: none;
}

/* Actions */

.actions {
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 83% 18%, rgba(167, 123, 64, 0.16), transparent 28rem),
    var(--ink);
}

.actions::before {
  position: absolute;
  top: 8%;
  right: -11rem;
  width: 32rem;
  height: 32rem;
  content: "";
  border: 1px solid rgba(195, 154, 98, 0.14);
  border-radius: 50%;
}

.actions-intro {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 5rem;
  align-items: end;
}

.actions-intro > p {
  max-width: 29rem;
  color: rgba(244, 239, 230, 0.64);
  font-size: 1.04rem;
  line-height: 1.9;
}

.action-steps {
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--paper-18);
}

.action-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2.4fr 5fr 1.6fr;
  gap: 2rem;
  align-items: center;
  min-height: 9rem;
  border-bottom: 1px solid var(--paper-18);
  transition:
    color 700ms var(--ease-out),
    padding 700ms var(--ease-out);
}

.action-step::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 700ms var(--ease-out);
}

.action-step > * {
  position: relative;
  z-index: 1;
}

.action-step:hover {
  color: var(--ink);
  padding-inline: 1.2rem;
}

.action-step:hover::before {
  transform: scaleY(1);
}

.action-number {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.action-step h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.action-step > p {
  max-width: 35rem;
  color: rgba(244, 239, 230, 0.62);
  line-height: 1.85;
  transition: color 700ms var(--ease-out);
}

.action-step:hover > p {
  color: rgba(16, 40, 43, 0.67);
}

.action-english {
  justify-self: end;
  color: rgba(244, 239, 230, 0.35);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: color 700ms var(--ease-out);
}

.action-step:hover .action-english {
  color: var(--clay);
}

/* Values */

.values {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(16, 40, 43, 0.07) 50%, transparent 50.05%),
    var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: start;
}

.values-heading {
  position: sticky;
  top: 9rem;
}

.values-heading .section-title {
  max-width: 10ch;
}

.values-heading .section-intro {
  margin-top: 2.4rem;
}

.value-list {
  border-top: 1px solid var(--ink-12);
}

.value-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--ink-12);
}

.value-number {
  padding-top: 0.35rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.value-item div > p {
  color: rgba(16, 40, 43, 0.42);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-item h3 {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.value-item div > span {
  color: rgba(16, 40, 43, 0.68);
  line-height: 1.8;
}

/* Vision */

.vision {
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 76%, rgba(56, 90, 85, 0.26), transparent 28rem),
    var(--ink-deep);
}

.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(25rem, 5fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: center;
}

.vision-media {
  min-height: 47rem;
}

.vision-media .visual-bezel {
  padding: 0.5rem;
  background: rgba(244, 239, 230, 0.06);
  border-color: rgba(244, 239, 230, 0.09);
  border-radius: 2.3rem 15rem 2.3rem 2.3rem;
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vision-media figure {
  position: relative;
  height: 100%;
  min-height: 46rem;
  overflow: hidden;
  border-radius: 1.85rem calc(15rem - 0.5rem) 1.85rem 1.85rem;
}

.vision-media img {
  position: absolute;
  inset: 0;
}

.vision-media figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 29, 31, 0.68));
}

.vision-media figcaption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 2;
  color: rgba(244, 239, 230, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.vision-number {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-family: var(--serif);
}

.vision-number span {
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.vision-number small {
  padding: 0 0 0.9rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.vision-copy .section-title {
  max-width: 100%;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.vision-copy .section-title .phrase:last-child {
  font-size: 0.72em;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.vision-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 2rem;
  color: rgba(244, 239, 230, 0.66);
  font-size: 1.04rem;
  line-height: 1.95;
  text-align: justify;
  text-justify: inter-ideograph;
}

.vision-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.6rem;
  border-top: 1px solid var(--paper-18);
  border-left: 1px solid var(--paper-18);
}

.vision-outcomes li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  min-height: 4rem;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--paper-18);
  border-bottom: 1px solid var(--paper-18);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.vision-outcomes span {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.vision-line {
  position: absolute;
  top: 5.5rem;
  right: -3rem;
  z-index: 1;
  width: 22rem;
  height: 31rem;
  transform: rotate(8deg);
}

.vision-line::before,
.vision-line::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(195, 154, 98, 0.12);
  border-radius: 48% 52% 58% 42%;
}

.vision-line::before {
  inset: 0;
}

.vision-line::after {
  inset: 3rem 4rem;
}

.vision-line span {
  position: absolute;
  width: 0.44rem;
  height: 0.44rem;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0.38;
}

.vision-line span:nth-child(1) {
  top: 4%;
  left: 50%;
}

.vision-line span:nth-child(2) {
  top: 12%;
  left: 74%;
}

.vision-line span:nth-child(3) {
  top: 24%;
  left: 88%;
}

.vision-line span:nth-child(4) {
  top: 38%;
  left: 94%;
}

.vision-line span:nth-child(5) {
  top: 53%;
  left: 91%;
}

.vision-line span:nth-child(6) {
  top: 67%;
  left: 82%;
}

.vision-line span:nth-child(7) {
  top: 81%;
  left: 65%;
}

.vision-line span:nth-child(8) {
  top: 91%;
  left: 44%;
}

.vision-line span:nth-child(9) {
  top: 84%;
  left: 22%;
}

.vision-line span:nth-child(10) {
  top: 70%;
  left: 9%;
}

.vision-line span:nth-child(11) {
  top: 51%;
  left: 3%;
}

.vision-line span:nth-child(12) {
  top: 31%;
  left: 7%;
}

.vision-line span:nth-child(13) {
  top: 17%;
  left: 20%;
}

.vision-line span:nth-child(14) {
  top: 30%;
  left: 40%;
}

.vision-line span:nth-child(15) {
  top: 27%;
  left: 62%;
}

.vision-line span:nth-child(16) {
  top: 43%;
  left: 73%;
}

.vision-line span:nth-child(17) {
  top: 61%;
  left: 66%;
}

.vision-line span:nth-child(18) {
  top: 71%;
  left: 48%;
}

.vision-line span:nth-child(19) {
  top: 60%;
  left: 28%;
}

.vision-line span:nth-child(20) {
  top: 43%;
  left: 28%;
}

/* Manifesto */

.manifesto {
  background:
    radial-gradient(circle at 14% 60%, rgba(167, 123, 64, 0.1), transparent 30rem),
    var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.manifesto-mark {
  position: relative;
  display: grid;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  place-items: center;
}

.manifesto-mark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: rotate(32deg);
}

.manifesto-mark circle {
  stroke: rgba(167, 123, 64, 0.48);
  stroke-width: 1;
  stroke-dasharray: 690 102;
}

.manifesto-mark span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -0.11em;
  transform: translateX(-0.05em);
}

.manifesto-title {
  max-width: 15ch;
  font-size: clamp(3.3rem, 5.6vw, 5.8rem);
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 2.4rem;
  color: rgba(16, 40, 43, 0.7);
  font-size: 1.05rem;
  line-height: 1.95;
}

/* Footer */

.site-footer {
  padding-top: 5rem;
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4.5rem;
}

.footer-brand {
  width: 15rem;
  height: 3.65rem;
  background: var(--paper);
  border-radius: 0.3rem;
}

.footer-main > div > p {
  margin-top: 1rem;
  color: rgba(244, 239, 230, 0.45);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.footer-main nav {
  display: grid;
  gap: 0.7rem;
}

.footer-main nav a {
  width: fit-content;
  color: rgba(244, 239, 230, 0.64);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  transition:
    color 500ms var(--ease-out),
    transform 500ms var(--ease-out);
}

.footer-main nav a:hover {
  color: var(--paper);
  transform: translateX(0.25rem);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-block: 1.4rem;
  color: rgba(244, 239, 230, 0.34);
  border-top: 1px solid var(--paper-10);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 56px, 1120px);
  }

  .nav-island {
    grid-template-columns: 11rem 1fr auto;
    gap: 1.2rem;
  }

  .brand-lockup {
    width: 10.7rem;
  }

  .desktop-nav {
    gap: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 5fr) minmax(28rem, 6fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.4vw, 6rem);
  }

  .hero-principle {
    gap: 0.65rem;
    font-size: 0.78rem;
  }

  .assets-experience {
    grid-template-columns: minmax(26rem, 6fr) minmax(22rem, 5fr);
    gap: 3rem;
  }

  .action-step {
    grid-template-columns: 0.7fr 2fr 4fr 1.2fr;
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 920px);
  }

  .site-header {
    width: calc(100vw - 32px);
  }

  .nav-island {
    grid-template-columns: 1fr auto;
    min-height: 4.2rem;
    padding-right: 0.55rem;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .brand-lockup {
    width: 11.5rem;
    height: 2.8rem;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    cursor: pointer;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: var(--paper);
    transform-origin: center;
    transition: transform 700ms var(--ease-heavy);
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, -0.22rem);
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, 0.22rem);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .mobile-menu nav {
    display: grid;
    border-top: 1px solid var(--ink-12);
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink-12);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    transform: translateY(1.2rem);
    transition:
      opacity 700ms var(--ease-out),
      transform 700ms var(--ease-out);
  }

  .mobile-menu[aria-hidden="true"] nav a {
    opacity: 0;
  }

  .mobile-menu[aria-hidden="false"] nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav a:nth-child(2) {
    transition-delay: 60ms;
  }

  .mobile-menu nav a:nth-child(3) {
    transition-delay: 120ms;
  }

  .mobile-menu nav a:nth-child(4) {
    transition-delay: 180ms;
  }

  .mobile-menu nav a:nth-child(5) {
    transition-delay: 240ms;
  }

  .mobile-menu nav span {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.7rem;
  }

  .mobile-menu > p {
    margin-top: 2.4rem;
    color: rgba(16, 40, 43, 0.5);
    font-family: var(--serif);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 49rem;
    padding-block: 4rem 1.5rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(4.3rem, 11vw, 6.5rem);
  }

  .hero-lead {
    max-width: 40rem;
  }

  .hero-visual-wrap {
    width: min(100%, 48rem);
    min-height: min(72svh, 45rem);
    margin-left: auto;
  }

  .hero-visual {
    min-height: min(70svh, 43rem);
  }

  .open-circle {
    width: min(45vw, 23rem);
  }

  .about-grid {
    grid-template-columns: 1fr 5fr 5fr;
  }

  .section-index {
    grid-row: 1 / 3;
  }

  .about-statement {
    grid-column: 2 / 4;
  }

  .about-copy {
    grid-column: 2 / 3;
  }

  .education-scope {
    grid-column: 3 / 4;
  }

  .assets-header,
  .actions-intro {
    grid-template-columns: 1fr;
  }

  .assets-header .section-intro,
  .actions-intro > p {
    max-width: 40rem;
  }

  .assets-experience {
    grid-template-columns: 1fr;
  }

  .asset-orbit {
    width: min(100%, 34rem);
  }

  .asset-list {
    width: min(100%, 40rem);
    margin-inline: auto;
  }

  .action-step {
    grid-template-columns: 0.6fr 2fr 3.8fr;
  }

  .action-english {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-heading {
    position: static;
  }

  .values-heading .section-intro {
    max-width: 40rem;
  }

  .value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-media {
    min-height: 40rem;
  }

  .vision-media figure {
    min-height: 39rem;
  }

  .vision-copy {
    max-width: 45rem;
    order: -1;
  }

  .manifesto-grid {
    grid-template-columns: 3fr 7fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 40px);
    --section-space: clamp(5.7rem, 22vw, 7.2rem);
  }

  html {
    scroll-padding-top: 6rem;
  }

  body {
    font-size: 0.98rem;
  }

  .site-header {
    top: 0.75rem;
    width: calc(100vw - 24px);
  }

  .nav-island {
    min-height: 3.8rem;
    padding: 0.35rem 0.4rem 0.35rem 0.8rem;
  }

  .brand-lockup {
    width: 10rem;
    height: 2.5rem;
  }

  .menu-toggle {
    width: 3rem;
    height: 3rem;
  }

  .mobile-menu {
    inset: 0;
    padding: 7rem 1.5rem 2rem;
  }

  .eyebrow {
    margin-bottom: 1.15rem;
    font-size: 0.61rem;
    line-height: 1.45;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
  }

  .section-intro {
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero {
    min-height: auto;
    padding-top: 6.4rem;
  }

  .hero::before {
    top: -13rem;
    left: -18rem;
    width: 30rem;
    height: 30rem;
  }

  .hero-grid {
    gap: 2.8rem;
  }

  .hero-copy {
    padding-block: 3.5rem 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  .hero-lead {
    margin-top: 1.7rem;
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
    margin-top: 1.8rem;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .text-link {
    justify-content: center;
  }

  .hero-principle {
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
    margin-top: 2rem;
    font-size: 0.7rem;
  }

  .hero-visual-wrap {
    width: 100%;
    min-height: 72svh;
    margin: 0;
  }

  .visual-bezel {
    padding: 0.4rem;
    border-radius: 10rem 10rem 1.7rem 1.7rem;
  }

  .hero-visual {
    min-height: 70svh;
    border-radius: calc(10rem - 0.4rem) calc(10rem - 0.4rem) 1.3rem 1.3rem;
  }

  .hero-visual img {
    object-position: 66% center;
  }

  .open-circle {
    top: -2.9rem;
    right: -2.8rem;
    width: 12rem;
  }

  .hero-seal {
    top: 0;
    right: -0.2rem;
    width: 3.4rem;
    height: 3.4rem;
    border-width: 0.28rem;
    font-size: 0.7rem;
  }

  .hero-index {
    margin-top: 2.5rem;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(5rem, 1fr));
    scrollbar-width: none;
  }

  .hero-index::-webkit-scrollbar {
    display: none;
  }

  .hero-index span {
    padding-inline: 0.65rem;
    font-size: 0.72rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-index {
    display: none;
  }

  .about-statement,
  .about-copy,
  .education-scope {
    grid-column: 1;
  }

  .about-copy {
    padding-top: 2.2rem;
  }

  .education-scope {
    margin-top: 3rem;
    padding-top: 0;
  }

  .education-scope ol {
    grid-template-columns: 1fr;
  }

  .living-line {
    left: 1rem;
  }

  .assets-experience {
    display: block;
    margin-top: 3.5rem;
  }

  .asset-orbit {
    display: none;
  }

  .asset-list {
    width: 100%;
  }

  .asset-trigger {
    grid-template-columns: 2.4rem 1fr;
    align-items: start;
    padding: 1.5rem 0;
    cursor: default;
    pointer-events: none;
  }

  .asset-trigger:hover,
  .asset-trigger.is-active {
    color: inherit;
    padding-left: 0;
  }

  .asset-list-main {
    display: block;
  }

  .asset-list-main strong {
    display: inline-block;
    font-size: 1.5rem;
  }

  .asset-list-main small {
    display: inline-block;
    margin-left: 0.6rem;
  }

  .asset-mobile-description {
    display: block;
    margin-top: 0.7rem;
    color: rgba(16, 40, 43, 0.68);
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .asset-arrow {
    display: none;
  }

  .actions-intro {
    gap: 1.8rem;
  }

  .action-steps {
    margin-top: 3.8rem;
  }

  .action-step {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.5rem 1rem;
    align-items: start;
    min-height: 0;
    padding: 1.7rem 0;
  }

  .action-step:hover {
    color: var(--paper);
    padding-inline: 0;
  }

  .action-step:hover::before {
    transform: scaleY(0);
  }

  .action-step h3 {
    font-size: 2rem;
  }

  .action-step > p {
    grid-column: 2;
    color: rgba(244, 239, 230, 0.62);
    font-size: 0.94rem;
  }

  .action-step:hover > p {
    color: rgba(244, 239, 230, 0.62);
  }

  .value-list {
    display: block;
  }

  .value-item {
    grid-template-columns: 2.8rem 1fr;
    padding: 1.8rem 0;
  }

  .value-item h3 {
    font-size: 1.9rem;
  }

  .vision-grid {
    gap: 3.8rem;
  }

  .vision-media {
    min-height: 65svh;
  }

  .vision-media .visual-bezel {
    border-radius: 1.6rem 8rem 1.6rem 1.6rem;
  }

  .vision-media figure {
    min-height: calc(65svh - 0.8rem);
    border-radius: 1.2rem calc(8rem - 0.4rem) 1.2rem 1.2rem;
  }

  .vision-media img {
    object-position: 42% center;
  }

  .vision-number span {
    font-size: clamp(6rem, 31vw, 8rem);
  }

  .vision-copy .section-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .vision-outcomes {
    grid-template-columns: 1fr;
  }

  .vision-line {
    opacity: 0.65;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-mark {
    width: 12rem;
  }

  .manifesto-mark span {
    font-size: 5rem;
  }

  .manifesto-title {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .manifesto-copy > p:not(.eyebrow) {
    margin-top: 1.8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .footer-brand {
    width: 14rem;
    height: 3.4rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 380px) {
  :root {
    --page: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-principle {
    font-size: 0.64rem;
  }

  .hero-visual-wrap {
    min-height: 66svh;
  }

  .hero-visual {
    min-height: 64svh;
  }

  .section-title {
    font-size: 2.45rem;
  }

  .asset-list-main small {
    display: block;
    margin: 0.15rem 0 0;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
