/* SOMOSOMO — shared stylesheet. Governing idea: premium Japanese corporate
   restraint. Colour is withheld; typography, whitespace and photography carry
   the premium signal. */

:root {
  --ink:        #141619;
  --ink-soft:   #5A5F66;
  --rule:       #E2E1DD;
  --paper:      #FAF9F6;
  --paper-alt:  #F2F1ED;
  --accent:     #6FB3D9;
  --accent-ink: #2C6C93;
  --celadon:    #A8BEB0;

  --font-display: "Zen Old Mincho", "Hiragino Mincho ProN", Georgia, serif;
  --font-body: "Schibsted Grotesk", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease-out:    cubic-bezier(.19, 1, .22, 1);
  --ease-inout:  cubic-bezier(.77, 0, .175, 1);
  --ease-soft:   cubic-bezier(.25, .1, .25, 1);
  --t-ui:        220ms;
  --t-reveal:    700ms;
  --t-line:      900ms;
  --t-mask:      1100ms;
  --stagger:     90ms;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #EDECE8;
    --ink-soft: #9A9EA4;
    --rule: #2A2D31;
    --paper: #121417;
    --paper-alt: #191C20;
    --accent: #8CC6E8;
    --accent-ink: #8CC6E8;
  }
}

:root[data-theme="dark"] {
  --ink: #EDECE8;
  --ink-soft: #9A9EA4;
  --rule: #2A2D31;
  --paper: #121417;
  --paper-alt: #191C20;
  --accent: #8CC6E8;
  --accent-ink: #8CC6E8;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

img { max-width: 100%; display: block; }

::selection {
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 28%, var(--paper));
}

h1, h2, h3 { margin: 0; color: var(--ink); }

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

.mincho { font-family: var(--font-display); }

p { margin: 0; }
p + p { margin-top: 1.1em; }
strong { font-weight: 500; }

a { color: var(--accent-ink); text-decoration-color: var(--rule); }

small, .small, .eyebrow {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.eyebrow {
  display: block;
  letter-spacing: .035em;
  font-weight: 500;
  margin-bottom: .75rem;
}

.numeral {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Layout */

.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.prose { max-width: 68ch; }
.prose-col { max-width: 680px; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }

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

.rule-top { border-top: 1px solid var(--rule); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.col {
  border-top: 1px solid var(--rule);
  padding-top: 1.75rem;
}

.stack { display: flex; flex-direction: column; gap: 3rem; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-ui) var(--ease-soft), transform var(--t-ui) var(--ease-out);
}

.site-header.is-scrolled { border-bottom-color: var(--rule); }
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding-block: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-img.logo-dark { display: none; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo-img.logo-light { display: none; }
  :root:not([data-theme="light"]) .logo-img.logo-dark { display: block; }
}

:root[data-theme="dark"] .logo-img.logo-light { display: none; }
:root[data-theme="dark"] .logo-img.logo-dark { display: block; }

.logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--t-ui) var(--ease-inout), border-color var(--t-ui) var(--ease-inout);
}


.site-nav a[aria-current="page"] {
  color: var(--accent-ink);
  border-bottom-color: var(--accent);
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 68px);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.hero-accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.75rem;
}

.hero .lead {
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
}

.hero--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 96%, transparent) 0%, color-mix(in srgb, var(--paper) 88%, transparent) 43%, color-mix(in srgb, var(--paper) 28%, transparent) 72%, transparent 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  filter: saturate(.78) contrast(.94);
  clip-path: inset(0 0 0 100%);
  transform: scale(1.035);
  transform-origin: center;
  will-change: clip-path, transform;
}

.hero.is-visible .hero-bg {
  clip-path: inset(0);
  transform: scale(1);
  transition: clip-path 1300ms var(--ease-inout), transform 1800ms var(--ease-out);
}

.hero-bg--right { object-position: 70% 50%; }
.hero-bg.art-generated {
  object-position: center;
  filter: none;
}
.hero-content { width: 100%; }
.hero-copy { max-width: 56rem; }
.hero-copy .eyebrow { margin-bottom: 1.25rem; }

@media (min-width: 900px) {
  .hero-copy { max-width: 55%; }
}

/* Brand entry (Moro) */

.brand-entry h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

/* Buttons / links-as-CTA */

.cta-link {
  display: inline-block;
  margin-top: 1.75rem;
  color: var(--accent-ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 2px;
  transition: color var(--t-ui) var(--ease-inout), border-color var(--t-ui) var(--ease-inout);
}


/* Footer */

.site-footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.footer-identity p { margin: 0; font-size: 1rem; line-height: 1.7; }
.footer-identity p + p { margin-top: .2rem; }
.footer-name { font-weight: 500; }

.footer-nav ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
}


.footer-legal { border-top: 1px solid var(--rule); padding-top: 1.25rem; }

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .footer-copyright { grid-column: 1 / -1; margin-top: 0; }
}

/* Legal pages */

.legal ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal li {
  border-top: 1px solid var(--rule);
  padding-block: 1.75rem;
}

.legal li:last-child { border-bottom: 1px solid var(--rule); }

.legal h3 { margin-bottom: .6rem; }

.index-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.index-list li {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding: 1.25rem .5rem;
  transition: background-color var(--t-ui) var(--ease-soft);
}

.index-list li:last-child { border-bottom: 1px solid var(--rule); }
.index-list .numeral { margin: 0; }
.index-list a { color: var(--accent-ink); text-decoration: none; }

@media (max-width: 520px) {
  .index-list li { grid-template-columns: 2.5rem 1fr auto; gap: .65rem; }
}

/* Contact form */

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.75rem;
}

.form-field label {
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-field .hint {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: .75rem .9rem;
  transition: border-color var(--t-ui) var(--ease-inout);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea { resize: vertical; min-height: 140px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: .85rem 1.75rem;
  cursor: pointer;
  transition: opacity var(--t-ui) var(--ease-inout);
}

.submit-btn:disabled { opacity: .5; cursor: not-allowed; }

.form-message {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.form-message[data-state="success"] { color: var(--accent-ink); }
.form-message[data-state="error"] { color: var(--ink); }

.contact-layout { align-items: start; }
.contact-layout form { margin-top: clamp(2.5rem, 5vw, 4rem); }

@media (min-width: 900px) {
  .contact-media { position: sticky; top: 92px; }
}

.lede-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 900px) {
  .lede-block { grid-template-columns: 4fr 8fr; gap: 4rem; }
}

.ground--marble {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ground--marble::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/px-tex-marble-light.jpg") center / cover;
  opacity: .1;
}

@media (max-width: 400px) {
  .wrap { padding-inline: 20px; }
}

/* ---------------------------------------------------------------- media --
   Licensed stock photography used as atmosphere. Full-bleed bands avoid
   100vw deliberately: a block-level section is already the full content
   width, and 100vw overflows by the scrollbar width on desktop. */

.media-band {
  width: 100%;
  overflow: hidden;
  background: var(--paper-alt);
  line-height: 0;
}
.media-band img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}
.media-band--tall img { height: clamp(320px, 56vw, 660px); }
.media-band--narrow img { height: clamp(170px, 24vw, 300px); }

.media-figure {
  margin: 0;
  max-width: 540px;
}
.media-figure img {
  width: 100%;
  height: clamp(240px, 34vw, 380px);
  object-fit: cover;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .media-band img,
  :root:not([data-theme="light"]) .media-figure img { filter: brightness(.82); }
}
:root[data-theme="dark"] .media-band img,
:root[data-theme="dark"] .media-figure img { filter: brightness(.82); }

@media (prefers-reduced-motion: reduce) {
  .media-band img, .media-figure img { opacity: 1 !important; transform: none !important; }
}

/* 2026 narrative system ---------------------------------------------------
   A corporate editorial layer built around operating evidence. The pale
   surfaces hold the story; deep navy is reserved for substantiation. */

:root {
  --navy: #10212b;
  --navy-2: #172f3b;
  --mist: #d8e8ee;
  --blue-wash: #eaf3f6;
}

.hero-status,
.section-index,
.aside-label,
.footer-label,
.form-kicker {
  margin: 0 0 1rem;
  font-size: .78rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.hero-status { margin-bottom: 2rem; }
.hero-copy--wide { max-width: 48rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  transition: background-color var(--t-ui) var(--ease-soft), color var(--t-ui) var(--ease-soft);
}

.text-link {
  color: var(--ink);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: .18rem;
}

.text-link--standalone { display: inline-block; margin-top: 1.75rem; }
.text-link--light { color: #f5f5f0; border-bottom-color: var(--accent); display: inline-block; margin-top: 1.5rem; }
.mt-copy { margin-top: 1.5rem; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { background: transparent; color: var(--ink); }
  .proof-ledger .button:hover { color: #fff; border-color: #fff; }
}

.signal-strip {
  padding-block: 2.25rem 1.5rem;
  background: var(--navy);
  color: #f4f3ef;
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.signal-intro p { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.25; }
.signal-intro .small { margin-top: .25rem; font-family: var(--font-body); font-size: .85rem; color: #9fb2bc; }
.signal { border-left: 1px solid #3b515c; padding-left: 1rem; }
.signal strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1; color: #fff; }
.signal span { display: block; margin-top: .65rem; max-width: 22ch; font-size: .82rem; line-height: 1.45; color: #b8c6cc; }
.signal--contrast strong { color: var(--accent); }
.signal-source { margin-top: 1.6rem; font-size: .72rem; line-height: 1.5; color: #8499a3; }
.signal-source a { color: #b9dbe9; }

@media (min-width: 760px) {
  .signal-strip__grid { grid-template-columns: 1.35fr repeat(3, 1fr); gap: 2rem; align-items: end; }
}

.editorial-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.editorial-intro h2 { max-width: 17em; }
.editorial-intro .section-index { padding-top: .6rem; }

@media (min-width: 860px) {
  .editorial-intro { grid-template-columns: minmax(140px, 1fr) minmax(0, 4fr); gap: 4rem; }
}

.section-heading { display: grid; grid-template-columns: 1fr; gap: .75rem; }
.section-heading > p:last-child { max-width: 54ch; color: var(--ink-soft); margin-top: .75rem; }

@media (min-width: 860px) {
  .section-heading { grid-template-columns: 1fr 2fr; gap: 1rem 4rem; align-items: start; }
  .section-heading .section-index { grid-row: 1 / span 2; }
  .section-heading > p:last-child { grid-column: 2; }
}

.system-rail {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}

.system-node {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: .15rem 1rem;
  padding: 1.5rem .25rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.system-node > span { grid-row: 1 / span 2; padding-top: .25rem; font-size: .75rem; color: var(--ink-soft); }
.system-node strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.system-node small { color: var(--ink-soft); }

@media (min-width: 920px) {
  .system-rail { grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--rule); }
  .system-node { display: flex; flex-direction: column; min-height: 210px; padding: 1.5rem 1.1rem; border-right: 1px solid var(--rule); border-bottom: 0; }
  .system-node:first-child { border-left: 1px solid var(--rule); }
  .system-node strong { margin-top: auto; }
}

.development-note {
  max-width: 68ch;
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
  font-size: .82rem;
}

.split--proof { grid-template-columns: 1fr; }
.split-media--landscape { aspect-ratio: 4 / 3; }
@media (min-width: 860px) { .split--proof { grid-template-columns: 1fr 1.15fr; } }

.proof-ledger {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--navy);
  color: #e8ecec;
}
.proof-ledger h2, .proof-ledger h3 { color: #fff; }
.proof-ledger .section-index { color: #91aab5; }
.proof-ledger__head { max-width: 54rem; }
.proof-ledger__head > p:last-child { max-width: 56ch; margin-top: 1.5rem; color: #afbdc3; }
.proof-ledger__grid { display: grid; grid-template-columns: 1fr; margin-top: 3.5rem; border-top: 1px solid #36505c; }
.proof-item { padding: 2rem 0; border-bottom: 1px solid #36505c; }
.proof-item h3 { margin: 2rem 0 .75rem; }
.proof-item p { color: #afbdc3; font-size: .92rem; }
.proof-mark { display: inline-grid; place-items: center; width: 52px; height: 52px; border: 1px solid #69808b; color: #d9e9ef; font-size: .75rem; letter-spacing: .06em; }
@media (min-width: 760px) {
  .proof-ledger__grid { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #36505c; }
  .proof-item { min-height: 260px; padding: 2rem; border-right: 1px solid #36505c; border-bottom: 0; }
  .proof-item:first-child { border-left: 1px solid #36505c; }
}
.proof-ledger--compact { padding-block: clamp(4rem, 7vw, 6rem); }
.proof-ledger__split { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.proof-ledger__split > div:last-child { max-width: 55ch; color: #afbdc3; }
@media (min-width: 860px) { .proof-ledger__split { grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: end; } }

.closing-cta { padding-block: clamp(5rem, 10vw, 9rem); }
.closing-cta__inner { max-width: 56rem; }
.closing-cta__inner > p:not(.section-index) { max-width: 55ch; margin-top: 1.5rem; }
.closing-cta .button { margin-top: 2rem; }

.product-hero { padding-block: clamp(4.5rem, 8vw, 8rem); }
.product-hero__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.product-hero__art { aspect-ratio: 4 / 5; overflow: hidden; }
.product-hero__art img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) { .product-hero__grid { grid-template-columns: 1.15fr .85fr; gap: 5rem; } }

.thesis-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.thesis-row > p:last-child { max-width: 52ch; color: var(--ink-soft); }
@media (min-width: 860px) { .thesis-row { grid-template-columns: .7fr 1.5fr 1fr; gap: 3rem; align-items: start; } }

.engine-map { list-style: none; margin-bottom: 0; padding: 0; border-top: 1px solid var(--rule); }
.engine-map li { border-bottom: 1px solid var(--rule); }
.engine-map a { display: grid; grid-template-columns: 4rem 1fr; padding: 1.2rem .2rem; color: var(--ink); text-decoration: none; font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.engine-map span { padding-top: .45rem; font-family: var(--font-body); font-size: .72rem; color: var(--ink-soft); }

.capability { padding-block: clamp(4.5rem, 8vw, 7rem); }
.capability__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.capability__number { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 7rem); line-height: .8; color: color-mix(in srgb, var(--ink) 14%, transparent); }
.capability aside { margin-top: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); color: var(--ink-soft); }
@media (min-width: 860px) { .capability__grid { grid-template-columns: .5fr 2fr .8fr; gap: 3rem; align-items: start; } .capability aside { margin-top: .7rem; } }

.manifesto-hero { padding-block: clamp(5rem, 10vw, 10rem); }
.manifesto-hero h1 { max-width: 12em; font-size: clamp(3.3rem, 7vw, 6.5rem); }
.manifesto-hero__copy { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.manifesto-hero__copy > p:last-child { max-width: 55ch; color: var(--ink-soft); }
@media (min-width: 860px) { .manifesto-hero__copy { grid-template-columns: 1.25fr 1fr; gap: 5rem; } }

.duality-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
.duality-card { padding: 2.5rem 0; border-bottom: 1px solid var(--rule); }
.duality-card h3 { margin: 2rem 0 1rem; font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.duality-mark { display: inline-grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--ink); }
.duality-card--image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: 2rem; }
@media (min-width: 860px) { .duality-grid { grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--rule); } .duality-card { padding: 3rem; border-right: 1px solid var(--rule); border-bottom: 0; } .duality-card:first-child { border-left: 1px solid var(--rule); } }

.principle-list { border-top: 1px solid var(--rule); }
.principle-list article { display: grid; grid-template-columns: 3rem 1fr; gap: .5rem 1.5rem; padding: 1.5rem .2rem; border-bottom: 1px solid var(--rule); }
.principle-list article > span { grid-row: 1 / span 2; font-size: .75rem; color: var(--ink-soft); }
.principle-list p { color: var(--ink-soft); }
@media (min-width: 800px) { .principle-list article { grid-template-columns: 4rem 1fr 1.4fr; gap: 2rem; align-items: baseline; } .principle-list article > span { grid-row: auto; } }

.hero--moro::after { background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 98%, transparent) 0%, color-mix(in srgb, var(--paper) 93%, transparent) 55%, color-mix(in srgb, var(--paper) 68%, transparent) 100%); }
.loop-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
.loop-grid article { padding: 2rem .25rem; border-bottom: 1px solid var(--rule); }
.loop-grid span { font-size: .75rem; color: var(--ink-soft); }
.loop-grid h3 { margin: 3rem 0 .75rem; font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
@media (min-width: 760px) { .loop-grid { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--rule); } .loop-grid article { min-height: 260px; padding: 2rem; border-right: 1px solid var(--rule); border-bottom: 0; } .loop-grid article:first-child { border-left: 1px solid var(--rule); } }

.moro-gallery { padding-block: clamp(4rem, 8vw, 7rem); }
.moro-gallery__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.moro-gallery__grid figure { margin: 0; overflow: hidden; }
.moro-gallery__grid > figure:first-child { aspect-ratio: 3 / 4; }
.moro-gallery__grid > figure:first-child img { width: 100%; height: 100%; object-fit: cover; }
.moro-gallery__copy { padding-block: 1rem; }
.moro-gallery__wide img { width: 100%; height: auto; }
@media (min-width: 860px) { .moro-gallery__grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } .moro-gallery__wide { grid-column: 1 / -1; width: 76%; margin-left: auto !important; margin-top: 2rem !important; } }

.contact-hero { padding-block: clamp(4.5rem, 8vw, 8rem); }
.contact-stage { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.contact-intro { max-width: 42rem; }
.contact-audiences { margin-top: 3rem; border-top: 1px solid var(--rule); }
.contact-audiences p { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--rule); color: var(--ink-soft); font-size: .9rem; }
.contact-audiences span { color: var(--ink); font-weight: 500; }
.contact-form-shell { background: var(--paper-alt); padding: clamp(1.5rem, 4vw, 3rem); border-top: 3px solid var(--accent); }
.contact-form-shell form { margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-privacy { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); font-size: .75rem; color: var(--ink-soft); }
@media (min-width: 900px) { .contact-stage { grid-template-columns: 1.05fr .95fr; gap: 5rem; } .contact-form-shell { position: sticky; top: 100px; } .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* Footer: a deliberate institutional close, not a thin utility strip. */
.site-footer { background: #0b171e; color: #b8c5ca; border-top: 0; padding-block: clamp(4rem, 8vw, 7rem) 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.footer-logo { width: min(278px, 70vw); height: auto; }
.footer-statement > p { max-width: 18ch; margin-top: 2rem; font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.18; color: #f4f3ef; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-nav ul { display: block; margin: 0; }
.footer-nav li + li { margin-top: .6rem; }
.footer-nav a { color: #c2cdd1; }
.footer-label { color: #6f8791; }
.footer-base { display: grid; grid-template-columns: 1fr; gap: .5rem; padding-top: 1.5rem; border-top: 1px solid #263b45; font-size: .75rem; color: #708791; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.7fr 1fr; gap: 5rem; } .footer-base { grid-column: 1 / -1; grid-template-columns: 1fr 1fr auto; gap: 2rem; } }

/* Legacy footer markup on legal pages remains visually coherent. */
.site-footer .footer-identity p,
.site-footer .footer-copyright { color: #80949d; }
.site-footer .footer-name { color: #eef1ef; }
.site-footer .footer-legal { border-top-color: #263b45; }

@media (max-width: 620px) {
  .site-nav { width: 100%; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav ul { width: max-content; flex-wrap: nowrap; gap: 1.25rem; }
  .header-inner { align-items: flex-start; }
  .hero { min-height: 78svh; }
  .hero--image::after { background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 97%, transparent), color-mix(in srgb, var(--paper) 78%, transparent)); }
  .hero--moro::after { background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 98%, transparent), color-mix(in srgb, var(--paper) 91%, transparent)); }
  .contact-audiences p { grid-template-columns: 1fr; gap: .25rem; }
}

/* ------------------------------------------------------- line breaking ----
   Headlines were breaking to leave single-word last lines. balance evens the
   rag across lines; pretty stops widows in body copy. */

h1, h2, h3, .lead { text-wrap: balance; }
p { text-wrap: pretty; }
h1 { max-width: 14em; }
.prose-col h1, .split-text h1 { max-width: 10em; }
h2 { max-width: 16em; }
h3 { max-width: 24em; }
.hero .lead { max-width: 30em; }
h1 + .lead { margin-top: clamp(1.35rem, 2.4vw, 2rem); }
.eyebrow { white-space: nowrap; }

.section { position: relative; }

/* ---------------------------------------------------------- animation ---- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.line {
  display: block;
  overflow: hidden;
  padding-block-end: .14em;
  margin-block-end: -.14em;
}
.line-in {
  display: block;
  transform: translateY(110%);
  transition: transform var(--t-line) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.is-visible .line-in,
.hero.is-visible .line-in {
  transform: none;
}

.reveal-mask {
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
  transition: clip-path var(--t-mask) var(--ease-inout);
}
.reveal-mask--side { clip-path: inset(0 100% 0 0); }
.reveal-mask img {
  transform: scale(1.04);
  transition: transform 1400ms var(--ease-out);
}
.reveal-mask.is-visible { clip-path: inset(0); }
.reveal-mask.is-visible img { transform: scale(1); }

.cta-link,
.index-list a {
  position: relative;
  transition: color var(--t-ui) var(--ease-soft);
}

.cta-link::after,
.index-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-ui) var(--ease-soft);
}

@media (hover: hover) and (pointer: fine) {
  a:hover { text-decoration-color: currentColor; }
  .site-nav a:hover { color: var(--accent-ink); }
  .cta-link:hover { color: var(--ink); }
  .footer-nav a:hover { color: var(--accent-ink); }
  .index-list li:hover { background: var(--paper-alt); }
  .submit-btn:hover { opacity: .85; }
  .cta-link:hover::after,
  .index-list a:hover::after { transform: scaleX(1); }
}

.form-field { transition: color var(--t-ui) var(--ease-soft); }
.form-field label { transition: color var(--t-ui) var(--ease-soft); }
.form-field:focus-within label { color: var(--ink); }
.form-field input,
.form-field textarea { transition: border-color var(--t-ui) var(--ease-soft); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); }

.hero-accent-rule { transform-origin: left center; transform: scaleX(0); }
.hero.is-visible .hero-accent-rule,
.is-visible .hero-accent-rule {
  transform: scale(1);
  transition: transform var(--t-line) var(--ease-inout) 120ms;
}

/* ---------------------------------------------------------- image unity --
   One shared treatment across the mixed licensed-stock set so it reads as
   art-directed rather than an assortment. Applied to every content photo;
   texture/decorative images opt out via .no-unify. */

.split-media img,
.tall-col-media img,
.img-grid img,
.pull-quote img {
  filter: saturate(.88);
}

.split-media img.art-generated,
.hero-bg.art-generated {
  filter: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .split-media img,
  :root:not([data-theme="light"]) .tall-col-media img,
  :root:not([data-theme="light"]) .img-grid img,
  :root:not([data-theme="light"]) .pull-quote img:not(.pull-quote-bg) {
    filter: saturate(.88) brightness(.82);
  }
}
:root[data-theme="dark"] .split-media img,
:root[data-theme="dark"] .tall-col-media img,
:root[data-theme="dark"] .img-grid img,
:root[data-theme="dark"] .pull-quote img:not(.pull-quote-bg) {
  filter: saturate(.88) brightness(.82);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .split-media img.art-generated,
  :root:not([data-theme="light"]) .hero-bg.art-generated {
    filter: brightness(.78) saturate(.92);
  }
}

:root[data-theme="dark"] .split-media img.art-generated,
:root[data-theme="dark"] .hero-bg.art-generated {
  filter: brightness(.78) saturate(.92);
}

/* --------------------------------------------------------- 1. editorial
   split -- asymmetric two-column, image one side, text the other. Alternate
   sides down a page with .split--flip. Single column below 860px. */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-alt);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1.4fr 1fr; gap: 4.5rem; }
  .split--flip { grid-template-columns: 1fr 1.4fr; }
  .split--flip .split-media { order: 2; }
  .split--flip .split-text { order: 1; }
}

/* --------------------------------------------------------- 2. Moro image
   plate -- one uncropped delivery image, scaled by its natural ratio. */

.moro-wide-media {
  max-width: 980px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--paper-alt);
}

.moro-wide-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------- 3. tall
   portrait column -- a tall image in a narrow column beside a short text
   block. Stacks below 760px. */

.tall-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tall-col-media {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--paper-alt);
}

.tall-col-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 760px) {
  .tall-col { grid-template-columns: .85fr 1.55fr; gap: 3.5rem; align-items: start; }
  .tall-col--flip { grid-template-columns: 1.55fr .85fr; }
  .tall-col--flip .tall-col-media { order: 2; }
  .tall-col--flip .tall-col-text { order: 1; }
}

/* --------------------------------------------------------- 4. image grid
   -- an uneven grid of photographs, mixed aspect ratios, tight gutters. */

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.img-grid > * { overflow: hidden; background: var(--paper-alt); }
.img-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-grid--three > *:nth-child(1) { grid-column: 1 / 2; aspect-ratio: 3 / 4; }
.img-grid--three > *:nth-child(2) { grid-column: 2 / 3; aspect-ratio: 1 / 1; align-self: end; }
.img-grid--three > *:nth-child(3) { grid-column: 1 / 3; aspect-ratio: 16 / 8; }

.img-grid--four > *:nth-child(1) { grid-column: 1 / 2; aspect-ratio: 3 / 4; }
.img-grid--four > *:nth-child(2) { grid-column: 2 / 3; aspect-ratio: 4 / 5; margin-top: 2rem; }
.img-grid--four > *:nth-child(3) { grid-column: 1 / 2; aspect-ratio: 1 / 1; }
.img-grid--four > *:nth-child(4) { grid-column: 2 / 3; aspect-ratio: 3 / 4; }

@media (min-width: 700px) {
  .img-grid--three { grid-template-columns: 1.1fr .9fr 1fr; gap: 14px; }
  .img-grid--three > *:nth-child(1) { grid-column: 1 / 2; aspect-ratio: 3 / 4; }
  .img-grid--three > *:nth-child(2) { grid-column: 2 / 3; aspect-ratio: 3 / 4; align-self: end; }
  .img-grid--three > *:nth-child(3) { grid-column: 3 / 4; aspect-ratio: 2 / 3; }

  .img-grid--four { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .img-grid--four > *:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 4 / 3; margin-top: 0; }
  .img-grid--four > *:nth-child(2) { grid-column: 3 / 4; aspect-ratio: 3 / 4; margin-top: 2.5rem; }
  .img-grid--four > *:nth-child(3) { grid-column: 4 / 5; aspect-ratio: 3 / 4; margin-top: 2.5rem; }
  .img-grid--four > *:nth-child(4) { grid-column: 3 / 5; aspect-ratio: 16 / 7; }
}

/* --------------------------------------------------------- 5. full-bleed
   pull quote -- an oversized line set in Zen Old Mincho over a darkened
   image. Width 100% of the section, never 100vw, so it never overflows by
   the scrollbar width. */

.pull-quote {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 46vw, 560px);
  padding-block: 3rem;
}

.pull-quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) brightness(.5);
}

.pull-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .32);
}

.pull-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 1200px);
  max-width: none;
  padding-inline: clamp(24px, 7vw, 96px);
  text-align: center;
}

.pull-quote p {
  max-width: 22ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.2vw, 4.6rem);
  line-height: 1.12;
  color: #FAF9F6;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .pull-quote-bg { filter: saturate(.82) brightness(.5) !important; }
}

/* --------------------------------------------------------- 6. small
   inline figure -- a modest image inside a prose column. */

.inline-figure {
  margin-block: 2.5rem;
  max-width: 380px;
}

.inline-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.inline-figure figcaption {
  margin-top: .6rem;
}

/* --------------------------------------------------------- typographic
   contrast -- oversized numerals, a larger opening line, one dramatic type
   moment per page. Numerals stay in the body grotesque: mincho is reserved
   for h1 / h2 / the pull quote only. */

.cap-numeral {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(3.75rem, 9vw, 6.75rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink-soft);
  opacity: .55;
  margin-bottom: .75rem;
}

.opening-line {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.7vw, 1.95rem);
  line-height: 1.42;
  color: var(--ink);
  max-width: 34ch;
  text-wrap: balance;
}

.opening-line + p,
.opening-line + .cta-link { margin-top: 1.5rem; }

.fact-mark {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}

.masthead-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.25rem, 12vw, 7rem);
  line-height: .9;
  color: var(--ink);
  opacity: .1;
  pointer-events: none;
  user-select: none;
  margin: 0 0 -.35em -.03em;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* --------------------------------------------------------- density -- a
   tighter rhythm for a few sections so the page is not uniform throughout. */

.section-tight { padding-block: clamp(3.5rem, 7vw, 5.5rem); }

.mt-block { margin-top: clamp(3rem, 6vw, 5rem); }
.mt-block-sm { margin-top: clamp(1.75rem, 3vw, 2.5rem); }

.dramatic-line {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }
  .site-header.is-hidden { transform: none !important; }
  .pull-quote-bg { filter: saturate(.82) brightness(.5) !important; }
}

/* Late specificity corrections for variants built on the shared split. */
.split-media--landscape { aspect-ratio: 4 / 3; }
@media (min-width: 860px) {
  .split.split--proof { grid-template-columns: 1fr 1.15fr; }
}
