/* ===== Design Tokens — Strict Monochrome ===== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F4F4F2;
  --bg-darker: #ECEAE6;
  --ink: #0A0A0A;
  --ink-2: #2A2A2A;
  --ink-3: #555555;
  --muted: #8A8A88;
  --line: #DBDBD6;
  --line-strong: #B8B6B0;
  --dark: #0A0A0A;
  --dark-2: #161616;
  --accent: #1A1A1A;
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --display: "Cormorant Garamond", "Noto Serif JP", serif;
  --khmer: "Noto Serif Khmer", "Noto Sans Khmer", "Khmer OS", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-soft: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ===== Translations (JA / KM under EN) ===== */
.trans {
  display: block;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: var(--sans);
  font-style: normal;
}
.trans--km { font-family: var(--khmer), var(--sans); font-size: 14.5px; line-height: 1.85; }
.trans--ja { font-family: var(--sans); }
.trans-stack { display: flex; flex-direction: column; gap: 8px; }
.section--dark .trans { color: rgba(255,255,255,0.6); }

/* ===== Layout ===== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section {
  padding: clamp(96px, 14vw, 200px) 0;
  position: relative;
}

.section--dark {
  background: var(--dark);
  color: var(--bg);
}

.section--alt { background: var(--bg-alt); }

.section__head { margin-bottom: clamp(48px, 7vw, 96px); }

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink);
}
.section--dark .eyebrow { color: var(--bg); }
.section--dark .eyebrow::before { background: var(--bg); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--bg); }

.h-display {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.h-section {
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.26;
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
}
.h-section.h-section--ja { font-family: var(--serif); font-style: normal; }

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 2.05;
  color: var(--ink-2);
  max-width: 740px;
}
.section--dark .lead { color: rgba(255,255,255,0.78); }

.text-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  padding: 0 0.1em;
}

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.5s var(--easing), padding 0.5s var(--easing), color 0.5s var(--easing), border 0.5s;
  color: #FFFFFF;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(219, 219, 214, 0.4);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  position: relative;
}
.brand__logo {
  width: 250px;
  height: auto;
  display: block;
  transition: width 0.4s var(--easing), opacity 0.35s var(--easing);
}
.brand__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.header.is-scrolled .brand__logo { width: 210px; }
.header.is-scrolled .brand__logo--white { opacity: 0; }
.header.is-scrolled .brand__logo--dark { opacity: 1; }

.nav {
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav a {
  position: relative;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.04em;
  padding: 6px 0;
  text-transform: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right 0.45s var(--easing);
}
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 102;
}
.menu-btn span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--easing), opacity 0.3s, top 0.3s, background 0.3s;
  border-radius: 1px;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 25px; }
.menu-btn.is-open { color: var(--ink); }
.menu-btn.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  /* Hero: generous bottom space so SCROLL never crowds the lead text */
  .hero {
    padding: 140px 0 300px;
    min-height: 100vh;
  }
  .hero__lead {
    margin-top: 48px;
    margin-bottom: 64px;
  }
  .hero__meta {
    bottom: 40px;
    gap: 16px;
  }
  .hero__meta .scroll::after { height: 56px; }

  .brand__logo { width: 190px; }
  .header.is-scrolled .brand__logo { width: 170px; }
  .menu-btn { display: block; }

  /* Backdrop behind drawer */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--easing);
    z-index: 99;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

  /* Right-side drawer */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 78%);
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 96px 36px 48px;
    gap: 24px;
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
    transition: opacity 0.4s var(--easing), transform 0.5s var(--easing);
    z-index: 100;
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.18);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav a {
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--ink);
  }
  .nav a::after { background: var(--ink); }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  padding: 200px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/visuals/architecture-1.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.55);
  opacity: 0.7;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.65) 70%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; color: #fff; }

.hero__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.4em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 0.2s forwards;
  color: rgba(255,255,255,0.85);
}

.hero__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 8.6vw, 132px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: #fff;
}
.hero__title .ja {
  display: block;
  overflow: hidden;
}
.hero__title .ja span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s var(--easing) forwards;
}
.hero__title .ja:nth-child(2) span { animation-delay: 0.12s; }
.hero__title .ja:nth-child(3) span { animation-delay: 0.24s; }

@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__trans {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 0.7s forwards;
}
.hero__trans p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.hero__trans .km { font-family: var(--khmer); }

.hero__lead {
  max-width: 560px;
  font-size: 16px;
  line-height: 2.1;
  color: rgba(255,255,255,0.85);
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 0.9s forwards;
}

.hero__meta {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 1.2s forwards;
}
.hero__meta .scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__meta .scroll::after {
  content: "";
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, transparent 100%);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink);
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee__track span::after {
  content: "✦";
  font-size: 0.45em;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s var(--easing), transform 1.1s var(--easing);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-visible { transition-delay: 0.1s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.2s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.3s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.4s; }
[data-reveal-delay="5"].is-visible { transition-delay: 0.5s; }

[data-reveal-img] { overflow: hidden; }
[data-reveal-img] img,
[data-reveal-img] .img {
  transform: scale(1.18);
  opacity: 0;
  transition: transform 1.5s var(--easing-soft), opacity 1.1s var(--easing);
}
[data-reveal-img].is-visible img,
[data-reveal-img].is-visible .img {
  transform: scale(1);
  opacity: 1;
}

.parallax { will-change: transform; }

/* ===== Layouts ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ===== Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--easing);
}
.pillar:last-child { border-right: 0; }
@media (max-width: 880px) {
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
}
.pillar:hover { background: var(--bg-alt); }
.pillar__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 28px;
  color: var(--muted);
}
.pillar__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 18px;
}
.pillar__body {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--ink-3);
}

/* ===== Numbered tenets ===== */
.tenets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  margin-top: clamp(80px, 10vw, 140px);
}
.tenet {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.tenet__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.tenet__body h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  margin-bottom: 14px;
}
.tenet__body p {
  font-size: 17.5px;
  color: var(--ink-3);
  line-height: 2;
}
.tenet__body h3 + p { margin-top: 8px; }
.section--dark .tenets { border-top-color: rgba(255,255,255,0.25); }
.section--dark .tenet { border-bottom-color: rgba(255,255,255,0.12); }
.section--dark .tenet__num { color: var(--bg); }
.section--dark .tenet__body p { color: rgba(255,255,255,0.72); }
@media (max-width: 720px) {
  .tenet { grid-template-columns: 70px 1fr; gap: 24px; padding: 32px 0; }
  .tenet__num { font-size: 24px; }
  .tenet__body h3 { font-size: 20px; }
}

/* ===== Image collage ===== */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(38px, 6vw, 80px);
  gap: clamp(8px, 1vw, 16px);
  margin-top: 80px;
}
.collage__tile {
  overflow: hidden;
  position: relative;
}
.collage__tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.2s var(--easing-soft), filter 0.6s;
}
.collage__tile:hover img { transform: scale(1.06); filter: grayscale(80%) contrast(1.1); }
.collage__tile--a { grid-column: 1 / span 5; grid-row: span 5; }
.collage__tile--b { grid-column: 6 / span 4; grid-row: span 3; }
.collage__tile--c { grid-column: 10 / span 3; grid-row: span 4; }
.collage__tile--d { grid-column: 6 / span 4; grid-row: span 2; }
.collage__tile--e { grid-column: 10 / span 3; grid-row: span 1; }

/* ===== FOUNDERS — Centerpiece (no photos, husband + wife) ===== */
.founders-hero {
  background: var(--dark);
  color: var(--bg);
  padding: clamp(120px, 18vw, 220px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.founders-hero::before {
  content: "FOUNDERS";
  position: absolute;
  top: 6%;
  right: -2%;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(140px, 24vw, 360px);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.045);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.founders-hero__lead {
  max-width: 820px;
  margin-bottom: clamp(70px, 9vw, 120px);
  position: relative;
  z-index: 1;
}
.founders-hero h2 {
  color: var(--bg);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}
.founders-hero h2 .amp {
  font-size: 1.2em;
  color: rgba(255,255,255,0.55);
  padding: 0 0.05em;
}
.founders-hero__intro {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.1;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
}
.founders-hero__intro .trans { color: rgba(255,255,255,0.45); }

.founders-pair {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .founders-pair { grid-template-columns: 1fr; gap: 64px; }
}
.founders-pair__amp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 16vw, 240px);
  color: rgba(255,255,255,0.18);
  line-height: 0.8;
  position: relative;
}
.founders-pair__amp::before, .founders-pair__amp::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18));
  transform: translateX(-50%);
}
.founders-pair__amp::before { top: 0; }
.founders-pair__amp::after { bottom: 0; transform: translateX(-50%) rotate(180deg); }
@media (max-width: 880px) {
  .founders-pair__amp { font-size: 100px; }
  .founders-pair__amp::before, .founders-pair__amp::after { display: none; }
}

.founder-card {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.founder-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.founder-card__num .salut {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
}
.founder-card__name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(60px, 8vw, 132px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--bg);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}
.founder-card__name .given { font-size: 0.7em; opacity: 0.85; }
.founder-card__name .family { font-size: 1em; }
.founder-card__name small {
  display: block;
  font-size: 11px;
  font-family: var(--sans);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3em;
  margin-top: 18px;
  font-weight: 400;
  font-style: normal;
}
.founder-card__role {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.founder-card__quote {
  margin-top: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.35);
}
.founder-card__quote .trans { color: rgba(255,255,255,0.5); margin-top: 12px; font-style: normal; }
.founder-card__msg {
  margin-top: 36px;
  font-size: 14.5px;
  line-height: 2.05;
  color: rgba(255,255,255,0.72);
}
.founder-card__msg p + p { margin-top: 1.3em; }
.founder-card__msg .trans { color: rgba(255,255,255,0.4); }

/* ===== Manifesto block ===== */
.manifesto {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(100px, 16vw, 180px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto::before {
  content: "MANIFESTO";
  position: absolute;
  bottom: -50px;
  right: -30px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(140px, 24vw, 340px);
  color: rgba(10,10,10,0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
  line-height: 1;
}
.manifesto blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 1020px;
  letter-spacing: 0.005em;
  position: relative;
  z-index: 1;
}
.manifesto blockquote::before {
  content: "“";
  font-family: var(--display);
  font-size: 1.4em;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -0.15em;
  color: var(--ink);
}
.manifesto blockquote .trans {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  line-height: 1.95;
  max-width: 760px;
}
.manifesto blockquote .trans.km { font-family: var(--khmer); }
.manifesto cite {
  display: block;
  margin-top: 48px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--muted);
}

/* ===== Chapter ===== */
.chapter {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
}
.chapter__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.chapter__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section--dark .chapter__line { background: rgba(255,255,255,0.2); }

/* ===== Full-bleed image divider ===== */
.bleed {
  position: relative;
  height: clamp(360px, 60vh, 640px);
  overflow: hidden;
}
.bleed__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  will-change: transform;
}
.bleed__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.bleed__caption p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 800px;
}
.bleed__caption .trans {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 760px;
}
.bleed__caption .trans.km { font-family: var(--khmer); }

/* ===== Selection / focus ===== */
::selection { background: var(--ink); color: var(--bg); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 36px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: end;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .logo {
  width: 220px;
  display: block;
  margin-bottom: 22px;
  color: var(--bg);
}
.footer__desc { line-height: 1.9; max-width: 480px; }
.footer__desc .trans { display: block; margin-top: 6px; color: rgba(255,255,255,0.35); font-size: 12px; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: 0.24em;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  text-transform: uppercase;
}
.footer__nav a:hover { color: var(--bg); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
}

/* ===== Cursor (desktop only) ===== */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, .pillar, .founder-card, .collage__tile { cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
    will-change: transform;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: #fff;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--easing), height 0.3s var(--easing), border-color 0.3s;
  }
  .cursor-ring.is-hover {
    width: 64px; height: 64px;
    border-color: rgba(255,255,255,0.9);
  }
}

/* ===== Counter strip — 3 items, big number, small unit ===== */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 96px;
}
@media (max-width: 720px) { .counter-strip { grid-template-columns: 1fr; } }
.counter {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.counter:last-child { border-right: 0; }
@media (max-width: 720px) {
  .counter { border-right: 0; border-bottom: 1px solid var(--line); }
  .counter:last-child { border-bottom: 0; }
}
.counter__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.counter__num {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.counter__unit {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}
.counter__label {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.counter__label .trans {
  color: var(--muted);
  font-style: normal;
  font-family: var(--sans);
  margin-top: 10px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: none;
}
.counter__label .trans + .trans { margin-top: 4px; }
.counter__label .trans--km { font-family: var(--khmer), var(--sans); }
