/* SCENE 03 — THE FOUNDER (ink). Portrait in a self-drawing gold frame,
   founder-film slot beneath, narrative right, oversized stroke-only
   numeral behind at 5%. All motion states are set in js (non-static
   branch only): these defaults are the complete, readable scene. */

.s03 {
  position: relative;
  padding-block: 150px 140px;
  overflow: clip;
}

.s03-inner { position: relative; }

/* oversized stroke-only background numeral (text set in js from
   s06.stats — copy-driven); felt, not read */
.s03-numeral {
  position: absolute;
  top: 4%;
  left: -6%;
  z-index: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(11rem, 28vw, 26rem);
  line-height: .8;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: .05;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.s03-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  column-gap: calc(var(--gutter) * 2);
  align-items: start;
}

/* ---------- portrait + drawing gold frame ---------- */

.s03-portrait {
  position: relative;
  padding: 7%;
  background: radial-gradient(120% 90% at 50% 100%, rgba(189, 154, 95, .08), transparent 62%);
}

.s03-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.s03-frame rect {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  opacity: .85;
}

.s03-portrait__img {
  width: 100%;
  height: auto;
}

/* ---------- founder-film slot (16:9, no visible text) ---------- */

.s03-film {
  margin-top: 44px;
  aspect-ratio: 16 / 9;
}

.s03-film__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: .85;
}
.s03-film__play::after {
  content: "";
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 10px solid var(--gold);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ---------- narrative ---------- */

.s03-name { font-size: clamp(2.2rem, 4.6vw, 4rem); }

.s03-role { letter-spacing: .28em; }

.s03-body { margin-top: var(--rhythm-headline); }

.s03-philosophy {
  margin-top: 44px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  color: color-mix(in srgb, var(--bone) 88%, transparent);
  max-width: 40ch;
}

/* the signature line: alone, held */
.s03-signature { margin-top: var(--rhythm-layer); }

.s03-signature__line {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.3;
  letter-spacing: -.01em;
  text-wrap: balance;
  max-width: 26ch;
}

.s03-signature__rule {
  margin-top: 26px;
  max-width: 320px;
}

/* ---------- mobile ---------- */

@media (max-width: 899px) {
  .s03 { padding-block: 100px 90px; }
  .s03-grid { grid-template-columns: 1fr; row-gap: 72px; }
  .s03-media { max-width: 480px; }
  .s03-numeral { top: 2%; left: -3%; }
  .s03-film { margin-top: 32px; }
  .s03-signature { margin-top: 72px; }
}
