/* ============================================================
   4Budak Dizayn — "Sinematik" tema
   Koyu, sinematik, sanatsal: serif başlıklar, altın vurgular,
   film greni, fare paralaksı, yumuşak kaydırma.
   Marka renkleri: Turuncu #FF6600 · Siyah · Gri #CCC · Gold #CCA352
   ============================================================ */

:root {
  --zemin: #0b0a08;
  --zemin-yumusak: #14120f;
  --krem: #f1ece1;
  --soluk: #857c6d;
  --cizgi: rgba(241, 236, 225, 0.1);
  --gold: #cca352;
  --gold-soluk: rgba(204, 163, 82, 0.32);
  --turuncu: #ff6600;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;

  --genislik: 1420px;
  --bosluk: clamp(22px, 4.4vw, 72px);
}

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

html { scroll-behavior: auto; }

body {
  background: var(--zemin);
  color: var(--krem);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--krem); line-height: 1.05; letter-spacing: -0.015em; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--gold); }

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

.container { max-width: var(--genislik); margin-inline: auto; padding-inline: var(--bosluk); }
.container-narrow { max-width: 860px; }

/* ---------- Film greni ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--gold-soluk);
  color: var(--krem);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(204, 163, 82, 0.05); }
.btn-primary { border-color: var(--gold); color: var(--gold); }
.btn-primary:hover { background: var(--gold); color: var(--zemin); }
.btn-light, .btn-ghost { border-color: var(--cizgi); }

.text-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.text-link:hover { color: var(--krem); }

/* ---------- Üst menü ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border: 0;
  mix-blend-mode: difference;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--zemin);
  background: var(--krem);
  padding: 0.34rem 0.5rem;
  border-radius: 50%;
  position: relative;
}
.brand-mark::after { content: none; }
.brand-text { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--krem); letter-spacing: 0; }

.main-nav > ul { display: flex; align-items: center; gap: 0; }
.main-nav a {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--krem);
  padding: 0.6rem 0.55rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { opacity: 1; color: var(--krem); }

/* mix-blend-mode altindaki acilir menu okunmaz olur; menuyu blend disina cikar */
.has-sub { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #191712;
  border: 1px solid var(--cizgi);
  padding: 0.7rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  isolation: isolate;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: #b9b0a2;
  padding: 0.52rem 1.3rem;
  opacity: 1;
}
.sub-menu a:hover { color: var(--gold); background: rgba(204, 163, 82, 0.06); }

.nav-cta a {
  border: 1px solid rgba(241, 236, 225, 0.4);
  margin-left: 0.5rem;
  opacity: 1;
}
.nav-cta a:hover { border-color: var(--krem); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 26px; height: 1px; background: var(--krem); margin: 7px 0; }

/* ---------- Hero (ana sayfa) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 0;
}

/* 3B görsel halkası (fare paralaksı JS ile) */
.sahne {
  position: absolute;
  inset: 0;
  z-index: 0;
  perspective: 1100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease 0.2s;
}
.sahne.hazir { opacity: 1; }
.sahne-halka {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}
.karo {
  position: absolute;
  width: 190px;
  height: 250px;
  margin: -125px 0 0 -95px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.karo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9);
  border-radius: 2px;
}

/* karartma vinyeti */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11, 10, 8, 0.78) 100%),
    linear-gradient(to bottom, rgba(11, 10, 8, 0.4) 0%, transparent 20%, transparent 70%, var(--zemin) 100%);
}
.hero > .container { position: relative; z-index: 2; text-align: center; margin-block: auto; }
.hero .hero-band { margin-top: auto; }

.hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--krem);
  opacity: 0.75;
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 5rem; }

/* hero üst/alt mono bilgi satırları */
.hero-ustbar, .hero-altbar {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--bosluk);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soluk);
}
.hero-ustbar { top: 96px; }
.hero-ustbar span:first-child::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.hero-altbar { bottom: 78px; align-items: end; }
.hero-in {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-in-cizgi {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: damla 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes damla {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Kayan bant ---------- */
.hero-band {
  background: var(--zemin);
  border-top: 1px solid var(--cizgi);
  border-bottom: 1px solid var(--cizgi);
  padding: 1.15rem 0;
  position: relative;
  z-index: 2;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 1.8rem; animation: kaydir 70s linear infinite; }
.marquee-track span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soluk);
}
.marquee-track .dot { color: var(--gold); font-size: 0.45rem; }
@keyframes kaydir { to { transform: translateX(-50%); } }

/* ---------- Bölümler ---------- */
.categories, .home-articles, .sub-list, .project-list, .contact, .values, .about-body { padding: clamp(6rem, 13vh, 11rem) 0; position: relative; z-index: 2; background: var(--zemin); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-title { font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 400; max-width: 18ch; }
.section-title-sm { font-size: 1.9rem; font-weight: 400; margin-bottom: 1.4rem; }
.section-lead { color: var(--soluk); font-size: 0.95rem; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Kategoriler: satır listesi ---------- */
.cat-grid { display: block; background: none; border: 0; border-top: 1px solid var(--cizgi); }
.cat-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1.3fr 2fr 1fr;
  gap: 28px;
  align-items: baseline;
  background: transparent;
  padding: 3rem 0;
  border-bottom: 1px solid var(--cizgi);
  transition: background 0.4s ease, padding 0.4s ease;
}
.cat-card:hover { background: rgba(255, 255, 255, 0.016); padding-left: 16px; }
.cat-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.06em; font-weight: 400; }
.cat-card h3 { font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 500; letter-spacing: -0.012em; transition: color 0.4s ease; }
.cat-card:hover h3 { color: var(--gold); }
.cat-card > p { font-size: 0.94rem; color: var(--krem); opacity: 0.72; max-width: 44ch; transition: none; }
.cat-card:hover > p { color: var(--krem); }
.cat-subs { display: block; text-align: right; margin: 0; }
.cat-subs li {
  display: block;
  border: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soluk);
  line-height: 1.9;
  border-radius: 0;
  transition: none;
}
.cat-card:hover .cat-subs li { color: var(--soluk); border: 0; }
.cat-subs .more { color: var(--gold); border: 0; }
.cat-arrow { display: none; }

/* ---------- Koyu şerit ---------- */
.strip { background: var(--zemin); border-top: 1px solid var(--cizgi); padding: clamp(6rem, 12vh, 10rem) 0; position: relative; z-index: 2; }
.strip::before { content: none; }
.strip-inner { max-width: 860px; }
.strip h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 400; margin-bottom: 1.4rem; }
.strip p { color: var(--krem); opacity: 0.7; margin-bottom: 2.4rem; max-width: 52ch; }

/* ---------- Makale kartları ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.4rem, 2.4vw, 2.4rem); }
.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2.2rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
  border: 1px solid var(--cizgi);
  border-radius: 2px;
  transition: border-color 0.4s ease, transform 0.4s ease;
  box-shadow: none;
}
.article-card:hover { border-color: var(--gold-soluk); transform: translateY(-3px); box-shadow: none; }
.article-card time { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold); }
.article-card h2, .article-card h3 { font-size: 1.6rem; font-weight: 500; }
.article-card p { font-size: 0.9rem; color: var(--krem); opacity: 0.68; }
.article-card .text-link { margin-top: auto; }
.article-card img { aspect-ratio: 16/9; object-fit: cover; margin: -2.2rem -2rem 0.4rem; width: calc(100% + 4rem); max-width: none; filter: brightness(0.78) saturate(0.92); }

/* ---------- İç sayfa hero ---------- */
.page-hero {
  padding: clamp(11rem, 22vh, 15rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--cizgi);
  position: relative;
  z-index: 2;
  background: var(--zemin);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soluk);
  margin-bottom: 2.2rem;
}
.breadcrumb::before { content: ''; width: 28px; height: 1px; background: var(--gold); align-self: center; }
.breadcrumb a { color: var(--soluk); }
.breadcrumb a:hover { color: var(--gold); }
.page-title { font-size: clamp(3rem, 7.5vw, 7rem); font-weight: 400; margin-bottom: 1.4rem; max-width: 14ch; }
.page-lead { color: var(--krem); opacity: 0.72; font-size: clamp(0.95rem, 1.4vw, 1.1rem); max-width: 56ch; }
.not-found { border-bottom: 0; min-height: 70vh; }
.not-found .btn { margin-top: 2.4rem; }

/* ---------- Alt kategori / proje kartları (field grid) ---------- */
.sub-grid, .project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: clamp(1.4rem, 2.4vw, 2.2rem); }
.sub-card, .project-card {
  background: var(--zemin-yumusak);
  border: 1px solid var(--cizgi);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.5s ease;
  box-shadow: none;
}
.sub-card:hover { border-color: var(--gold-soluk); transform: none; box-shadow: none; }
.sub-card img, .project-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.72) saturate(0.9);
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}
.sub-card:hover img, .project-card:hover img { transform: scale(1); filter: brightness(1) saturate(1); }
.sub-card-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 40%, #1c1913, #0d0c0a);
}
.sub-card-ph span { font-family: var(--serif); font-size: 4.5rem; font-style: italic; color: var(--gold); opacity: 0.5; -webkit-text-stroke: 0; }
.sub-card-body, .project-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.sub-num { font-family: var(--mono); font-size: 10px; color: var(--gold); letter-spacing: 0.22em; }
.sub-card-body h2, .project-body h2 { font-size: 1.55rem; font-weight: 500; }
.sub-card-body p, .project-body p { font-size: 0.88rem; color: var(--krem); opacity: 0.66; }
.sub-card-body .text-link { margin-top: auto; padding-top: 0.7rem; }

.empty-state { text-align: center; padding: 5rem 1rem; border: 1px dashed var(--cizgi); }
.empty-state p { color: var(--soluk); margin-bottom: 1.8rem; font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em; }

/* ---------- SEO metin bloğu ---------- */
.seo-blok { border-top: 1px solid var(--cizgi); background: var(--zemin); position: relative; z-index: 2; }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: var(--zemin);
  border-top: 1px solid var(--cizgi);
  padding: clamp(6rem, 12vh, 10rem) 0;
  position: relative;
  z-index: 2;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); font-weight: 400; max-width: 22ch; }

/* ---------- Makale sayfası ---------- */
.article-page .page-hero { border-bottom: 0; }
.article-meta { font-family: var(--mono); color: var(--gold); font-size: 10.5px; letter-spacing: 0.22em; }
.article-cover { margin-top: 2.5rem; aspect-ratio: 16/8; object-fit: cover; width: 100%; filter: brightness(0.85); position: relative; z-index: 2; }
.article-body { padding: clamp(3rem, 6vw, 5rem) 0; position: relative; z-index: 2; background: var(--zemin); }
.article-summary { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; line-height: 1.3; color: var(--krem); margin-bottom: 2.4rem; }
.article-body p { margin-bottom: 1.5rem; color: var(--krem); opacity: 0.8; font-size: 1.02rem; line-height: 1.8; }
.article-body h2 { font-size: 2.1rem; font-weight: 500; margin: 3rem 0 1.2rem; }
.article-body h2::before { content: '— '; color: var(--gold); }
.article-body h3 { font-size: 1.5rem; font-weight: 500; margin: 2.4rem 0 1rem; }
.other-articles li { border-bottom: 1px solid var(--cizgi); }
.other-articles a {
  display: block;
  padding: 1.3rem 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--krem);
  transition: color 0.35s ease, padding-left 0.35s ease;
}
.other-articles a:hover { color: var(--gold); padding-left: 0.7rem; }

/* ---------- Hakkımızda ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(1.2rem, 2.4vw, 2.2rem); background: none; border: 0; }
.value-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
  border: 1px solid var(--cizgi);
  border-radius: 2px;
  padding: 2.4rem 2rem;
  min-height: 220px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.value-card:hover { border-color: var(--gold-soluk); transform: translateY(-2px); }
.value-card h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: 0.9rem; }
.value-card h3::before { content: none; }
.value-card p { font-size: 0.9rem; color: var(--krem); opacity: 0.68; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 500; margin-bottom: 1.6rem; }
.contact-info li { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.1rem 0; border-bottom: 1px solid var(--cizgi); }
.contact-info strong { font-family: var(--mono); font-weight: 400; font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--soluk); }
.contact-info a, .contact-info span { color: var(--krem); font-size: 1rem; }
.contact-info a:hover { color: var(--gold); }

.contact-form form { display: flex; flex-direction: column; gap: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soluk);
}
.contact-form input, .contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cizgi);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--krem);
  transition: border-color 0.4s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: none; }
.contact-form .btn { align-self: flex-start; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.alert { padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: 0.9rem; border-radius: 2px; }
.alert-ok { background: rgba(204, 163, 82, 0.08); border: 1px solid var(--gold-soluk); color: var(--gold); }
.alert-err { background: rgba(255, 102, 0, 0.08); border: 1px solid rgba(255, 102, 0, 0.4); color: #ff8a3d; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--zemin); color: var(--soluk); border-top: 1px solid var(--cizgi); padding-top: clamp(4rem, 8vw, 6rem); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2.2rem; padding-bottom: 3.5rem; }
.footer-brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; border-bottom: 1px solid var(--cizgi); padding-bottom: 1.8rem; }
.footer-brand .brand-logo { height: 52px; }
.footer-slogan { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.3rem; }
.footer-tagline { margin-top: 0 !important; max-width: none !important; }
.footer-tagline { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soluk); margin-top: 1.2rem; max-width: 30ch; line-height: 2; }
.footer-col h3 { font-family: var(--mono); font-weight: 400; font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a, .footer-contact span, .footer-contact li { font-size: 0.84rem; color: var(--soluk); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  border-top: 1px solid var(--cizgi);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soluk);
}
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { color: var(--soluk); }
.footer-links a:hover { color: var(--gold); }

/* ---------- Kaydırma animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.gorunur { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-in-cizgi { animation: none; }
  .sahne { display: none; }
}

/* ---------- Mobil ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  /* dikkat: backdrop-filter fixed menu panelinin referansini bozar — mobilde kullanma */
  .site-header { mix-blend-mode: normal; background: var(--zemin); backdrop-filter: none; border-bottom: 1px solid var(--cizgi); }
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--zemin);
    padding: 1.6rem;
    overflow-y: auto;
    display: none;
    z-index: 99;
  }
  .main-nav.acik { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--cizgi); }
  .main-nav a { padding: 1.1rem 0.4rem; font-size: 12px; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; padding: 0 0 1rem 1rem; }
  .nav-cta a { margin-left: 0; border: 0; color: var(--gold); }

  .karo { width: 130px; height: 172px; margin: -86px 0 0 -65px; }
  .hero-ustbar { display: none; }
  .hero-altbar span:last-child { display: none; }

  .cat-card { grid-template-columns: 44px 1fr; gap: 14px; }
  .cat-card > p, .cat-subs { grid-column: 2; }
  .cat-subs { text-align: left; }
  .cat-arrow { bottom: 1.6rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
