/* ════════════════════════════════════════════
   REEL №01 — EUNHO × MINSOL
   Cinematic editorial wedding invitation
   ════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg-deep:   #0A0907;
  --bg-paper:  #14110D;
  --bg-card:   #1A160F;
  --ink:       #F4EFE6;
  --ink-mute:  #8C857A;
  --ink-dim:   #5A554D;
  --amber:     #C8956A;
  --amber-bri: #E0AD7E;
  --gold:      #B8895C;
  --line:      rgba(244, 239, 230, 0.12);
  --line-bri:  rgba(244, 239, 230, 0.28);
  --grain:     rgba(244, 239, 230, 0.018);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --serif-kr: 'Noto Serif KR', serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Cinemascope ratios */
  --scope: 2.39;
  --acad: 1.85;

  /* Spacing rhythm */
  --gut: clamp(20px, 5vw, 56px);
}

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

html, body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--serif-kr);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  letter-spacing: -0.005em;
  position: relative;
}

/* Subtle film grain overlay across the whole document */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.2' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

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

/* Utility: monospace label */
.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Initial fade-in target */
[data-fade] { opacity: 0; transform: translateY(14px); will-change: transform, opacity; }


/* ════════════════════════════════════════════
   LOADER
   ════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.loader__inner {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}
.loader__num {
  position: absolute;
  font-family: var(--serif);
  font-size: 140px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  opacity: 0;
}
.loader__crosshair {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.loader__crosshair::before,
.loader__crosshair::after {
  content: '';
  position: absolute;
  background: var(--line-bri);
}
.loader__crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.loader__crosshair::after  { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }

.loader__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.loader__meta i { color: var(--ink-dim); font-style: normal; }


/* ════════════════════════════════════════════
   MASTHEAD (top of cold open)
   ════════════════════════════════════════════ */
.masthead {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: clamp(20px, 4vw, 32px) var(--gut);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.masthead__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   COLD OPEN
   ════════════════════════════════════════════ */
.scene {
  position: relative;
  padding: var(--gut);
  isolation: isolate;
}
.scene--open {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(80px, 14vh, 140px);
  padding-bottom: clamp(40px, 8vh, 80px);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 149, 106, 0.08), transparent 60%),
    var(--bg-deep);
}

.open__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
  padding: 2rem 0;
}

.open__kicker {
  color: var(--amber);
  margin-bottom: 1rem;
}

.open__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 16vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}
.open__line {
  display: block;
  overflow: hidden;
}
.open__amp {
  display: block;
  font-style: normal;
  font-size: 0.55em;
  color: var(--amber);
  margin: 0.1em 0;
}
.open__line .char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.open__korean {
  font-family: var(--serif-kr);
  font-weight: 200;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.6em;
  color: var(--ink-mute);
  padding-left: 0.6em;
  margin-top: 0.5rem;
}

.open__tagline {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--ink-mute);
  line-height: 1.5;
}

/* Slate */
.slate {
  border: 1px solid var(--line-bri);
  background: var(--bg-paper);
  padding: clamp(16px, 3vw, 24px);
  max-width: 540px;
  margin: 2rem auto 0;
  width: 100%;
  position: relative;
}
.slate::before,
.slate::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.slate::before { top: 10px; left: 10px; }
.slate::after  { top: 10px; right: 10px; }

.slate__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
}
.slate__row:last-child { border-bottom: none; padding-bottom: 0; }
.slate__row:first-child { padding-top: 0; }

.slate__key {
  font-family: var(--mono);
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  font-size: 10px;
}
.slate__val {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* Scroll cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  color: var(--ink-mute);
}
.scroll-cue__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--amber);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}


/* ════════════════════════════════════════════
   CHAPTER CARD
   ════════════════════════════════════════════ */
.chapter-card {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gut);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.chapter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chapter-card__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.chapter-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 24vw, 280px);
  line-height: 0.8;
  font-weight: 300;
  color: var(--amber);
  opacity: 0.18;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.chapter-card__label {
  position: relative;
  z-index: 2;
  color: var(--amber);
  letter-spacing: 0.3em;
}
.chapter-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.chapter-card__sub {
  position: relative;
  z-index: 2;
  color: var(--ink-mute);
  font-family: var(--serif-kr);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}


/* ════════════════════════════════════════════
   ENCOUNTER (cinemascope)
   ════════════════════════════════════════════ */
.scene--encounter {
  padding: 0 0 calc(var(--gut) * 2);
  background: var(--bg-deep);
}
.cinemascope {
  width: 100%;
  position: relative;
}
.cinemascope__frame {
  width: 100%;
  aspect-ratio: var(--scope);
  overflow: hidden;
  position: relative;
  background: #000;
}
.cinemascope__frame::before,
.cinemascope__frame::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
  z-index: 5;
}
.cinemascope__frame::before { top: 0; }
.cinemascope__frame::after  { bottom: 0; }
.cinemascope__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.92);
  will-change: transform;
}
.cinemascope__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px var(--gut) 0;
  color: var(--ink-mute);
  font-size: 13px;
  font-style: italic;
  font-family: var(--serif);
}
.cinemascope__caption .mono {
  color: var(--amber);
  font-style: normal;
}

.encounter-text {
  padding: clamp(40px, 8vw, 80px) var(--gut);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .encounter-text { grid-template-columns: 1fr 1fr; }
}
.encounter-text__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.encounter-text__lead em {
  font-style: italic;
  display: inline-block;
}
.encounter-text__body {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.85;
  align-self: end;
}


/* ════════════════════════════════════════════
   GALLERY (horizontal scroll on desktop)
   ════════════════════════════════════════════ */
.scene--gallery {
  padding: 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.gallery__pin {
  position: relative;
  padding: clamp(60px, 10vw, 100px) 0;
}
.gallery__heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 300;
  line-height: 0.9;
  white-space: nowrap;
  color: var(--ink-dim);
  margin-bottom: 1rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.gallery__heading span {
  display: inline-block;
  will-change: transform;
}
.gallery__track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--gut);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__item {
  flex: 0 0 auto;
  width: min(78vw, 460px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery__frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
  position: relative;
  border: 1px solid var(--line);
}
.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.85) brightness(0.92);
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.gallery__item:hover .gallery__frame img { transform: scale(1.03); }

.gallery__item figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-mute);
}
.gallery__item figcaption .mono { color: var(--amber); }

.gallery__progress {
  position: absolute;
  bottom: 24px;
  right: var(--gut);
  color: var(--ink-mute);
}


/* ════════════════════════════════════════════
   PREMIERE (ticket + map)
   ════════════════════════════════════════════ */
.scene--premiere {
  padding: clamp(60px, 10vw, 100px) var(--gut);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
  background: var(--bg-deep);
}

.premiere__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.premiere__intro .mono { color: var(--amber); }
.premiere__intro h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 6.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.premiere__intro h3 em { font-style: italic; color: var(--amber); }

/* Ticket */
.ticket {
  width: 100%;
  max-width: 480px;
  background: var(--bg-paper);
  border: 1px solid var(--line-bri);
  position: relative;
  overflow: hidden;
}
.ticket__top {
  padding: 20px 24px 24px;
  text-align: center;
  border-bottom: 1px dashed var(--line);
}
.ticket__brand {
  display: flex;
  justify-content: space-between;
  color: var(--amber);
  margin-bottom: 16px;
}
.ticket__feature {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ticket__korean {
  font-family: var(--serif-kr);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  margin-top: 6px;
  padding-left: 0.4em;
}

.ticket__perf {
  height: 14px;
  background-image: radial-gradient(circle at 7px 7px, var(--bg-deep) 6px, transparent 6.5px);
  background-size: 14px 14px;
  background-position: -7px center;
  background-repeat: repeat-x;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.ticket__body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.ticket__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket__col--full { grid-column: 1 / -1; padding-top: 8px; border-top: 1px dashed var(--line); }
.ticket__lab { color: var(--ink-mute); }
.ticket__big {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ticket__med {
  font-family: var(--serif-kr);
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 2px;
}
.ticket__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 4px;
}

.ticket__bot {
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  background: var(--bg-deep);
  border-top: 1px dashed var(--line);
  color: var(--ink-mute);
}

/* Countdown */
.countdown {
  text-align: center;
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.countdown .mono {
  font-size: clamp(40px, 8vw, 64px);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--amber);
  text-transform: none;
}
.countdown__sub {
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 4px;
  font-family: var(--serif);
}

/* Map block */
.map-block {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.map-block__head { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.map-block__head .mono { color: var(--amber); margin-bottom: 8px; }
.map-block__head h4 {
  font-family: var(--serif-kr);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -0.01em;
}
.map-block__head p:not(.mono) { color: var(--ink-mute); }
.map-block__head .small { font-size: 10px; color: var(--ink-dim); margin-top: 4px; }

.map-block__embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-bri);
  background: var(--bg-paper);
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4) brightness(0.92);
}
.map-block__embed iframe { width: 100%; height: 100%; border: none; }

.map-block__apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-bri);
}
.map-block__apps a {
  background: var(--bg-paper);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: background 0.2s;
}
.map-block__apps a:hover { background: var(--bg-card); }
.map-block__apps a .mono { color: var(--amber); }
.map-block__apps a .arrow { margin-left: auto; color: var(--ink-mute); font-size: 18px; }

.map-block__transit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.transit-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.transit-row:last-child { border-bottom: none; }
.transit-row .mono { color: var(--amber); }
.transit-row p { color: var(--ink-mute); }
.transit-row strong { color: var(--ink); font-weight: 500; }


/* ════════════════════════════════════════════
   END CREDITS
   ════════════════════════════════════════════ */
.scene--credits {
  padding: clamp(60px, 10vw, 100px) var(--gut);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 72px);
  background: var(--bg-deep);
}

.credits-block {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}
.credits-block__lab { color: var(--amber); letter-spacing: 0.3em; }
.credits-block__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.credits-block__body { color: var(--ink-mute); }
.credits-block__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* Family */
.family {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 32px);
  background: var(--bg-paper);
}
@media (min-width: 600px) { .family { grid-template-columns: 1fr 1fr; gap: 40px; } }
.family__side { display: flex; flex-direction: column; gap: 6px; }
.family__role { color: var(--amber); margin-bottom: 8px; }
.family__line { color: var(--ink-mute); font-size: 14px; }
.family__line span { color: var(--ink-dim); margin-right: 4px; }
.family__line .dot { color: var(--ink-dim); margin: 0 4px; }
.family__line--featured {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 16px;
  color: var(--ink);
}
.family__line--featured strong {
  font-family: var(--serif-kr);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.family__line--featured .mono { color: var(--amber); margin-right: 8px; font-size: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-bri);
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  width: 100%;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg-deep);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--amber); border-color: var(--amber); }
.btn--ghost {
  background: transparent;
  color: var(--ink-mute);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--ink-mute); }

/* Account accordions */
.acct {
  border: 1px solid var(--line);
  background: var(--bg-paper);
  margin-bottom: 8px;
  text-align: left;
}
.acct summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.acct summary::-webkit-details-marker { display: none; }
.acct summary .mono { color: var(--amber); }
.acct summary .arrow {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-mute);
  transition: transform 0.3s;
}
.acct[open] summary .arrow { transform: rotate(45deg); }

.acct__list {
  border-top: 1px dashed var(--line);
}
.acct__row {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 8px 14px;
  padding: 14px 18px;
  text-align: left;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
  transition: background 0.2s;
  font-family: inherit;
}
.acct__row:last-child { border-bottom: none; }
.acct__row:hover { background: var(--bg-card); }
.acct__bank { font-size: 12px; color: var(--ink-mute); }
.acct__num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em; }
.acct__owner { grid-column: 1 / 3; font-size: 12px; color: var(--ink-dim); }
.acct__copy {
  grid-column: 3; grid-row: 1 / 3;
  align-self: center;
  color: var(--amber);
  font-size: 10px;
}

/* Share buttons */
.share { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line-bri); }
.share__btn {
  background: var(--bg-paper);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-align: left;
}
.share__btn:hover { background: var(--bg-card); }
.share__btn .mono { color: var(--amber); }
.share__btn .arrow { margin-left: auto; color: var(--ink-mute); font-size: 18px; }


/* ════════════════════════════════════════════
   CREDITS ROLL (final)
   ════════════════════════════════════════════ */
.credits-roll {
  width: 100%;
  max-width: 540px;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credits-roll__inner {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink);
  line-height: 1.4;
}
.credits-roll p:not(.mono):not(.big):not(.huge) { font-style: italic; }
.credits-roll .mono { font-style: normal; color: var(--amber); margin-top: 1.4em; font-size: 10px; }
.credits-roll .mono.dim { color: var(--ink-mute); }
.credits-roll .mono.small { font-size: 9px; margin-top: 3em; }
.credits-roll .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 6.5vw, 56px);
  font-weight: 300;
  margin: 0.3em 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.credits-roll .huge {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--amber);
  margin: 0.4em 0;
}
.credits-roll .dim { color: var(--ink-dim); }


/* ════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }


/* ════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-fade] { opacity: 1 !important; transform: none !important; }
}
