/* Enes Photography v8 — Field Signal */

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

:root {
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --bg: #07090b;
  --bg-elev: #0e1216;
  --fg: #edf1f4;
  --fg-muted: #c2ccd4;
  --fg-subtle: #85929c;
  --border: rgba(237, 241, 244, 0.1);
  --border-strong: rgba(237, 241, 244, 0.18);
  --surface: rgba(237, 241, 244, 0.035);
  --surface-strong: rgba(237, 241, 244, 0.07);
  --accent: #1fb8a8;
  --accent-2: #e89b5c;
  --glow: rgba(31, 184, 168, 0.16);
  --spotify: #1db954;
  --danger: #e05a5a;

  --shell: min(72rem, calc(100% - 2rem));
  --shell-wide: min(90rem, calc(100% - 1.25rem));
  --header-h: 4rem;
  --ql-h: 3.1rem;
  --chrome-h: calc(var(--ql-h) + var(--header-h));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0.85rem;
}

html[data-theme="light"] {
  --bg: #eef1f3;
  --bg-elev: #ffffff;
  --fg: #0d1216;
  --fg-muted: #2a333b;
  --fg-subtle: #5a6873;
  --border: rgba(13, 18, 22, 0.12);
  --border-strong: rgba(13, 18, 22, 0.2);
  --surface: rgba(13, 18, 22, 0.04);
  --surface-strong: rgba(13, 18, 22, 0.075);
  --accent: #0d7f76;
  --accent-2: #b56820;
  --glow: rgba(13, 127, 118, 0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }
html.theme-fade,
html.theme-fade body {
  transition:
    background-color 0.42s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
html.theme-fade body::before {
  transition: opacity 0.42s var(--ease);
}
html.theme-fade .site-chrome,
html.theme-fade .media-card,
html.theme-fade .contact__layout,
html.theme-fade .gear-card,
html.theme-fade .gallery-tools,
html.theme-fade .about__hits-wrap,
html.theme-fade .quick-links__chip,
html.theme-fade .btn {
  transition:
    background-color 0.42s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.theme-fade,
  html.theme-fade body,
  html.theme-fade body::before,
  html.theme-fade .site-chrome,
  html.theme-fade .media-card,
  html.theme-fade .contact__layout,
  html.theme-fade .gear-card,
  html.theme-fade .gallery-tools,
  html.theme-fade .about__hits-wrap,
  html.theme-fade .quick-links__chip,
  html.theme-fade .btn {
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .lightbox__ambient { filter: none !important; transform: none !important; opacity: 0.35 !important; }
  .lightbox.is-cover.has-ambient .lightbox__ambient { opacity: 0.25 !important; }
  .site-chrome { transition: none !important; }
  .media-card, .media-card__art img, .site-toast, .net-banner { transition: none !important; transform: none !important; }
  .media-card__skel { animation: none !important; }
  .lightbox.is-exif-open .lightbox__exif { animation: none !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 50% 36% at 12% 0%, var(--glow), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 100%, rgba(232, 155, 92, 0.07), transparent 50%);
}

img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 600; }

.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }
.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; }
.sr-only, .visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  padding: 0.6rem 1rem; background: var(--accent); color: #041014;
  border-radius: 999px; font-weight: 600;
}
.skip-link:focus,
.skip-link:focus-visible { top: 1rem; outline: 2px solid var(--fg); outline-offset: 3px; }
.skip-link--secondary { left: auto; right: 1rem; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.signal-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: 0.18;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
}
html[data-theme="light"] .signal-grid { opacity: 0.28; }

.grain-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9997; opacity: 0.04;
}
html[data-theme="light"] .grain-canvas { opacity: 0.03; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 120;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Sticky chrome = quick links + header */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: transform 0.35s var(--ease);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-chrome.is-hidden { transform: translateY(-110%); }
.site-chrome.is-scrolled { box-shadow: 0 1px 0 var(--border); }
.site-chrome.is-scrolled .quick-links {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  border-bottom-color: transparent;
}

/* Header */
.site-header {
  position: relative; top: auto; z-index: auto;
  height: var(--header-h);
  backdrop-filter: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: none;
}
.site-header.is-hidden { transform: none; }
.site-header.is-scrolled { border-bottom-color: transparent; }
.site-header__inner {
  height: 100%;
  display: flex; align-items: center; gap: 1rem;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand__mark {
  width: 0.7rem; height: 0.7rem; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.brand.is-active .brand__mark,
.brand[aria-current="page"] .brand__mark {
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 40%, transparent);
  transform: scale(1.08);
}
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600; letter-spacing: -0.02em;
}
.brand.is-active .brand__name,
.brand[aria-current="page"] .brand__name { color: var(--fg); }
.brand__meta { color: var(--fg-subtle); font-size: 0.72rem; }

.staging-badge, .guest-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-left: 0.5rem; padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-subtle);
}
.staging-badge__dot, .guest-badge__dot {
  width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--accent-2);
}
.guest-ribbon {
  text-align: center; padding: 0.45rem 1rem;
  background: color-mix(in srgb, var(--accent-2) 18%, transparent);
  border-bottom: 1px solid var(--border); font-size: 0.8rem;
}

.site-nav__list { display: flex; gap: 0.35rem; align-items: center; }
.site-nav__list a {
  display: inline-flex; padding: 0.45rem 0.7rem;
  border-radius: 999px; color: var(--fg-muted); font-size: 0.9rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.site-nav__list a:hover, .site-nav__list a.is-active {
  color: var(--fg); background: var(--surface-strong);
}
.nav-toggle {
  display: none; width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border); border-radius: 0.65rem;
  background: transparent; place-items: center; gap: 0.3rem;
  flex-direction: column; justify-content: center;
}
.nav-toggle__bar {
  display: block; width: 1rem; height: 1.5px; background: var(--fg);
  transition: transform 0.25s var(--ease);
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
  display: grid; place-items: center; cursor: pointer;
}
html[data-theme="dark"] .icon-moon, html[data-theme="light"] .icon-sun { display: none; }

.section-rail {
  position: fixed; right: 0.85rem; top: 50%; transform: translateY(-50%);
  z-index: 60; display: flex; flex-direction: column; gap: 0.55rem;
}
.section-rail__dot {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--fg-subtle); opacity: 0.45;
  transition: transform 0.25s var(--ease), opacity 0.25s, background 0.25s;
}
.section-rail__dot.is-active {
  opacity: 1; background: var(--accent); transform: scale(1.35);
}
@media (max-width: 899px) { .section-rail { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.15rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 550; font-size: 0.92rem;
  cursor: pointer; transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #041014; }
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost {
  background: transparent; color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface-strong); }
.btn--outline {
  background: transparent; border-color: var(--border-strong); color: var(--fg);
}
.btn--sm { padding: 0.45rem 0.8rem; font-size: 0.82rem; }

/* Typography */
.eyebrow {
  display: inline-block; margin-bottom: 0.65rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.12; letter-spacing: -0.03em; font-weight: 600;
  text-wrap: balance;
}
.section-title--sm { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.section-lead { color: var(--fg-muted); max-width: 38rem; margin-top: 0.65rem; }
.section-lead--compact { max-width: 32rem; }
.section-head { margin-bottom: 1.5rem; }
.section-head--row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: end; flex-wrap: wrap;
}
.prose { color: var(--fg-muted); max-width: 38rem; font-size: 1.05rem; }

/* Hero — full bleed */
.hero--field {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media, .hero__media picture, .hero__media-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero__media-img { object-fit: cover; object-position: center; transform: scale(1.02); }
.hero__media--fallback {
  background:
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(31,184,168,0.25), transparent 60%),
    linear-gradient(160deg, #0b1218, #07090b 60%, #12161b);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,11,0.25) 0%, rgba(7,9,11,0.45) 42%, rgba(7,9,11,0.92) 100%),
    linear-gradient(90deg, rgba(7,9,11,0.55), transparent 55%);
}
html[data-theme="light"] .hero__veil {
  background:
    linear-gradient(180deg, rgba(238, 241, 243, 0.25) 0%, rgba(238, 241, 243, 0.82) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(238, 241, 243, 0.55), transparent 42%);
}
html[data-theme="light"] .site-chrome {
  background: color-mix(in srgb, var(--bg-elev) 86%, transparent);
  border-bottom-color: var(--border);
}
html[data-theme="light"] .media-card {
  background: color-mix(in srgb, var(--bg-elev) 92%, var(--surface));
  border-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
@media (hover: hover) and (pointer: fine) {
  html[data-theme="light"] .media-card:hover {
    box-shadow: 0 12px 28px rgba(13, 18, 22, 0.1);
    background: var(--bg-elev);
  }
}
html[data-theme="light"] .media-card__status,
html[data-theme="light"] .media-card__empty .muted {
  color: var(--fg-subtle);
}
html[data-theme="light"] .contact__layout {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 48%),
    var(--bg-elev);
  border-color: var(--border-strong);
  box-shadow: 0 10px 28px rgba(13, 18, 22, 0.06);
}
html[data-theme="light"] .contact__mail {
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}
html[data-theme="light"] .gear-card,
html[data-theme="light"] .gallery-tools {
  background: color-mix(in srgb, var(--bg-elev) 94%, transparent);
  border-color: var(--border-strong);
}
html[data-theme="light"] .about__hits,
html[data-theme="light"] .about__hits-info {
  color: var(--fg-subtle);
}
html[data-theme="light"] .site-toast {
  background: color-mix(in srgb, var(--bg-elev) 96%, transparent);
  box-shadow: 0 12px 32px rgba(13, 18, 22, 0.12);
}
html[data-theme="light"] .back-top {
  box-shadow: 0 8px 22px rgba(13, 18, 22, 0.1);
}
.hero__content {
  position: relative; z-index: 2;
  padding: calc(var(--chrome-h) + 2.4rem) 0 2.75rem;
  max-width: 40rem;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 0.65rem; color: var(--fg);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 7.2vw, 4.6rem);
  line-height: 0.94; letter-spacing: -0.045em; font-weight: 700;
  margin-bottom: 0.85rem;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: transparent;
  background: linear-gradient(120deg, var(--fg) 10%, var(--accent) 55%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero__lead {
  color: var(--fg-muted); font-size: clamp(1rem, 1.7vw, 1.15rem);
  max-width: 28rem; margin-bottom: 1.15rem; text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.1rem; }
.hero__meta { color: var(--fg-subtle); }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  color: var(--fg-subtle);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.hero__scroll:hover,
.hero__scroll:focus-visible { color: var(--fg); }
.hero__scroll-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: hero-scroll-bob 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-bob {
  0%, 100% { translate: 0 0; opacity: 0.55; }
  50% { translate: 0 5px; opacity: 1; }
}

/* Media hub */
.media-hub { padding: 4.5rem 0 3rem; }
.media-hub__head { margin-bottom: 1.25rem; }
.media-hub__grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.media-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.15rem;
  backdrop-filter: blur(10px);
  min-height: 100%;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .media-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    background: color-mix(in srgb, var(--surface-strong) 55%, var(--surface));
  }
  .media-card:hover .media-card__art img {
    transform: scale(1.05);
  }
  .media-card:active {
    transform: translateY(-1px) scale(0.995);
  }
}
.media-card.is-empty {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--spotify) 8%, transparent), transparent 55%),
    var(--surface);
}
.media-card.is-loading .media-card__body,
.media-card.is-loading .media-card__empty,
.media-card.is-loading .media-card__progress,
.media-card.is-loading .media-card__error {
  display: none !important;
}
.media-card.is-error .media-card__body,
.media-card.is-error .media-card__empty,
.media-card.is-error .media-card__progress,
.media-card.is-error .media-card__skeleton {
  display: none !important;
}
.media-card__skeleton {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.55rem 0.85rem;
  align-items: center;
  min-height: 4.5rem;
  margin: 0.15rem 0 0.55rem;
}
.media-card__skeleton[hidden] { display: none !important; }
.media-card__skel {
  display: block;
  border-radius: 0.45rem;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--fg-subtle) 12%, transparent) 0%,
    color-mix(in srgb, var(--fg-subtle) 22%, transparent) 45%,
    color-mix(in srgb, var(--fg-subtle) 12%, transparent) 100%
  );
  background-size: 200% 100%;
  animation: mediaSkel 1.15s ease-in-out infinite;
}
.media-card__skel--art {
  width: 4.5rem; height: 4.5rem;
  grid-row: 1 / span 2;
}
.media-card__skel--line { height: 0.85rem; width: 100%; }
.media-card__skel--short { width: 62%; height: 0.7rem; }
@keyframes mediaSkel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.media-card__empty {
  flex: 1;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.25rem 0.5rem;
  color: var(--fg-muted);
}
.media-card__empty[hidden] { display: none !important; }
.media-card__empty .muted { color: var(--fg-subtle); font-size: 0.88rem; }
.media-card__error {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  padding: 0.85rem 0 0.25rem;
  color: var(--fg-subtle);
  font-size: 0.9rem;
}
.media-card__error[hidden] { display: none !important; }
.media-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; gap: 0.75rem;
}
.media-card__badge {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.55rem; border-radius: 999px;
  border: 1px solid var(--border);
}
.media-card__badge--spotify { color: var(--spotify); border-color: color-mix(in srgb, var(--spotify) 40%, transparent); }
.media-card__badge--cinema { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.media-card__status { color: var(--fg-subtle); font-size: 0.82rem; }
.media-card__body { display: flex; gap: 0.9rem; align-items: center; }
.media-card__art {
  position: relative; width: 5.5rem; height: 5.5rem; flex-shrink: 0;
  border-radius: 0.65rem; overflow: hidden; background: var(--bg-elev);
}
.media-card__art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.media-card__live {
  position: absolute; right: 0.35rem; top: 0.35rem;
  width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--spotify);
  box-shadow: 0 0 0 4px rgba(29,185,84,0.2); animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
.media-card__copy { min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.media-card__copy strong { font-size: 1.05rem; line-height: 1.25; }
.media-card__copy span, .media-card__album { color: var(--fg-subtle); font-size: 0.9rem; }
.media-card__progress { margin-top: 1rem; }
.media-card__progress-track {
  height: 0.3rem; border-radius: 999px; background: var(--surface-strong); overflow: hidden;
}
.media-card__progress-fill {
  display: block; height: 100%; width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--spotify), #6ee7a8);
  transition: width 0.8s linear;
}
.media-card__progress-label { display: inline-block; margin-top: 0.4rem; color: var(--fg-subtle); }
.media-card__actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 1rem; flex-wrap: wrap; }
.media-card__stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
}
.media-card__stat {
  padding: 0.75rem; border-radius: 0.7rem; background: var(--surface-strong);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.media-card__stat strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.03em; }
.media-card__stat span { color: var(--fg-subtle); font-size: 0.78rem; }
.media-poster-strip {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.media-poster-strip::-webkit-scrollbar { display: none; }
.media-poster-strip__item {
  position: relative;
  flex: 0 0 auto;
  width: 4.5rem;
  height: 6.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  overflow: hidden;
  background: var(--bg-elev);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.media-poster-strip__item:hover,
.media-poster-strip__item:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.media-poster-strip__item img,
.media-poster-strip__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-poster-strip__ph {
  background: linear-gradient(145deg, var(--surface-strong), var(--bg-elev));
}
.media-poster-strip__rating {
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.62rem;
}

/* About / Gear / Contact */
.about, .gallery { padding: 3.5rem 0; }
.closing-block { padding-bottom: 4rem; }
.closing-block .contact__layout {
  margin-top: 1.75rem;
}
.about-gear {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-gear {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }
}
.about__links {
  display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.25rem;
  color: var(--fg-muted);
}
.about__links a { border-bottom: 1px solid var(--border-strong); padding-bottom: 0.1rem; }
.about__links a:hover { color: var(--accent); border-color: var(--accent); }
.about__process {
  display: grid;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.about__process li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
}
.about__process-step {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.about__process strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}
.about__process span {
  color: var(--fg-muted);
  font-size: 0.84rem;
}
/* legacy chips kept for motion.js */
.about__chips { display: none; }

.gear { padding: 0; }
.section-head--compact { margin-bottom: 0.85rem; }
.gear-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gear-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.75rem 0.85rem;
  min-width: 0;
}
.gear-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.gear-card__head span { color: var(--fg-subtle); font-size: 0.72rem; }
.gear-card ul { display: grid; gap: 0.4rem; }
.gear-card li {
  display: grid;
  gap: 0.1rem;
}
.gear-card li strong {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
}
.gear-card li span {
  color: var(--fg-subtle);
  font-size: 0.75rem;
  line-height: 1.35;
}
/* legacy accordion hooks */
.gear-list, .gear-group { display: none; }

.contact__layout {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; flex-wrap: wrap;
  padding: 1.5rem; border: 1px solid var(--border); border-radius: calc(var(--radius) + 0.2rem);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 45%),
    var(--surface);
}
.contact__intro { flex: 1 1 16rem; min-width: 0; }
.contact__actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center;
  flex: 1 1 18rem; justify-content: flex-end;
}
.contact__mail {
  display: inline-flex; align-items: stretch; gap: 0;
  border-radius: 999px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}
.contact__mailto {
  border: 0; border-radius: 0;
  box-shadow: none;
}
.contact__copy {
  border: 0; border-left: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: 0; background: transparent;
  min-height: 100%;
}
.contact__copy.is-done { color: var(--accent); }
.contact__status {
  width: 100%; text-align: right; margin: 0;
  color: var(--accent); font-size: 0.72rem; letter-spacing: 0.06em;
}
.contact__status[hidden] { display: none !important; }
.contact__ig.is-opening { opacity: 0.72; }

/* Gallery */
.gallery-head__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gallery-stats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.gallery-stat {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem; border-radius: 999px; border: 1px solid var(--border);
  color: var(--fg-subtle);
}
.gallery-tools {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.75rem; margin: 1rem auto 0.65rem; flex-wrap: wrap;
  position: sticky;
  top: calc(var(--chrome-h) + 0.35rem);
  z-index: 30;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-elev) 88%, transparent);
  backdrop-filter: blur(12px);
}
.search-box {
  display: flex; align-items: center; gap: 0.55rem; flex: 1; min-width: 12rem;
  padding: 0.35rem 0.55rem;
  border: 0;
  background: transparent;
}
.search-box input {
  flex: 1; border: 0; outline: 0; background: transparent; color: var(--fg);
}
.search-clear {
  border: 0; background: transparent; color: var(--fg-subtle); cursor: pointer; font-size: 1.1rem;
}
.gallery-filter-toggle { display: none; }
.gallery-filter-toggle.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  color: var(--accent);
}
.gallery-meta { color: var(--fg-subtle); font-size: 0.85rem; white-space: nowrap; padding-right: 0.35rem; }
.tag-row {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.5rem auto 1.1rem;
}
.tag-btn {
  border: 1px solid var(--border); background: transparent; color: var(--fg-muted);
  border-radius: 999px; padding: 0.4rem 0.75rem; cursor: pointer; font-size: 0.82rem;
}
.tag-btn.is-active, .tag-btn:hover {
  color: var(--fg); border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.bento {
  display: grid; gap: 0.5rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  width: var(--shell);
  max-width: var(--shell);
  margin-inline: auto;
}
/* Desktop: kompakt 3 sütun — full-bleed yok */
.bento__item {
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.bento__item--wide,
.bento__item--hero,
.bento__item--landscape {
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.bento__item--tall {
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 3 / 4;
}
.bento__trigger {
  position: relative; width: 100%; height: 100%; min-height: inherit;
  border: 0; padding: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-elev);
}
.bento__img, .bento__loader {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.bento__loader {
  background-size: cover; background-position: center; filter: blur(12px); transform: scale(1.05);
  transition: opacity 0.35s var(--ease);
}
.bento__trigger.is-loaded .bento__loader { opacity: 0; }
.bento__overlay {
  position: absolute; inset: auto 0 0 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; display: flex; flex-direction: column; gap: 0.2rem;
  opacity: 0; transform: translateY(8px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.bento__trigger:hover .bento__overlay, .bento__trigger:focus-visible .bento__overlay {
  opacity: 1; transform: none;
}
.bento__caption { font-weight: 600; }
.bento__tags, .bento__meta { font-size: 0.78rem; opacity: 0.8; }
.bento__recipe, .bento__raw-badge, .bento__cam-badge {
  position: absolute; top: 0.65rem; left: 0.65rem;
  padding: 0.25rem 0.45rem; border-radius: 0.4rem;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 0.68rem;
}
.bento__raw-badge { left: auto; right: 0.65rem; }
.bento__cam-badge { top: auto; bottom: 0.65rem; left: 0.65rem; }
.bento__story-dot {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.25);
}
.bento__item.is-hidden,
.bento__item.is-filter-out {
  display: none !important;
}
.gallery-empty {
  text-align: center;
  padding: 2.4rem 1.1rem 2.1rem;
  color: var(--fg-muted);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  border: 1px dashed var(--border-strong);
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    radial-gradient(ellipse 55% 60% at 50% 20%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%),
    var(--surface);
}
.gallery-empty[hidden] { display: none !important; }
.gallery-empty__art {
  color: var(--accent);
  opacity: 0.88;
  margin-bottom: 0.15rem;
}
.gallery-empty strong { color: var(--fg); font-size: 1.08rem; }
.gallery-empty p { max-width: 28rem; text-wrap: pretty; }
.gallery-empty__query {
  color: var(--fg-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.gallery-empty__query[hidden] { display: none !important; }
.gallery-empty .btn { margin-top: 0.45rem; }
.about__hits {
  color: var(--fg-subtle);
  opacity: 0.85;
}
.about__hits[hidden] { display: none !important; }
.about__hits-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.about__hits-wrap[hidden] { display: none !important; }
.about__hits-info {
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--fg-subtle);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1;
  cursor: pointer;
}
.about__hits-info:hover,
.about__hits-info:focus-visible,
.about__hits-info[aria-expanded="true"] {
  color: var(--accent);
  border-color: var(--accent);
}
.about__hits-pop {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  bottom: auto;
  z-index: 8;
  width: min(18.5rem, 78vw);
  padding: 0.75rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  color: var(--fg-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.about__hits-pop[hidden] { display: none !important; }
.about__hits-pop p { margin: 0; text-wrap: pretty; }
.about__hits-pop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}
.about__hits-pop-status {
  margin: 0.45rem 0 0;
  color: var(--accent);
  font-size: 0.68rem;
}
.about__hits-pop-status[hidden] { display: none !important; }
html[data-theme="light"] .about__hits-pop {
  box-shadow: 0 12px 28px rgba(13, 18, 22, 0.12);
}

.curate-panel {
  margin: 1rem auto 1.5rem; padding: 1rem; border: 1px dashed var(--border-strong);
  border-radius: var(--radius); background: var(--surface);
}
.curate-panel__head { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.85rem; }
.curate-panel__list { display: grid; gap: 0.55rem; }
.curate-panel__list li {
  display: grid; grid-template-columns: auto 3rem 1fr; gap: 0.75rem; align-items: center;
  padding: 0.5rem; border-radius: 0.55rem; background: var(--bg-elev); cursor: grab;
}
.curate-panel__list img { width: 3rem; height: 3rem; object-fit: cover; border-radius: 0.35rem; }
.curate-panel__status { margin-top: 0.75rem; color: var(--fg-subtle); }

/* Quick links (üst şerit) */
.quick-links {
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding-top: 0;
  max-height: 3.5rem;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), border-color 0.25s, padding 0.25s;
}
.quick-links__track {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.quick-links__track::-webkit-scrollbar { display: none; }
.quick-links__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-muted);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.quick-links__chip:hover,
.quick-links__chip:focus-visible {
  color: var(--fg);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.quick-links__meta {
  flex: 0 0 auto;
  margin-left: 0.25rem;
  color: var(--fg-subtle);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* Lightbox — fullscreen, photo-first; chrome overlays image */
.lightbox {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: #050607;
  color: #fff;
}
.lightbox::backdrop {
  background: #050607;
  backdrop-filter: none;
}
.lightbox__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  background: #050607;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__ambient {
  position: absolute;
  inset: -18%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(48px) saturate(1.25) brightness(0.55);
  transform: scale(1.12);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.lightbox.has-ambient .lightbox__ambient { opacity: 0.95; }
.lightbox.has-ambient .lightbox__frame {
  background: #0a0c0e;
}
/* Cover modunda ambient daha yumuşak ama görünür kalsın */
.lightbox.is-cover.has-ambient .lightbox__ambient {
  opacity: 0.72;
  filter: blur(56px) saturate(1.35) brightness(0.42);
}
.lightbox.is-cover.has-ambient .lightbox__frame {
  background: #050607;
}
.lightbox.is-slideshow .lightbox__counter::after {
  content: ' · ▶';
  color: var(--accent);
  font-size: 0.85em;
}
.lightbox__frame > img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  object-fit: contain;
  filter: blur(14px);
  transform: scale(1.02);
  opacity: 0.85;
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  cursor: zoom-in;
  will-change: transform, opacity, filter;
}
/* Manzara: genişliği doldur — siyah boşluğu azalt */
.lightbox.is-landscape .lightbox__frame > img {
  width: min(100vw, 100%);
  max-width: 100vw;
  height: auto;
  max-height: 100dvh;
}
/* Portre: yüksekliği doldur */
.lightbox.is-portrait .lightbox__frame > img {
  height: min(100dvh, 100%);
  max-height: 100dvh;
  width: auto;
  max-width: 100vw;
}
@media (min-width: 900px) {
  .lightbox.is-landscape .lightbox__frame > img {
    width: 100vw;
    max-height: 100dvh;
  }
  .lightbox.is-portrait .lightbox__frame > img {
    height: 100dvh;
    max-width: min(92vw, calc(100dvh * 0.75));
  }
}
/* Cover-fill en sonda — landscape kurallarını ezer */
.lightbox.is-cover .lightbox__frame > img,
.lightbox.is-cover.is-landscape .lightbox__frame > img,
.lightbox.is-cover.is-portrait .lightbox__frame > img {
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
}
.lightbox__tool[aria-pressed="true"] {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}
.lightbox__frame > img.is-loaded {
  filter: none;
  transform: none;
  opacity: 1;
}
.lightbox.is-sliding-next .lightbox__frame > img,
.lightbox.is-sliding-prev .lightbox__frame > img {
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), filter 0.28s ease;
}
.lightbox.is-sliding-next .lightbox__frame > img { transform: translateX(-18px); opacity: 0.35; }
.lightbox.is-sliding-prev .lightbox__frame > img { transform: translateX(18px); opacity: 0.35; }
.lightbox.is-chrome-hidden .lightbox__toolbar,
.lightbox.is-chrome-hidden .lightbox__close,
.lightbox.is-chrome-hidden .lightbox__nav,
.lightbox.is-chrome-hidden .lightbox__meta,
.lightbox.is-chrome-hidden .lightbox__counter,
.lightbox.is-chrome-hidden .lightbox__recipe,
.lightbox.is-chrome-hidden .lightbox__strip,
.lightbox.is-chrome-hidden .lightbox__hint {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}
.lightbox.is-chrome-hidden .lightbox__frame > img { cursor: zoom-out; }
.lightbox__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  padding: 3.25rem 1.25rem 4.1rem;
  background:
    linear-gradient(
      transparent 0%,
      rgba(0, 0, 0, 0.35) 28%,
      rgba(0, 0, 0, 0.78) 62%,
      rgba(0, 0, 0, 0.92) 100%
    );
  border: 0;
  max-height: min(42vh, 18rem);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), max-height 0.28s var(--ease), padding-bottom 0.28s var(--ease);
}
.lightbox.is-cover .lightbox__meta {
  padding-bottom: 4.35rem;
  background:
    linear-gradient(
      transparent 0%,
      rgba(0, 0, 0, 0.45) 24%,
      rgba(0, 0, 0, 0.82) 58%,
      rgba(0, 0, 0, 0.94) 100%
    );
}
.lightbox.is-exif-open .lightbox__meta {
  max-height: min(56vh, 26rem);
  padding-bottom: 5.1rem;
  z-index: 5;
}
.lightbox.is-exif-open.is-cover .lightbox__meta {
  padding-bottom: 5.35rem;
}
.lightbox__meta > * { pointer-events: auto; max-width: 40rem; }
.lightbox__meta > figcaption {
  padding: 0;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65), 0 8px 24px rgba(0, 0, 0, 0.45);
}
.lightbox__close, .lightbox__nav, .lightbox__tool {
  border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.45);
  color: #fff; border-radius: 999px; cursor: pointer;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
}
.lightbox__close {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 5;
  width: 2.5rem; height: 2.5rem; font-size: 1.25rem;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 2.75rem; height: 2.75rem; font-size: 1.4rem;
}
.lightbox__nav--prev { left: 0.85rem; }
.lightbox__nav--next { right: 0.85rem; }
.lightbox__toolbar {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 5;
  display: flex; gap: 0.4rem;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__tool { padding: 0.4rem 0.75rem; font-size: 0.78rem; }
.lightbox__tool[aria-pressed="true"] {
  background: color-mix(in srgb, var(--accent, #1fb8a8) 35%, rgba(0,0,0,0.55));
  border-color: color-mix(in srgb, var(--accent, #1fb8a8) 55%, transparent);
}
.lightbox__exif {
  display: none;
  width: min(28rem, 92vw);
  max-height: min(46vh, 22rem);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  font-size: 0.78rem;
  scrollbar-width: thin;
}
.lightbox__exif[hidden] { display: none !important; }
.lightbox.is-exif-open .lightbox__exif:not([hidden]) {
  display: flex;
  animation: exifIn 0.28s var(--ease);
}
@keyframes exifIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.lightbox__exif-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.lightbox__exif-title { display: grid; gap: 0.1rem; min-width: 0; }
.lightbox__exif-kicker {
  font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55;
}
.lightbox__exif-title strong {
  font-size: 0.92rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lightbox__exif-copy {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.lightbox__exif-copy:hover,
.lightbox__exif-copy:focus-visible {
  background: color-mix(in srgb, var(--accent, #1fb8a8) 35%, rgba(255,255,255,0.08));
  border-color: color-mix(in srgb, var(--accent, #1fb8a8) 50%, transparent);
}
.lightbox__exif-copy.is-done {
  color: var(--accent, #1fb8a8);
  border-color: color-mix(in srgb, var(--accent, #1fb8a8) 55%, transparent);
}
.lightbox__exif-chips {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.lightbox__exif-chips[hidden] { display: none !important; }
.lightbox__exif-chip {
  display: inline-flex; align-items: baseline; gap: 0.28rem;
  padding: 0.28rem 0.5rem;
  border-radius: 0.45rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
}
.lightbox__exif-chip span { opacity: 0.62; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }
.lightbox__exif-chip strong { font-size: 0.8rem; font-weight: 600; }
.lightbox__exif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}
.lightbox__exif-row {
  display: flex; justify-content: space-between; gap: 0.55rem; align-items: baseline;
  padding: 0.28rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(255,255,255,0.07);
}
.lightbox__exif-label { opacity: 0.62; font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }
.lightbox__exif-value { font-weight: 600; text-align: right; word-break: break-word; }
.lightbox__exif-note,
.lightbox__exif-status {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.68rem;
  line-height: 1.4;
}
.lightbox__exif-note[hidden],
.lightbox__exif-status[hidden] { display: none !important; }
.lightbox__exif-status { color: var(--accent, #1fb8a8); }
.lightbox.is-cover .lightbox__exif {
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(255,255,255,0.18);
}
@media (max-width: 639px) {
  .lightbox__exif {
    width: min(94vw, 28rem);
    max-height: min(42vh, 20rem);
  }
  .lightbox__exif-grid { grid-template-columns: 1fr; }
  .lightbox.is-exif-open .lightbox__meta {
    max-height: min(62vh, 30rem);
    padding-bottom: calc(5.6rem + env(safe-area-inset-bottom, 0px));
  }
  .lightbox.is-exif-open.is-cover .lightbox__meta {
    padding-bottom: calc(5.85rem + env(safe-area-inset-bottom, 0px));
  }
  .lightbox.is-exif-open .lightbox__exif {
    max-height: min(34vh, 15.5rem);
  }
  .lightbox.is-exif-open .lightbox__strip {
    bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
    z-index: 6;
    max-width: min(94vw, 28rem);
    padding: 0.32rem;
    gap: 0.28rem;
  }
  .lightbox.is-exif-open .lightbox__strip-btn {
    width: 2.15rem;
    height: 2.15rem;
  }
  .lightbox.is-exif-open .lightbox__story {
    font-size: 0.8rem;
    max-height: 4.5rem;
    overflow: auto;
  }
}
.lightbox__story {
  display: none;
  padding: 0;
  background: transparent;
  max-width: 40rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}
/* Hikâye yalnızca EXIF paneli açıkken */
.lightbox.is-exif-open .lightbox__story:not([hidden]) {
  display: block;
}
.lightbox__story-label {
  display: block; font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.2rem;
}
.lightbox__counter {
  position: absolute; right: 3.6rem; top: 1.2rem; z-index: 4;
  font-size: 0.8rem; opacity: 0.7;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__recipe {
  display: none !important;
}
.lightbox__file {
  display: none !important;
}
.lightbox__strip {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  align-items: center;
  padding: 0.4rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px) saturate(1.1);
  overflow-x: auto;
  max-width: min(92vw, 28rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox.is-cover .lightbox__strip {
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
}
.lightbox__strip::-webkit-scrollbar { display: none; }
.lightbox__strip-btn {
  flex: 0 0 auto;
  width: 2.4rem; height: 2.4rem;
  padding: 0; border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem; overflow: hidden;
  background: rgba(255,255,255,0.08); cursor: pointer;
  opacity: 0.72; transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__strip-btn img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: none;
  image-rendering: auto;
}
.lightbox__strip-btn.is-active {
  opacity: 1; border-color: var(--accent, #1fb8a8); transform: translateY(-1px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent, #1fb8a8) 55%, transparent);
}
.lightbox__strip-btn:hover,
.lightbox__strip-btn:focus-visible {
  opacity: 1;
}
.lightbox__hint {
  position: absolute; left: 50%; top: 4.25rem; z-index: 4;
  transform: translateX(-50%) translateY(-4px);
  margin: 0; padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  font-size: 0.7rem; letter-spacing: 0.03em; text-transform: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.lightbox.is-hint-visible .lightbox__hint {
  opacity: 0.92;
  transform: translateX(-50%) translateY(0);
}
.lightbox.is-pulling .lightbox__frame > img {
  transition: none;
}

/* Offline / update chrome */
.net-banner {
  position: sticky;
  top: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  background: color-mix(in srgb, #c45c26 82%, #111);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.net-banner[hidden] { display: none !important; }
.net-banner.is-online {
  background: color-mix(in srgb, var(--accent, #1fb8a8) 78%, #0b1210);
}
.net-banner__dot {
  width: 0.45rem; height: 0.45rem; border-radius: 999px;
  background: currentColor; opacity: 0.9;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
}
.site-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(8px);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: min(26rem, calc(100vw - 1.5rem));
  padding: 0.65rem 0.75rem 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.site-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.site-toast[hidden] { display: none !important; }
.site-toast__text {
  font-size: 0.86rem;
  line-height: 1.3;
  min-width: 0;
}
.site-toast__action {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--accent, #1fb8a8);
  color: #04110f;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.site-toast__action[hidden] { display: none !important; }
.site-toast__close {
  flex: 0 0 auto;
  width: 1.7rem; height: 1.7rem;
  border: 0; border-radius: 999px;
  background: transparent; color: var(--fg-subtle);
  font-size: 1.05rem; line-height: 1; cursor: pointer;
}

/* Shortcuts / Film drawer */
.shortcuts {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-elev); color: var(--fg); padding: 1.1rem; width: min(24rem, 92vw);
}
.shortcuts::backdrop { background: rgba(0,0,0,0.55); }
.shortcuts__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; }
.shortcuts__close { border: 0; background: transparent; color: var(--fg); font-size: 1.3rem; cursor: pointer; }
.shortcuts__list { display: grid; gap: 0.55rem; }
.shortcuts__list div { display: flex; gap: 0.75rem; align-items: center; }
.shortcuts__list dt kbd {
  font-family: var(--font-mono); font-size: 0.75rem;
  padding: 0.15rem 0.4rem; border: 1px solid var(--border); border-radius: 0.3rem;
}

.film-drawer[hidden] { display: none !important; }
.film-drawer { position: fixed; inset: 0; z-index: 110; pointer-events: none; }
.film-drawer.is-open,
.film-drawer.is-closing { pointer-events: auto; }
.film-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62);
  opacity: 0;
  transition: opacity 0.34s var(--ease);
  backdrop-filter: blur(4px);
}
.film-drawer.is-open .film-drawer__backdrop { opacity: 1; }
.film-drawer.is-closing .film-drawer__backdrop { opacity: 0; }
.film-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(34rem, 100%);
  background: var(--bg-elev); border-left: 1px solid var(--border);
  padding: 1.25rem; overflow: auto;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.35);
}
.film-drawer.is-open .film-drawer__panel { transform: translateX(0); }
.film-drawer.is-closing .film-drawer__panel { transform: translateX(100%); }
.film-drawer__panel.is-dragging { transition: none; }
body.film-drawer-open { overflow: hidden; }
.film-drawer__close {
  position: absolute; right: 0.85rem; top: 0.85rem; z-index: 2;
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--border); border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  color: var(--fg); font-size: 1.25rem; cursor: pointer;
  backdrop-filter: blur(8px);
}
.film-drawer__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .film-drawer__layout {
    grid-template-columns: 10.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1.15rem;
    padding-top: 0.35rem;
  }
}
.film-drawer__hero { position: relative; }
.film-drawer__poster {
  width: 100%; aspect-ratio: 2/3; border-radius: 0.75rem; overflow: hidden;
  background: var(--surface); margin-bottom: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.film-drawer__poster img { width: 100%; height: 100%; object-fit: cover; }
.film-drawer__rating {
  position: absolute; left: 0.55rem; bottom: 0.55rem;
  padding: 0.2rem 0.45rem; border-radius: 999px;
  background: rgba(0,0,0,0.72); color: #fff; font-size: 0.78rem;
}
.film-drawer__title { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.35rem; padding-right: 2rem; }
.film-drawer__meta { color: var(--fg-subtle); margin-bottom: 0.85rem; }
.film-drawer__chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; }
.film-drawer__chips span,
.film-drawer__chip {
  padding: 0.25rem 0.5rem; border-radius: 999px; border: 1px solid var(--border); font-size: 0.75rem;
}
.film-drawer__facts { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; color: var(--fg-muted); font-size: 0.9rem; }
.film-drawer__facts dt { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); }
.film-drawer__facts dd { margin: 0.1rem 0 0; }
.film-drawer__synopsis { color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.55; text-wrap: pretty; }
.film-drawer__swipe {
  display: none;
  justify-content: center;
  padding: 0.35rem 0 0.75rem;
}
.film-drawer__swipe span {
  width: 2.5rem; height: 0.28rem; border-radius: 999px;
  background: var(--border-strong);
}

/* Back to top */
.back-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 80;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-elev) 88%, transparent);
  color: var(--fg);
  backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.back-top[hidden] { display: none !important; }
.back-top:hover,
.back-top:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

/* Lightbox zoom */
.lightbox.is-zoomed .lightbox__frame > img {
  cursor: grab;
  touch-action: none;
  transition: none;
  filter: none;
  opacity: 1;
}
.lightbox.is-zoomed .lightbox__frame > img:active { cursor: grabbing; }
.lightbox.is-zoomed .lightbox__nav,
.lightbox.is-zoomed .lightbox__strip,
.lightbox.is-zoomed .lightbox__hint {
  opacity: 0;
  pointer-events: none;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in,
.reveal.is-visible,
.motion-reduced .reveal,
.motion-ready .hero .reveal { opacity: 1; transform: none; }
/* Nested reveal yok — parent görünürken çocuklar da görünsün */
.reveal.is-in .reveal,
.reveal.is-visible .reveal { opacity: 1; transform: none; }
.bento__item.is-in,
.bento__item.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: 0.08s; }
.reveal--stagger { transition-delay: calc(var(--stagger, 0) * 40ms); }

/* Responsive */
@media (max-width: 899px) {
  .media-hub__grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .site-nav__list {
    position: absolute; right: 1rem; top: calc(var(--chrome-h) + 0.4rem);
    display: none; flex-direction: column; align-items: stretch;
    min-width: 12rem; padding: 0.5rem; border-radius: 0.85rem;
    background: var(--bg-elev); border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  }
  .site-nav__list.is-open { display: flex; }
  .hero__content { padding-bottom: 2.5rem; }
}

@media (max-width: 639px) {
  :root { --header-h: 3.6rem; }
  .hero__actions .btn { width: 100%; }
  .contact__layout { align-items: stretch; }
  .contact__actions {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }
  .contact__mail { width: 100%; }
  .contact__mailto { flex: 1; justify-content: center; }
  .contact__actions .btn:not(.contact__mailto):not(.contact__copy) {
    width: 100%;
    justify-content: center;
  }
  .contact__status { text-align: left; }
}

/* Legacy hooks kept for JS compatibility */
.hero__frame, .hero__corner, .viewfinder__corners, .viewfinder__scan { display: none; }
.muted { color: var(--fg-subtle); }
