/* ============================================
   WANNA GO — Page-Specific Styles
   ============================================ */

/* ============ TOP PAGE ============ */

/* --- HERO --- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw;
  padding-bottom: clamp(1.2rem, 3vh, 2.2rem);
  background: var(--color-black);
}

/* Full-bleed cinematic image background — image at extreme darkness, textural presence */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 24%;
  /* sepia(0.06) adds a barely-perceptible warm wood-fire tint to the darkness */
  filter: brightness(0.26) grayscale(0.04) saturate(1.4) sepia(0.06);
  transform: scale(1.04);
  animation: hero-bg-drift 36s ease-in-out infinite alternate;
  will-change: transform;
}

/* Drift along both axes — more immersive parallax depth feeling */
@keyframes hero-bg-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.4%, 0.6%); }
}

/* Right-edge editorial panel — drawing hand detail, desktop only */
.hero__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 22vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-black) 0%, rgba(0,0,0,0.55) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 38%;
  filter: brightness(0.22) grayscale(0.2) saturate(0.85);
  transform: scale(1.02);
}

@media (max-width: 1023px) {
  .hero__panel { display: none; }
}

/* Top accent rule — publishing header mark */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245, 240, 235, 0.07) 12%,
    rgba(245, 240, 235, 0.09) 50%,
    rgba(245, 240, 235, 0.07) 88%,
    transparent 100%
  );
  z-index: 3;
}

/* Bottom veil — cinematic depth + ember warmth beneath the heading position.
   The radial amber glow suggests heat, passion, and the "ignition" concept.  */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background:
    radial-gradient(ellipse 50% 60% at 14% 100%, rgba(185, 115, 38, 0.13) 0%, transparent 62%),
    linear-gradient(to top, var(--color-black) 0%, rgba(0,0,0,0.82) 38%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Corner editorial mark — publication index */
.hero__corner {
  position: absolute;
  top: calc(var(--space-sm) * 2);
  left: 6vw;
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(138, 129, 120, 0.5);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade 1.4s var(--ease-out) 2.2s forwards;
  z-index: 3;
  user-select: none;
  pointer-events: none;
}

/* Ghost background watermark */
.hero__ghost {
  position: absolute;
  bottom: -0.12em;
  left: -0.04em;
  font-family: var(--font-serif);
  font-size: clamp(30vw, 36vw, 46vw);
  font-weight: 300;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.052);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
  animation: ghost-drift 34s ease-in-out infinite alternate;
}

@keyframes ghost-drift {
  from { transform: translateX(0) scale(1); }
  to   { transform: translateX(-2.5vw) scale(1.006); }
}

/* Vertical compositional line — desktop only */
.hero__rule {
  position: absolute;
  right: 6vw;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(245, 240, 235, 0.09) 18%,
    rgba(245, 240, 235, 0.09) 82%,
    transparent 100%
  );
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__rule { display: none; }
}

/* Right-side metadata — editorial label along the vertical rule */
.hero__meta {
  position: absolute;
  right: calc(6vw + 18px);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(138, 129, 120, 0.55);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade 1.4s var(--ease-out) 2s forwards;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero__meta { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Eyebrow label — with leading warm rule */
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--color-warm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: clamp(1.4rem, 5.5vh, 3.5rem);
  opacity: 0;
  animation: hero-fade 1s var(--ease-out) 1.1s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--color-warm);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Lowered variant — sits below the nav logo, matching Origin chapter layout */
.hero__eyebrow--lowered {
  position: absolute;
  top: clamp(140px, 15vh, 190px);
  left: 6vw;
  margin-bottom: 0;
  z-index: 2;
}

/* Mobile / tablet: center hero content vertically so the questions don't sink to the bottom */
@media (max-width: 1023px) {
  .hero {
    justify-content: center;
    padding-bottom: 0;
  }
  .hero__content {
    margin-top: clamp(180px, 26vh, 260px);
    margin-bottom: auto;
  }
}

.hero__statement {
  font-family: var(--font-serif-jp);
  font-size: clamp(3rem, 6.5vw + 0.5rem, 10rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(60px);
  animation: hero-in 2.4s var(--ease-luxury) 0.08s forwards;
  /* Line breaks are art-directed via <br> in markup — no max-width constraint needed */
}

/* Prevent longest line (起動せよ。= 5 CJK chars) from re-wrapping on very narrow viewports */
@media (max-width: 420px) {
  .hero__statement { font-size: 2.6rem; }
}

/* Italic sub-statement below the main declaration */
.hero__statement-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 0.8vw + 0.4rem, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(138, 129, 120, 0.7);
  letter-spacing: 0.04em;
  margin-top: clamp(1.4rem, 3.5vh, 2.5rem);
  opacity: 0;
  animation: hero-fade 1.4s var(--ease-out) 1.5s forwards;
  line-height: 1.75;
  max-width: 42ch;
}

.hero__sub { display: none; }

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- Manifesto --- */
.manifesto-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

/* Scene cut line — arrives from above as first visible element after hero */
.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6vw;
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(to right, var(--color-warm), transparent);
  opacity: 0.3;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .manifesto-layout {
    grid-template-columns: 64px 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.manifesto-layout__aside {
  display: none;
}

@media (min-width: 768px) {
  .manifesto-layout__aside {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.3em;
  }
}

/* Vertical warm accent — gradient line */
.manifesto-layout__mark {
  display: block;
  width: 1px;
  height: 76px;
  background: linear-gradient(to bottom, var(--color-warm), transparent);
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms var(--ease-editorial);
}

.manifesto-layout__mark.is-drawn {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-layout__mark { transform: scaleY(1); transition: none; }
  .divider { transform: scaleY(1); transition: none; }
}

.manifesto__text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.2vw + 0.55rem, 1.6rem);
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: var(--color-text);
  opacity: 0.95;
}


/* --- Concept Cards (Three Pillars) --- */
.concepts {
  display: grid;
  gap: 0;
  padding: var(--space-2xl) 0 var(--space-xl);
}

@media (min-width: 768px) {
  .concepts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.concept-card {
  padding: var(--space-xl) var(--space-md) var(--space-xl);
  border-top: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  transition: background var(--duration-slow) var(--ease-smooth);
}

.concept-card:hover {
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 184, 164, 0.04) 0%, transparent 70%), var(--color-deep);
}

@media (min-width: 768px) {
  .concept-card {
    padding: var(--space-2xl) var(--space-xl) var(--space-2xl);
  }
  .concept-card + .concept-card {
    border-left: 1px solid var(--color-line);
  }
}

/* Ghost chapter number — outline-only art element */
.concept-card__number {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.10);
  line-height: 0.9;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  display: block;
  transition: -webkit-text-stroke-color var(--duration-slow) var(--ease-smooth);
}

.concept-card:hover .concept-card__number {
  -webkit-text-stroke-color: rgba(200, 184, 164, 0.22);
}

.concept-card__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.3rem, 1.5vw + 0.4rem, 1.9rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.concept-card__desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 235, 0.68);
  line-height: 2.12;
  font-weight: 300;
  text-shadow: 0 0 18px rgba(245, 240, 235, 0.04);
}


/* --- Visual Fragment --- */
.visual-fragment {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-deep);
  /* Subtle inner vignette for depth */
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .visual-fragment {
    aspect-ratio: 21 / 9;
  }
}

.visual-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 15%;
  transition: transform var(--duration-slow) var(--ease-out);
  filter: grayscale(0.06);
}

@media (min-width: 768px) {
  /* Wide 21:9 crop — cliff face left, beam of light center, ethereal mist and shore */
  .visual-fragment img {
    object-position: 28% 14%;
  }
}

.visual-fragment:hover img {
  transform: scale(1.02);
  filter: grayscale(0);
}

/* Editorial caption below fragment */
.visual-fragment__caption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.38;
  padding-top: var(--space-xs);
}

.visual-fragment__caption::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* In-frame editorial annotation — magazine figure caption within image */
.visual-fragment__overlay {
  position: absolute;
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  left: clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  align-items: baseline;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}

.visual-fragment__overlay-num {
  font-family: var(--font-sans);
  font-size: 8px;
  color: rgba(245, 240, 235, 0.32);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.visual-fragment__overlay-title {
  font-family: var(--font-sans);
  font-size: 8px;
  color: rgba(245, 240, 235, 0.22);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Editorial accent panel — stone close-up, right side of diptych */
.visual-fragment__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.visual-fragment__accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-black) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.visual-fragment__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: brightness(0.55) grayscale(0.08) saturate(1.1);
  transform: scale(1.02);
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-smooth);
}

.visual-fragment:hover .visual-fragment__accent img {
  transform: scale(1.05);
  filter: brightness(0.68) grayscale(0) saturate(1.2);
}

.visual-fragment__accent-label {
  position: absolute;
  bottom: clamp(0.6rem, 1.5vw, 1rem);
  right: clamp(0.6rem, 1.5vw, 1rem);
  font-family: var(--font-sans);
  font-size: 7px;
  color: rgba(245, 240, 235, 0.25);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 767px) {
  .visual-fragment__accent { display: none; }
}

/* --- Video companion rules (mirror img rules for <video>) --- */
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 24%;
  filter: brightness(0.26) grayscale(0.04) saturate(1.4) sepia(0.06);
  transform: scale(1.04);
  will-change: transform;
}
.hero__panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 38%;
  filter: brightness(0.22) grayscale(0.2) saturate(0.85);
  transform: scale(1.02);
}
.visual-fragment video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(0.08) brightness(0.72);
  transition: filter var(--duration-slow) var(--ease-smooth);
}
.visual-fragment:hover video {
  filter: grayscale(0) brightness(0.86);
}
.visual-fragment__accent video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: brightness(0.55) grayscale(0.08) saturate(1.1);
  transform: scale(1.02);
}


/* --- Process Interlude (cinematic horizontal strip between quote and stories) --- */
.process-interlude {
  position: relative;
  width: 100%;
  height: 28vh;
  min-height: 140px;
  overflow: hidden;
  background: var(--color-black);
}

@media (max-width: 767px) {
  .process-interlude {
    height: 22vh;
    min-height: 110px;
  }
}

.process-interlude img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
  filter: brightness(0.18) grayscale(0.1);
  transform: scale(1.04);
  transition: filter 2s var(--ease-out), transform 2s var(--ease-out);
  will-change: transform;
}

.process-interlude:hover img {
  filter: brightness(0.3) grayscale(0);
  transform: scale(1.06);
}

.process-interlude__caption {
  position: absolute;
  right: 6vw;
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  pointer-events: none;
  z-index: 2;
}

.process-interlude__caption span {
  font-family: var(--font-sans);
  font-size: 8px;
  color: rgba(245, 240, 235, 0.22);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* Left-edge thin warm thread on process interlude */
.process-interlude::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(200, 184, 164, 0.18) 40%, transparent 100%);
  z-index: 2;
}


/* --- Full Screen Quote --- */
.fullscreen-quote {
  min-height: 66svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-2xl) 6vw;
  background: radial-gradient(ellipse at 20% 50%, rgba(200, 184, 164, 0.028) 0%, transparent 70%);
}

@media (min-width: 768px) {
  .fullscreen-quote {
    min-height: 72svh;
    padding: var(--space-2xl) 10vw;
  }
}

.fullscreen-quote--compact {
  min-height: 34svh;
}

@media (min-width: 768px) {
  .fullscreen-quote--compact {
    min-height: 40svh;
  }
}

/* Inner wrapper — left vertical warm accent */
.fullscreen-quote__inner {
  position: relative;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 700px;
}

.fullscreen-quote__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.1em;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-warm) 40%, transparent 100%);
  opacity: 0.5;
}

.fullscreen-quote__text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.6rem, 2.6vw + 0.6rem, 3.6rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: left;
}

.fullscreen-quote__attr {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  color: var(--color-muted);
  text-align: left;
  margin-top: var(--space-md);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}


/* --- Belief Statement --- */
.belief-statement {
  font-family: var(--font-serif-jp);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-text);
}


/* --- Stories Gateway (TOP page chapter navigation) --- */
.section--stories {
  overflow: hidden;
}

.stories-gateway {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .stories-gateway {
    flex-direction: row;
  }
}

.stories-gateway__item {
  position: relative;
  background: var(--color-black);
  padding: var(--space-2xl) 6vw var(--space-xl);
  display: flex;
  flex-direction: column;
  min-height: 62vw;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  transition: background var(--duration-slow) var(--ease-smooth);
}

/* Warm sweep line — left to right on hover */
.stories-gateway__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-editorial);
  z-index: 3;
}

.stories-gateway__item:hover::before {
  transform: scaleX(1);
}

@media (min-width: 768px) {
  .stories-gateway__item {
    flex: 1;
    min-height: 66svh;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    border-bottom: none;
    border-right: 1px solid var(--color-line);
    justify-content: flex-end;
  }
  .stories-gateway__item:last-child {
    border-right: none;
  }
}

.stories-gateway__item:hover {
  background: radial-gradient(ellipse at 0% 100%, rgba(200, 184, 164, 0.04) 0%, transparent 70%), var(--color-deep);
}

/* Chapter image background — emerges from near-black on hover */
.stories-gateway__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.stories-gateway__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.1) grayscale(0.15);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform 1.2s var(--ease-out);
  transform: scale(1.04);
  will-change: transform, filter;
}

.stories-gateway__item:hover .stories-gateway__bg img {
  filter: brightness(0.26) grayscale(0) saturate(1.15);
  transform: scale(1.08);
}

/* Per-chapter image crops */
.stories-gateway__bg--01 img { object-position: 42% 30%; } /* project-alpha: figure at window, introspection */
.stories-gateway__bg--02 img { object-position: 55% 40%; } /* drawing hand: pencil on paper, making */
.stories-gateway__bg--03 img { object-position: 50% 42%; } /* raw stone: material permanence, result */

/* Oversized ghost number — compositional depth */
.stories-gateway__ghost {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(28vw, 36vw, 44vw);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
  z-index: 1;
  top: -0.08em;
  left: -0.04em;
  transition: -webkit-text-stroke-color var(--duration-slow) var(--ease-smooth);
}

@media (min-width: 768px) {
  .stories-gateway__ghost {
    font-size: clamp(14vw, 18vw, 26vw);
    top: -0.08em;
    left: -0.04em;
    z-index: 1;
  }
}

.stories-gateway__item:hover .stories-gateway__ghost {
  -webkit-text-stroke-color: rgba(245, 240, 235, 0.058);
}

.stories-gateway__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}

.stories-gateway__num {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: clamp(1rem, 3vh, 2rem);
  opacity: 0.5;
}

.stories-gateway__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  min-height: calc(1.45em * 2);
}

.stories-gateway__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  opacity: 0.7;
  max-width: 22ch;
}

.stories-gateway__link {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-warm);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap var(--duration-fast) var(--ease-out), color var(--duration-fast);
}

.stories-gateway__link::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-warm);
  transition: width var(--duration-base) var(--ease-editorial);
}

.stories-gateway__item:hover .stories-gateway__link {
  gap: 18px;
}
.stories-gateway__item:hover .stories-gateway__link::after {
  width: 46px;
}


/* --- Gallery Preview (TOP page) — asymmetric editorial grid --- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2px;
  margin-top: var(--space-sm);
}

.gallery-preview__item {
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
  aspect-ratio: 1;
}

/* Hero cell: 2×2 */
.gallery-preview__item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

/* Wide cell: spans right half bottom */
.gallery-preview__item:nth-child(4) {
  grid-column: 3 / 5;
  aspect-ratio: 2 / 1;
}

@media (max-width: 767px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .gallery-preview__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }
  .gallery-preview__item:nth-child(2),
  .gallery-preview__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  .gallery-preview__item:nth-child(4) {
    grid-column: 1 / 3;
    aspect-ratio: 2 / 1;
  }
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-smooth);
  filter: grayscale(0.15);
}

.gallery-preview__item:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* --- Art-directed crops per cell --- */

/* Hero 2×2 cell — installation shot: stone under spotlight, concrete room */
.gallery-preview__item--hero img {
  object-position: 50% 38%;
}

/* Square — reflection crop: the ghost face in glass, left-center */
.gallery-preview__item--reflection img {
  object-position: 16% 44%;
}

/* Square — drawing hand: pencil on blueprint, the act of creation */
.gallery-preview__item--hand img {
  object-position: 55% 42%;
}

/* Wide 2:1 cell — coastal/cave: beam of light, cliff, primal atmosphere */
.gallery-preview__item--scene img {
  object-position: 28% 22%;
}


/* --- Member Presence (teaser strip on TOP page) --- */
.member-presence {
  padding-bottom: var(--space-xl);
  border-top: none;
  border-bottom: 1px solid var(--color-line);
}

/* Ultra-panoramic atmospheric film strip — green study, hand and reflection */
.member-presence__visual {
  width: 100%;
  aspect-ratio: 5 / 1;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-xl);
}

@media (max-width: 767px) {
  .member-presence__visual {
    aspect-ratio: 3 / 1;
  }
}

.member-presence__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: grayscale(0.1) brightness(0.58);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-out);
  transform: scale(1.03);
}

.member-presence:hover .member-presence__visual img {
  filter: grayscale(0) brightness(0.72);
  transform: scale(1.05);
}

.member-presence__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.member-presence__names {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .member-presence__names {
    flex-direction: row;
    gap: 0;
  }
}

.member-presence__person {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-line);
  transition: opacity var(--duration-fast);
}

@media (min-width: 768px) {
  .member-presence__person {
    padding: var(--space-md) var(--space-md) var(--space-md) 0;
    border-bottom: none;
    border-right: 1px solid var(--color-line);
  }
  .member-presence__person:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: var(--space-md);
  }
}

.member-presence__name {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text);
  opacity: 0.8;
  transition: opacity var(--duration-fast);
}

.member-presence__person:hover .member-presence__name {
  opacity: 1;
}

.member-presence__role {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}


/* --- Editorial Pause (visual breathing section) --- */
.editorial-pause {
  padding: var(--space-xl) 6vw;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.editorial-pause__line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-line);
  flex-shrink: 0;
}

.editorial-pause__text {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.4;
  white-space: nowrap;
}


/* --- Bridge CTA (contact teaser) --- */
.bridge-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-2xl) 6vw;
  min-height: 62svh;
  justify-content: flex-end;
  border-top: 1px solid var(--color-line);
  background: radial-gradient(ellipse at 80% 80%, rgba(200, 184, 164, 0.022) 0%, transparent 60%);
}

@media (min-width: 768px) {
  .bridge-cta {
    min-height: 68svh;
  }
}

/* Ghost word background — right side */
.bridge-cta__ghost {
  position: absolute;
  right: -0.04em;
  bottom: -0.14em;
  font-family: var(--font-serif);
  font-size: clamp(22vw, 30vw, 38vw);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 0.85;
}

.bridge-cta .section-label,
.bridge-cta__heading,
.bridge-cta .cta-link {
  position: relative;
  z-index: 2;
}

.bridge-cta .section-label {
  margin-bottom: var(--space-md);
}

.bridge-cta__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.2rem, 3.8vw + 0.8rem, 5.8rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  /* Line breaks are art-directed via <br> in markup — no max-width needed */
}


/* ============ OUR STORIES ============ */

.story-body {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 5vw;
}

.story-body .prose {
  font-size: var(--text-base);
}

/* Vertical warm mark opens each story body */
.story-body--opening .prose::before {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-warm), transparent);
  margin-bottom: var(--space-md);
}

/* --- Sketch Display --- */
.sketch-display {
  padding: var(--space-lg) 0;
}

.sketch-display__item {
  background: var(--color-deep);
  border: 1px solid var(--color-line);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sketch-display__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sketch-display__caption {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-xs);
  letter-spacing: 0.05em;
}

/* --- Process Pair (sketch → final) --- */
.process-pair {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .process-pair {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.process-pair__label {
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-xs);
}

.process-pair__image {
  aspect-ratio: 4 / 3;
  background: var(--color-deep);
  border: 1px solid var(--color-line);
  overflow: hidden;
}

.process-pair__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Story Navigation --- */
.story-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 5vw;
  border-top: 1px solid var(--color-line);
  gap: var(--space-sm);
}

.story-nav__link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.06em;
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: color var(--duration-fast);
}

@media (min-width: 768px) {
  .story-nav__link {
    font-size: var(--text-sm);
  }
}

.story-nav__link:hover,
.story-nav__link:focus-visible {
  color: var(--color-text);
}


/* ============ GALLERY ============ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0 2px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-deep);
  cursor: pointer;
  will-change: transform;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  filter: grayscale(0.1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, transparent 52%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
  opacity: 1;
}

@media (hover: none) {
  .gallery-item__overlay {
    opacity: 1;
  }
}

.gallery-item__name {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: var(--space-sm);
  right: 5vw;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--duration-fast);
}

.lightbox__close:hover { color: var(--color-text); }

.lightbox__image {
  max-width: 88vw;
  max-height: 68vh;
  object-fit: contain;
}

.lightbox__video-wrap {
  display: none;
  width: min(90vw, 900px);
  aspect-ratio: 16 / 9;
}

.lightbox__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox__info {
  text-align: center;
  margin-top: var(--space-md);
}

.lightbox__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  margin-bottom: var(--space-xs);
}

.lightbox__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 50ch;
}

/* Play badge for video thumbnails */
.gallery-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.08);
  border: 1px solid rgba(245, 240, 235, 0.16);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.gallery-item__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--color-text);
}

.gallery-item:hover .gallery-item__play,
.gallery-item:focus-visible .gallery-item__play {
  background: rgba(245, 240, 235, 0.18);
  border-color: rgba(245, 240, 235, 0.38);
}

/* Category filter: hide filtered-out items */
.gallery-item.is-filtered {
  display: none;
}

/* Gallery items enter — cinematic rise with depth-scale settling */
@keyframes gallery-item-in {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.91);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.gallery-item:not(.is-filtered) {
  animation: gallery-item-in 1.1s var(--ease-luxury) both;
}

/* --- Gallery Filter --- */
.gallery-filter {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  padding: var(--space-md) 0 var(--space-sm);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: var(--space-xs);
}

.gallery-filter__btn {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: var(--space-xs) var(--space-sm);
  transition: color var(--duration-base) var(--ease-editorial);
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}

.gallery-filter__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-sm);
  right: var(--space-sm);
  height: 1px;
  background: var(--color-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-editorial);
}

.gallery-filter__btn:hover,
.gallery-filter__btn:focus-visible,
.gallery-filter__btn.is-active {
  color: var(--color-text);
}

.gallery-filter__btn.is-active::after {
  transform: scaleX(1);
}


/* ============ MEMBER ============ */

/* Founder — editorial portrait dominant layout */
.member-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-line);
}

@media (min-width: 640px) {
  .member-lead {
    grid-template-columns: 5fr 4fr;
    gap: var(--space-2xl);
    align-items: end;
  }
}

.member-lead__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
}

.member-lead__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  transition: filter var(--duration-slow) var(--ease-out);
}

.member-lead:hover .member-lead__portrait img {
  filter: grayscale(0);
}

.member-lead__body {
  padding-bottom: var(--space-xl);
}

.member-lead__role {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: var(--space-md);
  opacity: 0.65;
}

.member-lead__name {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.2rem, 4.5vw + 0.5rem, 5.5rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin-bottom: var(--space-lg);
}

.member-lead__quote {
  font-family: var(--font-serif-jp);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 2.15;
  letter-spacing: 0.02em;
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-line);
  opacity: 0.85;
}

/* Extended bio text beneath the lead quote */
.member-lead__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 2.2;
  letter-spacing: 0.02em;
  margin-top: var(--space-lg);
  opacity: 0.72;
}

/* --- Process Steps (TOP page compact 3-step) --- */
.process-steps {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.process-step {
  display: grid;
  grid-template-columns: clamp(52px, 6vw, 80px) 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-line);
  align-items: start;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.17);
  line-height: 0.9;
  letter-spacing: -0.02em;
  padding-top: 0.08em;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 0.9vw + 0.5rem, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 2.1;
  letter-spacing: 0.02em;
}

/* Reversed member-lead layout — portrait right, text left (desktop) */
@media (min-width: 640px) {
  .member-lead--reverse {
    grid-template-columns: 4fr 5fr;
  }
  .member-lead--reverse .member-lead__portrait {
    order: 2;
  }
  .member-lead--reverse .member-lead__body {
    order: 1;
    padding-bottom: 0;
    align-self: center;
  }
}

/* Secondary member description block (single member) */
.member-card-desc {
  max-width: var(--content-narrow);
  margin: var(--space-lg) 0 0;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-line);
}

.member-card-desc p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 2.2;
  letter-spacing: 0.02em;
  opacity: 0.72;
}

/* Supporting member grid */
.member-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

@media (min-width: 520px) {
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
  }
}

@media (min-width: 1024px) {
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.member-card__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-deep);
  margin-bottom: var(--space-sm);
}

.member-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
  transition: filter var(--duration-slow) var(--ease-out);
}

.member-card:hover .member-card__portrait img {
  filter: grayscale(0);
}

.member-card__name {
  font-family: var(--font-serif-jp);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.member-card__role {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.65;
}

.member-card__quote {
  font-family: var(--font-serif-jp);
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-muted);
  margin-top: var(--space-sm);
  line-height: 1.9;
  letter-spacing: 0.02em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--duration-base) var(--ease-out),
    opacity var(--duration-base) var(--ease-out);
}

.member-card:hover .member-card__quote,
.member-card:focus-within .member-card__quote {
  max-height: 120px;
  opacity: 1;
}

@media (hover: none) {
  .member-card__quote {
    max-height: none;
    opacity: 0.75;
    margin-top: var(--space-xs);
  }
}

/* --- Member Belief / Philosophy --- */
.member-belief {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .member-belief {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.member-belief__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.2rem, 1.5vw + 0.6rem, 2.1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.member-belief__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 2.15;
  padding-top: 0.4em;
}


/* ============ CONTACT ============ */

.contact-intro {
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 6vw;
  padding-top: clamp(90px, 10vh, 130px); /* same upper zone as chapter headers */
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Full-bleed atmospheric background — coastal beam, the invitation to enter */
.contact-intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 16%;
  filter: brightness(0.14) grayscale(0.1);
}

/* Mobile: 66vw = natural aspect of 2200×1463 image (390 × 1463/2200 ≈ 259px).
   object-fit:cover scales by width → full 2200px shown in 390px container.
   This guarantees BOTH subjects visible regardless of how they are positioned
   horizontally in the image. Zooming in further (>66vw) crops the sides. */
@media (max-width: 767px) {
  .contact-intro__bg,
  .contact-intro--drama .contact-intro__bg {
    top: 0;
    bottom: auto;
    height: 66vw;
    transform: none;
  }
  .contact-intro__bg img,
  .contact-intro--drama .contact-intro__bg img {
    object-position: center center;
    filter: brightness(0.32) grayscale(0.1);
  }
}

/* Ensure text sits above bg */
.contact-intro .section-label,
.contact-intro__heading,
.contact-intro__sub,
.contact-intro .chapter__divider,
.contact-intro__cta {
  position: relative;
  z-index: 2;
}

.contact-intro__cta {
  margin-top: var(--space-lg);
}

/* Bottom gradient to blend into form below */
.contact-intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-black), transparent);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .contact-intro {
    min-height: 74svh;
  }
}

.contact-intro__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.3rem, 4.2vw + 0.8rem, 6rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  /* Line breaks are art-directed via <br> in markup — no max-width needed */
}

.contact-intro__sub {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 34ch;
  line-height: 2.15;
  opacity: 0.75;
}

.contact-intro__visual-heading {
  position: relative;
  z-index: 2;
  max-width: 10.5em;
  margin: clamp(6rem, 14vh, 10rem) 0 clamp(2rem, 5vw, 4rem);
  font-family: var(--font-serif-jp);
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: 0.055em;
  color: rgba(245, 240, 235, 0.9);
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
}

.contact-intro__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-xl) 6vw var(--space-2xl);
}

.form-field {
  position: relative;
  margin-bottom: var(--space-xl);
}

.form-field__label {
  display: block;
  font-size: clamp(0.9rem, 0.35vw + 0.78rem, 1.05rem);
  color: var(--color-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  opacity: 0.82;
}

.form-field__input,
.form-field__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(138, 129, 120, 0.35);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.45vw + 0.9rem, 1.25rem);
  font-weight: 300;
  padding: var(--space-sm) 0;
  min-height: 56px;
  transition: border-color var(--duration-base) var(--ease-smooth);
  outline: none;
}

/* Focus: the border transitions from static line to warm drawn line.
   A warm overlay line is drawn from left via a pseudo-element.          */
.form-field {
  position: relative;
}

.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-warm), rgba(200, 184, 164, 0.4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-editorial);
  pointer-events: none;
}

.form-field:focus-within::after {
  transform: scaleX(1);
}

.form-field__input:focus,
.form-field__textarea:focus {
  border-bottom-color: rgba(200, 184, 164, 0.18);
}

.form-field__label {
  transition: color 400ms var(--ease-editorial), opacity 400ms var(--ease-editorial);
}

.form-field:focus-within .form-field__label {
  color: var(--color-warm);
  opacity: 0.85;
}

.form-field__textarea {
  resize: none;
  min-height: 150px;
  border: none;
  border-bottom: 1px solid rgba(138, 129, 120, 0.35);
  padding: var(--space-sm) 0;
}

.form-field__textarea:focus {
  border-bottom-color: rgba(200, 184, 164, 0.5);
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.3;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 0.25vw + 0.74rem, 0.96rem);
  font-weight: 400;
  color: var(--color-warm);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: var(--space-sm) 0;
  min-height: 56px;
  border: none;
  background: none;
  cursor: pointer;
  transition: gap var(--duration-fast) var(--ease-out), color var(--duration-fast);
}

.form-submit::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-warm);
  transition: width var(--duration-base) var(--ease-editorial), background var(--duration-fast);
}

.form-submit:hover {
  color: var(--color-text);
}

.form-submit:hover,
.form-submit:focus-visible {
  gap: 24px;
}

.form-submit:hover::after,
.form-submit:focus-visible::after {
  width: 62px;
  background: var(--color-text);
}


/* ============================================
   UPGRADE v5 — EDITORIAL LUXURY ELEVATION
   ============================================ */

/* --- Cinematic Chapter Header (inner pages) ---
   Adds a full-bleed dark image behind the chapter title.
   Use: add class "chapter--cinematic" to <header class="chapter">,
   and add a <div class="chapter__bg"><img ...></div> as first child.
   ------------------------------------------- */
.chapter--cinematic {
  min-height: 70svh;
  /* padding-top removed — chapter__intro is now absolutely positioned */
  padding-top: 0;
  padding-bottom: 0;
  display: block; /* simple block — intro is absolute, bg is absolute */
}

@media (min-width: 768px) {
  .chapter--cinematic {
    min-height: 76svh;
  }
}

/* Full-bleed image layer */
.chapter__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.chapter__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.34) grayscale(0.08) saturate(1.2);
  transform: scale(1.04);
  animation: hero-bg-drift 38s ease-in-out infinite alternate;
  will-change: transform;
}

/* Deep gradient from bottom — cinematic fade into page content */
.chapter--cinematic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56%;
  background: linear-gradient(to top, var(--color-black) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Top accent rule */
.chapter--cinematic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245, 240, 235, 0.07) 30%,
    rgba(245, 240, 235, 0.09) 50%,
    rgba(245, 240, 235, 0.07) 70%,
    transparent 100%
  );
  z-index: 3;
}

/* Ensure title and subtitle sit above image and gradient */
.chapter--cinematic .chapter__number,
.chapter--cinematic .chapter__title,
.chapter--cinematic .chapter__subtitle {
  position: relative;
  z-index: 2;
}

/* Ghost number: slightly more present in cinematic mode */
.chapter--cinematic .chapter__number {
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.055);
}

.chapter--no-number .chapter__number {
  display: none;
}


/* --- Brand Intro (TOP page — Motivational Art Unit declaration) --- */
.brand-intro {
  padding: var(--space-2xl) 6vw;
  text-align: center;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  position: relative;
}

.brand-intro__unit {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 0.55vw + 0.38rem, 0.92rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-warm);
  letter-spacing: 0.16em;
  margin-bottom: var(--space-xl);
  opacity: 0.62;
}

.brand-intro__statement {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.4vw + 0.45rem, 1.85rem);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.04em;
  color: var(--color-text);
  max-width: 580px;
  margin: 0 auto;
}


/* --- Gallery Opener (exhibition entry visual before the filter/grid) --- */
.gallery-opener {
  position: relative;
  width: 100%;
  height: 52svh;
  min-height: 260px;
  overflow: hidden;
  background: var(--color-black);
}

@media (min-width: 768px) {
  .gallery-opener {
    height: 70svh;
  }
}

.gallery-opener img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 18%;
  filter: brightness(0.24) grayscale(0.1) saturate(1.15);
  transform: scale(1.04);
  transition: filter 3.5s var(--ease-out), transform 3.5s var(--ease-out);
}

.gallery-opener:hover img {
  filter: brightness(0.4) grayscale(0) saturate(1.2);
  transform: scale(1.06);
}

/* Bottom gradient veil */
.gallery-opener::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, var(--color-black) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-opener__inner {
  position: absolute;
  bottom: var(--space-xl);
  left: 6vw;
  z-index: 2;
}

.gallery-opener--label-lowered .gallery-opener__inner {
  top: clamp(140px, 15vh, 190px);
  bottom: auto;
  right: 6vw;
}

.gallery-opener__num {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(200, 184, 164, 0.5);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: hero-fade 1.2s var(--ease-out) 0.4s forwards;
}

.gallery-opener__num::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
  flex-shrink: 0;
}

.gallery-opener__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.8rem, 7vw + 0.8rem, 8.5rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.06em;
  line-height: 1.08;
  max-width: 14ch;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 1.6s var(--ease-editorial) 0.1s forwards;
}


/* --- Member Interlude (cinematic visual strip between member sections) --- */
.member-interlude {
  position: relative;
  width: 100%;
  height: 28vh;
  min-height: 140px;
  overflow: hidden;
  background: var(--color-black);
}

@media (min-width: 768px) {
  .member-interlude {
    height: 36vh;
  }
}

.member-interlude img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: brightness(0.14) grayscale(0.1) saturate(1.1);
  transform: scale(1.04);
  transition: filter 2.8s var(--ease-out), transform 2.8s var(--ease-out);
}

.member-interlude:hover img {
  filter: brightness(0.28) grayscale(0) saturate(1.1);
  transform: scale(1.06);
}

/* Top and bottom hairline rules */
.member-interlude::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--color-line-strong) 30%, var(--color-line-strong) 70%, transparent 100%);
  z-index: 2;
}

.member-interlude::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--color-line-strong) 30%, var(--color-line-strong) 70%, transparent 100%);
  z-index: 2;
}

.member-interlude__caption {
  position: absolute;
  right: 6vw;
  bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  z-index: 3;
  pointer-events: none;
}

.member-interlude__caption span {
  font-family: var(--font-sans);
  font-size: 8px;
  color: rgba(245, 240, 235, 0.17);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}


/* --- Voices — Redesigned testimonial sequence (stories-03) --- */
.voices-sequence {
  border-top: 1px solid var(--color-line);
}

.voice-item {
  position: relative;
  padding: var(--space-2xl) 6vw var(--space-2xl) calc(6vw + clamp(1.25rem, 3.5vw, 3rem));
  border-bottom: 1px solid var(--color-line);
}

/* Left warm accent line */
.voice-item::before {
  content: '';
  position: absolute;
  left: 6vw;
  top: var(--space-xl);
  bottom: var(--space-xl);
  width: 1px;
  background: linear-gradient(to bottom, var(--color-warm) 40%, transparent 100%);
  opacity: 0.38;
}

@media (min-width: 768px) {
  .voice-item {
    padding: var(--space-2xl) 10vw var(--space-2xl) calc(10vw + 2.5rem);
  }
  .voice-item::before {
    left: 10vw;
  }
}

.voice-quote {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 2vw + 0.5rem, 2.6rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.voice-attr {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.42;
}


/* --- Bridge CTA with image layer --- */
.bridge-cta--image {
  overflow: hidden;
}

.bridge-cta--image .bridge-cta__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bridge-cta--image .bridge-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 22%;
  filter: brightness(0.10) grayscale(0.08) saturate(1.2);
  transform: scale(1.04);
  transition: filter 3s var(--ease-out);
}

.bridge-cta--image:hover .bridge-cta__img img {
  filter: brightness(0.18) grayscale(0) saturate(1.2);
}


/* --- Member portrait bottom vignette --- */
.member-lead__portrait::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}


/* --- Contact intro atmospheric ghost word --- */
.contact-intro__ghost {
  position: absolute;
  right: -0.04em;
  bottom: -0.12em;
  font-family: var(--font-serif);
  font-size: clamp(22vw, 30vw, 38vw);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.028);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 0.85;
}


/* --- Gallery curatorial statement variant --- */
.manifesto__text--curatorial {
  font-size: var(--text-base);
  line-height: 2.1;
  opacity: 0.7;
}


/* ============================================
   UPGRADE v6 — FINAL EDITORIAL RESOLUTION
   ============================================ */

/* --- Brand Intro — left-aligned editorial declaration --- */
.brand-intro {
  text-align: left;
  padding: var(--space-2xl) 8vw;
}

.brand-intro__unit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-lg);
}

.brand-intro__unit::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-warm);
  opacity: 0.45;
  flex-shrink: 0;
}

.brand-intro__statement {
  font-size: clamp(1.55rem, 2.4vw + 0.8rem, 3.4rem);
  line-height: 1.55;
}


/* --- Member Presence — philosophical statement beneath visual strip --- */
.member-presence__philosophy {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.875rem, 0.9vw + 0.42rem, 1.2rem);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 2.15;
  letter-spacing: 0.04em;
  max-width: 26ch;
  opacity: 0.58;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 0;
}


/* --- Process Step Interrupt — thin cinematic strip between steps --- */
.process-step-interrupt {
  width: 100%;
  height: 22vh;
  min-height: 120px;
  overflow: hidden;
  background: var(--color-black);
  position: relative;
}

@media (min-width: 768px) {
  .process-step-interrupt {
    height: 30vh;
  }
}

.process-step-interrupt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: brightness(0.10) grayscale(0.1) saturate(1.1);
  transform: scale(1.04);
  transition: filter 3.5s var(--ease-out), transform 3.5s var(--ease-out);
}

.process-step-interrupt:hover img {
  filter: brightness(0.22) grayscale(0) saturate(1.15);
  transform: scale(1.06);
}

.process-step-interrupt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-black) 0%,
    transparent 22%,
    transparent 78%,
    var(--color-black) 100%
  );
  pointer-events: none;
}


/* --- Member Lead Distinction line — philosophical signature per member --- */
.member-lead__distinction {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 0.72vw + 0.52rem, 1.05rem);
  font-weight: 300;
  color: var(--color-warm);
  letter-spacing: 0.04em;
  opacity: 0.52;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-line);
}


/* --- Gallery Featured Work — panoramic featured entry before grid --- */
.gallery-featured {
  padding: 0 2px;
  margin-bottom: 2px;
}

.gallery-featured__item {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  overflow: hidden;
  background: var(--color-deep);
  cursor: pointer;
  display: block;
}

@media (max-width: 767px) {
  .gallery-featured__item {
    aspect-ratio: 4 / 3;
  }
}

.gallery-featured__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 30%;
  filter: grayscale(0.08);
  transform: scale(1.02);
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-smooth);
}

.gallery-featured__item:hover img,
.gallery-featured__item:focus-visible img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.gallery-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-featured__info {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: 6vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.gallery-featured__label {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(200, 184, 164, 0.52);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-featured__label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}

.gallery-featured__name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw + 0.4rem, 2.8rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.gallery-featured__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: 42ch;
  line-height: 2;
  opacity: 0.58;
  margin-top: 2px;
}


/* --- Contact Prelude — transitional bridge between intro and form --- */
.contact-prelude {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-xl) 6vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-prelude::before {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(200, 184, 164, 0.38), transparent);
  margin-bottom: var(--space-lg);
}

.contact-prelude__text {
  font-family: var(--font-serif-jp);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 2.5;
  letter-spacing: 0.04em;
  opacity: 0.52;
  text-align: center;
}


/* --- Stories 01 — extra pull quote visual weight --- */
.pullquote--large {
  font-size: clamp(1.35rem, 1.8vw + 0.55rem, 2.2rem);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}


/* --- Gallery Opener — taller on mobile --- */
@media (max-width: 767px) {
  .gallery-opener {
    height: 62svh;
    min-height: 300px;
  }
}


/* ======================================================
   STORIES INDEX PAGE — story-entry editorial component
   ====================================================== */

.story-entry {
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: stretch;
  min-height: 55vh;
}

.story-entry--reverse {
  grid-template-columns: 44% 56%;
}

.story-entry--reverse .story-entry__image-wrap {
  order: 2;
}

.story-entry--reverse .story-entry__body {
  order: 1;
}

.story-entry__image-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 50vh;
  text-decoration: none;
}

.story-entry__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) grayscale(0.08) saturate(1.18);
  transform: scale(1.04);
  transition: transform 3.5s var(--ease-out), filter 1.8s var(--ease-out);
}

.story-entry:hover .story-entry__image-wrap img,
.story-entry:focus-within .story-entry__image-wrap img {
  transform: scale(1.07);
  filter: brightness(0.65) grayscale(0) saturate(1.3);
}

.story-entry__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 30%, var(--color-black) 100%);
  pointer-events: none;
  z-index: 1;
}

.story-entry--reverse .story-entry__image-overlay {
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 30%, var(--color-black) 100%);
}

.story-entry__body {
  padding: clamp(3rem, 5vw, 6rem) clamp(2.5rem, 4vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-black);
}

.story-entry__num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 7rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 184, 164, 0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: var(--space-xs);
}

.story-entry__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.5rem, 2.2vw + 0.4rem, 2.8rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 0;
}

.story-entry__lead {
  font-family: var(--font-serif-jp);
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 2.3;
  letter-spacing: 0.03em;
  opacity: 0.6;
  max-width: 28ch;
  margin: 0;
}

.story-entry__cta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap var(--duration-base) var(--ease-out);
  margin-top: var(--space-sm);
}

.story-entry__cta::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}

.story-entry__cta:hover::after,
.story-entry__cta:focus-visible::after {
  width: 42px;
}

@media (max-width: 767px) {
  .story-entry,
  .story-entry--reverse {
    grid-template-columns: 1fr;
  }

  .story-entry--reverse .story-entry__image-wrap {
    order: unset;
  }

  .story-entry--reverse .story-entry__body {
    order: unset;
  }

  .story-entry__image-wrap {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .story-entry__image-overlay,
  .story-entry--reverse .story-entry__image-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, var(--color-black) 100%);
  }

  .story-entry__body {
    padding: var(--space-xl) 6vw var(--space-2xl);
  }

  .story-entry__num {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  .story-entry__lead {
    max-width: 36ch;
  }
}


/* ============================================
   UPGRADE v7 — ATMOSPHERIC DEPTH & LUXURY REFINEMENT
   2026-03-22
   ============================================ */


/* ---- GLOBAL: Hero ghost — warmer stroke ---- */
/* Increase text-stroke slightly so the ghost feels more present at large sizes */
.hero__ghost {
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.065);
}


/* ---- GLOBAL: Hero statement — tighter at max size for monumental solidity ---- */
@media (min-width: 1200px) {
  .hero__statement {
    line-height: 1.02;
    letter-spacing: 0.065em;
  }
}


/* ---- GLOBAL: Manifesto section — warmer atmospheric depth ---- */
/* The manifesto is the emotional core — it should feel like descending into a rich interior */
.manifesto-section {
  background: radial-gradient(
    ellipse 80% 60% at 10% 50%,
    rgba(180, 120, 40, 0.035) 0%,
    transparent 65%
  );
}

/* Elongate the warm vertical mark — more ceremonial presence */
.manifesto-layout__mark {
  height: 100px;
  background: linear-gradient(to bottom, var(--color-warm) 0%, rgba(200, 184, 164, 0.15) 70%, transparent 100%);
  opacity: 0.45;
}

/* Manifesto text — slightly tighter letter-spacing for refinement */
.manifesto__text {
  letter-spacing: 0.055em;
  line-height: 2.45;
}


/* ---- GLOBAL: Brand intro — deeper presence ---- */
/* Warm left-side atmospheric glow — like candlelight from offscreen */
.brand-intro {
  position: relative;
  overflow: hidden;
}

.brand-intro__unit,
.brand-intro__statement {
  position: relative;
  z-index: 1;
}

.brand-intro::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 180%;
  background: radial-gradient(
    ellipse at center,
    rgba(190, 130, 48, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.brand-intro__statement {
  font-weight: 300;
  letter-spacing: 0.055em;
}

.brand-intro__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-intro__line {
  white-space: nowrap;
}

.brand-intro__x {
  align-self: center;
}


/* ---- GLOBAL: Fullscreen quote — deeper cinematic atmosphere ---- */
/* The quote is a moment of stillness — deepen the radial warmth behind it */
.fullscreen-quote {
  background:
    radial-gradient(ellipse 55% 65% at 15% 55%, rgba(185, 120, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 45%, rgba(200, 184, 164, 0.022) 0%, transparent 55%);
}

/* The quote inner line — more warmth, full height */
.fullscreen-quote__inner::before {
  background: linear-gradient(to bottom, var(--color-warm) 0%, rgba(200, 184, 164, 0.2) 60%, transparent 100%);
  opacity: 0.55;
}

/* Quote text — fractionally tighter tracking for premium feel at large sizes */
.fullscreen-quote__text {
  letter-spacing: 0.045em;
}


/* ---- GLOBAL: Concept cards — deeper hover states ---- */
.concept-card:hover {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(185, 120, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(200, 184, 164, 0.04) 0%, transparent 70%),
    var(--color-espresso);
}

.concept-card:hover .concept-card__number {
  -webkit-text-stroke-color: rgba(168, 149, 108, 0.28);
}

/* Concept card number — slightly warmer base stroke */
.concept-card__number {
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.08);
  letter-spacing: -0.015em;
}


/* ---- GLOBAL: Stories gateway — more atmospheric hover depth ---- */
.stories-gateway__item:hover {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(185, 120, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(200, 184, 164, 0.04) 0%, transparent 70%),
    var(--color-espresso);
}

/* Each chapter card — per-chapter subtle tonal variation */
.stories-gateway__bg--01 img { filter: brightness(0.10) grayscale(0.12); }
.stories-gateway__bg--02 img { filter: brightness(0.10) grayscale(0.08) sepia(0.04); }
.stories-gateway__bg--03 img { filter: brightness(0.10) grayscale(0.15); }

.stories-gateway__item:hover .stories-gateway__bg--01 img {
  filter: brightness(0.28) grayscale(0) saturate(1.2);
}
.stories-gateway__item:hover .stories-gateway__bg--02 img {
  filter: brightness(0.28) grayscale(0) saturate(1.25) sepia(0.04);
}
.stories-gateway__item:hover .stories-gateway__bg--03 img {
  filter: brightness(0.28) grayscale(0) saturate(1.15);
}


/* ---- GLOBAL: Bridge CTA — more charged invitation ---- */
/* Each bridge CTA across the site should feel like a warm threshold */
.bridge-cta {
  position: relative;
}

.bridge-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 20% 55%,
    rgba(185, 120, 42, 0.06) 0%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
}

.bridge-cta .section-label,
.bridge-cta__heading,
.bridge-cta .cta-link {
  position: relative;
  z-index: 2;
}

/* Bridge heading — fractionally more letter spacing for poetic weight */
.bridge-cta__heading {
  letter-spacing: 0.045em;
  line-height: 1.4;
}


/* ---- CONTACT: More charged atmosphere ---- */
/* Contact page should feel like a quiet, charged invitation — charged silence */
.contact-intro {
  background: radial-gradient(
    ellipse 70% 55% at 30% 60%,
    rgba(180, 115, 38, 0.08) 0%,
    transparent 65%
  );
}

/* Contact heading — slightly more generous line-height for breath */
.contact-intro__heading {
  line-height: 1.22;
  letter-spacing: 0.065em;
}

/* Contact ghost word — slightly more present */
.contact-intro__ghost {
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.036);
}


/* ---- GALLERY: Deeper curatorial silence ---- */
/* Gallery opener title — more monumental letter-spacing */
.gallery-opener__title {
  letter-spacing: 0.07em;
  line-height: 1.3;
}


/* ---- MEMBER: Presence & authority ---- */
/* Member names — more monumental, more gravitas */
.member-lead__name {
  letter-spacing: 0.05em;
}

/* Member portrait — deeper vignette for more drama/presence */
.member-lead__portrait::after {
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.1) 65%,
    transparent 100%
  );
}

/* Member quote — fractionally more character for refined distinction */
.member-lead__quote {
  letter-spacing: 0.04em;
}


/* ---- STORY CHAPTERS: More cinematic editorial depth ---- */
/* Chapter title — slightly tighter for monumental presence */
.chapter__title {
  letter-spacing: 0.065em;
}

/* Story prose — refined reading experience */
.prose {
  letter-spacing: 0.06em;
}

/* Pull quote — more generous pacing */
.pullquote {
  letter-spacing: 0.04em;
}


/* ---- SECTION SEPARATORS: More atmosphere between sections ---- */
/* Divider element — slightly longer, more graceful */
.divider {
  height: 64px;
  opacity: 0.28;
  background: linear-gradient(to bottom, var(--color-warm), transparent);
}


/* ---- GLOBAL: Page transition — more cinematic fade ---- */
.page-transition {
  animation-duration: 0.75s;
  animation-timing-function: var(--ease-editorial);
}


/* ---- PROCESS INTERLUDE: Deeper cinematic atmosphere ---- */
.process-interlude img {
  filter: brightness(0.16) grayscale(0.12) sepia(0.04);
}

.process-interlude:hover img {
  filter: brightness(0.28) grayscale(0) sepia(0.02) saturate(1.15);
}


/* ---- VISUAL FRAGMENT: Warmer, more editorial ---- */
/* Main image — slightly warmer darkness */
.visual-fragment img {
  filter: grayscale(0.04) sepia(0.02);
}

/* Accent panel — preserve its cooler tone for contrast with the warm main image */
.visual-fragment__accent img {
  filter: brightness(0.52) grayscale(0.12) saturate(1.05);
}

/* Hover states — more dramatic reveal */
.visual-fragment:hover img {
  transform: scale(1.025);
  filter: grayscale(0) sepia(0);
}

.visual-fragment:hover .visual-fragment__accent img {
  transform: scale(1.055);
  filter: brightness(0.7) grayscale(0) saturate(1.25);
}


/* ---- GLOBAL: Section atmosphere — subtle depth transitions ---- */
/* Sections that follow the hero get a near-imperceptible warm mist */
.manifesto-section + .brand-intro,
.brand-intro + .section,
.section + .fullscreen-quote {
  position: relative;
}


/* ---- GLOBAL: Scroll indicator — more meditative pulse ---- */
.scroll-indicator {
  animation-duration: 3.5s;
}


/* ---- GLOBAL: Nav overlay — more atmospheric entrance ---- */
/* The overlay felt abrupt — add depth to the background */
.nav-overlay {
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(12, 10, 9, 0.98) 0%,
    var(--color-black) 100%
  );
}


/* ---- GLOBAL: Selection color refinement ---- */
/* More premium selection color — deep espresso on warm */
::selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}


/* ---- RESPONSIVE: Mobile refinements ---- */
@media (max-width: 767px) {
  /* Mobile manifesto — preserve generous line-height */
  .manifesto__text {
    line-height: 2.3;
    letter-spacing: 0.045em;
  }

  /* Mobile bridge CTA — keep the warm glow visible */
  .bridge-cta::before {
    background: radial-gradient(
      ellipse 90% 60% at 20% 70%,
      rgba(185, 120, 42, 0.07) 0%,
      transparent 65%
    );
  }

  /* Mobile hero — slightly tighter bottom veil for smaller screens */
  .hero::after {
    height: 55%;
    background:
      radial-gradient(ellipse 70% 55% at 18% 100%, rgba(185, 115, 38, 0.11) 0%, transparent 60%),
      linear-gradient(to top, var(--color-black) 0%, rgba(0,0,0,0.78) 40%, transparent 100%);
  }
}


/* ============================================
   UPGRADE v8 — LUXURIOUS MOTION LANGUAGE
   "Ma" — the meaningful interval between moments.
   Motion as atmosphere, not decoration.
   ============================================ */


/* ---- LEVEL 1: ATMOSPHERIC BASE MOTION ---- */

/* Hero ember glow — barely perceptible warmth breathing.
   The amber at bottom-left shifts between opacity 1 and 0.72.
   Luxury rule: the motion should be noticed only in its absence.
   This is the quietest possible presence — felt, never seen.              */
@keyframes ember-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.72; }
}

.hero::after {
  animation: ember-breathe 6.5s ease-in-out infinite;
}

/* Hero background — upgraded Y drift for cinematic atmosphere */
@keyframes hero-bg-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.4%, 1.1%); }
}

/* Ghost drift — Y component added. The text no longer drifts in a flat plane;
   it traces a slow diagonal, suggesting something weightless in three-dimensional space. */
@keyframes ghost-drift {
  from { transform: translateX(0) translateY(0) scale(1); }
  to   { transform: translateX(-2.5vw) translateY(-0.5%) scale(1.006); }
}

/* Bridge CTA ghost — slow horizontal drift, like a word almost remembered */
.bridge-cta__ghost {
  animation: ghost-drift 40s ease-in-out infinite alternate;
}

/* Contact intro background — living atmosphere, same cinematic language as hero */
.contact-intro__bg img {
  animation: hero-bg-drift 44s ease-in-out infinite alternate;
  will-change: transform;
}

/* Chapter cinematic bg — slightly slower than hero for contemplative pages */
.chapter__bg img {
  animation-duration: 44s;
}


/* ---- LEVEL 2: SCROLL-DRIVEN DEPTH ---- */

/* Hero rule — draws in from top after the text has begun settling.
   The editorial vertical line "arrives" after the headline, confirming
   the spatial composition. Delay: 1.3s (text is mid-entry, rule completes it). */
.hero__rule {
  transform: scaleY(0);
  transform-origin: top;
  animation: hero-rule-draw 1.8s var(--ease-editorial) 1.3s both;
}

@keyframes hero-rule-draw {
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__rule { animation: none; transform: scaleY(1); }
}

/* Hero statement — line-by-line staggered entry.
   Each line rises independently. No blur — the crisp edge of each stroke
   IS the luxury. The pacing and spacing do all the emotional work.       */
.hero__statement--split {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero__statement__line {
  display: block;
  opacity: 0;
  transform: translateY(80px);
  animation: hero-line-in 2.8s var(--ease-luxury) both;
  animation-delay: calc(0.06s + var(--line-index, 0) * 0.55s);
  will-change: transform, opacity;
}

@keyframes hero-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__statement--split { opacity: 1 !important; }
  .hero__statement__line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Hero content — scroll-driven fade as user moves past the hero.
   Progressive enhancement: only applies in Chromium 115+ (view-timeline support).
   On scroll, the text quietly retreats, making room for the next chapter.      */
@supports (view-timeline-name: --x) {
  .hero {
    view-timeline-name: --hero-section;
    view-timeline-axis: block;
  }

  .hero__content {
    animation: hero-content-retreat linear both;
    animation-timeline: --hero-section;
    animation-range: contain 0% exit 65%;
  }

  @keyframes hero-content-retreat {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0.05; transform: translateY(-16px); }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero__content {
      animation: none;
    }
  }
}


/* ---- LEVEL 3: INTERACTION REFINEMENT ---- */

/* Stories gateway — text micro-stagger on hover.
   The movement is intentionally invisible as technique.
   At 2px, the lift is felt as "the content becoming present" not "animation."
   Luxury interaction: the user is unaware of the mechanism,
   aware only of the quality.                                                 */
.stories-gateway__num,
.stories-gateway__title {
  transition: transform var(--duration-slow) var(--ease-luxury);
}

.stories-gateway__item:hover .stories-gateway__num {
  transform: translateY(-2px);
}

.stories-gateway__item:hover .stories-gateway__title {
  transform: translateY(-3px);
  transition-delay: 40ms;
}

/* Gallery items — refined hover: restrained scale, grayscale lift only.
   brightness(1.05) was removed — photographic truth over digital enhancement. */
.gallery-item img {
  transition:
    transform var(--duration-slow) var(--ease-luxury),
    filter var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: grayscale(0);
}

/* Member card portrait — very subtle presence shift on hover.
   1.02 → 1.05 is a 3% scale change: the person seems to
   quietly step forward without the image visibly "zooming."               */
.member-card__portrait img {
  transform: scale(1.02);
  transition:
    filter var(--duration-slow) var(--ease-out),
    transform 1.4s var(--ease-luxury);
}

.member-card:hover .member-card__portrait img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Lightbox — more cinematic open / close */
.lightbox {
  transition: opacity 550ms var(--ease-editorial);
}

/* Image enters from slight darkness, scales to full presence */
.lightbox__image {
  transition:
    transform 650ms var(--ease-luxury),
    opacity 450ms var(--ease-editorial);
}

.lightbox:not(.is-open) .lightbox__image {
  transform: scale(0.97);
  opacity: 0;
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
  opacity: 1;
}

/* Gallery preview items — luxury pacing, photographic truth on hover */
.gallery-preview__item img {
  transition:
    transform 1.1s var(--ease-luxury),
    filter var(--duration-slow) var(--ease-smooth);
}

.gallery-preview__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}

/* CTA link — more deliberate with luxury easing */
.cta-link {
  transition:
    gap var(--duration-base) var(--ease-luxury),
    color var(--duration-base) var(--ease-out);
}

.cta-link::after {
  transition: width 700ms var(--ease-luxury);
}

/* Story nav links — warm color shift only. No letter-spacing animation:
   typographic spacing exists to serve reading, not to perform. */
.story-nav__link {
  transition: color var(--duration-base) var(--ease-luxury);
}

.story-nav__link:hover,
.story-nav__link:focus-visible {
  color: var(--color-text);
}

/* Editorial pause line — draw-in from left when visible */
.editorial-pause__line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-luxury);
}

.editorial-pause__line.is-drawn {
  transform: scaleX(1);
}

/* Gallery filter buttons — luxury timing */
.gallery-filter__btn {
  transition:
    color var(--duration-base) var(--ease-luxury),
    opacity var(--duration-base) var(--ease-luxury);
}

/* Form submit — luxury easing for more intentional interaction */
.form-submit {
  transition:
    gap var(--duration-base) var(--ease-luxury),
    color var(--duration-base) var(--ease-out);
}

.form-submit::after {
  transition:
    width 700ms var(--ease-luxury),
    background var(--duration-fast);
}


/* ============================================================
   V9 — REFINEMENT LAYER: Monumental scale + atmospheric drift
   ============================================================ */

/* ---- Concept card title — more monumental presence ---- */
/* Increased from clamp(1.3rem, 1.5vw + 0.4rem, 1.9rem)
   — the brand philosophy pillars deserve typographic authority */
.concept-card__title {
  font-size: clamp(1.5rem, 1.7vw + 0.5rem, 2.2rem);
}

/* ---- Belief statement — near-monumental ---- */
/* Original var(--text-xl) peaks at 1.875rem — too modest for the brand's
   central conviction. Step up to --text-2xl for genuine weight. */
.belief-statement {
  font-size: var(--text-2xl);
  line-height: 1.75;
}

/* ---- Pull quote — fractionally more generous sizing ---- */
.pullquote {
  font-size: clamp(1.2rem, 1.4vw + 0.6rem, 1.85rem);
}

.pullquote--large {
  font-size: clamp(1.5rem, 2.1vw + 0.65rem, 2.6rem);
}


/* ---- Process step interrupt — slow ambient drift ---- */
/* The strip breathes with a long, alternating drift — felt as atmosphere,
   not seen as animation. Hover: drift pauses, filter lifts to presence. */
@keyframes step-drift {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.08) translateX(-0.8%); }
}

.process-step-interrupt img {
  animation: step-drift 28s ease-in-out infinite alternate;
}

/* Hover: pause the drift; filter transitions to brightness independently */
.process-step-interrupt:hover img {
  animation-play-state: paused;
  transform: unset; /* animation freeze position takes precedence */
  filter: brightness(0.22) grayscale(0) saturate(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .process-step-interrupt img {
    animation: none;
    transform: scale(1.04);
  }
}


/* ---- Bridge CTA image — long slow drift ---- */
/* 40s alternate cycle — so slow it reads as the image
   having weight and presence, not as intentional animation */
@keyframes bridge-img-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.07) translate(-0.6%, 0.4%); }
}

.bridge-cta--image .bridge-cta__img img {
  animation: bridge-img-drift 40s ease-in-out infinite alternate;
}

.bridge-cta--image:hover .bridge-cta__img img {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .bridge-cta--image .bridge-cta__img img {
    animation: none;
    transform: scale(1.04);
  }
}


/* ---- Visual fragment accent — independent slow drift ---- */
/* The accent panel moves on a different axis / duration from the
   main image, creating a subtle parallax between the two panels */
@keyframes accent-drift {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.04) translateY(-0.8%); }
}

.visual-fragment__accent img {
  animation: accent-drift 32s ease-in-out infinite alternate;
}

/* On hover: pause drift, filter transition takes over */
.visual-fragment:hover .visual-fragment__accent img {
  animation-play-state: paused;
  filter: brightness(0.7) grayscale(0) saturate(1.25);
  /* transform removed — animation freeze position */
}

@media (prefers-reduced-motion: reduce) {
  .visual-fragment__accent img {
    animation: none;
    transform: scale(1.02);
  }
}


/* ---- Member lead portrait — add scale dimension ---- */
/* The member-lead portraits (full-page presences on member.html)
   currently only have a filter transition. Add subtle scale so the
   person appears to step toward the viewer on hover. */
.member-lead__portrait img {
  transform: scale(1.0);
  transition:
    filter var(--duration-slow) var(--ease-out),
    transform 1.5s var(--ease-luxury);
}

.member-lead:hover .member-lead__portrait img {
  filter: grayscale(0);
  transform: scale(1.04);
}


/* ============================================================
   V10 — PAGE INTRO SYSTEM
   Typographic + cinematic upgrades for page-entry titles
   ============================================================ */

/* ---- Cinematic chapter title — monumental page-announcing scale ---- */
/* Top page hero: clamp(3.8rem, 8.5vw + 0.8rem, 13rem).
   Chapter titles at ~75% of that presence: clamp(2.8rem, 7vw + 0.8rem, 8.5rem).
   At 1200px viewport: ~97px. At 900px: ~76px. Commanding without competing.
   Min reduced from 3.5rem → 2.8rem so Japanese title chars don't orphan on small phones. */
.chapter--cinematic .chapter__title {
  font-size: clamp(2.8rem, 7vw + 0.8rem, 8.5rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
}

/* ---- Chapter intro layout in cinematic context ---- */
/* Needs bottom padding so the composition doesn't crowd the page edge */
.chapter--cinematic .chapter__intro {
  /* Absolutely positioned — bypasses all flex/padding container conflicts.
     top: nav height (80px) + breathing room = sits just below the Wanna Go logo. */
  position: absolute;
  top: clamp(90px, 10vh, 130px);
  left: 6vw;
  right: 6vw;
  z-index: 2;
  align-items: flex-start;
  text-align: left;
  /* reset inherited centering */
  margin: 0;
  padding: 0;
  width: auto;
  max-width: none;
}

.chapter--cinematic.chapter--label-lowered .chapter__intro {
  top: clamp(140px, 15vh, 190px);
}

/* Story chapters (01/02/03) left-align — already inherited from .chapter--cinematic, kept for specificity */
.chapter--story .chapter__intro {
  align-items: flex-start;
  text-align: left;
}

/* All cinematic chapters: divider flush left */
.chapter--cinematic .chapter__divider {
  margin-left: 0;
  margin-right: auto;
}

/* Story chapter divider rule — flush left */
.chapter--story .chapter__divider {
  margin-left: 0;
  margin-right: auto;
}

/* Stories index page — "Our Stories" title shifted slightly lower */
.chapter--stories-index .chapter__intro {
  top: clamp(120px, 14vh, 170px);
}

/* The eyebrow on story chapters — amber warmth at lower opacity */
.chapter--story .chapter__eyebrow {
  color: rgba(200, 184, 164, 0.65);
}

/* Slightly tighter tracking on story chapter titles (Japanese) */
.chapter--story .chapter__title {
  letter-spacing: 0.055em;
}


/* ---- Contact intro — chapter__divider needs elevation ---- */
.contact-intro .chapter__divider {
  position: relative;
  z-index: 2;
}


/* ---- Contact intro — same cinematic sequence ---- */
/* Upgrade .contact-intro to use the chapter-entry animation language.
   The section-label becomes the eyebrow. A divider appears.
   The heading enters as the core page announcement.               */
.contact-intro .section-label {
  animation: chapter-eyebrow-in 1s var(--ease-luxury) 0.3s both;
  opacity: 0;
}

.contact-intro .chapter__divider {
  /* The divider sits between section-label and heading */
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-lg);
}

.contact-intro__heading {
  opacity: 0;
  transform: translateY(56px);
  animation: chapter-title-in 2.4s var(--ease-luxury) 0.78s both;
}

.contact-intro__sub {
  opacity: 0;
  transform: translateY(32px);
  animation: chapter-sub-in 1.8s var(--ease-luxury) 1.4s both;
}

@media (prefers-reduced-motion: reduce) {
  .contact-intro .section-label,
  .contact-intro__heading,
  .contact-intro__sub {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Motion Enhancement — restrained scroll depth
   ============================================ */

.visual-fragment,
.process-interlude,
.gallery-opener,
.gallery-featured__item,
.member-interlude,
.process-pair__image,
.sketch-display__item {
  --editorial-parallax-y: 0px;
}

.visual-fragment img {
  transform: translate3d(0, var(--editorial-parallax-y), 0);
}

.visual-fragment:hover img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.025);
}

.process-interlude img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.04);
}

.process-interlude:hover img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.06);
}

.gallery-opener img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.04);
}

.gallery-opener:hover img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.06);
}

.gallery-featured__item img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.02);
}

.gallery-featured__item:hover img,
.gallery-featured__item:focus-visible img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.05);
}

.member-interlude img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.04);
}

.member-interlude:hover img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.06);
}

/* Tier-B parallax targets — medium amplitude editorial depth */
.process-pair__image img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.04);
}

.sketch-display__item img {
  transform: translate3d(0, var(--editorial-parallax-y), 0) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .visual-fragment,
  .process-interlude,
  .gallery-opener,
  .gallery-featured__item,
  .member-interlude,
  .process-pair__image,
  .sketch-display__item {
    --editorial-parallax-y: 0px;
  }
}

/* TOP key-section reveals: faster than standard but still visible.
   420ms preserves the motion cadence while feeling responsive.
   Stagger-delay-1 resets to 0 so label → headline cascade stays tight. */
.manifesto-section .reveal,
.brand-intro .reveal,
.section--stories .reveal,
.section .manifesto__text.reveal {
  transition-duration: 420ms;
}

.manifesto-section .reveal-delay-1,
.brand-intro .reveal-delay-1,
.section--stories .reveal-delay-1,
.section .manifesto__text.reveal-delay-1 {
  transition-delay: 0ms;
}


/* ============================================================
   V11 — ORIGIN PAGE & CONTENT UPGRADES
   2026-03-26
   ============================================================ */

/* --- Manifesto headline — between section-label and body text --- */
.manifesto__headline {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.6rem, 2.2vw + 0.6rem, 3.2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.055em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}


/* --- Origin Chapter — immersive two-chapter reading structure --- */
.origin-chapter {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.origin-chapter__name {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.8rem, 5vw + 0.8rem, 7rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.origin-chapter__role {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.52;
  margin-bottom: var(--space-md);
}


/* --- Origin Body — dramatic short/long line rhythm --- */
.origin-body {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-line);
}

.origin-body__line {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 1.8vw + 0.5rem, 2.4rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.055em;
  color: var(--color-text);
  margin-bottom: 0.15em;
}

.origin-body__line--accent {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 1.8vw + 0.5rem, 2.4rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.055em;
  color: var(--color-warm);
  margin-bottom: 0.15em;
  opacity: 0.88;
}

.origin-body__text {
  font-family: var(--font-serif-jp);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2.35;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  opacity: 0.82;
}

/* Declaration block — statement-of-purpose closer per chapter */
.origin-body--declaration {
  border-top: none;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.origin-body--declaration .origin-body__line {
  font-size: clamp(1rem, 1.2vw + 0.4rem, 1.5rem);
  color: var(--color-muted);
  opacity: 0.6;
}


/* --- Chapter interlude divider between two Origin stories --- */
.origin-interlude {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 8vw;
}

.origin-interlude__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-line-strong), transparent);
}

.origin-interlude__mark {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-muted);
  opacity: 0.25;
  letter-spacing: 0.1em;
  user-select: none;
}


/* --- Gallery opener subtitle --- */
.gallery-opener__sub {
  font-family: var(--font-serif-jp);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 235, 0.45);
  margin-top: var(--space-md);
  max-width: 28ch;
}


/* --- Contact Office section — elegant threshold, not a plain listing --- */
.contact-office {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.contact-office__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .contact-office__inner {
    flex-direction: row;
    gap: var(--space-2xl);
    align-items: flex-start;
  }
}

.contact-office__address {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-style: normal;
}

.contact-office__name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.contact-office__postal,
.contact-office__street {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-muted);
  letter-spacing: 0.04em;
  opacity: 0.6;
  line-height: 2;
}

.contact-office__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  border-left: 1px solid var(--color-line);
  padding-left: var(--space-xl);
}

@media (max-width: 767px) {
  .contact-office__meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    padding-top: var(--space-lg);
  }
}

.contact-office__meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-office__meta-row dt {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
}

.contact-office__meta-row dd {
  font-family: var(--font-sans-jp);
  font-size: var(--text-sm);
  color: var(--color-muted);
  letter-spacing: 0.04em;
  opacity: 0.65;
  line-height: 1.8;
}

.contact-office__meta-row dd a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast);
  border-bottom: 1px solid rgba(138, 129, 120, 0.2);
  padding-bottom: 1px;
}

.contact-office__meta-row dd a:hover {
  color: var(--color-warm);
  border-bottom-color: var(--color-warm);
  opacity: 0.9;
}

/* ============================================
   Cinematic Depth — Background Parallax System
   ============================================
   Extends .chapter__bg and .bridge-cta__img inset so that
   JS-driven translateY parallax (via --bg-parallax-y) never
   shows edge gaps. Parent overflow:hidden clips the excess.
   ============================================ */

/* Chapter background: extend vertically for parallax room */
.chapter__bg {
  inset: -108px 0;
  transform: translateY(var(--bg-parallax-y, 0px));
  will-change: transform;
}

/* Bridge CTA background: same pattern */
.bridge-cta--image .bridge-cta__img {
  inset: -88px 0;
  transform: translateY(var(--bg-parallax-y, 0px));
  will-change: transform;
}


/* ============================================
   DRAMA MAKER — Brand Extensions
   ============================================
   Additive only. Existing classes preserved.
   These extend the warm editorial palette with
   emotional force colors: crimson + life-green.
   ============================================ */

/* Crimson vertical accent mark — emotional ignition variant */
.manifesto-layout__mark--crimson {
  background: linear-gradient(to bottom, var(--color-crimson-bright), transparent);
}

/* Life-green vertical accent mark — living force variant */
.manifesto-layout__mark--life {
  background: linear-gradient(to bottom, var(--color-life-bright), transparent);
}

/* Drama concept card — crimson number atmosphere on hover */
.concept-card--drama:hover {
  background: radial-gradient(ellipse at 50% 100%, var(--color-crimson-muted) 0%, transparent 70%), var(--color-deep);
}

.concept-card--drama::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 46% at 50% 28%, rgba(245, 240, 235, 0.035) 0%, transparent 64%),
    linear-gradient(to bottom, rgba(245, 240, 235, 0.022), transparent 44%);
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}

.concept-card--drama > * {
  position: relative;
  z-index: 1;
}

.concept-card--drama:hover .concept-card__number {
  -webkit-text-stroke-color: rgba(155, 28, 28, 0.28);
}

/* Top concept numbers — keep the ghost scale, but make 01/02/03 readable. */
.concept-card--drama .concept-card__number {
  color: rgba(245, 240, 235, 0.16);
  -webkit-text-stroke: 1px rgba(245, 240, 235, 0.28);
  text-shadow: 0 0 24px rgba(245, 240, 235, 0.05);
}

.concept-card--drama:hover .concept-card__number {
  color: rgba(245, 240, 235, 0.22);
  -webkit-text-stroke-color: rgba(245, 240, 235, 0.36);
}

/* Hero DRAMA variant — subtle crimson atmospheric shadow at base */
.hero--drama::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 90%, var(--color-crimson-glow) 0%, transparent 55%);
  pointer-events: none;
}

/* Ghost letter — Drama variant: stronger presence */
.hero__ghost--drama {
  font-size: clamp(28vw, 38vw, 50vw);
  opacity: 0.028;
  color: var(--color-crimson-bright);
  -webkit-text-stroke: 1px var(--color-crimson-bright);
}

/* contact-intro — Drama variant: crimson atmospheric depth */
.contact-intro--drama {
  background: radial-gradient(ellipse at 50% 80%, var(--color-crimson-glow) 0%, var(--color-black) 65%);
}

/* contact-intro CTA parallax: extend for Drama parallax room */
.contact-intro--drama .contact-intro__bg {
  inset: -60px 0;
  transform: translateY(var(--bg-parallax-y, 0px));
  will-change: transform;
}

.contact-intro--drama .contact-intro__bg img {
  object-position: center 38%;
  filter: brightness(0.58) contrast(1.03) saturate(0.98);
}

.contact-intro--drama::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.contact-intro--drama .contact-intro__heading,
.contact-intro--drama .contact-intro__visual-heading {
  text-shadow:
    0 3px 26px rgba(0, 0, 0, 0.72),
    0 0 52px rgba(245, 240, 235, 0.12);
}

.contact-intro--drama .contact-intro__sub {
  color: rgba(245, 240, 235, 0.86);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.78),
    0 0 28px rgba(0, 0, 0, 0.38);
}

/* Mobile: disable parallax shift so both faces stay visible in frame */
@media (max-width: 767px) {
  .contact-intro--drama .contact-intro__bg {
    top: 0;
    bottom: auto;
    height: clamp(320px, 84vw, 430px);
    transform: none;
    will-change: auto;
  }

  .contact-intro--drama {
    padding-top: clamp(72px, 18vw, 104px);
  }

  .contact-intro--drama .contact-intro__visual-heading {
    max-width: 9.8em;
    margin-top: clamp(128px, 32vw, 178px);
    margin-bottom: clamp(2rem, 7vw, 3.2rem);
    font-size: clamp(2.6rem, 11.6vw, 4.3rem);
    line-height: 1.42;
  }

  .contact-intro--drama .contact-intro__sub {
    max-width: 28ch;
  }
}

/* ============================================================
   DRAMA MAKER — Hero Logo Mark
   Absolute-centered brand seal in the hero void.
   mix-blend-mode:screen dissolves the stone background,
   leaving only the dual-orb mark and lettering visible.
   ============================================================ */

.hero__logo-mark {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: clamp(100px, 14vw, 188px);
  mix-blend-mode: screen;
  filter: brightness(1.18) saturate(1.08);
  opacity: 0;
  animation: hero-logo-enter 3.2s var(--ease-luxury) 0.2s forwards;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
  display: block;
}

@keyframes hero-logo-enter {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px)) scale(0.93);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 768px) {
  .hero__logo-mark {
    top: 40%;
    width: clamp(88px, 28vw, 140px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo-mark {
    opacity: 1;
    animation: none;
    transform: translate(-50%, -50%);
  }
}


/* ============================================================
   ORIGIN — Mythic Source Narrative
   Two paths. One question. One answer.
   Additive only. Does not modify existing .origin-* classes.
   ============================================================ */

/* --- Prologue: the question that started everything --- */
.origin-prologue {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-sm);
}

.origin-prologue__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-md) 0;
  background:
    linear-gradient(180deg, rgba(200, 184, 164, 0.04) 0%, rgba(200, 184, 164, 0) 100%);
}

.origin-prologue__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.45rem, 2vw + 0.7rem, 2.8rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-wrap: balance;
}

.origin-prologue__heading em {
  font-style: normal;
  color: var(--color-warm);
  opacity: 0.92;
}

.origin-prologue__body {
  font-family: var(--font-serif-jp);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  opacity: 0.78;
  max-width: 60ch;
}


/* --- Chapter lead — the one-line essence under each name --- */
.origin-chapter__lead {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.05rem, 1.1vw + 0.55rem, 1.4rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-warm);
  opacity: 0.78;
  margin-bottom: var(--space-lg);
  max-width: 36ch;
}


/* --- Origin block: numbered narrative beat (Prologue / Shock / ...) --- */
.origin-chapter {
  padding-top: clamp(2.25rem, 1.7rem + 2.2vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 2rem + 2.8vw, 5rem);
}

.origin-block {
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.4rem) 0;
  border-top: 1px solid var(--color-line);
}

/* The first block sits directly under the portrait image — give it slightly
   more breathing room so the image doesn't feel "stuck" to the first beat. */
.member-interlude + .container-narrow .origin-block:first-of-type {
  padding-top: clamp(1.8rem, 1.3rem + 2vw, 3rem);
}

.origin-block:last-of-type {
  border-bottom: 1px solid var(--color-line);
}

.origin-block__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.origin-block__num {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-warm);
  letter-spacing: 0.14em;
}

.origin-block__chapter {
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-muted);
}

.origin-block__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.28rem, 1.2rem + 1.1vw, 2.05rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.045em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  max-width: 28ch;
  text-wrap: balance;
}

.origin-block__text {
  font-family: var(--font-serif-jp);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  opacity: 0.82;
  max-width: 58ch;
}

.origin-block__text + .origin-block__text {
  margin-top: 1em;
}


/* --- Convergence: the collision of two paths --- */
.origin-convergence {
  padding-top: clamp(1.6rem, 1.2rem + 1.8vw, 3rem);
  padding-bottom: clamp(0.75rem, 0.4rem + 1.2vw, 1.4rem);
}

.origin-convergence__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.origin-convergence__heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.8rem, 2.6vw + 0.7rem, 3.6rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--color-text);
  max-width: 22ch;
}

.origin-convergence__paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-md) 0;
}

@media (min-width: 768px) {
  .origin-convergence__paths {
    grid-template-columns: 1fr 1px 1fr;
    gap: var(--space-2xl);
  }
}

.origin-convergence__divider {
  display: none;
}

@media (min-width: 768px) {
  .origin-convergence__divider {
    display: block;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-line-strong), transparent);
  }
}

.origin-convergence__path {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.origin-convergence__path-label {
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  opacity: 0.55;
}

.origin-convergence__path-text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.3rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.045em;
  color: var(--color-text);
  opacity: 0.86;
}

.origin-convergence__statement {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.08rem, 1.1rem + 0.7vw, 1.55rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-warm);
  opacity: 0.82;
  max-width: 34ch;
  margin-top: 0;
}


/* --- Threshold: the closing line that turns the page --- */
.origin-threshold {
  padding-top: clamp(0.8rem, 0.4rem + 1vw, 1.2rem);
  padding-bottom: clamp(2.6rem, 2rem + 2.8vw, 4.5rem);
  text-align: left;
}

.origin-threshold__text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.18rem, 1rem + 1vw, 1.9rem);
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  max-width: 30ch;
}

.origin-chapter__name {
  margin-bottom: 0;
}

.origin-chapter__role {
  margin-bottom: var(--space-sm);
}

.origin-chapter .member-interlude {
  height: clamp(180px, 24vh, 300px);
  margin: clamp(1.25rem, 0.8rem + 2vw, 2.75rem) 0 clamp(1.25rem, 0.8rem + 1.5vw, 2rem);
}

.origin-chapter .member-interlude img {
  object-position: 50% 24%;
  filter: brightness(0.18) grayscale(0.08) saturate(1.02);
}

.origin-chapter .member-interlude__caption span {
  color: rgba(245, 240, 235, 0.24);
}

.origin-prologue {
  padding-top: clamp(1.5rem, 4vw, 3.25rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.origin-prologue__inner {
  gap: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem) 0;
}

.origin-prologue__heading {
  max-width: 11ch;
  font-size: clamp(1.8rem, 3vw + 0.7rem, 3.6rem);
  line-height: 1.5;
}

.origin-chapter {
  padding-top: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.25rem, 3vw, 2.75rem);
}

.origin-chapter--featured {
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.origin-chapter__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
}

.origin-chapter__name {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.2vw + 0.85rem, 5.8rem);
  line-height: 1.14;
  letter-spacing: 0.045em;
}

.origin-chapter__name--featured {
  display: grid;
  gap: clamp(0.2rem, 0.8vw, 0.55rem);
  max-width: 100%;
  line-height: 1;
  width: fit-content;
}

.origin-chapter__name-ja,
.origin-chapter__name-en {
  display: block;
}

.origin-chapter__name-ja {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.1rem, 3vw + 0.95rem, 4.4rem);
  letter-spacing: 0.035em;
  line-height: 1.12;
  white-space: nowrap;
}

.origin-chapter__name-en {
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 3.7vw + 0.9rem, 4.95rem);
  letter-spacing: 0.02em;
  line-height: 0.96;
  color: rgba(245, 240, 235, 0.96);
  white-space: nowrap;
}

.origin-chapter__role {
  margin-bottom: 0;
  opacity: 0.48;
}

.origin-chapter .member-interlude {
  height: clamp(180px, 22vh, 260px);
  margin: 0 0 clamp(1.1rem, 2vw, 1.8rem);
}

.origin-block {
  padding: clamp(1.15rem, 2.4vw, 1.8rem) 0;
}

.member-interlude + .container-narrow .origin-block:first-of-type {
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
}

.origin-block__meta {
  margin-bottom: clamp(0.7rem, 1.8vw, 1rem);
  opacity: 0.58;
}

.origin-block__num {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.origin-block__chapter {
  letter-spacing: 0.24em;
  opacity: 0.46;
}

.origin-block__heading {
  max-width: 24ch;
  font-size: clamp(1.28rem, 1.65vw + 0.75rem, 2.05rem);
  line-height: 1.75;
  letter-spacing: 0.035em;
  margin-bottom: clamp(0.8rem, 1.8vw, 1.15rem);
  padding-left: clamp(0.85rem, 1.2vw, 1.1rem);
  border-left: 1px solid rgba(204, 177, 134, 0.5);
}

.origin-block__text {
  max-width: 45ch;
  font-size: clamp(0.98rem, 0.28vw + 0.92rem, 1.08rem);
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: rgba(230, 223, 216, 0.82);
}

.origin-block__text + .origin-block__text {
  margin-top: 1.15em;
}

.origin-interlude {
  padding: clamp(0.8rem, 2vw, 1.3rem) 8vw;
}

.origin-convergence {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.35rem, 1vw, 0.85rem);
}

.origin-convergence__inner {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.origin-convergence__heading {
  max-width: 20ch;
  font-size: clamp(1.45rem, 1.7vw + 0.95rem, 2.35rem);
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.9);
}

.origin-convergence__paths {
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}

.origin-convergence__path-text {
  font-size: clamp(0.96rem, 0.5vw + 0.82rem, 1.14rem);
  line-height: 2.05;
  opacity: 0.72;
}

.origin-convergence__statement {
  font-size: clamp(1rem, 0.9vw + 0.85rem, 1.4rem);
  line-height: 1.95;
  color: rgba(204, 177, 134, 0.78);
  opacity: 0.84;
}

.origin-threshold {
  padding-top: clamp(0.5rem, 1vw, 0.9rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.origin-threshold__text {
  font-size: clamp(1.12rem, 1vw + 0.95rem, 1.7rem);
  line-height: 1.95;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  max-width: 24ch;
}

/* ORIGIN本文は原稿確認を最優先し、初期表示から必ず見える状態に固定する */
.origin-prologue .reveal,
.origin-chapter .reveal,
.origin-convergence .reveal,
.origin-threshold .reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
  transition: none;
}

@media (min-width: 768px) {
  .origin-chapter__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(1rem, 3vw, 2.5rem);
  }

  .origin-chapter__role {
    text-align: right;
  }

  .origin-chapter--featured .origin-chapter__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    row-gap: clamp(0.65rem, 1.2vw, 1rem);
  }

  .origin-chapter--featured .section-label {
    grid-column: 1;
    margin-bottom: 0;
  }

  .origin-chapter--featured .origin-chapter__name--featured {
    grid-column: 1;
    max-width: 100%;
  }

  .origin-chapter--featured .origin-chapter__role {
    grid-column: 1;
    padding-top: 0;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .origin-interlude {
    gap: var(--space-sm);
    padding: var(--space-sm) 6vw;
  }

  .origin-block__meta {
    gap: 12px;
  }

  .origin-block__heading {
    max-width: none;
  }

  .origin-threshold .cta-link {
    display: inline-flex;
    margin-top: var(--space-xs);
  }

  .origin-chapter--featured {
    padding-top: clamp(1.4rem, 7vw, 2.2rem);
  }

  .origin-chapter--featured .origin-chapter__header {
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
  }

  .origin-chapter__name--featured {
    width: 100%;
    max-width: 100%;
  }

  .origin-chapter__name-ja {
    white-space: normal;
  }

  .origin-chapter__name-en {
    white-space: normal;
  }
}


/* ============================================================
   DRAMA 01 — 僕らは嘘つき、かもしれない。
   The Heart of Kanezen
   Cinematic proof chapter. Additive — does not modify shared components.
   ============================================================ */

/* --- Opening premise — emotional contract before the story begins --- */
.drama-opening {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-top: 1px solid var(--color-line);
}

.drama-opening--second {
  padding-top: clamp(1.6rem, 3vw, 2.8rem);
}

.drama-opening__title {
  font-family: var(--font-serif-jp);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.065em;
  color: var(--color-text);
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  display: block;
  opacity: 1;
  transform: none;
  clip-path: none;
}

@media (min-width: 768px) {
  .drama-opening__title {
    font-size: var(--text-3xl);
  }
}

.drama-opening--second .drama-opening__title {
  margin-top: 0;
  padding-top: clamp(0.4rem, 1vw, 0.8rem);
}

.drama-opening__text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.4vw + 0.55rem, 1.65rem);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.065em;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-md) 0;
}

/* --- Act containers --- */
.drama-act {
  padding-top: var(--space-md);
  padding-bottom: var(--space-sm);
}

/* --- President's voice — the CEO quote --- */
.drama-voice {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.3rem, 1.9vw + 0.6rem, 2.2rem);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.055em;
  color: var(--color-text);
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--color-warm);
  margin-bottom: var(--space-lg);
}

/* --- Drama body paragraphs --- */
.drama-body {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.975rem, 0.85vw + 0.55rem, 1.2rem);
  font-weight: 300;
  line-height: 2.35;
  letter-spacing: 0.055em;
  color: var(--color-muted);
}

.drama-body p + p {
  margin-top: 1.75em;
}

.drama-asset-note {
  font-family: var(--font-sans-jp);
  font-size: var(--text-sm);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(200, 184, 164, 0.78);
}

/* --- Atmospheric image break between acts --- */
.drama-image-break {
  width: 100%;
  height: 32vh;
  min-height: 200px;
  overflow: hidden;
  background: var(--color-black);
  position: relative;
}

@media (min-width: 768px) {
  .drama-image-break {
    height: 52vh;
  }
}

.drama-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: brightness(0.11) grayscale(0.08) saturate(1.15);
  transform: scale(1.04);
  transition: filter 3.5s var(--ease-out);
}

.drama-image-break:hover img {
  filter: brightness(0.24) grayscale(0) saturate(1.2);
}

.drama-image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-black) 0%,
    transparent 18%,
    transparent 82%,
    var(--color-black) 100%
  );
  pointer-events: none;
}

.drama-image-break--natural {
  height: auto;
  min-height: 0;
  margin-top: clamp(48px, 8vw, 112px);
  margin-bottom: clamp(48px, 8vw, 112px);
  overflow: visible;
  background: transparent;
}

@media (min-width: 768px) {
  .drama-image-break--natural {
    height: auto;
  }
}

.drama-image-break--natural img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
  transition: none;
}

.drama-image-break--natural:hover img {
  filter: none;
}

.drama-image-break--natural::after {
  display: none;
}

.drama-reaffirmation-image {
  margin-top: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 0;
}

.drama-image-break--fullbleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.drama-image-break--fullbleed img {
  width: 100%;
}

/* Tight pairing for Drama 01: keep the vessel image close to the next text block */
.drama-image-break--tight-after {
  margin-bottom: 0.15rem;
}

.drama-vessel:has(.drama-image-break--tight-after) {
  padding-bottom: 0;
}

.drama-vessel:has(.drama-image-break--tight-after) + .drama-revelation {
  margin-top: clamp(-13rem, -11vw, -7rem);
  padding-top: 0;
}

@media (max-width: 767px) {
  .drama-image-break--tight-after {
    margin-bottom: 0.25rem;
  }

  .drama-vessel:has(.drama-image-break--tight-after) + .drama-revelation {
    margin-top: clamp(1.5rem, 8vw, 3rem);
  }
}

/* Drama 01 の後半画像ブレイクは余白が出やすいので、少し低めに抑える */
.drama-vessel + .drama-image-break {
  height: 3vh;
  min-height: 12px;
}

@media (min-width: 768px) {
  .drama-vessel + .drama-image-break {
    height: 4vh;
    min-height: 24px;
  }
}

/* --- Content photo variant — actual project photography (Kanezen) --- */
.drama-image-break--photo {
  height: clamp(360px, 62vh, 680px);
  min-height: 320px;
}

@media (min-width: 768px) {
  .drama-image-break--photo {
    height: clamp(440px, 72vh, 760px);
  }
}

.drama-image-break--photo img {
  filter: brightness(0.78) contrast(1.05) grayscale(0.06) saturate(1.04);
  object-position: 50% 50%;
}

.drama-image-break--photo:hover img {
  filter: brightness(0.88) contrast(1.02) grayscale(0) saturate(1.08);
}

.drama-image-break--photo::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.05) 22%,
    rgba(0, 0, 0, 0.05) 78%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* When .drama-image-break--photo is also after .drama-vessel,
   override the collapsed-height rule from above */
.drama-vessel + .drama-image-break--photo {
  height: clamp(360px, 62vh, 680px);
  min-height: 320px;
}

@media (min-width: 768px) {
  .drama-vessel + .drama-image-break--photo {
    height: clamp(440px, 72vh, 760px);
  }
}

/* --- Large variant — the centerpiece (宇宙とつながる椅子) --- */
.drama-image-break--large {
  height: clamp(480px, 88vh, 920px);
  margin: clamp(2.5rem, 5vw, 4.5rem) 0;
  display: block;
}

@media (min-width: 768px) {
  .drama-image-break--large {
    height: clamp(560px, 92vh, 980px);
  }
}

.drama-image-break--large img {
  filter: brightness(0.84) contrast(1.06) grayscale(0.04) saturate(1.06);
  object-position: 50% 45%;
}

.drama-image-break--large:hover img {
  filter: brightness(0.94) contrast(1.02) grayscale(0) saturate(1.1);
}

.drama-image-break__caption {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: rgba(232, 220, 200, 0.94);
  font-family: var(--font-serif-en, 'Cormorant Garamond', serif);
  letter-spacing: 0.04em;
  pointer-events: none;
  mix-blend-mode: screen;
}

.drama-image-break__caption-num {
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  opacity: 0.8;
}

.drama-image-break__caption-text {
  font-family: var(--font-serif-jp, 'Noto Serif JP', serif);
  font-weight: 300;
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  letter-spacing: 0.18em;
}

/* --- Turning Point — the emotional center of the page --- */

/* Full-bleed stage: espresso bg + full-width top/bottom borders */
.drama-turn__stage {
  width: 100%;
  background: var(--color-black);
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-md);
}

/* The isolated employee quote — large, centered, the page's emotional axis */
.drama-turn__quote {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.45rem, 2.2vw + 0.65rem, 2.8rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}

/* Attribution — minimal, almost invisible, like a stage direction */
.drama-turn__attribution {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-muted);
  opacity: 0.4;
  text-align: center;
  margin-top: var(--space-md);
}

/* The second line — warm, smaller, answers the first quote */
.drama-turn__continuation {
  font-family: var(--font-serif-jp);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.45rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.055em;
  color: var(--color-warm);
  opacity: 0.82;
  text-align: center;
  margin-top: var(--space-lg);
}

/* Narrator's reaction — separated by top rule */
.drama-turn__reaction {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-sm);
}

/* --- Blood vessel — physical line of connection --- */
.drama-vessel {
  padding-top: var(--space-md);
  padding-bottom: var(--space-sm);
}

/* Thin vertical green line — the blood vessel made visible */
.drama-vessel__connector {
  display: flex;
  justify-content: center;
  padding: var(--space-md) 0 var(--space-sm);
}

.drama-vessel__line {
  width: 1px;
  height: 72px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-life-bright) 35%,
    var(--color-life-bright) 65%,
    transparent
  );
  opacity: 0.55;
}

/* --- Revelation — what was really created --- */
.drama-revelation {
  padding-top: clamp(0.35rem, 1vw, 0.75rem);
  padding-bottom: var(--space-sm);
}

.drama-body--revelation-intro {
  display: grid;
  gap: var(--space-md);
}

/* The core statement — large, visual emotional weight */
.drama-revelation__statement {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 2.1vw + 0.6rem, 2.6rem);
  font-weight: 300;
  line-height: 1.82;
  letter-spacing: 0.055em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  opacity: 1;
  transform: none;
  clip-path: none;
}

.drama-revelation__statement--warm {
  color: var(--color-warm) !important;
  opacity: 0.96 !important;
}

.drama-revelation__statement em {
  font-style: normal;
  color: var(--color-warm);
  opacity: 0.92;
}

/* The pivotal conceptual reframe — bordered, isolated */
.drama-revelation__key {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.25rem, 1.8vw + 0.6rem, 2.2rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.055em;
  color: var(--color-text);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--space-md) 0;
  margin: var(--space-lg) 0;
}

/* --- Coda — quiet aftermath --- */
.drama-coda {
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xl);
}

.drama-coda__inner {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-line);
}

/* Result line — small, measured, restrained */
.drama-coda__result {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.975rem, 0.85vw + 0.55rem, 1.2rem);
  font-weight: 300;
  line-height: 2.35;
  letter-spacing: 0.055em;
  color: var(--color-muted);
  opacity: 1;
  margin-bottom: var(--space-md);
}

/* Final line — the emotional close */
.drama-coda__final {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.055em;
  color: var(--color-warm);
  opacity: 0.88;
}


/* ============================================================
   TOP PAGE — Cinematic Rebuild v3
   7-section structural rebuild. Additive namespace: .top-*
   Does not modify shared components or other pages.
   ============================================================ */

/* --- Hero: three confrontational questions rising from darkness --- */
.hero__questions {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  margin-bottom: clamp(2rem, 5.5vh, 4.5rem);
}

.hero__question {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.45rem, 3.2vw + 0.5rem, 3.6rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.07em;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(60px);
}

/* Three questions rise with staggered gravity — confrontational, not decorative */
.hero__question:nth-child(1) {
  animation: hero-in 2.8s var(--ease-luxury) 0.12s forwards;
}
.hero__question:nth-child(2) {
  animation: hero-in 2.8s var(--ease-luxury) 0.58s forwards;
}
.hero__question:nth-child(3) {
  animation: hero-in 2.8s var(--ease-luxury) 1.04s forwards;
  text-shadow: 0 1px 16px rgba(0,0,0,0.85), 0 2px 32px rgba(0,0,0,0.65);
}

@media (max-width: 420px) {
  .hero__question {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__question {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


/* --- Full-bleed Conceptual Rupture ---
   "僕らは、空間を作らない。" — the page stops here.
   This is NOT a section heading. It is a declaration that breaks the frame. */
.top-rupture {
  --rupture-progress: 0;
  --rupture-x: -96px;
  --rupture-scale: 0.985;
  --rupture-bg-scale: 0.94;
  --rupture-text-opacity: 0;
  --rupture-light-opacity: 0;
  --rupture-ember-opacity: 0.08;
  --rupture-glow: 0px;
  --rupture-text-glow-opacity: 0;
  --rupture-reveal-right: 100%;
  --rupture-line-width: 0vw;
  --rupture-line-opacity: 0;
  width: 100%;
  background: #000;
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
  min-height: 320svh;
  position: relative;
  overflow: visible;
}

.top-rupture__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

/* Center split line disabled; keep the surrounding rupture glow and text reveal intact. */
.top-rupture__stage::before {
  content: none;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: none;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.top-rupture__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 54% 42% at 42% 50%, rgba(245, 240, 235, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 74% 62% at 38% 56%, rgba(185, 115, 38, 0.12) 0%, transparent 68%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.78) 100%);
  opacity: var(--rupture-light-opacity);
  pointer-events: none;
  z-index: 0;
  transform: scale(var(--rupture-bg-scale));
}

.top-rupture .container-narrow {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Center the section-label inside rupture */
.top-rupture .section-label {
  justify-content: center;
  margin-bottom: var(--space-md);
}

/* The declaration itself — massive, still, authoritative */
.top-rupture__declaration {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.4rem, 6vw + 0.8rem, 7.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.07em;
  color: var(--color-text);
  display: block;
  opacity: 0.05;
  transform: scale(1.04);
}

/* Lock declaration to ghost state — never inherit .reveal/.reveal--scene opacity cascade.
   Hardcoded values (not calc with var()) — Safari incorrectly resolves calc + custom
   property in `opacity` to the initial value, which would make the h2 fully visible
   and overlap the title. Hardcoded ensures identical rendering in Chrome and Safari. */
.top-rupture__declaration.reveal,
.top-rupture__declaration.reveal.is-visible,
.top-rupture__declaration.reveal.reveal--scene,
.top-rupture__declaration.reveal.reveal--scene.is-visible {
  opacity: 0.05;
  transform: scale(1.04);
  clip-path: none;
  transition: none;
}

.top-rupture__title {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 2;
  width: min(88vw, 760px);
  margin: 0;
  text-align: center;
  font-family: var(--font-serif-jp);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.055em;
  color: var(--color-text);
  clip-path: inset(0 var(--rupture-reveal-right) 0 0);
  text-shadow:
    0 0 var(--rupture-glow) rgba(245, 240, 235, var(--rupture-text-glow-opacity)),
    0 24px 80px rgba(185, 115, 38, var(--rupture-text-glow-opacity));
  will-change: clip-path, opacity, transform;
}

.top-rupture__title.reveal {
  opacity: var(--rupture-text-opacity);
  transform: translate(calc(-50% + var(--rupture-x)), -50%) scale(var(--rupture-scale));
  transition: none;
}

.top-rupture__title.reveal.is-visible {
  opacity: var(--rupture-text-opacity);
  transform: translate(calc(-50% + var(--rupture-x)), -50%) scale(var(--rupture-scale));
}

.top-rupture.section--entered .top-rupture__title.reveal.is-visible,
.top-rupture:has(.top-rupture__title.is-visible) .top-rupture__title.reveal.is-visible {
  opacity: var(--rupture-text-opacity);
}

/* Mobile: hide the h2 declaration, show only the subtitle p */
@media (max-width: 767px) {
  .top-rupture__declaration {
    display: none;
  }

  .top-rupture__title {
    font-size: clamp(1.45rem, 5.2vw, 2.35rem);
    line-height: 1.9;
  }
}

/* Whispered follow-up — barely readable, like a footnote to the universe */
.top-rupture__follow {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.28;
  margin-top: var(--space-lg);
}


/* --- Threshold closing: two additional textual elements ---
   These live inside .contact-intro which has position:relative / overflow:hidden
   so they need z-index:2 to sit above the ::after overlay. */

/* Dedication line — italic emotional address, muted */
.top-threshold__dedication {
  font-family: var(--font-serif-jp);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.4rem);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.055em;
  color: var(--color-muted);
  opacity: 0.82;
  margin-top: var(--space-lg);
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Final invitation — warm, quiet, unhurried */
.top-threshold__invite {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.3rem, 2vw + 0.5rem, 2.2rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.065em;
  color: var(--color-warm);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
  text-align: center;
}


/* ====================================================================
   TOP PAGE — Additional Editorial Sections
   Sketch strips, process grids, green galleries
   ==================================================================== */

/* --- Sketch Strip — ラフ画3枚横並び --- */
.top-sketch-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.top-sketch-strip__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-deep);
}

.top-sketch-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) brightness(0.88) sepia(0.08);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-out);
}

.top-sketch-strip__item:hover img {
  filter: grayscale(0) brightness(1) sepia(0);
  transform: scale(1.03);
}

.top-sketch-strip__caption {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.38;
  padding-top: var(--space-xs);
  text-align: center;
}

@media (max-width: 767px) {
  .top-sketch-strip__grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .top-sketch-strip__item {
    aspect-ratio: 16 / 9;
  }
}


/* --- Process Grid — 制作風景フォトグリッド --- */
.top-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.top-process-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-deep);
}

.top-process-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.top-process-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) brightness(0.85);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-out);
}

.top-process-grid__item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}

/* Duo variant — 2 equal columns */
.top-process-grid--duo {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .top-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-process-grid__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .top-process-grid--duo {
    grid-template-columns: 1fr;
  }
}


/* --- Green Gallery — インスタレーショングリーン施工ギャラリー --- */
.top-green-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2px;
}

.top-green-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
}

.top-green-gallery__item--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.top-green-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.top-green-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.06) brightness(0.82);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform 1.4s var(--ease-editorial);
}

.top-green-gallery__item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .top-green-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-green-gallery__item--hero {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
  .top-green-gallery__item--wide {
    grid-column: 1 / 3;
  }
}


/* --- Art Mosaic — Scene 1 大判アート非対称グリッド --- */
.top-art-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, 1fr);
  gap: 2px;
}

.top-art-mosaic__item {
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
}

.top-art-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.06) brightness(0.82);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform 1.6s var(--ease-editorial);
}

.top-art-mosaic__item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}

.top-art-mosaic__item:nth-child(1) { grid-column: 1 / 8;  grid-row: 1 / 3; }
.top-art-mosaic__item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.top-art-mosaic__item:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; }
.top-art-mosaic__item:nth-child(4) { grid-column: 1 / 7;  grid-row: 3 / 4; }
.top-art-mosaic__item:nth-child(5) { grid-column: 7 / 13; grid-row: 3 / 4; }

@media (max-width: 767px) {
  .top-art-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .top-art-mosaic__item { grid-column: auto !important; grid-row: auto !important; }
  .top-art-mosaic__item:nth-child(1) { grid-column: 1 / 3 !important; aspect-ratio: 16 / 9; }
  .top-art-mosaic__item:not(:nth-child(1)) { aspect-ratio: 1; }
}


/* --- Diptych — 2枚並列エディトリアルブレイク --- */
.top-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.top-diptych__item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
}

.top-diptych__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) brightness(0.78);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform 1.4s var(--ease-editorial);
}

.top-diptych__item:hover img {
  filter: grayscale(0) brightness(0.95);
  transform: scale(1.03);
}

.top-diptych__caption {
  position: absolute;
  bottom: clamp(0.5rem, 1.5vw, 1rem);
  left: clamp(0.5rem, 1.5vw, 1rem);
  font-family: var(--font-sans);
  font-size: 8px;
  color: rgba(245, 240, 235, 0.25);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 767px) {
  .top-diptych {
    grid-template-columns: 1fr;
  }
  .top-diptych__item {
    aspect-ratio: 16 / 9;
  }
}


/* --- Portrait Gallery — Scene 6 ポートレート横並び --- */
.top-portrait-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.top-portrait-gallery__item {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--color-deep);
  position: relative;
}

.top-portrait-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(0.3) brightness(0.75);
  transition: filter 1.2s var(--ease-editorial),
              transform 1.6s var(--ease-editorial);
}

.top-portrait-gallery__item:hover img {
  filter: grayscale(0) brightness(0.95);
  transform: scale(1.05);
}

.top-portrait-gallery__name {
  position: absolute;
  bottom: clamp(0.6rem, 1.5vw, 1rem);
  left: clamp(0.6rem, 1.5vw, 1rem);
  font-family: var(--font-serif);
  font-size: 10px;
  color: rgba(245, 240, 235, 0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.top-portrait-gallery__item:hover .top-portrait-gallery__name {
  opacity: 1;
}

@media (max-width: 767px) {
  .top-portrait-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .top-portrait-gallery__item:nth-child(n+4) {
    display: none;
  }
}


/* --- Detail Strip — マクロ横スクロール --- */
.top-detail-strip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

.top-detail-strip::-webkit-scrollbar { display: none; }

.top-detail-strip__item {
  flex: 0 0 auto;
  width: clamp(200px, 28vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-deep);
}

.top-detail-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) brightness(0.82);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-out);
}

.top-detail-strip__item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}


/* --- Fullscreen Image Break — 全画面写真セクション --- */
.top-fullbleed {
  position: relative;
  width: 100%;
  height: 80svh;
  min-height: 400px;
  overflow: hidden;
  background: var(--color-black);
}

.top-fullbleed img,
.top-fullbleed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) grayscale(0.04);
  transition: filter 2s var(--ease-editorial);
}

.top-fullbleed:hover img,
.top-fullbleed:hover video {
  filter: brightness(0.72) grayscale(0);
}

.top-fullbleed--timeline-video {
  height: min(92svh, 960px);
  min-height: 520px;
  background: var(--color-black);
}

.top-fullbleed--timeline-video video {
  object-fit: contain;
  background: var(--color-black);
  filter: brightness(0.72) grayscale(0.02);
}

@media (max-width: 767px) {
  .top-fullbleed--timeline-video {
    height: 76svh;
    min-height: 460px;
  }
}

.top-fullbleed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  z-index: 2;
}

.top-fullbleed__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  z-index: 0;
}

.top-fullbleed__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif-jp);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 2.4rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--color-text);
  opacity: 0.85;
  max-width: 24ch;
}

.top-fullbleed__label {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  left: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(245, 240, 235, 0.3);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
}


/* --- Green Showcase — 拡張グリーンギャラリー（大判） --- */
.top-green-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, 1fr);
  gap: 2px;
}

.top-green-showcase__item {
  overflow: hidden;
  background: var(--color-deep);
}

.top-green-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) brightness(0.82) saturate(1.1);
  transition: filter var(--duration-slow) var(--ease-smooth),
              transform 1.6s var(--ease-editorial);
}

.top-green-showcase__item:hover img {
  filter: grayscale(0) brightness(1) saturate(1.2);
  transform: scale(1.05);
}

.top-green-showcase__item:nth-child(1) { grid-column: 1 / 7;  grid-row: 1 / 3; }
.top-green-showcase__item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
.top-green-showcase__item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
.top-green-showcase__item:nth-child(4) { grid-column: 7 / 13; grid-row: 2 / 3; }
.top-green-showcase__item:nth-child(5) { grid-column: 1 / 5;  grid-row: 3 / 4; }
.top-green-showcase__item:nth-child(6) { grid-column: 5 / 13; grid-row: 3 / 4; }

@media (max-width: 767px) {
  .top-green-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .top-green-showcase__item {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1;
  }
  .top-green-showcase__item:nth-child(1) {
    grid-column: 1 / 3 !important;
    aspect-ratio: 16 / 9;
  }
}


/* ====================================================================
   CONTACT — Gateway Page
   The threshold. The gate. A selective, cinematic entrance.
   ==================================================================== */

/* ---- Gate Hero — full viewport cinematic opening ---- */
.gate-hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  padding-top: clamp(80px, 12vh, 140px);
  background: var(--color-black);
}

.gate-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gate-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 18%;
  filter: brightness(0.07) grayscale(0.18);
  animation: gate-bg-scale 5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gate-bg-scale {
  0%   { transform: scale(1.35); filter: brightness(0.02) grayscale(0.4); }
  40%  { filter: brightness(0.09) grayscale(0.22); }
  100% { transform: scale(1.04); filter: brightness(0.07) grayscale(0.18); }
}

/* Crimson tension — barely felt */
.gate-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 65% 38%, rgba(122,21,21,0.09) 0%, transparent 58%);
  pointer-events: none;
}

/* Bottom blend into content */
.gate-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32%;
  background: linear-gradient(to top, var(--color-black), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Ghost decorative letter — barely visible */
.gate-hero__ghost {
  position: absolute;
  right: -0.05em;
  bottom: 0.04em;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(10rem, 26vw, 32rem);
  font-weight: 300;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.gate-hero__eyebrow {
  position: relative;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: gate-fade-up 1.1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gate-hero__phrase {
  position: relative;
  z-index: 3;
  margin: 0;
}

.gate-hero__line {
  display: block;
  overflow: visible;
  perspective: 1200px;
}

.gate-hero__line-inner {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw + 0.5rem, 9rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: var(--color-text);
  padding: 0.05em 0.02em 0.18em;
  opacity: 0;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
  animation: gate-phrase-burst 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gate-hero__line:nth-child(1) .gate-hero__line-inner {
  animation-delay: 0.18s;
}

.gate-hero__line:nth-child(2) .gate-hero__line-inner {
  animation-delay: 0.5s;
  font-style: italic;
  color: var(--color-warm);
}

@keyframes gate-phrase-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 220px, 0) scale(1.55) skewY(6deg);
    filter: blur(22px);
    letter-spacing: 0.12em;
  }
  45% {
    opacity: 1;
    filter: blur(3px);
  }
  70% {
    transform: translate3d(0, -8px, 0) scale(0.985) skewY(0deg);
    filter: blur(0);
    letter-spacing: 0.005em;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) skewY(0deg);
    filter: blur(0);
    letter-spacing: 0.01em;
  }
}

@keyframes gate-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 0.5; transform: translateY(0); }
}

.gate-hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 6vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: gate-scroll-appear 1.2s 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gate-hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  writing-mode: vertical-lr;
  opacity: 0.35;
}

.gate-hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(138,129,120,0.5), transparent);
  animation: gate-scroll-pulse 2.8s 3.2s ease-in-out infinite;
}

@keyframes gate-scroll-appear {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gate-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(0.65); }
}


/* ---- Gate text styles ---- */
.gate-manifesto {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.15rem, 1.2vw + 0.6rem, 1.8rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.07em;
  color: var(--color-text);
  opacity: 0.92;
}

.gate-declaration {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.05rem, 0.9vw + 0.6rem, 1.4rem);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.055em;
  color: var(--color-text);
  opacity: 0.92;
}

.gate-invitation {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 1.1vw + 0.55rem, 1.6rem);
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: 0.065em;
  color: var(--color-text);
  opacity: 0.88;
}


/* ---- OPEN THE GATE — trigger button ---- */
.gate-trigger {
  text-align: center;
  padding: var(--space-2xl) 6vw var(--space-xl);
}

.gate-open-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-warm);
  background: none;
  border: 1px solid rgba(200, 184, 164, 0.2);
  padding: var(--space-md) var(--space-2xl);
  min-height: 62px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    border-color 700ms var(--ease-editorial),
    color 700ms var(--ease-editorial),
    letter-spacing 500ms var(--ease-editorial);
}

@media (max-width: 480px) {
  .gate-open-btn {
    padding: 18px 32px;
  }
}

.gate-open-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,21,21,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 700ms var(--ease-editorial);
}

.gate-open-btn:hover {
  border-color: rgba(200, 184, 164, 0.48);
  color: var(--color-text);
  letter-spacing: 0.48em;
}

.gate-open-btn:hover::before {
  opacity: 1;
}

.gate-open-btn.is-triggered {
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms var(--ease-smooth);
}

.gate-open-btn__bracket {
  opacity: 0.4;
  font-size: 12px;
}


/* ---- Gate Form — hidden until trigger ---- */
.gate-form-wrapper {
  display: none;
  opacity: 0;
  transform: translateY(80px);
  filter: blur(8px);
  transition:
    opacity 1.8s var(--ease-luxury),
    transform 1.8s var(--ease-luxury),
    filter 1.8s var(--ease-luxury);
}

.gate-form-wrapper.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.gate-form-wrapper.is-open .form-field,
.gate-form-wrapper.is-open .gate-form-header,
.gate-form-wrapper.is-open .form-submit {
  opacity: 0;
  transform: translateY(28px);
  animation: gate-field-rise 1.2s var(--ease-luxury) forwards;
}
.gate-form-wrapper.is-open .gate-form-header { animation-delay: 0.25s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(1) { animation-delay: 0.40s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(2) { animation-delay: 0.50s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(3) { animation-delay: 0.60s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(4) { animation-delay: 0.70s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(5) { animation-delay: 0.80s; }
.gate-form-wrapper.is-open .form-field:nth-of-type(6) { animation-delay: 0.90s; }
.gate-form-wrapper.is-open .form-submit { animation-delay: 1.05s; }

@keyframes gate-field-rise {
  to { opacity: 1; transform: translateY(0); }
}

.gate-form-header {
  text-align: center;
  padding: var(--space-xl) 6vw var(--space-md);
  border-top: 1px solid var(--color-line);
}

.gate-form-header__label {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.35vw + 0.82rem, 1.12rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.82;
}


/* ---- We Are Drama Maker — company info ---- */
.drama-maker-info {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.drama-maker-info__section-label {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 0.22vw + 0.58rem, 0.8rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.6;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.drama-maker-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .drama-maker-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.drama-maker-info__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-line);
}

.drama-maker-info__key {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 0.18vw + 0.6rem, 0.78rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.6;
}

.drama-maker-info__value {
  font-family: var(--font-sans-jp);
  font-size: clamp(1.03rem, 0.42vw + 0.88rem, 1.22rem);
  color: var(--color-text);
  opacity: 0.88;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.drama-maker-info__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 129, 120, 0.35);
  padding-bottom: 1px;
  transition: color var(--duration-fast);
}

.drama-maker-info__value a:hover {
  color: var(--color-warm);
}

.drama-maker-info__vmv {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-xl);
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.drama-maker-info__vmv-row {
  display: flex;
  gap: var(--space-lg);
  align-items: baseline;
}

.drama-maker-info__vmv-key {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 0.18vw + 0.6rem, 0.78rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 6ch;
}

.drama-maker-info__vmv-value {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.05rem, 1vw + 0.48rem, 1.32rem);
  font-weight: 300;
  letter-spacing: 0.055em;
  color: var(--color-text);
  opacity: 0.85;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .gate-hero__bg img,
  .gate-hero__line-inner,
  .gate-hero__eyebrow,
  .gate-hero__scroll,
  .gate-hero__scroll-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}


/* ============================================================
   Origin portrait — editorial treatment for raw source photos
   元素材の粗さをマスクする強めのグレード / duotone風処理
   ============================================================ */
.origin-chapter .member-interlude--portrait {
  height: clamp(460px, 78vh, 820px);
  margin: clamp(1.5rem, 3vw, 2.75rem) 0 clamp(1.25rem, 2vw, 2rem);
  background: #0a0a0a;
}

.origin-chapter .member-interlude--portrait img {
  object-fit: cover;
  object-position: 50% 18%;
  filter:
    grayscale(1)
    contrast(1.12)
    brightness(0.82)
    saturate(0)
    blur(0.3px);
  transform: scale(1.04);
  transition:
    filter 2.4s var(--ease-out),
    transform 3.2s var(--ease-out);
}

.origin-chapter .member-interlude--portrait:hover img {
  filter:
    grayscale(0.9)
    contrast(1.08)
    brightness(0.92)
    saturate(0.15)
    blur(0);
  transform: scale(1.06);
}

/* warm crimson/sepia duotone layer — editorial depth */
.member-interlude--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(120, 40, 30, 0.22) 0%, transparent 62%),
    linear-gradient(180deg,
      rgba(10, 8, 8, 0.35) 0%,
      rgba(10, 8, 8, 0.05) 38%,
      rgba(10, 8, 8, 0.55) 82%,
      rgba(10, 8, 8, 0.88) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
  height: auto;
}

/* grain texture via repeating linear-gradient, ultra subtle */
.member-interlude--portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 3px);
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
  height: auto;
}

.member-interlude--portrait .member-interlude__caption {
  z-index: 4;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(0.9rem, 2vw, 1.4rem);
}

.member-interlude--portrait .member-interlude__caption span {
  color: rgba(245, 240, 235, 0.42);
  font-size: 9px;
  letter-spacing: 0.28em;
}

@media (max-width: 767px) {
  .origin-chapter .member-interlude--portrait {
    height: clamp(300px, 52vh, 440px);
  }
  .origin-chapter .member-interlude--portrait img {
    object-position: 50% 18%;
  }
}
