/* Burak Mert Can — Acid Lime */
:root {
  color-scheme: dark;
  --bg: #0E0E0C;
  --surface: #1A1A17;
  --surface-2: #23231F;
  --ink: #F2EFE6;
  --muted: #A09E94;
  --line: #2C2C27;
  --accent: #C6FF3D;
  --on-accent: #0E0E0C;

  --display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(16px, 4vw, 40px);
  --max: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--on-accent); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--on-accent); padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

main, .nav, .footer { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* NAV */
.nav {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 14px; max-width: none;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: .02em; text-decoration: none; }
.logo i { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang button { all: unset; cursor: pointer; font-family: var(--mono); font-size: 12px; padding: 4px 10px; border-radius: 999px; color: var(--muted); }
.lang button[aria-pressed="true"] { background: var(--accent); color: var(--on-accent); }
.lang button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* HERO */
.hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 5vw, 64px); align-items: stretch; padding-block: clamp(40px, 8vw, 96px) 40px; }
.rec { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--muted); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 22%, transparent); } }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 6.4vw, 80px); line-height: .98; letter-spacing: -.015em; margin: 0 0 24px; text-wrap: balance; }
.hero h1 em, .contact-title em { font-style: normal; color: var(--accent); }
.lede { max-width: 56ch; color: var(--muted); font-size: 18px; margin: 0 0 28px; }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer;
  font-weight: 700; font-size: 15px; padding: 13px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; transition: border-color .15s, transform .15s, background .15s;
}
.btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn.primary:hover { background: #d6ff6e; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.hero-photo { margin: 0; position: relative; display: flex; flex-direction: column; }
.carousel { position: relative; flex: 1; min-height: 460px; max-width: 100%; border-radius: var(--radius); overflow: hidden; background: var(--surface); touch-action: pan-y; }
.carousel .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .9s ease, transform 5s ease-out; }
.carousel .slide.active { opacity: 1; transform: scale(1); }
.carousel .dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.carousel .dots button { all: unset; cursor: pointer; width: 22px; height: 4px; border-radius: 2px; background: rgba(242,239,230,.4); transition: background .2s, width .2s; }
.carousel .dots button[aria-current="true"] { background: var(--accent); width: 34px; }
.carousel .dots button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.hero-photo figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.rec-badge { font-family: var(--mono); font-size: 11px; color: var(--on-accent); background: var(--accent); padding: 2px 7px; border-radius: 4px; }

/* STATS */
.stats { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 12px; }
.stat { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 22px 20px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s, border-color .2s; }
.stat:hover { transform: translateY(-3px); border-color: var(--muted); }
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.stat b i { font-style: normal; color: var(--accent); }
.stat-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.stat-tag { align-self: flex-start; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; padding: 3px 8px; border-radius: 999px; background: var(--on-accent); color: var(--accent); margin-bottom: 6px; }
.split { display: flex; gap: 3px; height: 8px; margin-top: 12px; }
.split span { border-radius: 2px; background: #4A4944; }
.split span:nth-child(1) { background: var(--accent); }
.split span:nth-child(2) { background: var(--ink); }
.split span:nth-child(3) { background: #8E8C83; }
.legend { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 12px; color: var(--muted); }
.legend li { display: inline-flex; align-items: center; gap: 5px; }
.legend li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: #4A4944; }
.legend li:nth-child(1)::before { background: var(--accent); }
.legend li:nth-child(2)::before { background: var(--ink); }
.legend li:nth-child(3)::before { background: #8E8C83; }
.legend em { font-style: normal; font-family: var(--mono); color: var(--ink); }
.mini-kpis { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-kpis div { background: var(--surface-2); border-radius: 10px; padding: 10px 12px; display: grid; gap: 2px; }
.mini-kpis em { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--accent); }
.mini-kpis span { font-size: 11px; color: var(--muted); }

/* Ana metrik: lime kart */
.stat.main { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.stat.main:hover { border-color: var(--accent); }
.stat.main b i { color: var(--on-accent); opacity: .55; }
.stat.main .stat-label, .stat.main .legend { color: rgba(14,14,12,.7); }
.stat.main .legend em { color: var(--on-accent); }
.stat.main .split span:nth-child(1), .stat.main .legend li:nth-child(1)::before { background: var(--on-accent); }
.stat.main .split span:nth-child(2), .stat.main .legend li:nth-child(2)::before { background: rgba(14,14,12,.35); }

/* BRANDS */
.brands { padding-block: 36px 8px; }
.label { margin: 0 0 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 12px; list-style: none; margin: 0; padding: 0; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { flex: none; display: flex; align-items: center; height: 72px; padding-inline: 26px; white-space: nowrap; }

/* Logolar tek renk (krem) gösterilir; .inv detaylı/opak zeminli logolar için */
.logo-img { height: 30px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: .82; transition: opacity .2s; }
.logo-img.inv { filter: grayscale(1) invert(1) contrast(1.4); mix-blend-mode: screen; }
li:hover > .logo-img { opacity: 1; }
.wordmark { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; opacity: .82; }

.employers { list-style: none; margin: 0 0 36px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.employers li { display: grid; justify-items: center; align-content: center; gap: 12px; padding: 26px 12px; border-right: 1px solid var(--line); min-height: 130px; background: var(--surface); }
.employers li:last-child { border-right: 0; }
.employers .logo-img { height: 40px; max-width: 150px; }
.employers li:nth-child(2) .logo-img { height: 56px; }
.employers span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
@keyframes slide { to { transform: translateX(calc(-50% - 6px)); } }

/* SECTIONS */
.section { padding-block: clamp(56px, 8vw, 96px) 0; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.6vw, 40px); margin: 0 0 24px; letter-spacing: -.01em; }
.section-head .h2 { margin: 0; }
.hint, .sub { color: var(--muted); font-size: 14px; margin: 0; }
.sub { margin: -12px 0 24px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 5vw, 64px); }
.about-text p { margin: 0 0 16px; max-width: 62ch; font-size: 17px; }
.facts { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts div { padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; gap: 2px; }
.facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; font-weight: 500; }

/* TIMELINE */
.timeline { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.job { border-bottom: 1px solid var(--line); }
.job-head {
  all: unset; box-sizing: border-box; cursor: pointer; width: 100%;
  display: grid; grid-template-columns: 170px 1fr auto; gap: 20px; align-items: center; padding: 22px 0;
}
.job-head:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.job time { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.job-title b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.2; }
.job-title span { color: var(--muted); font-size: 14px; }
.job-metric { font-family: var(--mono); font-size: 13px; color: var(--accent); text-align: right; white-space: nowrap; }
.job-toggle { display: inline-block; width: 22px; text-align: center; margin-left: 12px; color: var(--muted); transition: transform .2s; }
.job.open .job-toggle { transform: rotate(45deg); color: var(--accent); }
.job.now .job-title b::after { content: ""; display: inline-block; width: 8px; height: 8px; margin-left: 10px; border-radius: 50%; background: var(--accent); vertical-align: middle; }
.job-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.job.open .job-body { grid-template-rows: 1fr; }
.job-body > div { overflow: hidden; }
.job-inner { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding-bottom: 26px; }
.job-inner ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; max-width: 70ch; }
.job-inner ul li::marker { color: var(--accent); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--surface-2); color: var(--muted); }
.kpis { display: flex; flex-wrap: wrap; gap: 8px; }
.kpi { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; min-width: 110px; }
.kpi b { display: block; font-family: var(--display); font-size: 18px; color: var(--accent); font-variant-numeric: tabular-nums; }
.kpi span { font-size: 12px; color: var(--muted); }
.kpis-col { display: grid; gap: 8px; align-content: start; }

/* PROJECTS */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 12px; align-content: start; }
.project .who { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.project h3 { margin: 0; font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.2; }
.project p { margin: 0; color: var(--muted); }
.project .big { font-family: var(--display); font-weight: 800; font-size: 34px; color: var(--accent); line-height: 1; }

/* GALLERY */
.filters { display: grid; gap: 10px; margin-bottom: 22px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { all: unset; cursor: pointer; font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); transition: all .15s; }
.chip:hover { color: var(--ink); border-color: var(--muted); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.chip small { font-family: var(--mono); font-weight: 500; opacity: .7; margin-left: 4px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.vcard { text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: grid; grid-template-rows: auto 1fr; transition: transform .2s, border-color .2s; }
.vcard:hover { transform: translateY(-3px); border-color: var(--accent); }
.thumb { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vcard:hover .thumb img { transform: scale(1.04); }
.thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: .02em; color: var(--ink); opacity: .9; }
.thumb .ph.instagram { background: linear-gradient(135deg, #3a1c5c, #b8325a 60%, #e39b3a); }
.thumb .ph.tiktok { background: linear-gradient(135deg, #111, #1c3b3f 55%, #5a1830); }
.thumb .ph.x { background: linear-gradient(135deg, #111, #2a2a2a); }
.views { position: absolute; left: 8px; bottom: 8px; font-family: var(--mono); font-size: 12px; background: rgba(0,0,0,.75); color: #fff; padding: 3px 8px; border-radius: 5px; }
.plat { position: absolute; right: 8px; top: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; background: var(--accent); color: var(--on-accent); padding: 2px 7px; border-radius: 4px; }
.vmeta { padding: 12px 14px 14px; display: grid; gap: 4px; align-content: start; }
.vmeta b { font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vmeta span { font-size: 12px; color: var(--muted); }
.more-wrap { display: flex; justify-content: center; margin-top: 24px; }

/* PAGES */
.pages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.page { text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px; display: grid; gap: 6px; transition: border-color .2s; }
.page:hover { border-color: var(--accent); }
.page b { font-size: 15px; }
.page span { font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--accent); }

/* SKILLS */
.skills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.skill-col { border-top: 2px solid var(--accent); padding-top: 16px; }
.skill-col h3 { margin: 0 0 12px; font-size: 16px; }
.skill-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; color: var(--muted); }
.skill-col ul.tools { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-col ul.tools li { font-size: 13px; font-weight: 700; color: var(--ink); background: var(--surface); border: 1px solid var(--line); padding: 5px 10px; border-radius: 8px; }
.skill-col ul.tools li.ai { border-color: var(--accent); color: var(--accent); }
.skill-col ul.tools li.ai::before { content: "AI · "; font-family: var(--mono); font-size: 10px; opacity: .8; }
.certs { margin: 28px 0 0; color: var(--muted); font-size: 14px; }
.certs span { color: var(--ink); font-weight: 700; }

/* CONTACT */
.contact { padding-bottom: 80px; }
.contact-title { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 6vw, 72px); line-height: 1; margin: 0 0 32px; max-width: 16ch; text-wrap: balance; }
.contact-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.mail { all: unset; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.6vw, 28px); padding: 12px 0; border-bottom: 2px solid var(--accent); margin-right: 12px; display: inline-flex; gap: 12px; align-items: baseline; user-select: all; word-break: break-all; }
.mail:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.copy { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--muted); }
.refs { color: var(--muted); font-size: 14px; margin: 28px 0 0; }

.footer { display: flex; justify-content: space-between; gap: 12px; padding-block: 24px calc(24px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; max-width: var(--max); }
.footer a { text-decoration: none; }

.toast { position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: translate(-50%, 20px); opacity: 0; background: var(--accent); color: var(--on-accent); font-weight: 700; padding: 10px 16px; border-radius: 999px; transition: all .25s; pointer-events: none; z-index: 50; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { max-width: 360px; }
  .carousel { flex: none; min-height: 0; aspect-ratio: 2 / 3; }
  .about-grid, .projects, .skills { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat.main { grid-column: 1 / -1; }
  .employers { grid-template-columns: repeat(2, 1fr); }
  .employers li:nth-child(2) { border-right: 0; }
  .employers li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pages { grid-template-columns: repeat(2, 1fr); }
  .job-head { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .job-head time { grid-column: 1 / -1; }
  .job-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .job-metric { display: none; }
  .stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* SAHNEDE */
.stage { display: grid; grid-template-columns: 1fr 1.1fr .8fr; gap: 16px; align-items: stretch; }
.stage figure { margin: 0; }
.stage img { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius); }
.stage-main img { aspect-ratio: 3 / 4; }
.stage-text { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 12px; align-content: start; }
.stage-text .who { margin: 0; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.stage-text h3 { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); line-height: 1.05; }
.stage-text p { margin: 0; color: var(--muted); }
.stage-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.stage-thumbs img { aspect-ratio: 4 / 5; border-radius: 10px; }
.stage-award { position: relative; }
.stage-award img { aspect-ratio: 3 / 4; }
.stage-award figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(14,14,12,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 10px; padding: 10px 12px; display: grid; gap: 2px; }
.stage-award figcaption b { font-size: 14px; }
.stage-award figcaption span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .stage { grid-template-columns: 1fr 1fr; }
  .stage-text { grid-column: 1 / -1; grid-row: 1; }
}
@media (max-width: 560px) {
  .stage { grid-template-columns: 1fr; }
}

/* SAHADA: yatay foto şeridi */
.strip-nav { display: flex; align-items: center; gap: 10px; }
.strip-btn { all: unset; cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: border-color .15s, background .15s; }
.strip-btn:hover { border-color: var(--accent); color: var(--accent); }
.strip-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.strip { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.strip:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 8px; }
.shot { all: unset; cursor: zoom-in; flex: none; scroll-snap-align: start; position: relative; height: clamp(320px, 42vw, 460px); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.shot img { height: 100%; width: auto; max-width: none; display: block; transition: transform .5s; }
.shot:hover img { transform: scale(1.03); }
.shot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.shot .ev { position: absolute; left: 12px; top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; background: var(--accent); color: var(--on-accent); padding: 3px 8px; border-radius: 4px; }
.shot .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 14px 12px; font-size: 13px; line-height: 1.4; color: #F2EFE6; background: linear-gradient(transparent, rgba(0,0,0,.78)); }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,8,7,.94); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: calc(16px + env(safe-area-inset-top, 0px)) 16px calc(16px + env(safe-area-inset-bottom, 0px)); }
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: 12px; min-width: 0; }
.lightbox img { max-height: 82vh; max-width: 100%; width: auto; border-radius: 10px; }
.lightbox figcaption { color: var(--muted); font-size: 14px; text-align: center; }
.lightbox figcaption b { color: var(--accent); font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-right: 8px; }
.lb-arrow, .lb-close { all: unset; cursor: pointer; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); font-size: 18px; }
.lb-arrow:hover, .lb-close:hover { border-color: var(--accent); color: var(--accent); }
.lb-close { position: absolute; top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lb-arrow:focus-visible, .lb-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 640px) {
  .strip-nav .hint { display: none; }
  .lightbox { grid-template-columns: 1fr; }
  .lb-arrow { position: absolute; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .lb-arrow.prev { left: 20px; } .lb-arrow.next { right: 20px; }
}
