/* ===========================================================
   CUNDA BALIKÇISI · ÇEŞME
   Editorial dark · sunset palette · real Instagram photos
   Patterns: 01.B, 01.F, 02.B, 02.C, 03.C/D, 04.B/D/E,
             05.A/B/C/G/H, 06.A/G, 08.B, 09.B, 10.B, 12.A
   =========================================================== */

:root {
  /* Sunset warm-dark palette (drawn from the actual banner photo) */
  --night:      #0E0908;
  --umber:      #1A1411;
  --paper:      #221A14;
  --paper-2:    #2C231A;
  --stone:      #5A4D3C;
  --bone:       #877C66;
  --linen:      #C9B999;
  --cream:      #F3E9D6;

  --gold:       #D4A859;
  --gold-dim:   #A88742;
  --coral:      #C8694A;
  --rose:       #E2825F;
  --sea:        #2B4858;

  /* Text */
  --ink:        #F3E9D6;
  --ink-soft:   rgba(243,233,214,0.82);
  --ink-mute:   rgba(243,233,214,0.56);
  --ink-dim:    rgba(243,233,214,0.32);

  --line:       rgba(243,233,214,0.14);
  --line-2:     rgba(243,233,214,0.28);

  /* Gradient */
  --grad: linear-gradient(135deg, #E8C36A 0%, #D4A859 35%, #C8694A 100%);

  /* Type */
  --display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:    'Inter Tight', 'Inter', -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Motion */
  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);

  /* Layout */
  --pad:  clamp(20px, 4.5vw, 72px);
  --maxw: 1360px;
  --hair: 1px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--night);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  isolation: isolate;
}

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

/* Hide custom-cursor leftovers if any */
.cursor, .cursor-dot, .cursor-label, .cover-fish { display: none !important; }

::selection { background: var(--gold); color: var(--night); }

.cap {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cap.dim { color: var(--ink-dim); }
em.ital, .ital { font-family: var(--display); font-style: italic; }

/* Paper grain */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===========================================================
   CURSOR (03.D - trail with label)
   =========================================================== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: var(--hair) solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease),
              opacity .25s ease;
}
.cursor.is-hover {
  width: 64px; height: 64px;
  background: rgba(212,168,89,0.12);
  border-color: var(--gold);
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-label {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(20px, 20px);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s var(--ease);
  white-space: nowrap;
}
.cursor-label.is-on { opacity: 1; }
.cursor.is-hidden, .cursor-dot.is-hidden, .cursor-label.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot, .cursor-label { display: none; }
}

/* ===========================================================
   LOADER · (02.B + 02.C)
   =========================================================== */
.loader {
  position: fixed; inset: 0;
  background: var(--night);
  z-index: 9500;
  overflow: hidden;
  transition: opacity .6s var(--ease), visibility 0s linear .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader-corner {
  position: absolute;
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
}
.loader-tl { top: 28px; left: 28px; }
.loader-tr { top: 28px; right: 28px; align-items: flex-end; }
.loader-bl { bottom: 28px; left: 28px; }
.loader-br { bottom: 28px; right: 28px; align-items: flex-end; }
.loader-corner .cap:not(.dim) { color: var(--gold); }

.loader-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 22px;
}
.loader-rule {
  width: clamp(220px, 36vw, 420px);
  height: var(--hair);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
  transform: scaleX(0);
  animation: drawRule 1s var(--ease-out) forwards;
}
.loader-rule:last-of-type { animation-delay: 1.2s; }
@keyframes drawRule { to { transform: scaleX(1); } }

.loader-logo {
  width: clamp(240px, 32vw, 400px);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  transform: translateY(40px) scale(0.92);
  opacity: 0;
  animation: logoIn 1.2s var(--ease-out) .25s forwards, logoGlow 4s ease-in-out 1.5s infinite alternate;
  filter: drop-shadow(0 0 60px rgba(212,168,89,0.25));
}
.loader-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes logoIn {
  to { opacity: 1; transform: none; }
}
@keyframes logoGlow {
  0%   { filter: drop-shadow(0 0 50px rgba(212,168,89,0.25)) drop-shadow(0 0 100px rgba(212,168,89,0.15)); }
  100% { filter: drop-shadow(0 0 80px rgba(212,168,89,0.45)) drop-shadow(0 0 160px rgba(200,105,74,0.30)); }
}
.loader-sub {
  margin-top: 6px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: .02em;
  color: var(--gold);
  text-transform: none;
  opacity: 0;
  animation: fadeIn .8s ease .85s forwards;
}
@keyframes rise { to { transform: none; opacity: 1; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===========================================================
   VIEWPORT CORNER FRAMES (06.A)
   =========================================================== */
.corner-frame {
  position: fixed;
  width: 26px; height: 26px;
  pointer-events: none;
  z-index: 90;
  border-color: var(--ink-mute);
  border-style: solid;
  border-width: 0;
}
.corner-tl { top: 18px; left: 18px; border-top-width: var(--hair); border-left-width: var(--hair); }
.corner-tr { top: 18px; right: 18px; border-top-width: var(--hair); border-right-width: var(--hair); }
.corner-bl { bottom: 18px; left: 18px; border-bottom-width: var(--hair); border-left-width: var(--hair); }
.corner-br { bottom: 18px; right: 18px; border-bottom-width: var(--hair); border-right-width: var(--hair); }
@media (max-width: 700px) { .corner-frame { display: none; } }

/* ===========================================================
   PAGE TRACKER (04.E)
   =========================================================== */
.page-tracker {
  position: fixed;
  right: 56px; bottom: 56px;
  z-index: 80;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .04em;
  display: flex; align-items: baseline; gap: 4px;
  pointer-events: none;
  mix-blend-mode: difference;
}
.pt-ch { font-size: 16px; }
.pt-sep, .pt-total { color: var(--ink-mute); font-size: 13px; }
@media (max-width: 700px) { .page-tracker { display: none; } }

/* ===========================================================
   TIME BAND (05.G - real-time clock)
   =========================================================== */
.time-band {
  position: fixed;
  left: 56px; bottom: 56px;
  z-index: 80;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
  mix-blend-mode: difference;
}
.td-time { color: var(--gold); letter-spacing: .15em; }
@media (max-width: 900px) { .time-band { display: none; } }

/* ===========================================================
   MASTHEAD
   =========================================================== */
.masthead {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(14,9,8,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: transform .6s var(--ease);
}
.masthead.is-hidden { transform: translateY(-130%); }
.mast-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.mast-rule { height: var(--hair); background: var(--line); }

.brand { display: inline-flex; align-items: center; gap: 16px; color: var(--ink); }
.brand-mark {
  width: 96px; height: 96px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)) drop-shadow(0 0 18px rgba(212,168,89,.18));
  transition: filter .5s var(--ease), transform .5s var(--ease);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand:hover .brand-mark {
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)) drop-shadow(0 0 26px rgba(212,168,89,.35));
  transform: scale(1.04);
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -.01em; line-height: 1; }
.brand-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--gold);
  margin-top: 6px;
  line-height: 1;
}

.mast-nav { display: flex; justify-content: center; gap: 40px; }
.mast-nav a {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -.005em;
  color: var(--ink-soft);
  padding: 6px 0;
  display: inline-flex; align-items: baseline; gap: 8px;
  position: relative;
  transition: color .35s var(--ease);
}
.mast-nav a em {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}
.mast-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: var(--hair);
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.mast-nav a:hover { color: var(--ink); }
.mast-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.mast-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px 11px 24px;
  border: var(--hair) solid var(--gold);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gold);
  overflow: hidden;
  z-index: 0;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.mast-cta-line {
  position: absolute; inset: 0;
  background: var(--grad);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
}
.mast-cta:hover .mast-cta-line { transform: translateX(0); }
.mast-cta:hover { color: var(--night); border-color: transparent; }
.mast-cta svg { width: 14px; height: 14px; transition: transform .4s var(--ease); flex-shrink: 0; }
.mast-cta:hover svg { transform: translateX(5px); }
.mast-cta-full { display: inline; }
.mast-cta-short { display: none; }

@media (max-width: 940px) { .mast-nav { display: none; } }
@media (max-width: 720px) {
  .mast-inner { padding: 12px clamp(14px, 4vw, 24px); gap: 14px; }
  .brand-mark { width: 64px; height: 64px; border-radius: 10px; }
  .brand { gap: 12px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 12px; margin-top: 4px; }
}
@media (max-width: 560px) {
  .mast-cta { padding: 9px 14px; gap: 8px; font-size: 12px; letter-spacing: .06em; }
  .mast-cta-full { display: none; }
  .mast-cta-short { display: inline; }
  .mast-cta svg { width: 12px; height: 12px; }
  .brand-word { display: none; }   /* logo-only on very narrow */
  .brand-mark { width: 56px; height: 56px; }
}

/* ===========================================================
   HERO · COVER
   =========================================================== */
.cover {
  position: relative;
  height: 100svh;
  min-height: 700px;
  padding: 96px var(--pad) 48px;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.cover-photo {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  --tx: 0px;
  --ty: 0px;
}
.cph-far, .cph-mid {
  position: absolute; inset: -8%;
  will-change: transform;
}
.cph-far img, .cph-mid img, .cph-mid video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.cph-video { background: var(--night); }
/* Far layer: darker, blurred, moves less — depth illusion */
.cph-far {
  transform: translate3d(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5), 0) scale(1.10);
  transition: transform .35s linear;
}
.cph-far img {
  filter: saturate(.5) brightness(.32) blur(3px) contrast(1.08);
}
/* Mid layer: the photo proper — moves MORE, continuous breathing zoom */
.cph-mid {
  transform: translate3d(calc(var(--tx) * -1), calc(var(--ty) * -1), 0) scale(var(--zoom, 1.12));
  transition: transform .25s linear;
  filter: saturate(calc(0.85 + var(--warmth, 0) * 0.4)) brightness(calc(0.6 + var(--warmth, 0) * 0.2)) contrast(1.06);
  animation: kenBreathe 9s ease-in-out infinite alternate;
}
.cph-mid > * {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
@keyframes kenBreathe {
  0%   { --zoom: 1.10; }
  100% { --zoom: 1.20; }
}
/* Use @property for smooth interpolation */
@property --zoom {
  syntax: '<number>';
  inherits: true;
  initial-value: 1.12;
}
@property --warmth {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

/* Spotlight — cursor-driven warm glow that brightens area around cursor */
.cover-spot {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle 520px at var(--mx) var(--my),
      rgba(255,210,140,0.65) 0%,
      rgba(255,180,90,0.38) 22%,
      rgba(232,140,90,0.18) 45%,
      rgba(212,168,89,0.05) 70%,
      transparent 92%);
  mix-blend-mode: screen;
  transition: background .12s linear;
}
/* Second spotlight layer — chromatic shift, smaller core */
.cover-spot::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 220px at var(--mx) var(--my),
    rgba(255,235,180,0.55) 0%,
    rgba(255,200,120,0.25) 40%,
    transparent 75%);
  mix-blend-mode: overlay;
  transition: background .12s linear;
}

/* Animated sun rays — sweep gently */
.cover-rays {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .9;
  filter: blur(2px);
}
.rays-group {
  transform-origin: 850px 100px;
  animation: rayPulse 6s ease-in-out infinite alternate;
}
@keyframes rayPulse {
  0%   { transform: scaleY(0.95) rotate(-2deg); opacity: 0.7; }
  100% { transform: scaleY(1.05) rotate(2deg);  opacity: 1; }
}

/* Drifting particles (embers / dust) */
.cover-particles {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cover-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: floatUp 14s linear infinite;
}
.cover-particles span:nth-child(1)  { left:  5%; animation-delay: -0s;  animation-duration: 16s; }
.cover-particles span:nth-child(2)  { left: 13%; animation-delay: -2s;  animation-duration: 18s; width:2px;height:2px; }
.cover-particles span:nth-child(3)  { left: 22%; animation-delay: -7s;  animation-duration: 13s; }
.cover-particles span:nth-child(4)  { left: 30%; animation-delay: -4s;  animation-duration: 19s; width:4px;height:4px; }
.cover-particles span:nth-child(5)  { left: 38%; animation-delay: -10s; animation-duration: 15s; }
.cover-particles span:nth-child(6)  { left: 45%; animation-delay: -1s;  animation-duration: 20s; width:2px;height:2px; }
.cover-particles span:nth-child(7)  { left: 53%; animation-delay: -8s;  animation-duration: 14s; }
.cover-particles span:nth-child(8)  { left: 62%; animation-delay: -5s;  animation-duration: 17s; width:3px;height:3px; }
.cover-particles span:nth-child(9)  { left: 70%; animation-delay: -12s; animation-duration: 16s; }
.cover-particles span:nth-child(10) { left: 77%; animation-delay: -3s;  animation-duration: 21s; width:2px;height:2px; }
.cover-particles span:nth-child(11) { left: 84%; animation-delay: -9s;  animation-duration: 13s; }
.cover-particles span:nth-child(12) { left: 91%; animation-delay: -6s;  animation-duration: 18s; width:4px;height:4px; }
.cover-particles span:nth-child(13) { left: 18%; animation-delay: -11s; animation-duration: 15s; }
.cover-particles span:nth-child(14) { left: 58%; animation-delay: -13s; animation-duration: 19s; width:2px;height:2px; }
.cover-particles span:nth-child(15) { left: 80%; animation-delay: -14s; animation-duration: 16s; }
@keyframes floatUp {
  0%   { transform: translateY(110vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.cover-photo-tint {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 70% 22%, rgba(212,168,89,.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(14,9,8,.25) 0%, rgba(14,9,8,.05) 35%, rgba(14,9,8,.55) 75%, rgba(14,9,8,.95) 100%);
  pointer-events: none;
}

/* Cursor-reactive vignette — darkens AWAY from cursor */
.cover-vignette {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle 680px at var(--mx) var(--my),
    transparent 0%,
    rgba(14,9,8,0) 25%,
    rgba(14,9,8,0.45) 70%,
    rgba(14,9,8,0.7) 100%);
  transition: background .18s linear;
}

/* Click ripple */
.cover-ripple {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 1.1s ease-out forwards;
}
@keyframes ripple {
  0%   { transform: translate(-50%, -50%) scale(0);    opacity: 1; border-width: 3px; }
  100% { transform: translate(-50%, -50%) scale(18);   opacity: 0; border-width: 0.5px; }
}

/* Cursor-following fish silhouette */
.cover-fish {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 120px; height: 60px;
  left: 0; top: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
  filter: drop-shadow(0 0 30px rgba(212,168,89,0.6));
}
.cover-fish.is-on { opacity: 0.55; }
.cover-fish svg { width: 100%; height: 100%; }
.cover-fish path { fill: var(--gold); }

.cover-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 24px 0 20px;
  border-bottom: var(--hair) solid var(--line);
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.ct-l, .ct-r { display: flex; flex-direction: column; gap: 4px; }
.ct-r { align-items: flex-end; }
.ct-sub { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--linen); }

.cover-stage {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(8px, 1.5vw, 24px) 0;
  max-width: 1180px;
  perspective: 1400px;
  --rx: 0deg;
  --ry: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  z-index: 2;
}

.cover-pre {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--ease-out) 1.8s forwards;
}
.cover-pre .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold);
  animation: blink 1.6s ease-in-out infinite;
}
.cover-pre .ital { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--linen); }
@keyframes blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(1.35); } }

.cover-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 22px;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translate3d(var(--shift-x), var(--shift-y), 0);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
  text-shadow: 0 2px 24px rgba(14,9,8,0.55);
}
.cover-title .ct-line {
  transition: transform .8s var(--ease);
}
.cover-stage:hover .cover-title { transition: transform .3s var(--ease); }
.ct-line { display: block; overflow: hidden; padding: 4px 0; }
.ct-line .word {
  display: inline-block;
  transform: translateY(110%);
  margin-right: 0.18em;
}
.ct-line .word em, .ct-line .word.ital {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
body.is-loaded .ct-line .word {
  animation: rise 1.1s var(--ease-out) forwards;
}
body.is-loaded .ct-line-1 .word:nth-child(1) { animation-delay: 1.7s; }
body.is-loaded .ct-line-1 .word:nth-child(2) { animation-delay: 1.8s; }
body.is-loaded .ct-line-1 .word:nth-child(3) { animation-delay: 1.9s; }
body.is-loaded .ct-line-2 .word:nth-child(1) { animation-delay: 2.05s; }
body.is-loaded .ct-line-2 .word:nth-child(2) { animation-delay: 2.15s; }
body.is-loaded .ct-line-2 .word:nth-child(3) { animation-delay: 2.25s; }
body.is-loaded .ct-line-3 .word:nth-child(1) { animation-delay: 2.40s; }
body.is-loaded .ct-line-3 .word:nth-child(2) { animation-delay: 2.50s; }

.cover-deck {
  max-width: 540px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0; transform: translateY(20px);
}
body.is-loaded .cover-deck { animation: rise 1s var(--ease-out) 3.1s forwards; }

.cover-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
  opacity: 0; transform: translateY(20px);
}
.btn-primary, .btn-ghost { padding: 13px 24px; font-size: 13px; }
body.is-loaded .cover-cta { animation: rise 1s var(--ease-out) 3.3s forwards; }

.btn-primary, .btn-ghost {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.btn-primary {
  color: var(--night);
  background: var(--grad);
  background-size: 200% 200%;
  animation: gradShift 9s ease infinite;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary .btn-arr { font-family: var(--display); font-style: italic; font-size: 18px; transition: transform .35s var(--ease); }
.btn-primary:hover .btn-arr { transform: translate(4px, 2px); }
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: var(--hair) solid var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--night); border-color: var(--ink); }
.btn-ghost .ital { font-style: italic; font-family: var(--display); color: var(--linen); margin-left: 4px; }
.btn-ghost:hover .ital { color: var(--stone); }

.btn-lg { padding: 18px 36px; font-size: 15px; }

@media (max-width: 560px) {
  .btn-primary, .btn-ghost { padding: 13px 20px; font-size: 12px; gap: 8px; }
  .btn-lg { padding: 15px 24px; font-size: 13px; }
  .cover-cta { gap: 10px; margin-top: 22px; }
  .btn-ghost .ital { display: none; }   /* shorter on small */
}

/* .cover-bottom removed (replaced with full-bleed hero) */

/* ===========================================================
   CHAPTER · shared
   =========================================================== */
.chapter {
  position: relative;
  padding: clamp(80px, 11vw, 160px) var(--pad);
  border-top: var(--hair) solid var(--line);
}
.ch-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: var(--hair) solid var(--line);
}
.ch-num { display: flex; flex-direction: column; gap: 4px; }
.ch-num em { font-family: var(--display); font-style: italic; font-size: 44px; color: var(--gold); line-height: 1; }
.ch-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
}
.ch-title span { display: block; }
.ch-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.ch-byline {
  text-align: right;
  color: var(--ink-mute);
  font-family: var(--display);
  font-style: italic;
}

/* Reveal */
.reveal-line, .reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-line.is-in, .reveal-up.is-in { opacity: 1; transform: none; }

@media (max-width: 800px) {
  .ch-head { grid-template-columns: 1fr; gap: 16px; }
  .ch-byline { text-align: left; }
}
@media (max-width: 560px) {
  .chapter { padding: 56px var(--pad); }
  .ch-head { margin-bottom: 32px; padding-bottom: 18px; }
  .ch-num em { font-size: 34px; }
  .ch-title { font-size: clamp(28px, 8.5vw, 44px); }
}

/* ===========================================================
   CHAPTER I — DAY NARRATIVE (timeline)
   =========================================================== */
.chapter-narrative .ch-head { margin-bottom: clamp(48px, 6vw, 80px); }

.day-line {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0 40px;
}
/* Vertical spine */
.day-spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 8%,
    var(--gold-dim) 50%,
    var(--coral) 92%,
    transparent 100%);
  opacity: .6;
}
.day-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px) 0;
}
.day-row-r .day-card { grid-column: 3; }
.day-row-l .day-card { grid-column: 1; text-align: right; align-items: flex-end; }
.day-row-r .day-card { grid-column: 3; text-align: left; align-items: flex-start; }
.day-mark {
  grid-column: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  position: relative;
}
.day-time {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.01em;
  color: var(--gold);
  background: var(--night);
  padding: 4px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  position: relative;
  z-index: 2;
}
.day-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 4px var(--night),
    0 0 0 5px var(--gold),
    0 0 20px var(--gold);
  position: relative;
  z-index: 2;
  animation: dayDotPulse 3s ease-in-out infinite;
}
.day-dot-end { background: var(--coral); box-shadow: 0 0 0 4px var(--night), 0 0 0 5px var(--coral), 0 0 20px var(--coral); }
@keyframes dayDotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
.day-card {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: border-color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease);
  max-width: 460px;
}
.day-row-l .day-card { margin-left: auto; }
.day-row-r .day-card { margin-right: auto; }
.day-card:hover {
  border-color: var(--gold);
  background: var(--paper-2);
  transform: translateY(-2px);
}
.day-card .cap { color: var(--gold); }
.day-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.day-card h3 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.day-card p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .day-line { padding-left: 28px; }
  .day-spine { left: 14px; }
  .day-row {
    grid-template-columns: 28px 1fr;
    gap: 18px;
  }
  .day-row-l .day-card,
  .day-row-r .day-card {
    grid-column: 2;
    text-align: left;
    align-items: flex-start;
    margin: 0;
  }
  .day-mark { grid-column: 1; flex-direction: column; gap: 8px; }
  .day-time { font-size: 13px; padding: 2px 8px; transform: rotate(-90deg) translateX(20px); transform-origin: left bottom; white-space: nowrap; }
  .day-dot { width: 12px; height: 12px; }
}

/* ===========================================================
   CHAPTER I — MANIFESTO (legacy)
   =========================================================== */
.chapter-manifesto .ch-head { margin-bottom: clamp(40px, 5vw, 64px); }

.mf-body {
  max-width: 1080px;
  margin: 0 auto clamp(48px, 6vw, 96px);
  padding: clamp(20px, 3vw, 48px) 0;
}
.mf-statement {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
  text-align: center;
}
.mf-statement span { display: block; margin-bottom: 6px; }
.mf-statement em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}

.mf-figure {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.mf-fig-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--paper);
  border: var(--hair) solid var(--line);
}
.mf-fig-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.88) contrast(1.10) brightness(.78) sepia(.05);
  transition: transform 2s var(--ease), filter .8s var(--ease);
}
.mf-figure:hover .mf-fig-frame img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.06) brightness(.92) sepia(0);
}
.mf-fig-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.mf-fig-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(212,168,89,.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(14,9,8,.6) 100%);
  pointer-events: none;
}
.mf-fig-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.mf-tl { top: 14px; left: 14px; border-top-width: 1.5px; border-left-width: 1.5px; }
.mf-tr { top: 14px; right: 14px; border-top-width: 1.5px; border-right-width: 1.5px; }
.mf-bl { bottom: 14px; left: 14px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.mf-br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.mf-figure figcaption {
  margin-top: 16px;
  display: flex; gap: 16px; align-items: baseline; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.mf-figure figcaption .cap { color: var(--gold); font-style: normal; font-family: var(--mono); }

.mf-stats {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--hair) solid var(--line);
  border-left: var(--hair) solid var(--line);
}
.mf-stat {
  padding: clamp(28px, 3vw, 44px);
  border-right: var(--hair) solid var(--line);
  border-bottom: var(--hair) solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: background .4s var(--ease);
}
.mf-stat:hover { background: var(--paper); }
.mf-stat-no {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.mf-stat h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 4px 0 2px;
}
.mf-stat p {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .mf-stats { grid-template-columns: repeat(2, 1fr); }
  .mf-fig-frame { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .mf-stats { grid-template-columns: 1fr; }
}

/* ===========================================================
   CHAPTER I — STORY (legacy)
   =========================================================== */
.ch-body { max-width: var(--maxw); margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.col-a p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 60ch;
}
.dropcap {
  float: left;
  font-family: var(--display);
  font-weight: 500;
  font-size: 86px;
  line-height: .85;
  padding: 6px 12px 0 0;
  margin-top: 6px;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}

.ch-list {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.ch-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: var(--hair) solid var(--line);
  transition: padding .35s var(--ease);
}
.ch-list li:last-child { border-bottom: var(--hair) solid var(--line); }
.ch-list li:hover { padding-left: 12px; padding-right: 12px; background: var(--paper); }
.li-num { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--gold); padding-top: 3px; }
.ch-list strong { font-family: var(--display); font-size: 19px; color: var(--ink); display: block; font-weight: 500; margin-bottom: 2px; }
.ch-list span:not(.li-num):not(.cap) { color: var(--ink-mute); font-size: 14px; }

.col-b { display: flex; flex-direction: column; gap: 28px; position: relative; }

/* Editorial single-figure presentation */
.hero-fig {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(212,168,89,.06) 0%, transparent 60%),
    var(--paper-2);
  border: var(--hair) solid var(--line-2);
}
.hf-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hf-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hf-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.88) contrast(1.10) brightness(.85) sepia(.08);
  transition: transform 1.8s var(--ease), filter .8s var(--ease);
}
.hero-fig:hover .hf-img-wrap img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.06) brightness(.95) sepia(.04);
}
/* Film grain overlay */
.hf-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: .25;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* Warm vignette tint */
.hf-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(232,195,106,.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(14,9,8,.55) 100%);
  pointer-events: none;
}
/* Plate corner brackets */
.hf-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.hf-tl { top: 10px; left: 10px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hf-tr { top: 10px; right: 10px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hf-bl { bottom: 10px; left: 10px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hf-br { bottom: 10px; right: 10px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.hf-meta {
  position: absolute;
  top: 18px; left: 18px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 4;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.hf-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

.hf-cap {
  padding: 18px 6px 4px;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
  color: var(--ink-soft);
  border-top: var(--hair) solid var(--line);
  margin-top: 16px;
}
.hf-cap .cap { color: var(--gold); font-style: normal; }

.pullquote {
  max-width: 900px;
  margin: clamp(72px, 9vw, 120px) auto 0;
  padding: 56px clamp(20px, 4vw, 60px);
  border-top: var(--hair) solid var(--line);
  border-bottom: var(--hair) solid var(--line);
  text-align: center;
}
.pullquote p {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.4;
  color: var(--ink);
}
.pullquote em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.pullquote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ===========================================================
   CHAPTER II — MENU
   =========================================================== */
.chapter-menu {}

/* QR row */
.qr-row { max-width: var(--maxw); margin: 0 auto clamp(56px, 7vw, 96px); }
.qr-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(32px, 4.5vw, 64px);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212,168,89,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(200,105,74,.08) 0%, transparent 60%),
    var(--paper);
  border: var(--hair) solid var(--line-2);
  position: relative;
  overflow: hidden;
  transition: border-color .5s var(--ease), background .5s var(--ease);
}
.qr-card::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 26px; height: 26px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}
.qr-card::after {
  content: '';
  position: absolute;
  bottom: 16px; right: 16px;
  width: 26px; height: 26px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}
.qr-card:hover { border-color: var(--gold); }
.qr-card-l { display: flex; flex-direction: column; gap: 14px; align-self: center; }
.qr-card-l h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 4px 0;
}
.qr-card-l p {
  color: var(--ink-soft);
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  max-width: 36ch;
}
.qr-actions { margin-top: 8px; }
.qr-link {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .04em;
  color: var(--ink);
  border-bottom: var(--hair) solid var(--gold);
  padding-bottom: 4px;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.qr-link .arr { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--gold); }
.qr-link:hover { gap: 16px; color: var(--gold); }

.qr-card-r { display: flex; align-items: center; justify-content: center; }
.qr-frame {
  position: relative;
  padding: 24px;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  border-radius: 4px;
}
.qr-frame img {
  width: clamp(180px, 18vw, 220px);
  height: clamp(180px, 18vw, 220px);
  display: block;
  background: var(--cream);
}
.qr-label { color: var(--coral); font-family: var(--mono); font-size: 9px; }
.qr-frame-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--coral);
  border-style: solid;
  border-width: 0;
}
.qr-tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.qr-tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.qr-bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.qr-br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

@media (max-width: 760px) {
  .qr-card { grid-template-columns: 1fr; text-align: left; }
  .qr-card-r { justify-content: flex-start; }
}

/* Menu tabs — DEPRECATED, hidden */
.menu-tabs, .panel, .menu-stage, .menu-grid, .m-item { display: none !important; }

/* ===========================================================
   SOFRA — Magazine spreads, 5 categories
   =========================================================== */
.sofra-stage {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(64px, 9vw, 128px);
}
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.spread[data-side="right"] .sp-fig { order: 2; }
.spread[data-side="full"] { grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); }

/* Figure */
.sp-fig {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
}
.sp-fig-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  border: var(--hair) solid var(--line);
}
.sp-fig-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) contrast(1.12) brightness(.78) sepia(.06);
  transition: transform 2s var(--ease), filter .8s var(--ease);
}
.spread:hover .sp-fig-frame img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.06) brightness(.92) sepia(.02);
}
.sp-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sp-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(212,168,89,.16) 0%, transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(14,9,8,.55) 100%);
  pointer-events: none;
}
.sp-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.sp-tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; }
.sp-tr { top: 12px; right: 12px; border-top-width: 1.5px; border-right-width: 1.5px; }
.sp-bl { bottom: 12px; left: 12px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.sp-br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.sp-fig figcaption {
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
}
.sp-fig figcaption .cap { color: var(--gold); font-style: normal; font-family: var(--mono); }

/* Body */
.sp-body { display: flex; flex-direction: column; gap: clamp(20px, 2.5vw, 32px); }
.sp-head { display: flex; flex-direction: column; gap: 10px; }
.sp-head .cap { color: var(--gold); }
.sp-head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 4px 0 0;
}
.sp-head h3 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.sp-head-big { font-size: clamp(56px, 7vw, 96px) !important; line-height: .94 !important; }
.sp-head-full { text-align: center; max-width: 720px; margin: 0 auto; align-items: center; }
.sp-deck {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-top: 4px;
}

/* List */
.sp-list {
  display: flex; flex-direction: column;
  border-top: var(--hair) solid var(--line);
}
.sp-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: clamp(14px, 1.6vw, 20px) 4px;
  border-bottom: var(--hair) solid var(--line);
  align-items: baseline;
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.sp-list li:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: linear-gradient(90deg, rgba(212,168,89,.08), transparent);
}
.sp-no {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.01em;
}
.sp-list li > div { display: flex; flex-direction: column; gap: 4px; }
.sp-list strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sp-list em {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
  color: var(--ink-mute);
}
.sp-list .sp-feat strong {
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.sp-list .sp-feat .sp-no { color: var(--coral); }

/* Twin column for spread-type (Rakı & Şarap) */
.sp-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .spread { grid-template-columns: 1fr; gap: 28px; }
  .spread[data-side="right"] .sp-fig { order: 0; }
  .sp-fig-frame { aspect-ratio: 4 / 3; }
  .sp-twin { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sofra-stage { gap: 56px; }
  .sp-list li { grid-template-columns: 36px 1fr; gap: 12px; padding: 12px 2px; }
  .sp-list li:hover { padding-left: 8px; padding-right: 8px; }
  .sp-no { font-size: 18px; }
  .sp-list strong { font-size: 16px; }
  .sp-list em { font-size: 12px; }
  .sp-head h3 { font-size: clamp(30px, 9vw, 44px); }
  .menu-note { font-size: 12px; padding: 16px; }
}

.menu-stage { max-width: var(--maxw); margin: 0 auto; position: relative; }
.panel { display: none; }
.panel.active {
  display: block;
  animation: panelFade .6s var(--ease) forwards;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.m-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: clamp(22px, 2.5vw, 32px) clamp(18px, 2.5vw, 32px);
  border-bottom: var(--hair) solid var(--line);
  transition: background .4s var(--ease), padding .35s var(--ease);
  overflow: hidden;
  background: none;
}
.m-item:hover {
  background: linear-gradient(90deg, rgba(212,168,89,.08), transparent);
  padding-left: clamp(28px, 3vw, 42px);
}
.m-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--gold);
  line-height: 1;
  align-self: start;
  padding-top: 6px;
  min-width: 48px;
  letter-spacing: -.01em;
}
.m-item h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.m-desc {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}
.m-tag {
  align-self: start;
  margin-top: 10px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--linen);
  padding: 4px 10px;
  border: var(--hair) solid var(--line-2);
  border-radius: 999px;
  white-space: nowrap;
}

.m-item-feat .m-num { color: var(--coral); }
.m-item-feat .m-tag { color: var(--gold); border-color: var(--gold); background: rgba(212,168,89,.08); }
.m-item-feat h4 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}

.menu-note {
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  padding-top: 20px;
  border-top: var(--hair) solid var(--line);
}
.menu-note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   CHAPTER III — REEL · Cinematic horizontal scroll-snap
   =========================================================== */
.chapter-reel {}
.reel {
  max-width: 1380px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

/* ---- Top HUD bar — counter / caption / time-plate ---- */
.reel-hud {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: 14px clamp(8px, 1.5vw, 18px);
  border-top: var(--hair) solid var(--line);
  border-bottom: var(--hair) solid var(--line);
  font-family: var(--mono);
}
.reel-hud-l { display: flex; align-items: center; gap: 14px; }
.reel-hud-r { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.reel-hud-c { text-align: center; }

.reel-counter {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.015em;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.reel-counter em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 9s ease infinite;
  min-width: 1.2em;
  display: inline-block;
}
.reel-slash { color: var(--gold-dim); opacity: .55; padding: 0 2px; }
.reel-total { color: var(--ink-mute); font-size: .55em; letter-spacing: .12em; }

.reel-caption {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.35;
  transition: opacity .45s var(--ease);
}
.reel-caption.is-swap { opacity: 0; }

.reel-plate { color: var(--gold); }

/* ---- Stage — the filmstrip viewport ---- */
.reel-stage {
  position: relative;
  border: var(--hair) solid var(--line);
  border-radius: 2px;
  background: #0b0707;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6), 0 30px 80px -40px rgba(0,0,0,.7);
}

/* Sprocket perforations top + bottom */
.reel-perf {
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.85) 0 18px,
      var(--paper) 18px 28px,
      rgba(0,0,0,.85) 28px 46px,
      transparent 46px 64px
    );
  opacity: .85;
  pointer-events: none;
  z-index: 4;
}
.reel-perf-t { top: 0; }
.reel-perf-b { bottom: 0; transform: scaleY(-1); }

/* Track — the horizontally scrollable strip */
.reel-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: clamp(580px, 82vh, 880px);
  padding: 22px 0;
  outline: none;
}
.reel-track::-webkit-scrollbar { display: none; }
.reel-track:focus-visible {
  box-shadow: inset 0 0 0 1px var(--gold);
}

/* Each frame — MAGAZINE SPREAD: image at native ratio + editorial side copy */
.reel-frame {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: stretch;             /* IMPORTANT: lets wrapper fill height */
  justify-content: center;
  gap: clamp(32px, 5vw, 84px);
  padding: clamp(16px, 2.5vw, 36px) clamp(28px, 5vw, 90px);
  min-height: 0;
}
/* Alternate — even frames flip image/text */
.reel-frame:nth-child(even) { flex-direction: row-reverse; }
.reel-frame:nth-child(even) .rf-text { text-align: right; align-items: flex-end; }

/* ---- Image wrapper — stretched to frame height, image centered inside ---- */
.rf-img-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;                    /* allow shrinking below content size */
  max-width: calc(100% - 400px);    /* reserve room for text column */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.rf-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #050303;
  box-shadow:
    0 32px 64px -22px rgba(0,0,0,.8),
    0 0 0 1px rgba(212,168,89,.24);
  filter: saturate(.98) contrast(1.04) brightness(.97);
  transform: scale(.985);
  transform-origin: center center;
  transition: transform 6s ease-out, filter .9s ease;
  will-change: transform;
}
.reel-frame.is-active .rf-img-wrap img {
  transform: scale(1.015);   /* very subtle Ken Burns */
  filter: saturate(1.02) contrast(1.03) brightness(1);
}
.reel-frame.is-hero .rf-img-wrap img {
  box-shadow:
    0 32px 64px -22px rgba(0,0,0,.8),
    0 0 0 1px rgba(212,168,89,.5),
    0 0 70px -10px rgba(212,168,89,.35);
}

/* Corner ticks removed — they couldn't accurately frame the image
   when the image was constrained to its native aspect ratio inside
   a wrapper that may be larger. Box-shadow border on the image
   provides sufficient editorial framing. */
.rf-corner { display: none; }

/* ---- Editorial side copy — fixed width column, very readable ---- */
.rf-text {
  flex: 0 0 360px;
  max-width: 360px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .65s var(--ease) .12s, transform .65s var(--ease) .12s;
}
.reel-frame.is-active .rf-text {
  opacity: 1; transform: translateY(0);
}
.rf-eyebrow {
  color: var(--gold);
  letter-spacing: .22em;
  font-size: 11px;
}
.rf-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--paper);
  margin: 0;
  text-shadow: 0 1px 18px rgba(0,0,0,.6);
}
.rf-quote em {
  font-style: italic;
  color: var(--gold);   /* SOLID gold — readable on dark, no gradient */
}
.rf-byline {
  color: var(--ink-mute);
  font-family: var(--mono);
  letter-spacing: .22em;
  font-size: 10px;
}

/* Side navigation buttons */
.reel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,89,.4);
  background: rgba(11,7,7,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), opacity .35s var(--ease);
}
.reel-nav:hover {
  background: rgba(212,168,89,.18);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.reel-nav:disabled { opacity: .25; cursor: default; transform: translateY(-50%); }
.reel-prev { left: 16px; }
.reel-next { right: 16px; }

/* ---- Bottom strip · progress + thumbnails ---- */
.reel-strip {
  display: flex; flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.reel-bar {
  position: relative;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.reel-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--rose));
  transition: width .55s var(--ease);
}

.reel-thumbs {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
}
.reel-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: .42;
  transition: opacity .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  background: #000;
}
.reel-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.88) brightness(.85);
}
.reel-thumb:hover { opacity: .78; }
.reel-thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(212,168,89,.35);
}
.reel-thumb.is-active img { filter: saturate(1) brightness(1); }

/* Pull quote */
.reel-quote {
  text-align: center;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 60px);
  max-width: 820px;
  margin: 0 auto;
}
.reel-quote p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--ink);
}
.reel-quote em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 9s ease infinite;
}
.reel-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.reel-foot {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  padding-top: 24px;
  border-top: var(--hair) solid var(--line);
}
.reel-foot a { color: var(--gold); border-bottom: var(--hair) solid var(--gold); padding-bottom: 2px; margin-left: 8px; }
.reel-foot a:hover { color: var(--rose); border-color: var(--rose); }

@media (max-width: 1100px) {
  .reel-thumbs { grid-template-columns: repeat(7, 1fr); }
  .reel-track { height: clamp(540px, 76vh, 760px); }
  .reel-frame { gap: clamp(20px, 3vw, 36px); padding: 18px clamp(20px, 4vw, 48px); }
  .rf-text { flex: 0 0 300px; max-width: 300px; }
  .rf-img-wrap { max-width: calc(100% - 340px); }
  .rf-quote { font-size: clamp(22px, 2.4vw, 30px); }
}
@media (max-width: 720px) {
  .reel-hud { grid-template-columns: 1fr 1fr; row-gap: 8px; padding: 12px 14px; }
  .reel-hud-c { grid-column: 1 / -1; text-align: left; }
  .reel-thumbs { grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .reel-nav { width: 44px; height: 44px; font-size: 18px; }
  .reel-prev { left: 8px; } .reel-next { right: 8px; }
  .reel-track { height: clamp(620px, 86vh, 820px); }
  /* Stack vertically — image on top, copy below */
  .reel-frame,
  .reel-frame:nth-child(even) {
    flex-direction: column;
    padding: 16px 18px;
    gap: 18px;
  }
  .reel-frame:nth-child(even) .rf-text { text-align: left; align-items: flex-start; }
  .rf-img-wrap {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    min-height: 0;
  }
  .rf-text {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }
  .rf-quote { font-size: 22px; }
  .reel-counter { font-size: 22px; }
  .reel-caption { font-size: 14px; }
}
@media (max-width: 480px) {
  .reel-track { height: clamp(560px, 82vh, 720px); padding: 12px 0; }
  .reel-thumbs { grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .reel-frame, .reel-frame:nth-child(even) { padding: 12px 12px; gap: 14px; }
  .rf-quote { font-size: 19px; line-height: 1.3; }
  .reel-nav { width: 38px; height: 38px; font-size: 16px; }
}

/* (Menu hover-preview removed — no per-item thumbnails) */

/* ===========================================================
   CHAPTER IV — KIYI (location)
   =========================================================== */
.kiyi-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.kiyi-data { display: flex; flex-direction: column; justify-content: space-between; }
.kiyi-fig { display: flex; }
.data-rows {
  display: flex; flex-direction: column;
  border-top: var(--hair) solid var(--line);
}
.data-rows li {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: var(--hair) solid var(--line);
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.data-rows li:hover { padding-left: 16px; padding-right: 16px; background: var(--paper); }
.dr-line {
  height: 1px;
  background-image: linear-gradient(to right, var(--line-2) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  align-self: center;
}
.dr-val {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.4;
  color: var(--ink);
  text-align: right;
}
.dr-val.mono { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; }
.dr-link { color: var(--gold); transition: color .35s var(--ease); }
.dr-link:hover { color: var(--rose); }

.map-link {
  display: inline-flex; align-items: baseline; gap: 12px;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: var(--hair) solid var(--gold);
  padding-bottom: 4px;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.map-link .arr { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--gold); }
.map-link:hover { gap: 18px; color: var(--gold); }

.kiyi-fig { position: relative; width: 100%; }
.kf-stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 480px;
  overflow: hidden;
  background: var(--paper);
}
.kf-img { position: absolute; inset: 0; overflow: hidden; }
.kf-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.95) contrast(1.08) brightness(.75);
  transition: transform 2s var(--ease), filter .8s var(--ease);
}
.kiyi-fig:hover .kf-img img { transform: scale(1.05); filter: saturate(1.05) contrast(1.05) brightness(.85); }

/* Silent autoplay loop video — fills the same slot as the img used to */
.kf-reel-wrap { background: #050303; }
.kf-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.08) brightness(.75);
  transition: transform 2s var(--ease), filter .8s var(--ease);
  pointer-events: none;
}
.kiyi-fig:hover .kf-reel-video {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05) brightness(.85);
}
.kf-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.kf-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(232,195,106,.25) 0%, transparent 50%),
    linear-gradient(180deg, transparent 30%, rgba(14,9,8,.4) 65%, rgba(14,9,8,.92) 100%);
  pointer-events: none;
}
.kf-corner {
  position: absolute;
  width: 26px; height: 26px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.kf-tl { top: 14px; left: 14px; border-top-width: 1.5px; border-left-width: 1.5px; }
.kf-tr { top: 14px; right: 14px; border-top-width: 1.5px; border-right-width: 1.5px; }
.kf-bl { bottom: 14px; left: 14px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.kf-br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.kf-overlay {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 4;
  display: flex; flex-direction: column; gap: 12px;
}
.kf-eyebrow { color: var(--gold); }
.kf-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.kf-title em {
  font-family: var(--display); font-style: italic;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}
.kf-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 12px;
  border-top: var(--hair) solid rgba(243,233,214,0.18);
}

@media (max-width: 900px) {
  .kiyi-grid { grid-template-columns: 1fr; }
  .data-rows li { grid-template-columns: auto 1fr; gap: 10px 16px; }
  .dr-line { display: none; }
  .dr-val { grid-column: 1 / 3; text-align: left; }
}

/* ===========================================================
   CHAPTER V — KÜNYE / RESERVATION
   =========================================================== */
.reserve {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 90% 10%, rgba(212,168,89,.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(200,105,74,.08) 0%, transparent 60%),
    var(--paper);
  border: var(--hair) solid var(--line-2);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.reserve-text p {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 48ch;
}
.reserve-rows {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: var(--hair) solid var(--line);
}
.copy-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 4px;
  border-bottom: var(--hair) solid var(--line);
  text-align: left;
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.copy-row:hover { padding-left: 14px; padding-right: 14px; background: var(--paper-2); }
.cr-val {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink);
}
.cr-hint {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.copy-row:hover .cr-val { color: var(--gold); }
.copy-row:hover .cr-hint { color: var(--gold); }

.reserve-actions { display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 900px) {
  .reserve { grid-template-columns: 1fr; padding: 28px; }
  .reserve-actions { flex-direction: row; flex-wrap: wrap; }
  .copy-row { grid-template-columns: auto 1fr; }
  .cr-hint { grid-column: 1 / 3; }
}
@media (max-width: 560px) {
  .reserve { padding: 22px 16px; }
  .reserve-actions { flex-direction: column; }
  .reserve-actions .btn-primary, .reserve-actions .btn-ghost { width: 100%; justify-content: center; }
  .copy-row { padding: 14px 4px; }
  .copy-row .cap { font-size: 9px; letter-spacing: .18em; }
  .cr-val { font-size: 16px; }
  .reserve-text p { font-size: 15px; }
}

/* ===========================================================
   BACK COVER (FOOTER)
   =========================================================== */
.back-cover {
  background: var(--night);
  padding: clamp(56px, 8vw, 100px) var(--pad) 36px;
  border-top: var(--hair) solid var(--line);
}
.bc-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.bc-brand { display: flex; align-items: center; gap: 18px; }
.bc-mark {
  width: 96px; height: 96px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)) drop-shadow(0 0 18px rgba(212,168,89,.18));
  flex-shrink: 0;
}
.bc-brand-text strong { font-family: var(--display); font-weight: 500; font-size: 28px; color: var(--ink); display: block; }
.bc-brand-text em { font-style: normal; color: var(--ink-mute); display: block; margin-top: 6px; }

.bc-quote {
  text-align: right;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink-soft);
}
.bc-quote em {
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease infinite;
}

.bc-rule {
  max-width: var(--maxw);
  margin: 32px auto 22px;
  height: var(--hair);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bc-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

@media (max-width: 800px) {
  .bc-top { grid-template-columns: 1fr; }
  .bc-quote { text-align: left; }
  .bc-bottom { flex-direction: column; gap: 6px; }
}
@media (max-width: 560px) {
  .back-cover { padding: 44px 18px 28px; }
  .bc-mark { width: 64px; height: 64px; }
  .bc-brand { gap: 14px; }
  .bc-brand-text strong { font-size: 22px; }
  .bc-quote { font-size: 18px; }
}

/* ===========================================================
   TOAST (08.B - copy confirmation)
   =========================================================== */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 22px;
  background: var(--ink);
  color: var(--night);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity .35s var(--ease), transform .4s var(--ease);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.5), 0 0 20px rgba(212,168,89,0.3);
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-emoji { font-size: 16px; }

/* ===========================================================
   SAFETY FALLBACK
   =========================================================== */
@keyframes safetyReveal { to { opacity: 1; transform: none; } }
.ct-line .word,
.cover-deck, .cover-cta {
  animation: safetyReveal 1s ease 4s forwards;
}

/* ===========================================================
   Reduced motion
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-rule,
  .cover-pre .dot, .cbm-track,
  .ct-line .word em, .ch-title em, .dropcap, .pullquote em, .bc-quote em,
  .btn-primary {
    animation: none !important;
  }
  .ct-line .word, .cover-deck, .cover-cta,
  .reveal-up, .reveal-line, .loader-logo {
    opacity: 1 !important;
    transform: none !important;
  }
}
