/* ============================================================
   TANE MEDYA — Kreatif Medya & Prodüksiyon Ajansı
   Tasarım sistemi: Beyaz zemin · editöryel minimal · #FF4705 aksan
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f6f5f2;      /* sıcak kırık beyaz — dönüşümlü bölümler */
  --bg-dark: #0d0d0e;      /* koyu bölümler / footer */
  --bg-dark-2: #161618;

  /* Ink */
  --ink: #111113;          /* ana metin */
  --ink-2: #5c5c63;        /* yumuşak metin */
  --ink-3: #8d8d95;        /* soluk */
  --ink-inv: #f4f3f0;      /* koyu zeminde metin */
  --ink-inv-2: #a4a4aa;

  /* Lines */
  --line: #e8e6e1;
  --line-2: #dfdcd5;
  --line-dark: #262629;

  /* Accent — turuncu, az kullan */
  --accent: #ff4705;
  --accent-press: #e23d03;
  --accent-soft: #fff1ec;  /* çok hafif turuncu tint (nadir) */

  /* Radius */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Spacing rhythm (8pt) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1400px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 240ms;

  --shadow-sm: 0 1px 2px rgba(17,17,19,.04), 0 2px 8px rgba(17,17,19,.04);
  --shadow: 0 8px 30px rgba(17,17,19,.08);
  --shadow-lg: 0 24px 60px rgba(17,17,19,.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 3.5vw, 56px);
}
.section { padding-block: var(--s-7); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: var(--s-6); }
@media (max-width: 760px) {
  .section { padding-block: var(--s-6); }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h2.title, .title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--ink-2); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
}
.muted { color: var(--ink-3); }
.accent { color: var(--accent); }

/* Eyebrow / küçük etiket */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow--inv { color: var(--ink-inv-2); }

/* Section header */
.section-head { max-width: 720px; margin-bottom: var(--s-5); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }
.section-head--between {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; max-width: none; flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding-inline: 26px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease),
              color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }

/* Tek ana CTA — turuncu */
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-press); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2e; }

.btn-ghost { border: 1.5px solid var(--line-2); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); }

.btn-inv { background: #fff; color: var(--ink); }
.btn-inv:hover { background: var(--accent); color: #fff; }

.btn-ghost-inv { border: 1.5px solid var(--line-dark); color: var(--ink-inv); }
.btn-ghost-inv:hover { border-color: var(--ink-inv); }

.btn-sm { height: 44px; padding-inline: 20px; font-size: 0.9rem; }

/* Text link with orange underline on hover */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--ink);
  position: relative;
}
.tlink svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--accent); transition: width var(--t) var(--ease);
}
.tlink:hover::after { width: 100%; }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav.is-scrolled { border-color: var(--line); }
.nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.18rem;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline;
}
.brand .dot { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 10px 16px; border-radius: var(--r-pill);
  font-size: 0.95rem; font-weight: 450; color: var(--ink-2);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--ink); font-weight: 500; }
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.nav__burger span {
  position: relative; width: 22px; height: 1.6px; background: var(--ink);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.6px; background: var(--ink);
  transition: transform var(--t) var(--ease);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: var(--bg);
  padding: 32px 24px 48px;
  transform: translateY(-12px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  display: flex; flex-direction: column;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.m-link {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a.m-link span { color: var(--ink-3); font-size: 1rem; font-family: var(--font-body); }
.mobile-menu .btn { margin-top: 28px; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ---------- Hero (iki kolon: yazı + video) ---------- */
.hero { padding-top: clamp(36px, 4.5vw, 64px); padding-bottom: var(--s-6); }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 4vw, 60px); align-items: stretch;
}
.hero__content { align-self: center; }
.hero__eyebrow { margin-bottom: 24px; }
.hero__title { margin-bottom: 24px; max-width: 13ch; }
.hero__title .hl { position: relative; white-space: nowrap; }
.hero__title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.11em;
  background: var(--accent); opacity: 0.95; border-radius: 2px;
}
.hero__lead { max-width: 48ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* hero media / reel */
.hero__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 460px; background: #0d0d0e; isolation: isolate; display: block;
}
.hero__media video, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(7,7,8,.72), rgba(7,7,8,.06) 46%, rgba(7,7,8,.28));
}
.media-play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(64px, 7vw, 92px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.65);
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.media-play svg { width: 30%; height: 30%; margin-left: 8%; }
.hero__media:hover .media-play,
.detail-hero:hover .media-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%,-50%) scale(1.07); }
.reel__tag {
  position: absolute; z-index: 2; right: 18px; top: 18px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-pill); padding: 7px 14px;
}
.reel__meta {
  position: absolute; z-index: 2; left: 20px; bottom: 18px;
  color: var(--ink-inv-2); font-size: 0.82rem;
}
.reel__meta strong { font-weight: 600; color: #fff; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__content { order: 1; }
  .hero__media { order: 2; min-height: 0; aspect-ratio: 16/10; }
  .hero__title { max-width: 18ch; }
}

/* ---------- Marquee (müşteriler) ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 28px; overflow: hidden;
}
.marquee__track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  color: var(--ink-3); letter-spacing: -0.01em; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { background: var(--bg); padding: 36px 28px; }
.section--soft .stat { background: var(--bg-soft); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.03em; }
.stat__num .accent { color: var(--accent); }
.stat__label { color: var(--ink-2); font-size: 0.95rem; margin-top: 6px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Service list (anasayfa) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 64px 1.1fr 1.4fr auto;
  align-items: center; gap: 24px;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: padding var(--t) var(--ease), background var(--t) var(--ease);
}
.svc-row:hover { padding-inline: 20px; background: var(--bg-soft); }
.svc-row__no { font-family: var(--font-display); color: var(--ink-3); font-size: 0.95rem; }
.svc-row__name { font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.svc-row__desc { color: var(--ink-2); font-size: 0.98rem; }
.svc-row__arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-2);
  display: grid; place-items: center; color: var(--ink-2);
  transition: all var(--t) var(--ease);
}
.svc-row__arrow svg { width: 18px; height: 18px; }
.svc-row:hover .svc-row__arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(-45deg); }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: 40px 1fr auto; row-gap: 8px; }
  .svc-row__desc { grid-column: 2 / 3; }
}

/* ---------- Service cards (hizmetler sayfası) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }
.card {
  position: relative;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card__link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.card__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.card__go svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.card:hover .card__go { color: var(--accent); }
.card:hover .card__go svg { transform: translateX(4px); }
.section--soft .card { background: #fff; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--r);
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--ink); color: #fff;
  transition: background var(--t) var(--ease);
}
.card:hover .card__icon { background: var(--accent); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 0.78rem; color: var(--ink-2); font-weight: 500;
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px 12px;
}

/* ---------- Work grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.work-grid.is-three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .work-grid, .work-grid.is-three { grid-template-columns: 1fr; } }
.work {
  position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; isolation: isolate; background: #161618;
}
.work.is-tall { aspect-ratio: 4 / 5; }
.work__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 650ms var(--ease);
}
.work:hover .work__bg { transform: scale(1.06); }
/* hover'da oynayan video */
.work__vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 450ms var(--ease); pointer-events: none;
}
.work.is-playing .work__vid { opacity: 1; }
.work[data-video]::before {
  content: ""; position: absolute; z-index: 2; left: 24px; top: 22px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,71,5,.6); animation: rec 1.6s ease-out infinite;
}
@keyframes rec { 70%,100% { box-shadow: 0 0 0 9px rgba(255,71,5,0); } }
@media (prefers-reduced-motion: reduce) { .work[data-video]::before { animation: none; } }
/* tonal placeholder zeminler */
.bg-a { background: linear-gradient(135deg, #1a1a1d, #2e2e34); }
.bg-b { background: linear-gradient(135deg, #2b2b30, #4a4a52); }
.bg-c { background: linear-gradient(135deg, #0d0d0e, #232327); }
.bg-d { background: linear-gradient(135deg, #3a3a42, #19191c); }
.bg-orange { background: linear-gradient(135deg, var(--accent), #b53204); }
.work::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(7,7,8,.78) 0%, rgba(7,7,8,.05) 55%, transparent 100%);
}
.work__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
}
.work__body { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: var(--ink-inv); }
.work__cat { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-inv-2); }
.work__title { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
.work__plus {
  position: absolute; z-index: 2; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; color: #fff;
  transition: all var(--t) var(--ease);
}
.work__plus svg { width: 16px; height: 16px; }
.work:hover .work__plus { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.is-rev > :first-child { order: 2; }
@media (max-width: 880px) { .split, .split.is-rev > :first-child { grid-template-columns: 1fr; order: 0; } }
.media-box {
  border-radius: var(--r-lg); aspect-ratio: 5/6; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #18181b, #2c2c32); isolation: isolate;
}
.media-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-box::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,8,.55), transparent 55%); }
.media-box .work__grid { opacity: .6; }
.media-box__badge { z-index: 2; }
.media-box__badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  color: var(--ink-inv); font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}

/* Feature list with checks */
.feature-list { display: grid; gap: 16px; margin-top: 8px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .ic svg { width: 14px; height: 14px; }
.feature-list h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.feature-list p { font-size: 0.94rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 24px; border-top: 2px solid var(--ink); }
.step__no { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.step h3 { font-size: 1.25rem; margin: 12px 0 8px; }
.step p { font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--bg-dark); color: var(--ink-inv);
  border-radius: var(--r-lg); padding: clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden; isolation: isolate;
}
.cta::before {
  content: ""; position: absolute; z-index: -1; right: -10%; top: -40%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,71,5,.22), transparent 62%);
}
.cta h2 { color: #fff; max-width: 16ch; }
.cta p { color: var(--ink-inv-2); margin-top: 18px; max-width: 46ch; }
.cta .hero__actions { margin-top: 32px; }

/* ---------- Page header (iç sayfa) ---------- */
.page-head { padding-top: clamp(40px, 6vw, 80px); padding-bottom: var(--s-5); }
.page-head .eyebrow { margin-bottom: 22px; }
.page-head .lead { margin-top: 22px; }
.crumb { color: var(--ink-3); font-size: 0.85rem; margin-bottom: 24px; }
.crumb a:hover { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1.5px solid var(--line-2); border-radius: var(--r);
  background: #fff; font: inherit; color: var(--ink);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.field textarea { height: auto; padding: 14px 16px; resize: vertical; min-height: 130px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-3); margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 12px; margin-top: 18px;
  padding: 14px 18px; border-radius: var(--r);
  background: var(--accent-soft); color: var(--accent-press); font-weight: 500; font-size: 0.95rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: 0 0 auto; }

.info-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--r); background: var(--bg-soft); display: grid; place-items: center; color: var(--ink); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .k { font-size: 0.82rem; color: var(--ink-3); }
.info-row .v { font-weight: 500; }
.info-row .v a:hover { color: var(--accent); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 920px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.member__ph { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; position: relative; background: linear-gradient(135deg, #20202400, #202024); }
.member__ph .ph-mono { position: absolute; inset: 0; background: linear-gradient(135deg, #2a2a30, #131316); }
.member__ph .work__grid { opacity: .5; }
.member__initials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: rgba(255,255,255,.85); z-index: 2; }
.member h3 { margin-top: 16px; font-size: 1.15rem; }
.member .role { color: var(--accent); font-size: 0.88rem; font-weight: 500; margin-top: 2px; }

/* ---------- Filter pills ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter {
  padding: 9px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--line-2);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  transition: all var(--t) var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: var(--ink-inv); padding-top: var(--s-7); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: var(--s-6); border-bottom: 1px solid var(--line-dark); }
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; font-size: 1.5rem; }
.footer__big { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,3vw,2rem); letter-spacing: -0.02em; color: #fff; margin: 18px 0 24px; max-width: 18ch; line-height: 1.1; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-inv-2); margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; color: var(--ink-inv); padding: 7px 0; font-size: 0.96rem; opacity: .85; transition: opacity var(--t), color var(--t); }
.footer__col a:hover { opacity: 1; color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 30px; flex-wrap: wrap; }
.footer__bottom p { color: var(--ink-inv-2); font-size: 0.88rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--ink-inv); transition: all var(--t) var(--ease); }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
.reveal[data-d="4"] { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .work__bg, .work:hover .work__bg { transition: none; }
}

/* ---------- Focus ---------- */
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Utilities ---------- */
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.center{text-align:center}.center .lead, .center .section-head{margin-inline:auto}
.divider{height:1px;background:var(--line);border:0}

/* ============ DETAY SAYFALARI ============ */
/* büyük görsel/video başlık */
.detail-hero {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 7.6; background: #0d0d0e; isolation: isolate; margin-top: 6px;
}
.detail-hero video, .detail-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.detail-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,8,.6), transparent 55%);
}
@media (max-width: 760px) { .detail-hero { aspect-ratio: 16/11; } }

/* proje detay düzeni */
.proj-layout { display: grid; grid-template-columns: 1.55fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .proj-layout { grid-template-columns: 1fr; } }
.proj-body > * + * { margin-top: 20px; }
.proj-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,1.9rem); margin-top: 40px; }
.proj-body h2:first-child { margin-top: 0; }
.proj-meta {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  position: sticky; top: calc(var(--nav-h) + 18px);
}
.proj-meta .row { padding: 15px 0; border-bottom: 1px solid var(--line); }
.proj-meta .row:first-child { padding-top: 0; }
.proj-meta .row:last-child { border-bottom: none; padding-bottom: 0; }
.proj-meta dt { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 5px; }
.proj-meta dd { font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .tag { background: var(--bg-soft); border-color: transparent; }

/* sonuç istatistikleri */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 8px; }
@media (max-width: 620px) { .results { grid-template-columns: 1fr; } }
.results .r { background: var(--bg); padding: 30px 26px; }
.results .r b { font-family: var(--font-display); font-size: clamp(1.9rem,3.4vw,2.6rem); font-weight: 600; letter-spacing: -0.03em; display: block; }
.results .r b .accent { color: var(--accent); }
.results .r span { color: var(--ink-2); font-size: 0.92rem; }

/* galeri */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); background: #161618; }
.gallery img.wide { grid-column: 1 / -1; aspect-ratio: 16/7; }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr; } }

/* sonraki proje */
.next-proj {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px,4vw,40px); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.next-proj:hover { background: var(--bg-soft); border-color: var(--line-2); }
.next-proj .k { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.next-proj .t { font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,2rem); font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
.next-proj .arrow { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: all var(--t) var(--ease); }
.next-proj:hover .arrow { background: var(--accent); border-color: var(--accent); color: #fff; }
.next-proj .arrow svg { width: 20px; height: 20px; }

/* hizmet detay: dahil olanlar listesi */
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 620px) { .includes { grid-template-columns: 1fr; } }
.includes li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); }
.includes .ic { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.includes .ic svg { width: 13px; height: 13px; }

/* Marquee logo (yazı yerine) */
.marquee__track { align-items: center; }
.marquee__logo { display: inline-flex; align-items: center; }
.marquee__logo img { height: 38px; width: auto; max-width: 190px; object-fit: contain; opacity: .5; filter: grayscale(1); transition: opacity .25s ease, filter .25s ease, transform .25s ease; }
.marquee__logo:hover img { opacity: 1; filter: none; transform: scale(1.06); }
/* === İşler kartları: 9:16 dikey (reels) 4'lü grid + hover'da büyüme (tam görsel, kırpmasız) === */
.work { aspect-ratio: 9 / 16; transition: transform .4s var(--ease), box-shadow .4s var(--ease); transform-origin: center; }
.work:hover { transform: scale(1.06); z-index: 5; box-shadow: 0 26px 55px rgba(17,17,19,.22); }
.work:hover .work__bg { transform: none; } /* kart büyüdüğü için iç zoom'u kapat */
.work__title { font-size: 1.2rem; }
.work-grid, .work-grid.is-three { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .work-grid, .work-grid.is-three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .work-grid, .work-grid.is-three { grid-template-columns: 1fr; } }

/* === Proje detay: reels video sidebar === */
.proj-reels { position: sticky; top: calc(var(--nav-h) + 18px); }
.proj-reels__video { position: relative; aspect-ratio: 9 / 16; max-width: 330px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; background: #0d0d0e; isolation: isolate; }
.proj-reels__video video, .proj-reels__video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proj-reels__video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,8,.5), transparent 55%); }
.proj-reels__video .reel__tag { position: absolute; z-index: 2; left: 16px; top: 16px; right: auto; }
.proj-reels__info { max-width: 330px; margin: 22px auto 0; }
.proj-reels__client { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.proj-reels__role { color: var(--ink-2); font-size: 0.92rem; margin-top: 4px; }
.proj-reels__info .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.proj-reels__info .chips .tag { background: var(--bg-soft); border-color: transparent; }
.proj-reels__info .btn { width: 100%; justify-content: center; margin-top: 20px; }
@media (max-width: 880px) { .proj-reels { position: static; } .proj-reels__video, .proj-reels__info { max-width: 380px; } }
