/* ============================================================
   XBear Event-Media — v3 Redesign
   Sade, modern, kurumsal. 4 tema: slate / light / cream / midnight
   ============================================================ */

/* ---------- THEMES ---------- */
:root,
html[data-theme="slate"] {
  --accent: #C24B39;
  --accent-strong: #D25A47;
  --accent-soft: rgba(194, 75, 57, 0.12);
  --bg: #14161B;
  --bg-2: #191C22;
  --surface: #1D2027;
  --surface-2: #23262F;
  --ink: #E9EBEF;
  --ink-2: #A7ADB8;
  --ink-3: #7B8290;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --scrim: rgba(10, 11, 14, 0.55);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(20, 22, 27, 0.82);
  --trail-ink: rgba(233, 235, 239, 0.5);
  color-scheme: dark;
}

html[data-theme="light"] {
  --accent: #B8402F;
  --accent-strong: #A93A2A;
  --accent-soft: rgba(184, 64, 47, 0.08);
  --bg: #F5F6F8;
  --bg-2: #EEF0F3;
  --surface: #FFFFFF;
  --surface-2: #F8F9FB;
  --ink: #191C22;
  --ink-2: #555C68;
  --ink-3: #838A96;
  --line: #E3E6EB;
  --line-strong: #D2D6DD;
  --scrim: rgba(12, 13, 16, 0.5);
  --shadow: 0 18px 48px rgba(25, 28, 34, 0.12);
  --shadow-sm: 0 6px 20px rgba(25, 28, 34, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.86);
  --trail-ink: rgba(25, 28, 34, 0.45);
  color-scheme: light;
}

html[data-theme="cream"] {
  --accent: #C62300;
  --accent-strong: #F14A00;
  --accent-soft: rgba(241, 74, 0, 0.14);
  --bg: #1F0510;
  --bg-2: #270619;
  --surface: #4D0F28;
  --surface-2: #5C1330;
  --ink: #FBEEE6;
  --ink-2: #D9B4C0;
  --ink-3: #A07C89;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --scrim: rgba(15, 2, 8, 0.6);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.35);
  --nav-bg: rgba(31, 5, 16, 0.85);
  --trail-ink: rgba(251, 238, 230, 0.5);
  color-scheme: dark;
}

html[data-theme="midnight"] {
  --accent: #D65847;
  --accent-strong: #E36853;
  --accent-soft: rgba(214, 88, 71, 0.14);
  --bg: #08090D;
  --bg-2: #0C0E13;
  --surface: #10121A;
  --surface-2: #171A23;
  --ink: #F0F2F6;
  --ink-2: #9BA1AD;
  --ink-3: #6F7684;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --scrim: rgba(0, 0, 0, 0.6);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.45);
  --nav-bg: rgba(8, 9, 13, 0.85);
  --trail-ink: rgba(240, 242, 246, 0.5);
  color-scheme: dark;
}

html[data-theme="navy"] {
  --accent: #E0563C;
  --accent-strong: #F2684A;
  --accent-soft: rgba(224, 86, 60, 0.14);
  --bg: #040D1F;
  --bg-2: #081527;
  --surface: #0C1C33;
  --surface-2: #12233D;
  --ink: #EAF1FF;
  --ink-2: #A9B8D0;
  --ink-3: #6E7C99;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --scrim: rgba(2, 6, 15, 0.6);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.4);
  --nav-bg: rgba(4, 13, 31, 0.85);
  --trail-ink: rgba(234, 241, 255, 0.5);
  color-scheme: dark;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: "Instrument Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color 0.35s ease, color 0.35s ease;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent-strong); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }
h1, h2, h3, h4, h5 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(1160px, 100% - 48px); margin-inline: auto; }
.section { padding: 104px 0; }

/* ---------- SECTION HEADERS ---------- */
.section-tag, .about-tag, .vm-section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 16px;
}
.section-tag::before, .about-tag::before, .vm-section-tag .tag-line {
  content: ""; display: inline-block; width: 26px; height: 1.5px; background: var(--accent);
}
.vm-section-tag .tag-line { content: none; }
.section-title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.title-claw {
  width: 0.56em; height: 0.72em; margin-right: 0.24em; vertical-align: middle;
  color: var(--accent-strong); transform: translateY(-0.04em); fill: currentColor;
}
.section-subtitle { color: var(--ink-2); max-width: 560px; font-size: 17px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center, .text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin-inline: auto; }
.instincts-motto {
  margin-top: 18px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-strong);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 0;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; transition: all 0.22s ease;
}
.btn i { font-size: 17px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink-2); border: none; }
.btn-ghost:hover { color: var(--accent-strong); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: var(--bg); transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-logo { width: 460px; max-width: 75vw; animation: pulse 1.4s ease-in-out infinite; }
.preloader.hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(0.97); } 50% { opacity: 1; transform: scale(1); } }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0; transition: transform 0.45s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.nav-hidden { transform: translateY(-100%); }
.navbar .container { display: flex; align-items: center; justify-content: flex-start; gap: clamp(24px, 4vw, 56px); position: relative; z-index: 1; }
.navbar .container > .nav-links { margin-left: 0; }
/* backdrop-filter/background live on a ::before layer, not on .navbar itself:
   a backdrop-filter (like a transform) turns its element into the containing
   block for position:fixed descendants, which would confine the fullscreen
   mobile .nav-links overlay to the navbar's own small box instead of the
   viewport. Keeping .navbar itself filter-free avoids that trap. */
.navbar::before {
  content: ''; position: absolute; inset: 0;
  background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity 0.3s ease;
}
.navbar.scrolled::before, .navbar-solid::before { opacity: 1; }
.navbar.scrolled, .navbar-solid { padding: 12px 0; }
.nav-logo { height: 54px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .nav-logo, .navbar-solid .nav-logo { height: 44px; }
html[data-theme="light"] .nav-logo,
html[data-theme="light"] .footer-logo,
html[data-theme="light"] .preloader-logo {
  filter: drop-shadow(0 0 1px #090A0F) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links > li > a {
  font-size: 14.5px; font-weight: 550; color: var(--ink-2); letter-spacing: 0.01em;
  padding: 6px 0; position: relative; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--ink); }
.nav-claw {
  width: 11px; height: 14px; margin-right: 5px; vertical-align: -2px;
  color: var(--accent-strong); fill: currentColor; opacity: 0.85;
}
/* şeffaf navbar hero üzerindeyken linkler beyaz kalsın */
.navbar:not(.scrolled):not(.navbar-solid) .nav-links > li > a { color: rgba(255, 255, 255, 0.82); }
.navbar:not(.scrolled):not(.navbar-solid) .nav-links > li > a:hover,
.navbar:not(.scrolled):not(.navbar-solid) .nav-links > li > a.active { color: #fff; }
.navbar:not(.scrolled):not(.navbar-solid) .theme-switcher-btn:hover { background: rgba(255, 255, 255, 0.12); }
/* mobil açık menü her zaman tema renklerinde */
.navbar:not(.scrolled):not(.navbar-solid) .nav-links.open > li > a { color: var(--ink-2); }
.navbar:not(.scrolled):not(.navbar-solid) .nav-links.open > li > a:hover,
.navbar:not(.scrolled):not(.navbar-solid) .nav-links.open > li > a.active { color: var(--ink); }
.nav-links > li > a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
}
.nav-btn-highlight {
  background: var(--accent); border-radius: 0;
  padding: 10px 18px !important; color: #fff !important; display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s ease;
}
.nav-btn-highlight:hover { background: var(--accent-strong); color: #fff !important; }
.nav-btn-highlight::after { display: none !important; }

/* Theme switcher */
.theme-nav-item { position: relative; }
.theme-switcher-dropdown { position: relative; }
.theme-switcher-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  color: var(--ink-2); padding: 0; font-size: 13.5px;
  transition: all 0.2s ease;
}
.theme-switcher-btn:hover { color: var(--ink); background: var(--accent-soft); }
.theme-btn-inner { display: inline-flex; align-items: center; }
.theme-btn-label { display: none; }
.theme-current-icon { font-size: 20px; color: var(--accent-strong); }
.theme-arrow { display: none; }
.theme-dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0; width: 176px;
  background: #f8f4ec; border: 1px solid #ddd5c2; border-radius: 0;
  box-shadow: var(--shadow); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.22s ease; z-index: 300;
}
.theme-switcher-dropdown.active .theme-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-dropdown-header { display: none; }
.theme-option-btn {
  display: flex; align-items: center; gap: 11px; width: 100%;
  background: transparent; border: none;
  padding: 10px 18px; text-align: left; transition: background 0.15s ease;
}
.theme-option-btn:hover { background: #efe9db; }
.theme-option-btn.active { box-shadow: inset 2px 0 0 #b8402f; }
.theme-option-icon {
  display: grid; place-items: center;
  color: #8d8371; font-size: 17px; flex-shrink: 0; transition: color 0.15s ease;
}
.theme-option-btn:hover .theme-option-icon, .theme-option-btn.active .theme-option-icon { color: #b8402f; }
.theme-info { display: flex; flex-direction: column; flex: 1; }
.theme-name { font-size: 13.5px; font-weight: 550; color: #5f5749; }
.theme-option-btn:hover .theme-name, .theme-option-btn.active .theme-name { color: #26211a; }
.theme-desc { display: none; }
.theme-check-icon { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 300; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s ease; border-radius: 0; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO / IRIS GATEWAY ---------- */
.gateway {
  height: 320vh;
  position: relative;
  z-index: 5;
  background: transparent;
}
.gateway-pin {
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  background: #090a0e;
}
.gateway.is-through {
  pointer-events: none;
}
.gateway-pin.is-through {
  background: transparent;
  pointer-events: none;
}
.hero-media,
.hero-poster,
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-poster,
.hero-video { object-fit: cover; }
.hero-media,
.hero-veil { transition: opacity 0.55s ease; }
.gateway-pin.is-through .hero-media,
.gateway-pin.is-through .hero-veil {
  opacity: 0;
  pointer-events: none;
}
.hero-video { opacity: 0; }
.hero-video.is-ready { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.55) 0%, rgba(9, 10, 14, 0.08) 28%, rgba(9, 10, 14, 0.05) 58%, rgba(9, 10, 14, 0.72) 100%),
    radial-gradient(ellipse at 54% 48%, transparent 18%, rgba(9, 10, 14, 0.28) 70%);
}
.hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-content {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: clamp(88px, 14vh, 140px);
  width: min(1160px, 100% - 48px); margin-inline: auto;
  padding-top: 0;
  transform-origin: 18% 80%;
  will-change: transform, opacity;
}
.hero-title {
  color: #fff; font-size: clamp(46px, 7.4vw, 92px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 26px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hero-title span { color: var(--accent-strong); }
.hero-slogan { color: rgba(255, 255, 255, 0.78); font-size: clamp(16px, 1.6vw, 19px); max-width: 620px; margin-bottom: 40px; }
.hero-slogan em { font-style: normal; color: #fff; font-weight: 600; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.gateway .btn-outline { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.gateway .btn-outline:hover { border-color: #fff; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
  color: rgba(255, 255, 255, 0.6); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.25); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 110%; } }

.gateway-hold {
  height: 0.4vh;
  position: relative;
  z-index: 1;
  background: var(--bg);
  scroll-margin-top: 0;
}

@media (max-width: 880px) {
  .gateway { height: 280vh; }
  .hero-content { width: min(1160px, 100% - 32px); bottom: clamp(96px, 16vh, 150px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-line::after { animation: none; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg); }
.about.iris-next {
  position: relative;
  z-index: 1;
  margin-top: -120vh;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.about-image--video { position: relative; border-radius: 0; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-video { width: 100%; height: 100%; aspect-ratio: 9 / 12.5; object-fit: cover; background: #000; pointer-events: none; display: block; }
.about-video-hit {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 0; border: 0; cursor: pointer;
  background: transparent; color: #fff; z-index: 2;
}
.about-video-hit:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }
.about-video-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(9, 10, 14, 0.58);
  backdrop-filter: blur(8px);
  font-size: 28px;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.about-video-icon i { display: block; line-height: 1; }
.about-image--video.is-playing .about-video-icon { opacity: 0; transform: scale(0.88); }
.about-image--video.is-playing .about-video-hit:hover .about-video-icon,
.about-image--video.is-playing .about-video-hit:focus-visible .about-video-icon {
  opacity: 1; transform: scale(1); background: rgba(9, 10, 14, 0.7);
}
.about-content h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 22px; }
.about-content p { color: var(--ink-2); margin-bottom: 16px; font-size: 16.5px; }
.about-content strong { color: var(--ink); }
.about-hashtag {
  display: inline-block; margin: 8px 0 34px; color: var(--accent-strong);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
}
.about-stats { display: flex; border-top: 1px solid var(--line); padding-top: 28px; }
.stat-item { flex: 1; }
.stat-item + .stat-item { border-left: 1px solid var(--line); padding-left: 28px; }
.stat-number {
  font-family: "Archivo", sans-serif; font-size: 34px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); display: flex; align-items: baseline;
}
.stat-number span:last-child, .stat-number span.accent { color: var(--accent-strong); }
.stat-label { color: var(--ink-3); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ---------- INSTINCTS (Patika) ---------- */
.instincts { background: transparent; border: none; position: relative; overflow: hidden; }
.trail { position: relative; margin-top: 24px; }
.trail-node {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px);
  align-items: center; padding: 12px 0;
}
.trail-node--right .trail-copy { order: 1; }
.trail-node--right .trail-scene { order: 2; }
.trail-copy { max-width: 470px; }
.trail-node--left .trail-copy { justify-self: end; text-align: right; }
.trail-node--left .trail-scene { justify-self: start; }
.trail-node--right .trail-copy { justify-self: start; text-align: left; }
.trail-node--right .trail-scene { justify-self: end; }
.trail-num {
  font-family: "Archivo", sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.24em; color: var(--accent-strong); display: block; margin-bottom: 10px;
}
.trail-title { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: 0.02em; margin-bottom: 6px; }
.trail-sub { display: block; color: var(--ink-3); font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.trail-desc { color: var(--ink-2); font-size: 16px; }
.trail-scene { color: var(--trail-ink); width: min(300px, 100%); }
.trail-scene svg { width: 100%; height: auto; display: block; }
.trail-scene .scene-accent { color: var(--accent-strong); }
.trail-seg { position: relative; height: clamp(170px, 24vw, 270px); color: var(--trail-ink); }
.trail-seg .deco { position: absolute; height: auto; }

/* ---------- SERVICES ---------- */
.services { background: var(--bg); }
.services-grid {
  margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--line-strong); border-left: 1px solid var(--line);
}
.service-cell {
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 230px; padding: 26px 24px 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.service-cell:hover { background: var(--surface); }
.sv-num { font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; color: var(--accent-strong); }
.sv-title { font-size: 18px; line-height: 1.25; margin: auto 0 10px; color: var(--ink); }
.sv-desc { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.sv-cta { margin-top: 18px; }
.service-cell--cta { background: var(--surface-2); }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-cell { min-height: 0; padding: 22px 18px 26px; }
  .sv-title { margin-top: 14px; }
}

/* ---------- NUMBERS ---------- */
.numbers { padding: 72px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-card { text-align: center; padding: 8px 20px; }
.number-card + .number-card { border-left: 1px solid var(--line); }
.number-value {
  font-family: "Archivo", sans-serif; font-size: clamp(38px, 4.4vw, 56px); font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
  display: flex; justify-content: center; align-items: baseline;
}
.number-value .accent { color: var(--accent-strong); }
.number-label { color: var(--ink-3); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--bg); }
.gallery-category-header { max-width: 640px; }
.gallery-category-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 12px;
}
.gallery-category-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); }
.gallery-category-title { font-size: clamp(26px, 3vw, 36px); margin-bottom: 10px; }
.gallery-category-header p { color: var(--ink-2); }
.gallery-row { margin-top: 28px; }
.gallery-row-label {
  width: min(1160px, 100% - 48px); margin: 0 auto 14px;
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.gallery-row-label i { font-size: 16px; color: var(--accent-strong); }
.gallery-row-hint { margin-left: auto; display: flex; align-items: center; gap: 6px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-3); font-size: 12.5px; }
.gallery-scroll {
  display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden;
  padding: 4px calc((100vw - min(1160px, 100vw - 48px)) / 2);
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll-item {
  position: relative; flex: 0 0 320px; width: 320px; height: 220px;
  border-radius: 0; overflow: hidden; scroll-snap-align: start;
  border: 1px solid var(--line); cursor: pointer; background: var(--surface);
}
.gallery-scroll-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease; user-select: none; -webkit-user-drag: none;
}
.gallery-scroll-item:hover img { transform: scale(1.05); }
.gallery-scroll-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 14px 16px;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.78), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-scroll-item:hover .gallery-scroll-overlay { opacity: 1; }
.gallery-scroll-overlay span { color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; }
.gallery-instagram-cta { display: flex; justify-content: center; margin-top: 36px; }
.gallery-ig-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border: 1px solid var(--line-strong); border-radius: 0;
  color: var(--ink); font-weight: 600; font-size: 14.5px; transition: all 0.2s ease;
}
.gallery-ig-btn i { font-size: 18px; color: var(--accent-strong); }
.gallery-ig-btn:hover { border-color: var(--accent); color: var(--accent-strong); }

/* Reel cards (JS-injected) */
.gallery-scroll--reels { align-items: flex-start; }
.reel-card { flex: 0 0 172px; width: 172px; scroll-snap-align: start; cursor: pointer; }
.reel-thumb {
  position: relative; aspect-ratio: 9 / 16; border-radius: 0; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
}
.reel-thumb img, .reel-thumb video { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.reel-thumb--contain img, .reel-thumb--contain video { object-fit: contain; background: #000; }
.reel-thumb--rotate90 img, .reel-thumb--rotate90 video {
  position: absolute; left: 50%; top: 50%;
  width: 177.78%; height: 177.78%; max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.reel-card:hover .reel-thumb img, .reel-card:hover .reel-thumb video { transform: scale(1.04); }
.reel-card:hover .reel-thumb--rotate90 img, .reel-card:hover .reel-thumb--rotate90 video {
  transform: translate(-50%, -50%) rotate(-90deg) scale(1.04);
}
.reel-thumb--placeholder { display: grid; place-items: center; }
.reel-play-icon {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10, 11, 14, 0.6); backdrop-filter: blur(4px);
  color: #fff; font-size: 15px; z-index: 2;
  transition: all 0.25s ease;
}
.reel-card:hover .reel-play-icon { background: var(--accent); border-color: var(--accent); }
.reel-badge {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  padding: 28px 10px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.reel-badge i { font-size: 12px; }
.reel-badge--media { background: linear-gradient(transparent, rgba(100, 0, 50, 0.85)); }
.reel-title { margin-top: 9px; font-size: 13px; font-weight: 600; color: var(--ink-2); line-height: 1.35; }
.reel-card:hover .reel-title { color: var(--ink); }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg-2); border-block: 1px solid var(--line); }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.testimonial-card { padding: 32px 32px 8px; display: flex; flex-direction: column; gap: 18px; }
.testimonial-card:first-child { padding-left: 0; }
.testimonial-card + .testimonial-card { border-left: 1px solid var(--line); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { width: 15px; height: 15px; fill: var(--accent-strong); }
.testimonial-card blockquote { color: var(--ink-2); font-size: 15.5px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong);
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 13.5px;
}
.testimonial-info h5 { font-size: 14.5px; font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg); }
.contact-info h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 620px; margin-bottom: 16px; }
.contact-info > p { color: var(--ink-2); max-width: 520px; margin-bottom: 44px; font-size: 17px; }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.contact-item { display: flex; gap: 16px; padding: 28px 24px 8px 0; }
.contact-item + .contact-item { border-left: 1px solid var(--line); padding-left: 28px; }
.contact-item-icon { font-size: 24px; color: var(--accent-strong); line-height: 1.3; }
.contact-item-text h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; font-weight: 600; }
.contact-item-text p, .contact-item-text a { display: block; color: var(--ink); font-size: 16px; font-weight: 550; }
.contact-item-text a:hover { color: var(--accent-strong); }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-content { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-2); font-size: 14.5px; max-width: 300px; }
.footer-col h4 { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { color: var(--ink-2); font-size: 14.5px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--ink-3); font-size: 13.5px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--ink-3); font-size: 13.5px; }
.footer-bottom-links a:hover { color: var(--ink); }

/* ---------- FLOATING ELEMENTS ---------- */
.whatsapp-btn {
  position: fixed; bottom: 26px; right: 26px; z-index: 180;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #22b358; color: #fff; font-size: 26px;
  box-shadow: var(--shadow-sm); transition: transform 0.22s ease;
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.mobile-floating-apply-btn {
  display: none; position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 179; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: 0; box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-floating-apply-btn:hover { color: #fff; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.19s; }
.reveal-delay-4 { transition-delay: 0.26s; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center;
  background: rgba(6, 7, 9, 0.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 24px;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-stage { max-width: min(1080px, 92vw); max-height: 86vh; display: flex; flex-direction: column; gap: 14px; }
.lightbox-stage img {
  max-width: 100%; max-height: calc(86vh - 50px); object-fit: contain; border-radius: 0;
  transition: opacity 0.15s ease; margin-inline: auto;
}
.lightbox-stage img.is-swapping { opacity: 0; }
.lightbox-caption { display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.lightbox-counter { color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.lightbox-close {
  position: absolute; top: 22px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff;
  font-size: 19px; display: grid; place-items: center; transition: background 0.2s ease; z-index: 2;
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff;
  font-size: 20px; display: grid; place-items: center; transition: background 0.2s ease; z-index: 2;
}
.lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-nav--prev { left: 22px; }
.lightbox-nav--next { right: 22px; }

/* ---------- REEL POPUP ---------- */
.reel-popup-overlay {
  position: fixed; inset: 0; z-index: 510; display: flex; align-items: center; justify-content: center;
  background: rgba(6, 7, 9, 0.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px;
}
.reel-popup-overlay.active { opacity: 1; visibility: visible; }
.reel-popup {
  background: var(--surface); border: 1px solid var(--line); border-radius: 0;
  width: min(430px, 94vw); max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow);
}
.reel-popup.is-landscape { width: min(960px, 94vw, calc((92vh - 140px) * 16 / 9)); }
.reel-popup-body.is-video.is-landscape {
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  overflow: hidden; background: #000;
}
.reel-popup-viewport {
  position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000;
}
.reel-popup-viewport .reel-popup-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-height: none; aspect-ratio: auto; object-fit: contain;
}
.reel-popup-viewport .reel-popup-video--rotate90 {
  position: absolute; left: 50%; top: 50%;
  width: 56.25%; height: 177.78%; max-height: none; aspect-ratio: auto;
  object-fit: cover; transform: translate(-50%, -50%) rotate(-90deg);
}
.reel-popup-scrub {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 12px; background: #0c0d10; flex-shrink: 0;
}
.reel-popup-toggle {
  width: 34px; height: 34px; flex-shrink: 0; border: 0; padding: 0;
  display: grid; place-items: center; background: transparent; color: #fff; font-size: 18px; cursor: pointer;
}
.reel-popup-seek {
  flex: 1; min-width: 0; height: 4px; margin: 0; accent-color: var(--accent);
  cursor: pointer;
}
.reel-popup-time {
  flex-shrink: 0; color: rgba(255, 255, 255, 0.72); font-size: 12px; font-variant-numeric: tabular-nums;
}
.reel-popup-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.reel-popup-account { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink); }
.reel-popup-account i { color: var(--accent-strong); font-size: 18px; }
.reel-popup-counter { color: var(--ink-3); font-weight: 500; font-size: 12.5px; }
.reel-popup-actions { display: flex; align-items: center; gap: 10px; }
.reel-popup-ig-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.reel-popup-ig-link:hover { color: var(--accent-strong); }
.reel-popup-close {
  width: 34px; height: 34px; border-radius: 0; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2); font-size: 16px; transition: all 0.2s ease;
}
.reel-popup-fill {
  width: 34px; height: 34px; border-radius: 0; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2); font-size: 16px;
  cursor: pointer; transition: all 0.2s ease;
}
.reel-popup-fill:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

.reel-popup-overlay.is-immersive {
  padding: 0; align-items: stretch; justify-content: stretch;
}
.reel-popup-overlay.is-immersive .reel-popup-nav { display: none; }
.reel-popup-overlay.is-immersive .reel-popup {
  position: relative; width: 100%; max-width: none; height: 100%; max-height: none;
  border: 0; border-radius: 0; box-shadow: none; overflow: hidden;
}
.reel-popup-overlay.is-immersive .reel-popup-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  background: linear-gradient(rgba(0, 0, 0, 0.58), transparent);
  border-bottom: 0; padding: max(12px, env(safe-area-inset-top)) 14px 28px;
}
.reel-popup-overlay.is-immersive .reel-popup-account,
.reel-popup-overlay.is-immersive .reel-popup-counter,
.reel-popup-overlay.is-immersive .reel-popup-ig-link { color: #fff; }
.reel-popup-overlay.is-immersive .reel-popup-close,
.reel-popup-overlay.is-immersive .reel-popup-fill {
  border-color: rgba(255, 255, 255, 0.28); color: #fff;
}
.reel-popup-overlay.is-immersive .reel-popup-body {
  flex: 1; min-height: 0; height: auto; overflow: hidden;
}
.reel-popup-overlay.is-immersive .reel-popup-body.is-video.is-landscape {
  flex: 1; min-height: 0;
}
.reel-popup-overlay.is-immersive .reel-popup-viewport {
  flex: 1; width: 100%; height: auto; min-height: 0; aspect-ratio: auto;
  container-type: size;
}
.reel-popup-overlay.is-immersive .reel-popup-video {
  width: 100%; height: 100%; max-height: none; aspect-ratio: auto; object-fit: cover;
}
.reel-popup-overlay.is-immersive .reel-popup-viewport .reel-popup-video--rotate90 {
  width: 100cqh; height: calc(100cqh * 16 / 9); max-height: none;
  object-fit: cover;
}
.reel-popup-overlay.is-immersive .reel-popup-scrub {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 10px 14px max(14px, env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
}
.reel-popup-body { overflow-y: auto; min-height: 200px; position: relative; background: var(--surface-2); }
.reel-popup-body.is-video { display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }
.reel-popup-video { width: 100%; max-height: calc(92vh - 60px); aspect-ratio: 9 / 16; object-fit: contain; background: #000; }
.reel-popup-video--landscape { aspect-ratio: 16 / 9; }
.reel-popup-footer { padding: 13px 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.reel-popup-footer p { font-size: 12.5px; color: var(--ink-3); }
.reel-ig-login-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 0; background: var(--accent); color: #fff; font-weight: 600; font-size: 13.5px;
}
.reel-ig-login-btn:hover { background: var(--accent-strong); color: #fff; }
.reel-popup-nav {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 14px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff;
  font-size: 20px; display: grid; place-items: center; transition: background 0.2s ease;
}
.reel-popup-nav:hover { background: var(--accent); border-color: var(--accent); }

/* Skeleton */
.reel-popup-loading { padding: 18px; }
.reel-skeleton { display: flex; flex-direction: column; gap: 12px; }
.reel-skeleton-header { display: flex; gap: 10px; align-items: center; }
.reel-skeleton-avatar { width: 38px; height: 38px; border-radius: 50%; }
.reel-skeleton-text { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.reel-skeleton-line { height: 10px; border-radius: 0; width: 100%; }
.reel-skeleton-line.is-short { width: 45%; }
.reel-skeleton-line.is-shorter { width: 28%; }
.reel-skeleton-line.is-medium { width: 65%; }
.reel-skeleton-media { aspect-ratio: 4 / 5; border-radius: 0; }
.reel-skeleton-actions { display: flex; gap: 10px; }
.reel-skeleton-icon { width: 26px; height: 26px; border-radius: 0; }
.reel-skeleton-avatar, .reel-skeleton-line, .reel-skeleton-media, .reel-skeleton-icon {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--line) 50%, var(--surface-2) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   VİZYON & MİSYON PAGE
   ============================================================ */
.vm-container { padding: 148px 0 96px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-3); font-size: 14px; font-weight: 550; margin-bottom: 44px;
}
.back-link:hover { color: var(--accent-strong); }
.vm-header-content { max-width: 760px; }
.vm-page-title { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.vm-page-lead { color: var(--ink-2); font-size: 18px; }
.vm-content-section { margin-top: 72px; }
.vm-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.vm-corporate-block { border-top: 2px solid var(--line-strong); padding: 40px 0 0; }
.vm-block-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 20px;
}
.vm-block-badge::before { content: ""; display: inline-block; width: 26px; height: 1.5px; background: var(--accent); }
.vm-block-title { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 20px; }
.vm-block-text p { color: var(--ink-2); margin-bottom: 15px; font-size: 15.5px; }
.vm-block-text p.lead-text { color: var(--ink); font-size: 17px; font-weight: 500; }
.vm-block-text strong { color: var(--ink); }
.vm-corporate-quote {
  display: flex; gap: 14px; margin: 22px 0 6px;
  padding: 6px 0 6px 22px; border-left: 2px solid var(--accent);
  color: var(--ink); font-size: 15.5px; font-style: italic;
}
.vm-corporate-quote i { color: var(--accent-strong); font-size: 20px; flex-shrink: 0; }
.vm-section-divider { height: 1px; background: var(--line); margin: 72px 0; }
.vm-manifesto-corporate { padding-top: 48px; max-width: 860px; }
.vm-manifesto-corporate-title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 28px; }
.vm-lead-paragraph { font-size: 17.5px !important; color: var(--ink) !important; }
.vm-accent-statement {
  font-family: "Archivo", sans-serif; font-size: 21px !important; font-weight: 600;
  color: var(--accent-strong) !important; margin: 24px 0 !important;
}
.vm-manifesto-closing { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 28px; }
.vm-closing-highlight { font-size: 18px !important; font-weight: 600; color: var(--ink) !important; }
.vm-signature-block { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; }
.vm-brand-name { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 0.05em; color: var(--ink); }
.vm-brand-tagline { color: var(--accent-strong); font-weight: 600; font-size: 15px; }
.vm-section-header { max-width: 640px; margin-bottom: 44px; }
.vm-section-heading { font-size: clamp(28px, 3.4vw, 38px); margin: 14px 0 12px; }
.vm-section-subtext { color: var(--ink-2); }
.vm-values-corporate-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.vm-val-card { display: flex; gap: 22px; padding: 32px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.25s ease; }
.vm-val-card:hover { background: var(--surface); }
.vm-val-card-full { grid-column: 1 / -1; }
.vm-val-num { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px; color: var(--accent-strong); letter-spacing: 0.06em; padding-top: 3px; }
.vm-val-title { font-size: 18.5px; font-weight: 600; margin-bottom: 8px; }
.vm-val-desc { color: var(--ink-2); font-size: 15px; }
.vm-corporate-cta { margin-top: 88px; border-top: 2px solid var(--line-strong); padding: 44px 0 0; }
.vm-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.vm-cta-text h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 10px; }
.vm-cta-text p { color: var(--ink-2); max-width: 480px; }
.vm-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BAŞVURU PAGE
   ============================================================ */
.application-container { padding: 148px 0 96px; }
.app-form-wrapper { max-width: 760px; margin-inline: auto; }
.app-header-card { border-top: 2px solid var(--accent); padding: 36px 0 0; margin-bottom: 52px; }
.app-header-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 18px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease-in-out infinite; }
.app-title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 20px; }
.app-intro p { color: var(--ink-2); margin-bottom: 12px; font-size: 15.5px; }
.app-intro strong { color: var(--ink); }
.intro-subtitle { font-weight: 600; color: var(--ink) !important; margin-top: 20px !important; }
.intro-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 12px 0 18px; }
.intro-list li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-2); font-size: 15px; }
.intro-list li i { color: var(--accent-strong); font-size: 16px; position: relative; top: 2px; flex-shrink: 0; }
.intro-list strong { font-weight: 550; }
.intro-footer-text { font-size: 16px !important; }
.app-required-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 13px; }
.required-star { color: var(--accent-strong); font-weight: 700; }
.app-form { display: flex; flex-direction: column; gap: 52px; }
.app-section-card { border-top: 2px solid var(--line-strong); padding: 36px 0 0; }
.app-section-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.app-section-header h2 { font-size: 22px; margin-bottom: 6px; }
.section-subtext { color: var(--ink-3); font-size: 14px; }
.form-card-field { margin-bottom: 26px; }
.form-card-field:last-child { margin-bottom: 0; }
.field-label { display: block; font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 6px; line-height: 1.5; }
.field-subtitle { font-weight: 500; color: var(--ink-3); font-size: 13.5px; }
.field-caption { display: block; color: var(--ink-3); font-size: 13px; margin-bottom: 10px; }
.form-card-field input[type="text"],
.form-card-field input[type="email"],
.form-card-field input[type="tel"],
.form-card-field textarea {
  width: 100%; margin-top: 6px;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 0;
  padding: 13px 15px; font-size: 15px; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease; resize: vertical;
}
.form-card-field input:focus, .form-card-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-card-field input::placeholder, .form-card-field textarea::placeholder { color: var(--ink-3); }
.form-card-field.has-error input, .form-card-field.has-error textarea { border-color: #e05252; }
.form-card-field.has-success input, .form-card-field.has-success textarea { border-color: #2f9e5f; }
.field-error-msg { color: #e05252; font-size: 13px; margin-top: 7px; display: flex; align-items: center; gap: 6px; }
.form-warning-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(224, 82, 82, 0.1); border: 1px solid rgba(224, 82, 82, 0.4);
  color: #e05252; border-radius: 0; padding: 14px 18px; font-size: 14.5px; font-weight: 550;
}
.send-copy-field { margin-top: 4px; }
.checkbox-container { display: flex; align-items: center; gap: 10px; cursor: pointer; color: var(--ink-2); font-size: 14.5px; }
.checkbox-container input { width: 17px; height: 17px; accent-color: var(--accent); }
.checkbox-label-text { display: inline-flex; align-items: center; gap: 7px; }
.app-actions-card { display: flex; align-items: center; gap: 14px; }
.app-submit-btn { padding: 14px 34px; font-size: 15.5px; }
.app-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.app-success-card { border-top: 2px solid #22b358; padding: 48px 0 0; }
.app-success-card.hidden { display: none; }
.success-icon-wrapper { font-size: 54px; color: #22b358; margin-bottom: 14px; }
.app-success-card h2 { font-size: 26px; margin-bottom: 12px; }
.app-success-card p { color: var(--ink-2); max-width: 520px; margin: 0 0 28px; }
.success-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   WORK TEASER (ana sayfa)
   ============================================================ */
.work-teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.work-teaser-card {
  position: relative; display: block; min-height: min(72svh, 640px); overflow: hidden;
  border: 1px solid var(--line); color: inherit; background: var(--surface);
}
.work-teaser-card img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.work-teaser-card:hover img { transform: scale(1.05); }
.work-teaser-overlay {
  position: relative; z-index: 1; min-height: min(72svh, 640px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.28) 55%, transparent 100%);
}
.work-teaser-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 10px;
}
.work-teaser-overlay h3 { color: #fff; font-size: clamp(26px, 3vw, 40px); margin-bottom: 10px; }
.work-teaser-overlay p { color: rgba(255, 255, 255, 0.78); font-size: 15px; margin-bottom: 16px; max-width: 36ch; }
.work-teaser-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 600; font-size: 14.5px;
}
.work-teaser-cta i { transition: transform 0.2s ease; }
.work-teaser-card:hover .work-teaser-cta i { transform: translateX(4px); }
.work-teaser-card:hover { color: inherit; }

@media (min-width: 1081px) {
  .media-page .work-page-main,
  .event-page .work-page-main { padding-left: 48px; }
  .media-page .work-page-main--flush,
  .event-page .work-page-main--flush { padding-left: 0; }
}

/* ============================================================
   WORK PAGES (event / media)
   ============================================================ */
.work-page-main { padding: 132px 0 80px; }
.work-page-main--flush { padding: 0 0 80px; }
.work-hero { max-width: 720px; margin-bottom: 56px; }
.work-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 14px;
}
.work-hero-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); }
.work-hero-title { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 16px; }
.work-hero-lead { color: var(--ink-2); font-size: 18px; }
.work-gallery { padding: 28px 0 24px; scroll-margin-top: 108px; }
#media-reels, #event-reels { scroll-margin-top: 108px; }
.work-page .gallery-scroll-item { flex: 0 0 380px; width: 380px; height: 260px; }

.media-showreel {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; height: auto; min-height: 0;
  overflow: hidden; background: #08090c;
}
.media-showreel-stage {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer; overflow: hidden;
  background: #08090c; font: inherit; text-align: left; color: inherit;
  appearance: none; -webkit-appearance: none;
}
.media-showreel-stage video {
  width: 100%; height: 100%; object-fit: cover; display: block; max-width: none;
}
.media-showreel-stage--rotate90 video {
  position: absolute; left: 50%; top: 50%;
  width: 56.25%; height: 177.78%; max-width: none;
  transform: translate(-50%, -50%) rotate(-90deg);
  object-fit: cover;
}
.media-showreel-copy {
  display: none;
}
.back-link--on-media { color: rgba(255, 255, 255, 0.72); margin-bottom: 28px; }
.back-link--on-media:hover { color: #fff; }
.media-showreel-back {
  position: absolute; z-index: 2; top: 96px; left: clamp(24px, 5vw, 64px); margin: 0;
}
.media-showreel-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  color: #fff; font-weight: 600; font-size: 14.5px; letter-spacing: 0.04em;
}
.media-showreel-stage:hover .case-hero-play { opacity: 1; }

.case-block--lead {
  scroll-margin-top: 0; padding: 0; border-top: none;
}
.case-lead-follow { padding: 36px 0 20px; }
.case-lead-follow h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.case-lead-follow > p { color: var(--ink-2); font-size: 16px; margin-bottom: 0; max-width: 640px; }
.mackbear-boards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  width: calc(100% - 24px); margin: 0 auto 72px;
}
.mackbear-boards .case-still {
  aspect-ratio: 1 / 1; border: 0; background: #1a1410; border-radius: 12px;
}
.mackbear-boards .case-still img { object-fit: cover; object-position: center; }

.case-block--showreel {
  scroll-margin-top: 0; padding: 0; border-top: none;
}
.case-stage {
  position: relative; display: block; width: 100%;
  height: 88svh; min-height: 480px; padding: 0; border: 0;
  overflow: hidden; cursor: pointer; background: #08090c;
  font: inherit; text-align: left; color: inherit;
  appearance: none; -webkit-appearance: none;
}
.case-stage video, .case-stage img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.case-stage--rotate90 { overflow: hidden; container-type: size; }
.case-stage--rotate90 video {
  position: absolute; left: 50%; top: 50%;
  width: 100cqh; height: calc(100cqh * 16 / 9); max-width: none;
  transform: translate(-50%, -50%) rotate(-90deg);
  object-fit: cover;
}
.case-stage-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 80px clamp(24px, 5vw, 64px) 40px;
  background: linear-gradient(transparent, rgba(8, 9, 12, 0.82));
  max-width: 640px; pointer-events: none;
}
.case-stage-copy h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin-bottom: 8px; }
.case-stage-copy p { color: rgba(255, 255, 255, 0.8); font-size: 17px; margin: 0; }
.case-stage-copy .case-eyebrow { color: var(--accent); }
.case-stage:hover .case-hero-play { opacity: 1; }
.case-stage .case-hero-play { top: 28px; right: 28px; }
.case-stills-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.case-stills-row .case-still { aspect-ratio: 16 / 10; border: 0; }
.cases-stack--tail { padding-top: 24px; }

.case-block {
  scroll-margin-top: 108px; padding: 64px 0;
  border-top: 1px solid var(--line);
}
.case-block-inner {
  display: flex; flex-direction: column; gap: 28px;
}
.case-visuals {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 10px; align-items: stretch;
}
.case-block--flip .case-visuals {
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}
.case-block--flip .case-hero { order: 2; }
.case-visuals .case-stills {
  display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 1fr);
  gap: 10px; height: 0; min-height: 100%;
}
.case-visuals .case-still {
  aspect-ratio: auto; min-height: 0; height: auto; overflow: hidden; position: relative;
}
.case-visuals .case-still img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.case-visuals--video,
.case-block--flip .case-visuals--video {
  grid-template-columns: 1fr;
}
.case-visuals--video .case-hero { order: 0; aspect-ratio: 16 / 9; }
.case-visuals--video .case-stills {
  grid-template-columns: repeat(3, 1fr); grid-template-rows: none;
  height: auto; min-height: 0;
}
.case-visuals--video .case-still { aspect-ratio: 16 / 10; }
.case-visuals--video .case-stills:has(.case-still:nth-child(5):last-child) {
  grid-template-columns: repeat(6, 1fr);
}
.case-visuals--video .case-stills:has(.case-still:nth-child(5):last-child) .case-still {
  grid-column: span 2;
}
.case-visuals--video .case-stills--two {
  grid-template-columns: repeat(2, 1fr);
}
.case-visuals--video .case-stills:has(.case-still:only-child) {
  grid-template-columns: 1fr;
}
.case-visuals--solo {
  grid-template-columns: 1fr;
}
.case-visuals--solo .case-hero {
  aspect-ratio: 4 / 5; max-height: min(78svh, 820px); width: min(100%, 560px);
}
.case-hero {
  position: relative; display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); background: var(--surface);
  overflow: hidden; cursor: pointer; color: inherit;
  aspect-ratio: 16 / 10; font: inherit; text-align: left;
  appearance: none; -webkit-appearance: none;
}
.case-hero img, .case-hero video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.case-hero--rotate90 img, .case-hero--rotate90 video {
  position: absolute; left: 50%; top: 50%;
  width: 56.25%; height: 177.78%; max-width: none;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.case-hero:hover img, .case-hero:hover video { transform: scale(1.03); }
.case-hero--rotate90:hover img, .case-hero--rotate90:hover video {
  transform: translate(-50%, -50%) rotate(-90deg) scale(1.03);
}
.case-hero-play {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 11, 14, 0.55); color: #fff; font-size: 16px;
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.25s ease;
}
.case-hero:hover .case-hero-play { opacity: 1; }
.case-eyebrow {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-strong); margin-bottom: 10px;
}
.case-copy h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.case-copy p { color: var(--ink-2); font-size: 16px; margin-bottom: 0; max-width: 640px; }
.case-stills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.case-still {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; background: var(--surface); border: 1px solid var(--line);
}
.case-still img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-still:hover img { transform: scale(1.04); }

.dots-nav {
  position: fixed; left: 6px; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 14px;
  padding: 8px 2px;
}
.dots-nav-item {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-3); padding: 3px 0; min-height: 16px; min-width: 16px;
}
.dots-nav-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink-3);
  transition: transform 0.2s ease, background 0.2s ease, height 0.2s ease, border-radius 0.2s ease;
}
.dots-nav-label {
  position: absolute; left: 18px; top: 50%; transform: translate(-6px, -50%);
  opacity: 0; pointer-events: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; color: var(--ink);
  transition: opacity 0.2s ease, transform 0.2s ease, font-size 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dots-nav-item:hover .dots-nav-label,
  .dots-nav-item:focus-visible .dots-nav-label {
    opacity: 1; transform: translate(0, -50%);
  }
  /* hover edilen noktanın üstü ve altı da görünsün, biraz daha içeride */
  .dots-nav-item:has(+ .dots-nav-item:hover) .dots-nav-label,
  .dots-nav-item:has(+ .dots-nav-item:focus-visible) .dots-nav-label,
  .dots-nav-item:hover + .dots-nav-item .dots-nav-label,
  .dots-nav-item:focus-visible + .dots-nav-item .dots-nav-label {
    opacity: 0.62;
    transform: translate(14px, -50%);
    font-size: 10px;
    color: var(--ink-2);
  }
}
.dots-nav-item.is-active .dots-nav-dot {
  background: var(--accent); height: 16px; border-radius: 99px;
}

.cinematic-section { padding: 72px 0 24px; scroll-margin-top: 88px; }
.cinematic-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 8px;
}
.cin-cell {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); cursor: pointer; padding: 0; color: inherit;
  min-width: 0; width: 100%; height: 100%;
  font: inherit; text-align: left; appearance: none; -webkit-appearance: none;
}
.cin-cell img, .cin-cell video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.cin-cell:hover img, .cin-cell:hover video { transform: scale(1.05); }
.cin-wide { grid-column: span 2; grid-row: span 2; }
.cin-tall { grid-row: span 2; }
.cin-portrait { grid-row: span 2; }
.cin-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.25s ease;
}
.cin-cell:hover .cin-label { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .work-teaser-card img, .case-hero img, .case-hero video,
  .case-still img, .cin-cell img, .cin-cell video { transition: none; }
  .dots-nav-label { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 250;
    background: var(--bg); flex-direction: column; justify-content: center; gap: 22px;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links > li > a { font-size: 19px; }
  /* mobilde tema sayısı arttıkça (aşağı açılan) menü .nav-links içindeki diğer
     öğelerin (ör. Ekip Başvurusu butonu) üzerine biniyordu; sabit konumlu,
     ekranın ortasında açılan bir pencereye çeviriyoruz ki hep sığsın */
  .theme-dropdown-menu {
    position: fixed; top: 50%; left: 50%; right: auto;
    width: min(240px, 80vw); max-height: 72vh; overflow-y: auto;
    transform: translate(-50%, -50%) scale(0.96);
  }
  .theme-switcher-dropdown.active .theme-dropdown-menu { transform: translate(-50%, -50%) scale(1); }
  .hamburger { display: flex; margin-left: auto; }
  .dots-nav {
    display: flex; flex-direction: column; left: 2px; top: 50%; right: auto; bottom: auto;
    transform: translateY(-50%); gap: 10px;
    padding: 8px 0;
    background: transparent; border: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    touch-action: none;
  }
  .dots-nav-item {
    min-width: 28px; min-height: 28px; justify-content: center; padding: 5px 2px;
  }
  .dots-nav-label {
    display: none;
    left: 22px; transform: translateY(-50%);
    font-size: 9.5px; letter-spacing: 0.08em; font-weight: 650;
    padding: 2px 7px; border-radius: 99px;
    background: color-mix(in srgb, var(--bg) 48%, transparent);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
    color: var(--ink);
  }
  .dots-nav.is-scrubbing .dots-nav-item.is-press .dots-nav-label {
    display: block; opacity: 0.92;
  }
  .dots-nav.is-scrubbing .dots-nav-item:has(+ .is-press) .dots-nav-label,
  .dots-nav.is-scrubbing .dots-nav-item.is-press + .dots-nav-item .dots-nav-label {
    display: block; opacity: 0.62;
    transform: translate(10px, -50%);
    font-size: 9px; color: var(--ink-2);
  }
  .dots-nav-item.is-active .dots-nav-dot {
    width: 7px; height: 16px; transform: none;
  }
  .case-block, .cinematic-section, #media-reels { scroll-margin-top: 88px; }
}

@media (max-width: 880px) {
  .section { padding: 76px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image--video { max-width: 420px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .number-card:nth-child(3) { border-left: none; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 0 4px; }
  .testimonial-card + .testimonial-card { border-left: none; border-top: 1px solid var(--line); }
  .contact-details { grid-template-columns: 1fr; }
  .contact-item + .contact-item { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
  .contact-item { padding: 24px 0 4px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vm-split-grid { grid-template-columns: 1fr; }
  .vm-values-corporate-grid { grid-template-columns: 1fr; }
  .trail-node { grid-template-columns: 1fr; gap: 20px; }
  .trail-node--left .trail-copy, .trail-node--right .trail-copy { justify-self: start; text-align: left; order: 2; }
  .trail-node--left .trail-scene, .trail-node--right .trail-scene { justify-self: start; order: 1; width: min(230px, 70%); }
  .mobile-floating-apply-btn { display: inline-flex; }
  /* .mobile-floating-apply-btn ve .whatsapp-btn ekranın altında sabit
     kalıyor; footer'ın son satırı (copyright/gizlilik linkleri) sayfanın
     en sonuna kadar kaydırıldığında bu sabit barın arkasında kalıp hiç
     görünmüyordu. Footer'a bu barları temizleyecek kadar boşluk ekliyoruz. */
  .footer { padding-bottom: 96px; }
  .work-teaser-grid { grid-template-columns: 1fr; }
  .work-teaser-card, .work-teaser-overlay { min-height: min(58svh, 420px); }
  .case-block-inner { gap: 20px; }
  .case-visuals, .case-block--flip .case-visuals { grid-template-columns: 1fr; }
  .case-block--flip .case-hero { order: 0; }
  .case-visuals .case-stills {
    grid-template-columns: repeat(3, 1fr); grid-template-rows: none;
    height: auto; min-height: 0;
  }
  .case-visuals .case-still { aspect-ratio: 16 / 10; }
  .case-visuals--video .case-stills--two { grid-template-columns: repeat(2, 1fr); }
  .case-visuals--video .case-stills:has(.case-still:only-child) { grid-template-columns: 1fr; }
  .case-stage { height: 72svh; min-height: 420px; }
  .mackbear-boards {
    display: flex; overflow-x: auto; gap: 12px;
    width: 100%; padding: 0 16px 56px; margin: 0 0 24px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  }
  .mackbear-boards .case-still {
    flex: 0 0 min(82vw, 420px); width: min(82vw, 420px);
    aspect-ratio: 1 / 1; height: auto;
    scroll-snap-align: start;
  }
  .work-page .gallery-scroll-item { flex: 0 0 300px; width: 300px; height: 210px; }
}

@media (max-width: 560px) {
  .gallery-scroll-item { flex: 0 0 260px; width: 260px; height: 185px; }
  .reel-card { flex: 0 0 150px; width: 150px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--line); padding: 20px 0 0; }
  .footer-content { grid-template-columns: 1fr; }
  .app-section-card, .app-header-card { padding: 28px 0 0; }
  .vm-corporate-block { padding: 30px 0 0; }
  .lightbox-nav--prev { left: 8px; }
  .lightbox-nav--next { right: 8px; }
  .reel-popup-nav { display: none; }
  .cinematic-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 6px; }
  .cin-wide { grid-column: span 2; }
  .case-stills-row { grid-template-columns: repeat(3, 1fr); }
  .work-hero-lead { font-size: 16px; }
}
