/*
 * fl718-biography.css
 * My Biography page — Desktop styles
 * Scoped to body.fl718-about-page
 * Body class is set in functions.php §7
 *
 * NOTE: overflow-x intentionally NOT set on html — breaks position:sticky on film strip section
 * NOTE: overflow-x: clip (NOT hidden) on body — clip prevents horizontal scrollbar without
 *       creating a new scroll container. overflow-x: hidden makes body the scroll container,
 *       which causes GSAP ScrollTrigger pin:true to never engage (listens to window scroll).
 */

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

:where(.fl718-about-page) *,
:where(.fl718-about-page) *::before,
:where(.fl718-about-page) *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.fl718-about-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: clip;
  line-height: 1.7;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #ch4ImgColor { filter: none !important; }
  #ch4ImgBnw   { filter: contrast(1.05) !important; }
  .fl718-transform-line { opacity: 1 !important; filter: none !important; color: #1a1a1a !important; transform: none !important; }
  .fl718-ch3-closing-quote { opacity: 1 !important; filter: none !important; }
}

/* ============================================
   HERO SECTION - FILM CONTACT SHEET
   ============================================ */

.fl718-about-page .fl718-opening {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

.fl718-about-page .fl718-opening__title-container {
  position: absolute;
  left: 34px;
  top: 20px;
  width: 120px;
  display: flex;
  align-items: flex-start;
  z-index: 100;
}

.fl718-about-page .fl718-opening__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  line-height: 0.85;
  letter-spacing: -0.02em;
  opacity: 0;
  filter: brightness(3) blur(3px);
}

.fl718-about-page .fl718-opening__title-main {
  display: block;
  font-size: 72px;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
}

.fl718-about-page .fl718-opening__title-main .fl718-opening__accent {
  color: #c44536;
}

.fl718-about-page .fl718-opening__title-sub {
  display: block;
  font-size: 72px;
  font-weight: 600;
  color: #c44536;
  margin-top: -12px;
}

.fl718-about-page .fl718-opening__contact-sheet {
  position: absolute;
  top: 30px;
  left: calc(50% + 180px);
  transform: translateX(-50%);
  width: 880px;
  height: calc(100vh - 60px);
  overflow: visible;
}

.fl718-about-page .fl718-film-strip {
  position: absolute;
  background: #000000;
  padding: 20px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
}

.fl718-about-page .fl718-film-strip:nth-child(1) {
  top: 0;
  left: 20px;
  transform: rotate(-2deg);
  z-index: 1;
}

.fl718-about-page .fl718-film-strip:nth-child(2) {
  top: 40px;
  left: 310px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.fl718-about-page .fl718-film-strip:nth-child(3) {
  top: 80px;
  left: 600px;
  transform: rotate(-1deg);
  z-index: 1;
}

.fl718-about-page .fl718-film-strip::before,
.fl718-about-page .fl718-film-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #000000 0px,
    #000000 8px,
    #ffffff 8px,
    #ffffff 12px,
    #000000 12px,
    #000000 20px
  );
}

.fl718-about-page .fl718-film-strip::before { left: 8px; }
.fl718-about-page .fl718-film-strip::after { right: 8px; }


.fl718-about-page .fl718-film-strip__edge-left,
.fl718-about-page .fl718-film-strip__edge-right {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 7px;
  font-weight: 700;
  color: #ff6600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

.fl718-about-page .fl718-film-strip__edge-left {
  left: 15px;
  top: 30px;
  bottom: 30px;
}

.fl718-about-page .fl718-film-strip__edge-right {
  right: 15px;
  top: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.fl718-about-page .fl718-film-strip__frames {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px 0;
}

.fl718-about-page .fl718-frame {
  position: relative;
  width: 180px;
  height: 180px;
  background: #ffffff;
  border: 2px solid #000000;
}

.fl718-about-page .fl718-frame__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl718-about-page .fl718-frame__number {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #ff6600;
  background: #000000;
  padding: 2px 6px;
}

.fl718-about-page .fl718-frame__hand-drawn {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  pointer-events: none;
  z-index: 10;
}

.fl718-about-page .fl718-frame__hand-drawn svg {
  width: 100%;
  height: 100%;
}

.fl718-about-page .fl718-frame__hand-drawn path {
  fill: none;
  stroke: #ff3333;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.fl718-about-page .fl718-opening__tagline {
  position: absolute;
  left: 100px;
  bottom: 12vh;
  max-width: 400px;
  z-index: 50;
  opacity: 0;
}

.fl718-about-page .fl718-opening__tagline-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #999999;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.fl718-about-page .fl718-opening__tagline-stack {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #444444;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.fl718-about-page .fl718-opening__tagline-footer {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #999999;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

/* Hero animations */
.fl718-about-page .fl718-opening.animate .fl718-opening__title {
  animation: fl718bio-exposureCorrect 1s ease-out forwards;
}

.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(1) {
  animation: fl718bio-photoFlash 0.4s ease-out 1s forwards;
}

.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(2) {
  animation: fl718bio-photoFlash 0.4s ease-out 1.25s forwards;
}

.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(3) {
  animation: fl718bio-photoFlash 0.4s ease-out 1.5s forwards;
}

.fl718-about-page .fl718-opening.animate .fl718-opening__tagline {
  animation: fl718bio-fadeUp 0.6s ease-out 1.9s forwards;
}

@keyframes fl718bio-exposureCorrect {
  from { opacity: 0; filter: brightness(3) blur(3px); }
  to   { opacity: 1; filter: brightness(1) blur(0px); }
}

@keyframes fl718bio-photoFlash {
  0%   { opacity: 0; filter: brightness(5); }
  30%  { opacity: 1; filter: brightness(1.5); }
  100% { opacity: 1; filter: brightness(1); }
}

@keyframes fl718bio-fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grease pencil mark animation */
.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(1) .fl718-frame:nth-child(1) .fl718-frame__hand-drawn path {
  animation: fl718bio-drawMark 0.6s ease-out 2.6s forwards;
}
.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(1) .fl718-frame:nth-child(3) .fl718-frame__hand-drawn path {
  animation: fl718bio-drawMark 0.6s ease-out 3.0s forwards;
}
.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(2) .fl718-frame:nth-child(2) .fl718-frame__hand-drawn path {
  animation: fl718bio-drawMark 0.6s ease-out 3.4s forwards;
}
.fl718-about-page .fl718-opening.animate .fl718-film-strip:nth-child(3) .fl718-frame:nth-child(3) .fl718-frame__hand-drawn path {
  animation: fl718bio-drawMark 0.6s ease-out 3.8s forwards;
}

@keyframes fl718bio-drawMark {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* ============================================
   TRANSITION: HERO → CHAPTER 1 (FILM PERFORATION BAR)
   ============================================ */

.fl718-about-page .fl718-transition-perforation {
  position: relative;
  width: 100%;
  background: #000000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.fl718-about-page .fl718-perforation-left {
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px 0;
  gap: 4px;
}

.fl718-about-page .fl718-perforation-right {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px 0;
  gap: 4px;
}

.fl718-about-page .fl718-perf-row {
  display: flex;
  gap: 8px;
}

.fl718-about-page .fl718-perforation-hole {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 1px;
}

.fl718-about-page .fl718-transition-film-code {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #ff6600;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

@media (max-width: 768px) {
  .fl718-about-page .fl718-transition-perforation { height: 40px; }
  .fl718-about-page .fl718-perforation-hole { width: 6px; height: 6px; }
  .fl718-about-page .fl718-transition-film-code { font-size: 8px; letter-spacing: 1px; }
}

/* ============================================
   TRANSITION: CHAPTER 3 → CHAPTER 4 (FILM DATA STRIP)
   ============================================ */

.fl718-about-page .fl718-ch34-clip {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, #f4e4d7 0%, #fef3e2 100%);
}

.fl718-about-page .fl718-ch34-transition {
  width: 100%;
  background: linear-gradient(to bottom, #f4e4d7 0%, #fef3e2 100%);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  opacity: 0;
}

.fl718-about-page svg.fl718-ch34-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.fl718-about-page .fl718-ch34-chunk {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(42,26,10,0.45);
  flex-shrink: 0;
}

.fl718-about-page .fl718-ch34-chunk--stock {
  color: #d4664a;
}

.fl718-about-page .fl718-ch34-chunk .fl718-film-sep {
  color: rgba(42,26,10,0.2);
  margin: 0 0.4em;
}

@media (max-width: 768px) {
  .fl718-about-page .fl718-ch34-transition {
    padding: 16px 24px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .fl718-about-page .fl718-ch34-chunk {
    font-size: 8px;
    letter-spacing: 0.14em;
  }
}

/* ============================================
   TRANSITION: CHAPTER 4 → CHAPTER 5 (COORDINATE)
   ============================================ */

.fl718-about-page .fl718-ch45-transition {
  width: 100%;
  background: linear-gradient(to bottom, #1a1a1a 0%, #2a2520 12%, #4a3f36 28%, #8a7a6a 48%, #c4b8a8 65%, #e8e0d6 78%, #ffffff 100%);
  padding: 420px 0 80px 0;
  position: relative;
  z-index: 25;
  margin-top: -10px;
  box-sizing: border-box;
  overflow: hidden;
}

.fl718-about-page .fl718-ch45c-rule {
  width: 100%;
  height: 1px;
  background: rgba(42,26,10,0.12);
  transform-origin: left center;
  transform: scaleX(0);
  position: relative;
}

.fl718-about-page .fl718-ch45c-rule::before,
.fl718-about-page .fl718-ch45c-rule::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 5px;
  background: rgba(42,26,10,0.18);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fl718-about-page .fl718-ch45c-rule::before { left: 80px; }
.fl718-about-page .fl718-ch45c-rule::after  { right: 80px; }
.fl718-about-page .fl718-ch45c-rule.ticked::before,
.fl718-about-page .fl718-ch45c-rule.ticked::after { opacity: 1; }

.fl718-about-page .fl718-ch45c-coord-block {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fl718-about-page .fl718-ch45c-coord-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  opacity: 0;
}

.fl718-about-page .fl718-ch45c-coord-label {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(42,26,10,0.22);
  width: 22px;
  flex-shrink: 0;
  padding-top: 2px;
}

.fl718-about-page .fl718-ch45c-coord-sep {
  width: 1px;
  height: 18px;
  background: rgba(42,26,10,0.1);
  margin: 0 14px;
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: top center;
}

.fl718-about-page .fl718-ch45c-coord-value {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(42,26,10,0.32);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.fl718-about-page .fl718-ch45c-coord-gap { height: 10px; }

@media (prefers-reduced-motion: reduce) {
  .fl718-about-page .fl718-ch45c-rule { transform: scaleX(1) !important; }
  .fl718-about-page .fl718-ch45c-rule::before,
  .fl718-about-page .fl718-ch45c-rule::after { opacity: 1 !important; transition: none !important; }
  .fl718-about-page .fl718-ch45c-coord-sep { transform: scaleY(1) !important; }
  .fl718-about-page .fl718-ch45c-coord-row { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 768px) {
  .fl718-about-page .fl718-ch45-transition { padding: 120px 0 32px 0; }
  .fl718-about-page .fl718-ch45c-coord-value { font-size: 13px; }
  .fl718-about-page .fl718-ch45c-rule::before { left: 28px; }
  .fl718-about-page .fl718-ch45c-rule::after  { right: 28px; }
}

/* ============================================
   CHAPTER 1: BAY RIDGE TO ACADEMIA
   ============================================ */

.fl718-about-page .fl718-chapter1 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8f8f8 0%, #ebebeb 100%);
  padding: 120px 60px 220px 60px;
  overflow-x: clip;
}

.fl718-about-page .fl718-chapter__number {
  position: absolute;
  top: -60px;
  left: 0;
  font-family: 'Courier New', monospace;
  font-size: 42px;
  font-weight: 700;
  color: #666;
  letter-spacing: 6px;
  text-transform: uppercase;
  z-index: 10;
}

.fl718-about-page .fl718-chapter__number::after {
  content: '|';
  animation: fl718bio-blink 1s step-end infinite;
  margin-left: 4px;
  opacity: 0;
}

.fl718-about-page .fl718-chapter__number.typing::after { opacity: 1; }
.fl718-about-page .fl718-chapter__number.typed::after  { opacity: 0; }

@keyframes fl718bio-blink {
  0%, 50%  { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.fl718-about-page .fl718-chapter__title {
  max-width: 1200px;
  margin: 0 auto 140px auto;
  position: relative;
}

.fl718-about-page .fl718-chapter__title-line {
  width: 80px;
  height: 4px;
  background: #2a2a2a;
}

.fl718-about-page .fl718-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.fl718-about-page .fl718-section {
  position: relative;
  margin-bottom: 160px;
}

.fl718-about-page .fl718-paragraph {
  font-size: 21px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: 60px;
}

.fl718-about-page .fl718-paragraph--opening {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 30px;
  line-height: 1.65;
  color: #1a1a1a;
  font-weight: 400;
  max-width: 1150px;
  margin-bottom: 120px;
}

/* ==================== CHAPTER 1 SCRAPBOOK ANIMATION ==================== */

.fl718-about-page .fl718-scrapbook-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 900;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: visible;
  margin: 300px auto 140px;
}

.fl718-about-page .fl718-subway-map {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

#subway-context-lines { opacity: 0; }
#subway-r-line        { opacity: 0; }
#pizzaOuter           { opacity: 0; }

body.fl718-about-page .subway-station {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
}

body.fl718-about-page .subway-label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  fill: #555;
  font-weight: 500;
  opacity: 0;
}
body.fl718-about-page .subway-label-hero     { font-size: 15px; font-weight: 700; fill: #000; }
body.fl718-about-page .subway-label-terminus { font-size: 10px; font-weight: 500; fill: #777; }

body.fl718-about-page .line-bullet      { opacity: 0; }
body.fl718-about-page .line-bullet-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  fill: #ffffff;
  text-anchor: middle; dominant-baseline: central;
  opacity: 0;
}

#station-86-ring { opacity: 0; }

.fl718-about-page .fl718-ghost-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 7;
  pointer-events: none;
}
.fl718-about-page .fl718-ghost {
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.fl718-about-page .fl718-ghost img { display: block; user-select: none; }

.fl718-about-page .fl718-scrapbook-objects {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  pointer-events: none;
}

.fl718-about-page .fl718-pizza-outer {
  position: absolute;
  left: -25%; top: 44%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  perspective: 800px;
}
.fl718-about-page .fl718-pizza-inner { will-change: transform; }
.fl718-about-page .fl718-pizza-img {
  width: 200px; height: auto;
  display: block;
  filter: none;
  user-select: none;
}
.fl718-about-page .fl718-pizza-img.landed {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  pointer-events: auto;
  cursor: grab;
}
.fl718-about-page .fl718-pizza-img.landed:hover {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
  transform: translateY(-3px);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.fl718-about-page .fl718-pizza-shadow {
  position: absolute;
  width: 120px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.1) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.fl718-about-page .fl718-drink-outer {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  opacity: 0;
}
.fl718-about-page .fl718-drink-inner { will-change: transform; }
.fl718-about-page .fl718-drink-img {
  width: 80px; height: auto;
  display: block;
  filter: none;
  user-select: none;
}
.fl718-about-page .fl718-drink-img.landed {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
  pointer-events: auto;
  cursor: grab;
}
.fl718-about-page .fl718-drink-img.landed:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transform: translateY(-3px);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.fl718-about-page .fl718-drink-green  { left: 51%;  top: -120%; }
.fl718-about-page .fl718-drink-orange { left: 115%; top: 57%;   }
.fl718-about-page .fl718-drink-blue   { left: 50%;  top: 220%;  }
.fl718-about-page .fl718-drink-purple { left: 115%; top: -10%;  }

.fl718-about-page .fl718-ball-objects {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 12;
  pointer-events: none;
}

.fl718-about-page .fl718-ball-outer {
  position: absolute;
  left: -10%; top: 8%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  opacity: 0;
}
.fl718-about-page .fl718-ball-inner { will-change: transform; }
.fl718-about-page .fl718-ball-img {
  width: 80px; height: auto;
  display: block;
  user-select: none;
  filter: none;
}
.fl718-about-page .fl718-ball-img.landed { filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22)); }

.fl718-about-page .fl718-ball-shadow {
  position: absolute;
  width: 44px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.14) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.fl718-about-page .fl718-can-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 15;
  pointer-events: none;
}
.fl718-about-page .fl718-can-outer {
  position: absolute;
  left: 115%; top: -8%;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
}
.fl718-about-page .fl718-can-inner { will-change: transform; }
.fl718-about-page .fl718-can-img {
  width: 115px; height: auto;
  display: block;
  user-select: none;
}
.fl718-about-page .fl718-can-img.landed { filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.24)); }

.fl718-about-page .fl718-spray-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 20;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .fl718-about-page .subway-station, body.fl718-about-page .subway-label,
  body.fl718-about-page .line-bullet, body.fl718-about-page .line-bullet-text { opacity: 1 !important; }

  .fl718-about-page .fl718-pizza-outer { left: 62% !important; top: 48% !important; }
  .fl718-about-page .fl718-pizza-inner { transform: rotate(-7deg) !important; }
  .fl718-about-page .fl718-pizza-img   { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)) !important; }
  .fl718-about-page .fl718-pizza-shadow { display: none !important; }

  .fl718-about-page .fl718-drink-green  { left: 51%; top: 40%; opacity: 1 !important; }
  .fl718-about-page .fl718-drink-orange { left: 55%; top: 57%; opacity: 1 !important; }
  .fl718-about-page .fl718-drink-blue   { left: 50%; top: 68%; opacity: 1 !important; }
  .fl718-about-page .fl718-drink-purple { left: 73%; top: 20%; opacity: 1 !important; }
  .fl718-about-page .fl718-drink-img    { filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18)) !important; }

  .fl718-about-page .fl718-ball-outer { left: 78% !important; top: 80% !important; opacity: 1 !important; }
  .fl718-about-page .fl718-ball-img   { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22)) !important; }
  .fl718-about-page .fl718-ball-shadow { display: none !important; }
  .fl718-about-page .fl718-ghost       { opacity: 0 !important; }

  .fl718-about-page .fl718-can-outer { left: 83% !important; top: 43% !important; opacity: 1 !important; }
  .fl718-about-page .fl718-can-img   { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.24)) !important; }
}

/* University scrapbook */
.fl718-about-page .fl718-university-scrapbook-stage {
  position: relative;
  width: 100%;
  height: 740px;
  overflow: visible;
  margin-top: -120px;
  margin-bottom: 150px;
}

#uniCluster {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1220px;
  height: 740px;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  padding-bottom: 100px;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  #uniCluster { transform: translateX(-50%) scale(0.87); }
}
.fl718-about-page .uni-surface {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

#uni-books-stack {
  position: relative;
  width: 425px;
  height: 610px;
  flex-shrink: 0;
}
.fl718-about-page .uni-book { position: absolute; width: 415px; opacity: 0; }
.fl718-about-page .uni-book img { width: 100%; display: block; }
#uni-b1 { left: 0px; top: 420px; }
#uni-b2 { left: 8px; top: 360px; }
#uni-b3 { left: 0px; top: 319px; }
#uni-b4 { left: 6px; top: 169px; }
#uni-b5 { left: 3px; top: 210px; }

#uni-notebook {
  width: 375px;
  opacity: 0;
  transform-origin: center center;
  flex-shrink: 0;
}
#uni-notebook img { width: 100%; display: block; border-radius: 2px; }

#uni-sas {
  width: 435px;
  opacity: 0;
  transform-origin: center center;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  user-select: none;
  flex-shrink: 0;
}
.fl718-about-page .uni-sas-titlebar {
  background: linear-gradient(to bottom, #24478f, #1a3570);
  color: #fff;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.fl718-about-page .uni-sas-title-left { display: flex; align-items: center; gap: 5px; }
.fl718-about-page .uni-sas-icon {
  background: #fff;
  color: #24478f;
  font-weight: 900;
  font-size: 8px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}
.fl718-about-page .uni-sas-wincontrols { display: flex; gap: 3px; font-size: 9px; color: rgba(255,255,255,0.65); }
.fl718-about-page .uni-sas-wincontrols span {
  width: 14px; height: 13px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 1px;
}
.fl718-about-page .uni-sas-menubar {
  background: #f0f0f0;
  border-bottom: 1px solid #ccc;
  padding: 2px 7px;
  font-size: 10px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  gap: 12px;
  color: #333;
}
.fl718-about-page .uni-sas-toolbar {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 2px 7px;
  font-size: 9px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444;
}
.fl718-about-page .uni-sas-btn {
  background: #e8e8e8;
  border: 1px solid #bbb;
  border-radius: 2px;
  padding: 1px 6px;
  font-size: 9px;
  display: flex; align-items: center; gap: 2px;
}
.fl718-about-page .uni-sas-btn-run { color: #228B22; }
.fl718-about-page .uni-sas-divider { width: 1px; height: 12px; background: #ccc; }
.fl718-about-page .uni-sas-tabbar {
  background: #e8e8e8;
  border-bottom: 1px solid #bbb;
  padding: 0 7px;
  display: flex;
}
.fl718-about-page .uni-sas-tab {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: none;
  padding: 2px 10px;
  font-size: 9px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  position: relative;
  top: 1px;
}
.fl718-about-page .uni-sas-editor {
  display: flex;
  background: #fff;
  height: 192px;
  overflow: hidden;
}
.fl718-about-page .uni-sas-gutter {
  background: #f8f8f8;
  border-right: 1px solid #e0e0e0;
  padding: 4px 4px 4px 3px;
  min-width: 22px;
  text-align: right;
  color: #bbb;
  font-size: 9.5px;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.62;
  flex-shrink: 0;
}
.fl718-about-page .uni-sas-code {
  flex: 1;
  padding: 4px 7px;
  font-size: 9.5px;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.62;
  color: #111;
  white-space: pre;
  overflow: hidden;
}
.fl718-about-page .uni-sas-code .uni-kw  { color: #0000cc; font-weight: bold; }
.fl718-about-page .uni-sas-code .uni-str { color: #008000; }
.fl718-about-page .uni-sas-code .uni-cmt { color: #008080; font-style: italic; }
#uni-sas-cursor {
  display: inline-block;
  width: 5.5px;
  height: 11px;
  background: #333;
  vertical-align: text-bottom;
  visibility: hidden;
  animation: fl718bio-uniSasBlink 1s step-end infinite;
}
@keyframes fl718bio-uniSasBlink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.fl718-about-page .uni-sas-statusbar {
  background: #f0f0f0;
  border-top: 1px solid #ccc;
  padding: 2px 7px;
  font-size: 9px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #777;
  display: flex;
  justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {
  .fl718-about-page .uni-book, #uni-notebook, #uni-sas {
    opacity: 1 !important;
    transform: none !important;
  }
  #uni-sas-cursor { animation: none; opacity: 1; }
}

/* Polaroid photos */
.fl718-about-page .fl718-photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 430px 0 250px 0;
  position: relative;
}

.fl718-about-page .fl718-photo {
  position: relative;
  background: #fff;
  padding: 12px 12px 44px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22), 0 1px 4px rgba(0, 0, 0, 0.12);
  transform: rotate(-1deg);
  overflow: hidden;
}

.fl718-about-page .fl718-photo:nth-child(2) {
  transform: rotate(2deg) translateY(40px);
}

.fl718-about-page .fl718-photo__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0e0e0;
  position: relative;
  overflow: hidden;
  filter: brightness(3.5) contrast(0.05) saturate(0) blur(6px);
  outline: 1px solid rgba(0, 0, 0, 0.20);
}

.fl718-about-page .fl718-photo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl718-about-page .fl718-photo__overlay {
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.9) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}

.fl718-about-page .fl718-photo--developing .fl718-photo__image {
  animation: fl718bio-polaroidDevelop 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             fl718bio-polaroidShake 0.6s ease-in-out 0.3s forwards;
}

.fl718-about-page .fl718-photo--developing .fl718-photo__overlay {
  animation: fl718bio-overlayFade 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fl718bio-polaroidDevelop {
  0%  { filter: brightness(3.5) contrast(0.05) saturate(0) blur(6px) sepia(0.2); }
  8%  { filter: brightness(4) contrast(0.1) saturate(0) blur(5px) sepia(0.3); }
  18% { filter: brightness(3) contrast(0.25) saturate(0.15) blur(4px) sepia(0.35) hue-rotate(-15deg); }
  32% { filter: brightness(2.2) contrast(0.45) saturate(0.4) blur(3px) sepia(0.25) hue-rotate(-8deg); }
  48% { filter: brightness(1.6) contrast(0.65) saturate(0.65) blur(1.8px) sepia(0.1) hue-rotate(3deg); }
  65% { filter: brightness(1.25) contrast(0.85) saturate(0.85) blur(0.8px) sepia(0.05) hue-rotate(2deg); }
  82% { filter: brightness(1.08) contrast(0.96) saturate(1.1) blur(0.3px) sepia(0) hue-rotate(0deg); }
  94% { filter: brightness(1.02) contrast(0.99) saturate(1.03) blur(0.1px) sepia(0) hue-rotate(0deg); }
  100% { filter: brightness(1) contrast(1) saturate(1) blur(0) sepia(0) hue-rotate(0deg); }
}

@keyframes fl718bio-polaroidShake {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  10%  { transform: translateX(-1px) translateY(0.5px) rotate(-0.3deg); }
  20%  { transform: translateX(1px) translateY(-0.5px) rotate(0.3deg); }
  30%  { transform: translateX(-0.8px) translateY(0.3px) rotate(-0.2deg); }
  40%  { transform: translateX(0.8px) translateY(-0.3px) rotate(0.2deg); }
  50%  { transform: translateX(-0.5px) translateY(0.2px) rotate(-0.1deg); }
  60%  { transform: translateX(0.5px) translateY(-0.2px) rotate(0.1deg); }
  70%  { transform: translateX(-0.3px) translateY(0.1px) rotate(-0.05deg); }
  80%  { transform: translateX(0.3px) translateY(-0.1px) rotate(0.05deg); }
  90%  { transform: translateX(-0.1px) translateY(0.05px) rotate(0deg); }
}

@keyframes fl718bio-overlayFade {
  0%   { opacity: 1; transform: scale(1); }
  40%  { opacity: 0.95; transform: scale(1); }
  60%  { opacity: 0.7; transform: scale(1.01); }
  75%  { opacity: 0.3; transform: scale(1.02); }
  88%  { opacity: 0.1; transform: scale(1.01); }
  100% { opacity: 0; transform: scale(1); }
}

.fl718-about-page .fl718-photo__caption {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  font-family: 'Courier New', monospace;
  text-align: center;
  position: relative;
  z-index: 3;
}

/* ============================================
   CHAPTER 2: THE BUILDER (NOOK NOOK MATS)
   ============================================ */

.fl718-about-page .fl718-chapter-transition {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  overflow: hidden;
}

.fl718-about-page .fl718-textile-pattern {
  width: 180px;
  height: 100%;
  display: flex;
  align-items: center;
}

.fl718-about-page .fl718-textile-pattern svg {
  width: 100%;
  height: 200px;
}

.fl718-about-page .fl718-textile-pattern path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.4s ease-out;
}

.fl718-about-page .fl718-textile-pattern.animate path {
  animation: fl718bio-drawLine 0.4s ease-out forwards;
}
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(1) { animation-delay: 0.0s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(2) { animation-delay: 0.1s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(3) { animation-delay: 0.2s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(4) { animation-delay: 0.3s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(5) { animation-delay: 0.4s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(6) { animation-delay: 0.5s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(7) { animation-delay: 0.6s; }
.fl718-about-page .fl718-textile-pattern.animate path:nth-child(8) { animation-delay: 0.7s; }

@keyframes fl718bio-drawLine {
  to { stroke-dashoffset: 0; }
}

.fl718-about-page .fl718-brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  flex-direction: column;
}

.fl718-about-page .fl718-brand-logo__main {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.fl718-about-page .fl718-brand-logo__nook {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 84px;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.fl718-about-page .fl718-brand-logo__nook span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fl718-about-page .fl718-brand-logo__dot {
  width: 16px;
  height: 16px;
  background: #d4664a;
  border-radius: 50%;
  margin: 0 8px;
  align-self: center;
  position: relative;
  top: -8px;
  opacity: 0;
  transform: scale(0.5);
}

.fl718-about-page .fl718-brand-logo__mats {
  font-family: 'Brush Script MT', 'Dancing Script', cursive, 'Comic Sans MS', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #000000;
  position: relative;
  top: -15px;
  left: -10px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
}

.fl718-about-page .fl718-organic-shape {
  width: 280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: scale(0.3) rotate(-90deg);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fl718-about-page .fl718-organic-shape.animate {
  opacity: 1;
  transform: scale(1.0) rotate(0deg);
}

.fl718-about-page .fl718-organic-shape svg {
  width: 220px;
  height: 220px;
}

.fl718-about-page .fl718-chapter-dot-divider {
  width: 100%;
  background: linear-gradient(to bottom, #ebebeb 0%, #faf8f5 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 80px;
  box-sizing: border-box;
}

.fl718-about-page .fl718-chapter-dot-divider__dot {
  width: 7px;
  height: 7px;
  background: #c8a882;
  border-radius: 50%;
  flex-shrink: 0;
}

.fl718-about-page .fl718-chapter2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #faf8f5 0%, #f0ebe5 100%);
  padding: 120px 60px 200px 60px;
}

.fl718-about-page .fl718-chapter2 .fl718-chapter__number { color: #8b7355; }
.fl718-about-page .fl718-chapter2 .fl718-chapter__number::after { color: #8b7355; }

.fl718-about-page .fl718-chapter2 .fl718-paragraph--opening,
.fl718-about-page .fl718-chapter2 .fl718-paragraph--momentum,
.fl718-about-page .fl718-chapter2 .fl718-artisan-title,
.fl718-about-page .fl718-chapter2 .fl718-ending { font-family: 'DM Sans', sans-serif; }

.fl718-about-page .fl718-chapter2 .fl718-highlight { font-family: 'Lora', serif; font-style: italic; }

.fl718-about-page .fl718-paragraph--momentum {
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  max-width: 1150px;
  margin-left: 0;
  transform: skewX(-3deg);
  transition: transform 0.3s ease;
}
.fl718-about-page .fl718-paragraph--momentum:hover { transform: skewX(-1deg) translateX(5px); }

.fl718-about-page .fl718-highlight {
  font-size: 24px;
  line-height: 1.75;
  font-weight: 500;
  color: #1a1a1a;
  margin: 100px 0 60px 100px;
  max-width: 700px;
}

.fl718-about-page .fl718-ending {
  font-size: 24px;
  line-height: 1.75;
  font-weight: 500;
  color: #1a1a1a;
  margin-left: 100px;
  margin-top: 60px;
  margin-bottom: 180px;
}

/* ARTISAN PINBOARD SECTION */
.fl718-about-page .fl718-artisan-section { margin: 120px 0 200px; }

.fl718-about-page .fl718-artisan-title {
  font-size: 28px;
  font-weight: 700;
  color: #8b7355;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fl718-about-page .fl718-ch2-pinboard {
  background-color: #b5895e;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(255,255,255,0.03) 4px, rgba(255,255,255,0.03) 5px),
    radial-gradient(ellipse at 20% 30%, rgba(180,130,80,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 70%, rgba(140,95,50,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 10%, rgba(190,145,90,0.2) 0%, transparent 50%);
  margin: 0 -60px;
  padding: 60px 60px 80px;
  overflow: hidden;
}

.fl718-about-page .fl718-ch2-pin-stage {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  height: 860px;
}

.fl718-about-page .fl718-ch2-pin-item {
  position: absolute;
  background: #f5f1e8;
  padding: 10px 10px 44px;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.36), 0 1px 4px rgba(0,0,0,0.18), inset 0 0 14px rgba(0,0,0,0.06);
  opacity: 0;
  transform-origin: 50% 0;
}

.fl718-about-page .fl718-ch2-pin-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.13);
}

.fl718-about-page .fl718-ch2-pin-item--p2 img,
.fl718-about-page .fl718-ch2-pin-item--p4 img,
.fl718-about-page .fl718-ch2-pin-item--p6 img { height: 100%; object-fit: cover; }

.fl718-about-page .fl718-ch2-pin-item--p4 img { object-position: 58% center; }

.fl718-about-page .fl718-ch2-pin-item::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--pin-hi, #ee5555), var(--pin-lo, #8b0000));
  box-shadow: 0 2px 4px rgba(0,0,0,0.55), inset 0 1px 1px rgba(255,255,255,0.35);
  z-index: 10;
}

.fl718-about-page .fl718-ch2-pin-label {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a6a5a;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.fl718-about-page .fl718-ch2-pin-item--p1 { width: 314px; height: 392px; left: -50px;  top: 38px;  --pin-hi: #ee5555; --pin-lo: #8b0000; }
.fl718-about-page .fl718-ch2-pin-item--p2 { width: 378px; height: 310px; left: 310px; top: 16px;  --pin-hi: #f0d860; --pin-lo: #9a8400; }
.fl718-about-page .fl718-ch2-pin-item--p3 { width: 290px; height: 362px; left: 726px; top: 44px;  --pin-hi: #ee5555; --pin-lo: #8b0000; }
.fl718-about-page .fl718-ch2-pin-item--p4 { width: 348px; height: 300px; left: -50px;  top: 486px; --pin-hi: #888888; --pin-lo: #222222; }
.fl718-about-page .fl718-ch2-pin-item--p5 { width: 360px; height: 252px; left: 378px; top: 514px; --pin-hi: #ee5555; --pin-lo: #8b0000; }
.fl718-about-page .fl718-ch2-pin-item--p6 { width: 360px; height: 246px; left: 760px; top: 530px; --pin-hi: #6699dd; --pin-lo: #1a3f7a; }

@media (max-width: 1024px) {
  .fl718-about-page .fl718-ch2-pinboard { padding: 20px 8px 24px; }
  .fl718-about-page .fl718-ch2-pin-stage { height: 640px; }
  .fl718-about-page .fl718-ch2-pin-item { padding: 5px 5px 28px; }
  .fl718-about-page .fl718-ch2-pin-label { font-size: 8px; bottom: 7px; left: 5px; right: 5px; padding-top: 5px; }
  .fl718-about-page .fl718-ch2-pin-item--p1 { width: 48%; height: auto; aspect-ratio: 278/348; left: 1%;  top: 8px; }
  .fl718-about-page .fl718-ch2-pin-item--p2 { width: 48%; height: auto; aspect-ratio: 378/262; left: 51%; top: 25px; }
  .fl718-about-page .fl718-ch2-pin-item--p3 { width: 48%; height: auto; aspect-ratio: 256/322; left: 51%; top: 168px; }
  .fl718-about-page .fl718-ch2-pin-item--p4 { width: 48%; height: auto; aspect-ratio: 348/240; left: 1%;  top: 244px; }
  .fl718-about-page .fl718-ch2-pin-item--p5 { width: 48%; height: auto; aspect-ratio: 360/250; left: 1%;  top: 386px; }
  .fl718-about-page .fl718-ch2-pin-item--p6 { width: 48%; height: auto; aspect-ratio: 260/336; left: 51%; top: 405px; }
}

/* Bodega bag scrapbook */
#tipSection {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 60px 0 120px;
}

#tipStage {
  position: relative;
  width: 960px;
  max-width: 100%;
  height: 760px;
}

#tip-bag {
  position: absolute;
  width: 250px;
  left: calc(50% - 125px);
  top: 30px;
  transform: rotate(180deg);
  transform-origin: center;
  z-index: 20;
}
#tip-bag img { display: block; width: 100%; filter: drop-shadow(2px 4px 14px rgba(0,0,0,0.28)); }

.fl718-about-page .tip-item { position: absolute; opacity: 0; }
.fl718-about-page .tip-item img { display: block; width: 100%; }
.fl718-about-page .tip-item.photo { overflow: hidden; }
.fl718-about-page .tip-item.photo img { width: 100%; height: 100%; object-fit: cover; }
.fl718-about-page .tip-item.heavy img { filter: drop-shadow(3px 8px 16px rgba(0,0,0,0.38)); }
.fl718-about-page .tip-item.paper img { filter: drop-shadow(2px 5px 12px rgba(0,0,0,0.28)); }
.fl718-about-page .tip-item.photo img { filter: drop-shadow(2px 6px 18px rgba(0,0,0,0.35)); }

#tip-camera    { width: 215px; left: 370px; top: 370px; }
#tip-sol       { width: 108px; left: 60px; top: 760px; }
#tip-lira      { width: 148px; left: 790px; top: 648px; }
#tip-matchbook { width: 118px; left: 545px; top: 605px; }
#tip-pass      { width: 198px; left: 175px; top: 578px; }
#tip-beer      { width: 200px; left: 430px; top: 560px; }
#tip-photo1    { width: 290px; height: 193px; left:  55px; top: 355px; }
#tip-photo2    { width: 275px; height: 184px; left: 590px; top: 350px; }

@media (prefers-reduced-motion: reduce) {
  .fl718-about-page .tip-item { opacity: 1 !important; transform: none !important; }
  #tip-bag { transform: rotate(180deg) !important; transform-origin: center !important; }
}

/* CH.3 Horizontal Subway Cards */
body.fl718-about-page .subway-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 120px;
}
body.fl718-about-page .subway-card {
  width: 100%;
  margin: 0 auto 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}
body.fl718-about-page .subway-card__header {
  padding: 16px 24px 13px;
  display: flex; align-items: center; gap: 16px;
}
body.fl718-about-page .subway-card__bullet {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; color: #fff;
  flex-shrink: 0; opacity: 0; transform: scale(0);
}
body.fl718-about-page .subway-card__header-text { display: flex; flex-direction: column; gap: 2px; }
body.fl718-about-page .subway-card__line-name {
  font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: 0.01em; opacity: 0; transform: translateX(-8px);
}
body.fl718-about-page .subway-card__borough {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.7); opacity: 0;
}
body.fl718-about-page .subway-card__map {
  background: #ddd7ca;
  background-image: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.10) 0%, transparent 65%);
  padding: 0; position: relative;
}
body.fl718-about-page .subway-card__map svg { display: block; width: 100%; height: auto; }
body.fl718-about-page .subway-card--d .subway-card__header { background: #FF6319; }
body.fl718-about-page .subway-card--d .subway-card__bullet { background: #fff; color: #FF6319; box-shadow: 0 2px 8px rgba(255,99,25,0.3); }
body.fl718-about-page .subway-card--7 .subway-card__header { background: #B933AD; }
body.fl718-about-page .subway-card--7 .subway-card__bullet { background: #fff; color: #B933AD; box-shadow: 0 2px 8px rgba(185,51,173,0.3); }
body.fl718-about-page .subway-card--j .subway-card__header { background: #996633; }
body.fl718-about-page .subway-card--j .subway-card__bullet { background: #fff; color: #996633; box-shadow: 0 2px 8px rgba(153,102,51,0.3); }
body.fl718-about-page .line-path { opacity: 0; }
body.fl718-about-page .stn { opacity: 0; }
body.fl718-about-page .stn-label { opacity: 0; font-family: Helvetica, Arial, sans-serif; }
body.fl718-about-page .stn-sub { opacity: 0; font-family: Helvetica, Arial, sans-serif; }
body.fl718-about-page .ghost-ext { opacity: 0; }
body.fl718-about-page .pulse { opacity: 0; }
body.fl718-about-page .photo-interleave {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
body.fl718-about-page .photo-pair {
  display: flex; justify-content: center; gap: 60px;
  margin: 64px 0 80px; width: 100%; padding: 0 40px;
}
body.fl718-about-page .mstrip-photo {
  background: #faf8f4;
  box-shadow: 1px 3px 14px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.06);
  padding: 8px 8px 32px; opacity: 0;
  width: 400px; flex-shrink: 0; position: relative;
}
body.fl718-about-page .mstrip-img-wrapper { width: 100%; aspect-ratio: 5/4; overflow: hidden; position: relative; }
body.fl718-about-page .mstrip-img-wrapper img { display: block; width: 100%; height: 100%; object-fit: cover; }
body.fl718-about-page .mstrip-caption {
  text-align: center; font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #999; font-size: 10px; margin-top: 10px; opacity: 0;
}
#d-photo-1 { transform: rotate(1.2deg); margin-top: 12px; }
#d-photo-2 { transform: rotate(-1.8deg); margin-top: -8px; }
#d-photo-2 img { filter: grayscale(0.28); }
#s-photo-1 { transform: rotate(-1.4deg); margin-top: 6px; }
#s-photo-1 img { filter: grayscale(0.60) brightness(0.9); }
#s-photo-2 { transform: rotate(2.0deg); margin-top: -14px; }
#j-photo-1 { transform: rotate(1.6deg); margin-top: -6px; }
#j-photo-2 { transform: rotate(-2.2deg); margin-top: 10px; }
body.fl718-about-page .subway-caption {
  text-align: center; font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(90,70,48,0.55);
  margin: 40px auto 0; line-height: 1.8; opacity: 0;
}

/* CH2 Ledger */
.fl718-about-page .ch2-ledger-section { position: relative; width: 100%; margin: 0 0 192px; }
.fl718-about-page .ch2-book-spread { position: relative; display: flex; width: 100%; border-radius: 2px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12); }
.fl718-about-page .ch2-page-left { flex: 1; background: #f7f2e8; background-image: radial-gradient(ellipse at 8% 45%, rgba(220,200,150,0.35) 0%, transparent 65%), radial-gradient(ellipse at 92% 90%, rgba(200,180,120,0.15) 0%, transparent 50%); position: relative; padding: 32px 22px 36px 32px; }
.fl718-about-page .ch2-page-right { flex: 1; background: #f5f0e5; background-image: radial-gradient(ellipse at 92% 45%, rgba(220,200,150,0.35) 0%, transparent 65%), radial-gradient(ellipse at 8% 90%, rgba(200,180,120,0.15) 0%, transparent 50%); position: relative; padding: 32px 32px 36px 22px; }
.fl718-about-page .ch2-page-left::after, .fl718-about-page .ch2-page-right::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(180,150,80,0.035) 2px, rgba(180,150,80,0.035) 3px); pointer-events: none; z-index: 0; }
.fl718-about-page .ch2-book-spine { width: 22px; flex-shrink: 0; position: relative; background: linear-gradient(90deg, rgba(120,90,40,0.45) 0%, rgba(190,160,100,0.18) 40%, rgba(190,160,100,0.18) 60%, rgba(110,80,35,0.42) 100%); }
.fl718-about-page .ch2-book-spine::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 7px; background: linear-gradient(90deg, rgba(0,0,0,0.15), transparent); }
.fl718-about-page .ch2-book-spine::after { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 7px; background: linear-gradient(270deg, rgba(0,0,0,0.10), transparent); }
.fl718-about-page .ch2-ruled-lines { position: absolute; top: 76px; left: 0; right: 0; bottom: 34px; pointer-events: none; z-index: 1; }
.fl718-about-page .ch2-ledger-header { display: flex; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #7a5518; border-bottom: 1.5px solid #9a7030; padding-bottom: 8px; opacity: 0; position: relative; z-index: 3; }
.fl718-about-page .ch2-col-item { flex: 2.8; } .fl718-about-page .ch2-col-qty { flex: 0.75; text-align: right; } .fl718-about-page .ch2-col-cost { flex: 1.1; text-align: right; } .fl718-about-page .ch2-col-note { flex: 2.2; padding-left: 14px; }
.fl718-about-page .ch2-col-source { flex: 2.0; } .fl718-about-page .ch2-col-dest { flex: 2.2; } .fl718-about-page .ch2-col-date { flex: 1.1; text-align: right; } .fl718-about-page .ch2-col-status { flex: 1.4; padding-left: 14px; }
.fl718-about-page .ch2-ledger-rows { position: relative; z-index: 3; }
.fl718-about-page .ch2-ledger-row { display: flex; align-items: baseline; padding: 7px 0 6px; border-bottom: 1px solid rgba(139,96,32,0.13); opacity: 0; }
.fl718-about-page .ch2-ledger-row .ch2-col-item, .fl718-about-page .ch2-ledger-row .ch2-col-source, .fl718-about-page .ch2-ledger-row .ch2-col-dest { font-family: 'Courier Prime', monospace; font-size: 11.5px; color: #3a2810; letter-spacing: 0.03em; }
.fl718-about-page .ch2-ledger-row .ch2-col-qty, .fl718-about-page .ch2-ledger-row .ch2-col-cost, .fl718-about-page .ch2-ledger-row .ch2-col-date, .fl718-about-page .ch2-ledger-row .ch2-col-status, .fl718-about-page .ch2-ledger-row .ch2-col-note { font-family: 'Caveat', cursive; font-size: 16px; color: #2e1e08; line-height: 1; }
.fl718-about-page .ch2-ledger-row .ch2-col-qty { text-align: right; } .fl718-about-page .ch2-ledger-row .ch2-col-cost { text-align: right; } .fl718-about-page .ch2-ledger-row .ch2-col-date { text-align: right; }
.fl718-about-page .ch2-ledger-row .ch2-col-note { padding-left: 14px; color: #6b4e1a; } .fl718-about-page .ch2-ledger-row .ch2-col-status { padding-left: 14px; }
.fl718-about-page .ch2-ledger-row.dim .ch2-col-item, .fl718-about-page .ch2-ledger-row.dim .ch2-col-source, .fl718-about-page .ch2-ledger-row.dim .ch2-col-dest { color: #5a3e20; }
.fl718-about-page .ch2-ledger-row.dim .ch2-col-qty, .fl718-about-page .ch2-ledger-row.dim .ch2-col-cost, .fl718-about-page .ch2-ledger-row.dim .ch2-col-date, .fl718-about-page .ch2-ledger-row.dim .ch2-col-note, .fl718-about-page .ch2-ledger-row.dim .ch2-col-status { color: #7a5a30; }
.fl718-about-page .ch2-ledger-row .ch2-cost-out { color: #8b3a2a; }
.fl718-about-page .ch2-ledger-row .ch2-cost-in { color: #2a6e30; }
.fl718-about-page .ch2-ledger-row .ch2-status-ok { color: #2a6e30; }
.fl718-about-page .ch2-ledger-row .ch2-status-late { color: #a83a2a; }
.fl718-about-page .ch2-ledger-row .ch2-status-clear { color: #2a6e30; }
.fl718-about-page .ch2-ledger-row .ch2-status-end { color: #8b3a2a; }
.fl718-about-page .ch2-ledger-row.dim .ch2-cost-out { color: #a85a4a; }
.fl718-about-page .ch2-ledger-row.dim .ch2-status-ok { color: #4a8a50; }
.fl718-about-page .ch2-ledger-row.dim .ch2-status-late { color: #a85a4a; }
.fl718-about-page .ch2-ledger-row.dim .ch2-status-clear { color: #4a8a50; }
.fl718-about-page .ch2-ledger-total { display: flex; align-items: baseline; padding: 10px 0 7px; border-top: 2px solid #9a7030; margin-top: 5px; opacity: 0; }
.fl718-about-page .ch2-ledger-total .t-label { flex: 3.65; font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #7a5518; }
.fl718-about-page .ch2-ledger-total .t-value { flex: 1; font-family: 'Caveat', cursive; font-size: 19px; text-align: right; color: #2e1e08; font-weight: 600; }
.fl718-about-page .ch2-ledger-total .t-note { flex: 2.35; padding-left: 14px; font-family: 'Caveat', cursive; font-size: 14.5px; color: #6b4e1a; }
.fl718-about-page .ch2-page-num { position: absolute; bottom: 14px; font-family: 'Courier Prime', monospace; font-size: 9px; color: rgba(122,85,24,0.45); letter-spacing: 0.12em; }
.fl718-about-page .ch2-page-left .ch2-page-num { left: 32px; } .fl718-about-page .ch2-page-right .ch2-page-num { right: 32px; }
.fl718-about-page .ch2-spine-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(90deg); font-family: 'Courier Prime', monospace; font-size: 7px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(180,150,80,0.45); white-space: nowrap; }

.fl718-about-page .ch2-manifest-section { position: relative; width: 100%; border-radius: 2px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10); }
.fl718-about-page .ch2-chart-map { display: block; width: 100%; height: auto; aspect-ratio: 3/2; }
.fl718-about-page .ch2-chart-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.fl718-about-page .ch2-mat-surface { position: absolute; top: 18%; left: 22%; width: 185px; opacity: 0; z-index: 8; pointer-events: none; transform: rotate(4deg); filter: drop-shadow(0 6px 18px rgba(0,0,0,0.38)); }
.fl718-about-page .ch2-mat-surface img { display: block; width: 100%; height: auto; border-radius: 2px; }
.fl718-about-page .ch2-map-stamp-mark { position: absolute; top: 27%; left: 30%; transform: translate(-50%, -50%) rotate(-5deg); width: 180px; height: 180px; opacity: 0; z-index: 12; pointer-events: none; }
.fl718-about-page .ch2-map-stamp-wrapper { position: absolute; top: 0; left: 27%; width: 150px; z-index: 20; pointer-events: none; }

/* ============================================
   CHAPTER 3: THE HINGE (2015 PERU)
   ============================================ */

.fl718-about-page .fl718-threshold {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 120px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f0ebe5 0%, #e8a87c 100%);
}

.fl718-about-page .fl718-threshold__content { position: relative; z-index: 10; width: 100%; }

.fl718-about-page .fl718-threshold__sentence {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 2.15vw;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
}

.fl718-about-page .fl718-shutter-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: #0a0806;
  opacity: 0;
  pointer-events: none;
}

.fl718-about-page .fl718-threshold__bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, #f0ebe5 0%, #d4664a 50%, #e8a87c 100%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.fl718-about-page .fl718-chapter3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #fef3e2 0%, #f4e4d7 100%);
  padding: 120px 60px 200px 60px;
}

.fl718-about-page .fl718-chapter3 .fl718-chapter__number { color: #d4664a; }
.fl718-about-page .fl718-chapter3 .fl718-chapter__number::after { color: #d4664a; }
.fl718-about-page .fl718-chapter3 .fl718-chapter__title-line { background: #d4664a; }

.fl718-about-page .fl718-chapter3 .fl718-paragraph { font-family: 'Courier Prime', 'Courier New', monospace; }
.fl718-about-page .fl718-chapter3 .fl718-paragraph--opening { font-family: 'Courier Prime', 'Courier New', monospace; }

.fl718-about-page .fl718-ch3-divider {
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, #e8a87c 0%, #fef3e2 100%);
  display: flex;
  align-items: center;
}

.fl718-about-page .fl718-ch3-divider__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 5vw;
}

.fl718-about-page .fl718-fstop-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
}

.fl718-about-page .fl718-fstop-rule {
  width: 22px;
  height: 1px;
  background: #d4664a;
  opacity: 0.38;
  transform-origin: center center;
}

.fl718-about-page .fl718-fstop-text {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 11px;
  color: #d4664a;
  opacity: 0.52;
  white-space: nowrap;
  letter-spacing: 0.22em;
}

.fl718-about-page .fl718-transform-container {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.fl718-about-page .fl718-transform-line {
  display: block;
  opacity: 0;
  filter: blur(6px);
  color: #999;
  transform: translateY(4px);
  will-change: filter;
}

.fl718-about-page .fl718-ch3-closing-quote {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 28px;
  line-height: 1.65;
  font-style: italic;
  text-align: center;
  color: #999;
  max-width: 920px;
  margin: 120px auto 0;
  opacity: 0;
  filter: blur(6px);
}

/* ============================================
   CHAPTER 4: MEXICO CITY & FILM
   ============================================ */

.fl718-about-page .fl718-chapter4 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fef3e2;
  padding-top: 300px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fl718-about-page .fl718-chapter4 .fl718-chapter__number { color: #e87b93; top: 60px; left: 60px; }
.fl718-about-page .fl718-chapter4 .fl718-chapter__number::after { color: #e87b93; }
.fl718-about-page .fl718-chapter4 .fl718-chapter__title-line { position: absolute; top: 110px; left: 60px; background: #e87b93; }

.fl718-about-page .fl718-chapter4 .fl718-paragraph--opening,
.fl718-about-page .fl718-chapter4 .fl718-paragraph { font-family: 'Playfair Display', serif; }

/* Ch.4 Darkroom two-photo section */
.fl718-about-page .fl718-darkroom-section {
  width: 100%;
  background: #161210;
  padding: 120px 40px 140px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fl718-about-page .fl718-darkroom-stage { position: relative; }

.fl718-about-page .fl718-darkroom-stage::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse at center, rgba(170, 55, 18, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.fl718-about-page .fl718-darkroom-pair { display: flex; gap: 80px; align-items: flex-start; }
.fl718-about-page .fl718-darkroom-item { display: flex; flex-direction: column; align-items: center; }

.fl718-about-page .fl718-darkroom-print {
  background: #fff;
  padding: 10px 10px 38px 10px;
  box-shadow: 0 6px 40px rgba(0,0,0,0.75), 0 2px 8px rgba(0,0,0,0.4);
  position: relative;
}

.fl718-about-page .fl718-darkroom-print img {
  display: block;
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.fl718-about-page .fl718-darkroom-stock {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1350px) {
  .fl718-about-page .fl718-darkroom-print img { width: 480px; height: 320px; }
}

@media (max-width: 1000px) {
  .fl718-about-page .fl718-darkroom-pair { flex-direction: column; gap: 48px; align-items: center; }
  .fl718-about-page .fl718-darkroom-print img { width: 320px; height: 213px; }
}

/* Film strip gallery */
.fl718-about-page .fl718-film-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  z-index: 20;
}

.fl718-about-page .fl718-film-wrapper {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.fl718-about-page .fl718-film-strip-horizontal {
  position: absolute;
  left: 0;
  top: 50%;
  width: max-content;
  height: 440px;
  background: #000000;
  padding: 45px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 100px;
  padding-right: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

.fl718-about-page .fl718-film-strip-horizontal::before {
  content: '';
  position: absolute;
  top: 10px; left: 0;
  width: 100%; height: 12px;
  background: repeating-linear-gradient(to right, #000000 0px, #000000 12px, #ffffff 12px, #ffffff 18px, #000000 18px, #000000 30px);
}

.fl718-about-page .fl718-film-strip-horizontal::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 0;
  width: 100%; height: 12px;
  background: repeating-linear-gradient(to right, #000000 0px, #000000 12px, #ffffff 12px, #ffffff 18px, #000000 18px, #000000 30px);
}

.fl718-about-page .fl718-film-frame {
  position: relative;
  width: 350px; height: 350px;
  flex-shrink: 0;
  background: #e0e0e0;
  border: 2px solid #333;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, z-index 0s 0s;
  z-index: 1;
}

.fl718-about-page .fl718-film-frame:hover {
  transform: scale(1.15) translateY(-20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, z-index 0s 0s;
}

.fl718-about-page .fl718-film-frame__image { width: 100%; height: 100%; background: #000; overflow: hidden; position: relative; }
.fl718-about-page .fl718-film-frame__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fl718-about-page .fl718-film-frame__number {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: 14px; font-weight: 700;
  color: #ff6600; letter-spacing: 1px;
}

.fl718-about-page .fl718-film-edge-code {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 8px; font-weight: 700;
  color: #ff6600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 2px;
}

.fl718-about-page .fl718-film-edge-code--left { left: 22px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.fl718-about-page .fl718-film-edge-code--right { right: 22px; top: 50%; transform: translateY(-50%) rotate(180deg); }

.fl718-about-page .fl718-film-stock-info {
  position: absolute;
  top: -40px; left: 100px;
  font-family: 'Courier New', monospace;
  font-size: 12px; font-weight: 700;
  color: #ff6600; letter-spacing: 2px;
}

/* ============================================
   CHAPTER 5: FLÂNEUR 718 - THE ARRIVAL
   ============================================ */

.fl718-about-page .fl718-chapter5 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}

.fl718-about-page .fl718-chapter5 .fl718-opening {
  height: auto;
  overflow: visible;
  padding: 200px 60px;
  text-align: center;
}

.fl718-about-page .fl718-chapter5 .fl718-chapter__number { position: absolute; top: 120px; left: 80px; color: #999999; }
.fl718-about-page .fl718-chapter5 .fl718-chapter__number::after { color: #999999; }
.fl718-about-page .fl718-chapter5 .fl718-chapter__title-line { background: #c44536; position: absolute; top: 178px; left: 80px; }

.fl718-about-page .fl718-ch5-title {
  font-size: 90px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 80px;
  line-height: 1;
}

.fl718-about-page .fl718-ch5-title .fl718-ch5-accent { color: #c44536; }
.fl718-about-page .fl718-ch5-title .fl718-ch5-718 { color: #c44536; }

.fl718-about-page .fl718-statement {
  position: relative;
  width: 100%;
  padding: 200px 60px;
  text-align: center;
  background: #fafafa;
}

.fl718-about-page .fl718-statement__text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
}

/* Product photos */
.fl718-about-page .fl718-product-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 60px 0 140px;
  max-width: 860px;
  margin: 0 auto;
}

.fl718-about-page .fl718-pstack-item {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.fl718-about-page .fl718-pstack-item:nth-child(1),
.fl718-about-page .fl718-pstack-item:nth-child(3) { padding-left: 40px; margin-right: 130px; }

.fl718-about-page .fl718-pstack-item:nth-child(2) { padding-right: 40px; margin-left: 130px; }

.fl718-about-page .fl718-pstack-item img { display: block; width: 100%; height: auto; aspect-ratio: 97/60; }

.fl718-about-page .fl718-pstack-item__footer { display: flex; justify-content: flex-end; margin-top: 11px; }

.fl718-about-page .fl718-pstack-item__caption {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #9a8c7e;
}

.fl718-about-page .fl718-pstack-item__index {
  position: absolute; top: 0; left: 0;
  width: 32px; height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 7px; padding-top: 2px;
}

.fl718-about-page .fl718-pstack-item:nth-child(2) .fl718-pstack-item__index { left: auto; right: 0; }

.fl718-about-page .fl718-pstack-item__index-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px; color: #c4b8ac; letter-spacing: 0.1em; line-height: 1;
}

.fl718-about-page .fl718-pstack-item__index-line {
  width: 1px; background: #ddd5cc; flex: 1; min-height: 40px;
}

.fl718-about-page .fl718-chapter5 .fl718-closing {
  position: relative;
  width: 100%;
  padding: 240px 60px 80px 60px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
}

.fl718-about-page .fl718-chapter5 .fl718-closing__text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 26px; line-height: 1.7; color: #1a1a1a;
  max-width: 700px; margin: 0 auto; opacity: 0;
}

.fl718-about-page .fl718-chapter5 .fl718-paragraph {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 26px; line-height: 1.75;
}

/* Ch5 colophon */
.fl718-about-page .fl718-colophon { margin-top: 220px; display: flex; flex-direction: column; align-items: center; }
.fl718-about-page .fl718-colophon__rule { width: 260px; height: 1px; background: #e0e0e0; transform-origin: center center; transform: scaleX(0); opacity: 0; }
.fl718-about-page .fl718-colophon__notation {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic; font-size: 13px; letter-spacing: 0.28em; color: #c2c2c2;
  text-transform: uppercase; margin: 14px 0; opacity: 0;
}
.fl718-about-page .fl718-colophon__notation .fl718-word { display: inline-block; opacity: 0; }
.fl718-about-page .fl718-colophon__walker { display: inline-block; vertical-align: middle; position: relative; top: -2px; }
.fl718-about-page .fl718-colophon__hedera { margin-top: 28px; font-family: 'EB Garamond', Georgia, serif; font-size: 36px; color: #c44536; line-height: 1; opacity: 0; transform: translateY(-8px); }
.fl718-about-page .fl718-closing__figure.fl718-walking { filter: drop-shadow(12px 0 8px rgba(0,0,0,0.06)); }

.fl718-about-page .fl718-closing__figure {
  display: block;
  margin: 80px auto 0;
  height: 460px; width: auto; opacity: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .fl718-about-page .fl718-opening { flex-direction: column; padding: 40px 20px; }
  .fl718-about-page .fl718-opening__title-container { width: 100%; justify-content: center; }
  .fl718-about-page .fl718-opening__title { writing-mode: horizontal-tb; transform: none; }
  .fl718-about-page .fl718-film-strip:nth-child(2),
  .fl718-about-page .fl718-film-strip:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .fl718-about-page .fl718-chapter__number { font-size: 28px; letter-spacing: 4px; }
  .fl718-about-page .fl718-paragraph { font-size: 18px; margin-left: 0; }
  .fl718-about-page .fl718-transform-container { font-size: 24px; }
  #tipStage { height: 520px; }
  .fl718-about-page .fl718-photo-section { grid-template-columns: 1fr; }
  .fl718-about-page .fl718-pstack-item:nth-child(1), .fl718-about-page .fl718-pstack-item:nth-child(3) { padding-left: 32px; margin-right: 0; }
  .fl718-about-page .fl718-pstack-item:nth-child(2) { padding-right: 32px; margin-left: 0; }
  .fl718-about-page .fl718-film-section { height: auto; display: block; padding: 60px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fl718-about-page .fl718-film-wrapper { overflow: visible; height: auto; }
  .fl718-about-page .fl718-film-strip-horizontal { position: relative; top: auto; transform: none !important; width: max-content; }
  .fl718-about-page .fl718-ch5-title { font-size: clamp(52px, 14vw, 90px); }
  .fl718-about-page .fl718-threshold__sentence { font-size: clamp(16px, 4.5vw, 24px); white-space: normal; }
}

/* ── Menu curtain (same pattern as Dánlann) ─────────────────────────── */
body.fl718-about-page #fl718-bio-thread {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(180, 148, 82, 0.30);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
}

@keyframes fl718-bio-thread-glow {
  0%, 100% { opacity: 1;    background: rgba(180, 148, 82, 0.30); }
  50%       { opacity: 0.4; background: rgba(180, 148, 82, 0.12); }
}

body.fl718-about-page #fl718-bio-thread.fl718-bio-thread--breathing {
  animation: fl718-bio-thread-glow 4.5s ease-in-out infinite;
}

body.fl718-about-page #fl718-bio-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 410;
  cursor: pointer;
  display: none;
}

body.fl718-about-page #fl718-bio-menu-recall {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 420;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  padding: 4px 12px 6px;
  font-family: 'IM Fell English', serif;
  font-size: 0.72rem;
  color: rgba(180, 148, 82, 0.70);
  line-height: 1;
  user-select: none;
  transition: color 0.25s ease;
}

body.fl718-about-page #fl718-bio-menu-recall:hover {
  color: rgba(220, 185, 110, 1);
}

@media (max-width: 767px) {
  body.fl718-about-page #fl718-bio-menu-recall {
    padding: 10px 24px 14px;
    font-size: 0.85rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.fl718-about-page #fl718-bio-hover-zone {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fl718-about-page #fl718-bio-thread.fl718-bio-thread--breathing {
    animation: none;
  }
}
