/* ============================================================
   TEORİ MEDIA — stylesheet
   ============================================================ */

:root {
  --bg: #0A0A0C;
  --bg-raised: #111114;
  --bg-card: #16161A;
  --ink: #F6F5F1;
  --ink-dim: #B8B7BE;
  --ink-faint: #6E6E76;
  --line: #232327;
  --accent: #C81E3A;
  --accent-soft: #5A1622;

  --font-display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;

  --wrap: 1240px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

/* -------------------- ambient glam layers -------------------- */
.top-sheen {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120;
  background: linear-gradient(90deg, transparent, var(--accent), #8B6BFF, var(--accent), transparent);
  background-size: 200% 100%;
  animation: sheen-sweep 6s linear infinite;
  opacity: .85;
}
@keyframes sheen-sweep { from { background-position: 0% 0; } to { background-position: 200% 0; } }

.ambient { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; will-change: transform; }
.orb-a { width: 46vw; height: 46vw; left: -12vw; top: -10vw; background: radial-gradient(circle, var(--accent-soft), transparent 70%); animation: drift-a 22s ease-in-out infinite; }
.orb-b { width: 38vw; height: 38vw; right: -10vw; top: 30vh; background: radial-gradient(circle, #2A2E6B, transparent 70%); animation: drift-b 26s ease-in-out infinite; }
.orb-c { width: 30vw; height: 30vw; left: 20vw; bottom: -12vw; background: radial-gradient(circle, #4A1622, transparent 70%); animation: drift-c 30s ease-in-out infinite; }
@keyframes drift-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4vw, 5vw); } }
@keyframes drift-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5vw, 4vw); } }
@keyframes drift-c { 0%,100% { transform: translate(0,0); } 50% { transform: translate(3vw, -4vw); } }
@media (prefers-reduced-motion: reduce) { .orb, .top-sheen { animation: none; } }

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,30,58,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 5; opacity: 0; transition: opacity .4s ease;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { display: block; } }

/* content sits above ambient layer */
.site-header, main, .site-footer { position: relative; z-index: 1; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

@media (min-width: 768px) {
  .wrap { padding: 0 40px; }
}

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin: 0;
  position: relative;
  padding-left: 22px;
}
.h-display::before {
  content: ""; position: absolute; left: 0; top: .28em; bottom: .22em; width: 3px;
  background: linear-gradient(var(--accent), transparent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .8s var(--ease) .15s;
}
.reveal.is-visible > .h-display::before,
.h-display.reveal.is-visible::before { transform: scaleY(1); }
.max-w-lg { max-width: 720px; }
.mb-xl { margin-bottom: 64px; }

.eyebrow-plain { color: var(--ink-faint); font-size: .95rem; }
.muted-note { color: var(--ink-faint); font-size: .85rem; }

/* -------------------- buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  transition: transform .4s var(--ease), background .3s ease, border-color .3s ease, box-shadow .4s ease;
  white-space: nowrap;
}
.btn-light { background: var(--ink); color: var(--bg); box-shadow: 0 0 0 rgba(200,30,58,0); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -10px rgba(200,30,58,0.55), 0 4px 18px rgba(0,0,0,0.35); }
.btn-outline { border: 1px solid var(--line); color: var(--ink); backdrop-filter: blur(2px); }
.btn-outline:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px -14px rgba(200,30,58,0.4); }
.btn-sm { padding: 10px 20px; }
.btn-link { color: var(--ink); text-decoration: underline; font-size: .9rem; }

/* -------------------- custom cursor -------------------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  display: none;
}
.cursor-dot.is-hover { background: transparent; border: 1px solid var(--ink); transform: translate(-50%, -50%) scale(2.4); }
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
  body.cursor-ready { cursor: none; }
}

/* -------------------- header -------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.site-header.solid {
  background: rgba(10,10,12,0.85);
  border-color: var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
@media (min-width: 768px) { .header-inner { padding: 20px 40px; } }

.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; }
.logo .dot { color: var(--accent); text-shadow: 0 0 12px rgba(200,30,58,0.7); }

.nav-desktop { display: none; align-items: center; gap: 36px; }
.nav-desktop a:not(.btn) { position: relative; font-size: .9rem; color: var(--ink-dim); transition: color .25s ease; padding-bottom: 4px; }
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--accent);
  transition: right .35s var(--ease);
}
.nav-desktop a:not(.btn):hover { color: var(--ink); }
.nav-desktop a:not(.btn):hover::after { right: 0; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }

.menu-toggle { display: flex; flex-direction: column; gap: 6px; padding: 8px; }
.menu-toggle span { width: 22px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.nav-mobile {
  display: flex; flex-direction: column; gap: 18px;
  padding: 0 24px 28px;
  max-height: 0; overflow: hidden;
  background: rgba(10,10,12,0.98);
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.nav-mobile.open { max-height: 420px; padding: 8px 24px 28px; }
.nav-mobile a { font-size: 1rem; color: var(--ink-dim); }
.nav-mobile .btn { align-self: flex-start; margin-top: 4px; }

/* -------------------- hero -------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  padding: 140px 0 60px;
}
.hero-bg { position: absolute; inset: 0; will-change: transform; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 100%, rgba(200,30,58,0.2) 0%, transparent 70%);
}
.hero-inner { position: relative; }

.hero-watermark {
  position: absolute; top: 8%; right: 2%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(8rem, 26vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,245,241,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; letter-spacing: .03em; color: var(--ink-dim);
  margin-bottom: 22px;
}
.hero-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px 2px rgba(200,30,58,0.7); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 11vw, 9.5rem);
  margin: 0;
  position: relative;
}
.grad-text {
  background: linear-gradient(100deg, var(--ink) 30%, var(--accent) 65%, var(--ink) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: grad-shift 7s ease-in-out infinite;
}
@keyframes grad-shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) { .grad-text { animation: none; } }

.hero-copy { margin-top: 32px; max-width: 640px; }
.hero-sub { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.9rem); line-height: 1.3; margin: 0; }
.hero-desc { color: var(--ink-dim); font-size: clamp(1rem, 2vw, 1.15rem); margin: 16px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-foot { display: flex; justify-content: space-between; margin-top: 64px; font-size: .75rem; color: var(--ink-faint); letter-spacing: .04em; }
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline; } }

.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue i {
  display: block; width: 1px; height: 22px; background: linear-gradient(var(--ink-faint), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; top: -22px; left: 0; width: 100%; height: 100%;
  background: linear-gradient(var(--accent), transparent);
  animation: cue-fall 2.2s ease-in-out infinite;
}
@keyframes cue-fall { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue i::after { animation: none; } }

.reveal-init { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------- grain texture -------------------- */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .35;
}
.hero-bg { background: radial-gradient(130% 150% at 20% 15%, #1c1c20 0%, var(--bg) 60%); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg) 100%);
}

/* -------------------- marquee -------------------- */
.marquee { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  padding-right: 2rem;
  color: var(--ink-faint);
  white-space: nowrap;
}
.marquee-track span i { color: var(--accent); font-style: normal; font-size: .55em; margin: 0 .3em; vertical-align: middle; }
.marquee-track span:first-child { color: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------- sections -------------------- */
.section { padding: 96px 0; }
.section-border { border-top: 1px solid var(--line); }
@media (min-width: 768px) { .section { padding: 140px 0; } }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; }
.col-4 { grid-column: span 12; }
.col-5 { grid-column: span 12; }
.col-7 { grid-column: span 12; }
.col-8 { grid-column: span 12; }
@media (min-width: 900px) {
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.about-copy { margin-top: 28px; max-width: 640px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-dim); }
.about-copy p { margin: 0 0 24px; }
.about-copy .strong { color: var(--ink); }

/* -------------------- services -------------------- */
.services-list { border-bottom: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  row-gap: 8px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left .4s var(--ease);
}
.service-row::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.service-row:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--ink-faint); transition: color .4s ease, text-shadow .4s ease; }
.service-row:hover .service-num { color: var(--accent); text-shadow: 0 0 16px rgba(200,30,58,0.6); }
.service-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0;
  transition: transform .4s var(--ease);
}
.service-row:hover .service-title { transform: translateX(10px); }
.service-desc { grid-column: 2; color: var(--ink-dim); font-size: 1.02rem; max-width: 480px; margin: 0; }

@media (min-width: 900px) {
  .service-row { grid-template-columns: 60px 320px 1fr; }
  .service-desc { grid-column: 3; }
}

/* -------------------- projects -------------------- */
.projects-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 56px; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 800px) { .projects-grid { grid-template-columns: 1fr 1fr; } }

.project-card {
  position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--line);
  height: 340px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}
.project-card:hover, .project-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,30,58,0.25);
  border-color: rgba(200,30,58,0.35);
}
.project-card.big { height: 340px; }
@media (min-width: 800px) { .project-card.big { grid-column: span 2; } }

.project-card::before, .project-card::after,
.project-card .corner { position: absolute; width: 18px; height: 18px; border-color: rgba(246,245,241,0.35); z-index: 2; opacity: 0; transition: opacity .4s ease; }
.project-card::before { content: ""; top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.project-card::after { content: ""; bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
.project-card:hover::before, .project-card:hover::after,
.project-card:focus-within::before, .project-card:focus-within::after { opacity: 1; }

.tile { position: absolute; inset: 0; transition: transform .7s var(--ease); }
.project-card:hover .tile, .project-card:focus-within .tile { transform: scale(1.06); }
.tile::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 150% at 20% 20%, #1c1c20 0%, var(--bg) 60%);
}
.tile::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 35%, var(--bg) 100%); }
.tile.accent::before { background: radial-gradient(120% 140% at 25% 15%, var(--accent-soft) 0%, var(--bg) 55%); }

/* -------------------- project photos -------------------- */
/* Kartların oranı fotoğrafların gerçek oranıyla (3:2) birebir eşleşir,
   böylece cover kullanılsa bile hiçbir kırpma olmadan fotoğrafın tamamı görünür. */
.project-card, .project-card.big { aspect-ratio: 3 / 2; height: auto; }

.project-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: zoom-in;
  transition: transform .7s var(--ease);
}
.tile-1::before, .tile-2::before, .tile-3::before,
.tile-4::before, .tile-5::before, .tile-6::before { background: none; }

/* -------------------- fullscreen photo lightbox -------------------- */
.photo-lightbox {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(6,6,8,0.92);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.photo-lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity .35s var(--ease), visibility 0s linear 0s;
}
.photo-lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  transform: scale(.92);
  transition: transform .35s var(--ease);
}
.photo-lightbox.is-open img { transform: scale(1); }
.photo-lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 50%; color: var(--ink);
  font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.photo-lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .photo-lightbox, .photo-lightbox img, .project-photo { transition: none; }
}
.tile-1 .grain, .tile-2 .grain, .tile-3 .grain, .tile-4 .grain, .tile-5 .grain, .tile-6 .grain { position: absolute; inset: 0; }
.tile-1 .grain { filter: hue-rotate(10deg); } .tile-2 .grain { filter: hue-rotate(60deg); }
.tile-3 .grain { filter: hue-rotate(110deg); } .tile-4 .grain { filter: hue-rotate(160deg); }
.tile-5 .grain { filter: hue-rotate(0deg); } .tile-6 .grain { filter: hue-rotate(220deg); }

.project-body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; pointer-events: none; }
.project-top { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--ink-dim); }
.arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: transform .5s var(--ease); }
.project-card:hover .arrow { transform: rotate(45deg); }
.project-bottom h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0; line-height: 1; }
.project-card.big .project-bottom h3 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.project-desc {
  color: var(--ink-dim); max-width: 340px; margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .5s var(--ease), margin-top .5s var(--ease);
}
.project-card:hover .project-desc, .project-card:focus-within .project-desc { max-height: 80px; opacity: 1; margin-top: 12px; }

/* -------------------- values -------------------- */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 40px 40px; margin-top: 64px; }
@media (min-width: 700px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-item { border-top: 1px solid var(--line); padding-top: 24px; position: relative; transition: padding-left .4s var(--ease); }
.value-item::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width .5s var(--ease); }
.value-item:hover { padding-left: 12px; }
.value-item:hover::before { width: 48px; }
.value-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin: 0 0 12px; }
.value-item p { color: var(--ink-dim); font-size: 1.05rem; margin: 0; }

/* -------------------- stats -------------------- */
.stats-section { background: var(--bg-raised); position: relative; overflow: hidden; }
.stats-section::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { position: relative; padding-left: 20px; }
.stat-item::before { content: ""; position: absolute; left: 0; top: .1em; bottom: .3em; width: 1px; background: var(--line); }
.stat-item:first-child::before { display: none; }
.stat-value { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.3rem, 6vw, 4.5rem); line-height: 1; text-shadow: 0 0 40px rgba(246,245,241,0.08); }
.stat-value.accent-color { color: var(--accent); text-shadow: 0 0 30px rgba(200,30,58,0.5); }
.stat-label { margin-top: 10px; color: var(--ink-dim); font-size: .95rem; }
.stats-note { margin-top: 48px; color: var(--ink-faint); font-size: .78rem; }

/* -------------------- connect / social -------------------- */
.ig-head { display: grid; gap: 28px; }
.ig-desc { color: var(--ink-dim); font-size: 1.1rem; max-width: 520px; margin-top: 16px; }
.connect-links { display: flex; flex-wrap: wrap; gap: 16px; }
@media (min-width: 800px) {
  .ig-head { grid-template-columns: 2fr 1fr; align-items: flex-end; }
  .connect-links { justify-content: flex-end; }
}

/* -------------------- contact -------------------- */
.contact-grid { align-items: start; }
.contact-desc { color: var(--ink-dim); font-size: 1.1rem; max-width: 380px; margin: 20px 0 44px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info .label { color: var(--ink-faint); font-size: .8rem; margin: 0; }
.contact-info .value { margin: 6px 0 0; font-size: 1.02rem; }
.contact-info .value a:hover { color: var(--accent); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.field label { display: block; font-size: .78rem; color: var(--ink-faint); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem; padding: 0 0 12px;
  outline: none; transition: border-color .3s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field select option { background: var(--bg); }
.contact-form > .field { margin-bottom: 24px; }

.field-check {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 4px 0 24px; cursor: pointer;
}
.field-check input[type="checkbox"] {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--accent); cursor: pointer;
}
.field-check span { color: var(--ink-dim); font-size: .88rem; line-height: 1.6; }
.field-check span a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.field-check span a:hover { color: var(--accent); }

.form-error { color: var(--accent); font-size: .9rem; margin: 0 0 20px; }

.form-success { padding: 40px; border: 1px solid var(--line); border-radius: 18px; background: var(--bg-card); }
.form-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin: 0 0 10px; }
.form-success p { color: var(--ink-dim); margin: 0 0 20px; }

/* -------------------- footer -------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 72px 0 40px; }
.footer-top { display: flex; flex-direction: column; gap: 40px; padding-bottom: 48px; }
@media (min-width: 800px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-tag { color: var(--ink-faint); font-size: .9rem; max-width: 260px; margin-top: 12px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-cols .label { color: var(--ink-faint); font-size: .78rem; margin: 0 0 16px; }
.footer-cols a { display: block; font-size: .92rem; color: var(--ink-dim); margin-bottom: 10px; }
.footer-cols a:hover { color: var(--ink); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 8px; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--ink-faint);
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; } }

/* ============================================================
   EK BİLEŞENLER — yasal sayfalar, çerez bildirimi, SSS
   ============================================================ */

/* -------------------- legal / policy pages -------------------- */
.legal-hero { padding: 150px 0 56px; border-bottom: 1px solid var(--line); }
.legal-updated { color: var(--ink-faint); font-size: .85rem; margin: 18px 0 0 22px; }

.legal-content { padding: 72px 0 120px; }
.legal-content .legal-inner { max-width: 760px; }
.legal-content h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 56px 0 18px; padding-top: 24px; border-top: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { color: var(--ink-dim); font-size: 1.02rem; line-height: 1.75; margin: 0 0 18px; }
.legal-content p.legal-lead { color: var(--ink); font-size: 1.1rem; }
.legal-content ul.legal-list { list-style: none; margin: 0 0 18px; padding: 0; }
.legal-content ul.legal-list li {
  position: relative; padding-left: 22px; color: var(--ink-dim); font-size: 1.02rem; line-height: 1.7; margin-bottom: 10px;
}
.legal-content ul.legal-list li::before {
  content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a:not(.btn) { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:not(.btn):hover { color: var(--accent); }
.legal-table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: .95rem; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--ink-dim); }
.legal-table th { color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .85rem; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0 22px; }
.legal-toc a { font-size: .85rem; color: var(--ink-faint); }
.legal-toc a:hover { color: var(--accent); }

/* -------------------- footer legal row -------------------- */
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px;
  font-size: .78rem; color: var(--ink-faint);
}
.footer-legal a { color: var(--ink-faint); }
.footer-legal a:hover { color: var(--ink); }

/* -------------------- cookie consent banner -------------------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 500;
  max-width: 620px; margin: 0 auto;
  background: rgba(17,17,20,0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
  pointer-events: none;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner p { margin: 0 0 16px; color: var(--ink-dim); font-size: .9rem; line-height: 1.6; }
.cookie-banner p a { color: var(--ink); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-actions .btn { padding: 11px 22px; font-size: .85rem; }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }

/* -------------------- FAQ / SSS accordion -------------------- */
.faq-list { max-width: 820px; margin-top: 20px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink);
}
.faq-q .faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; position: relative; transition: transform .4s var(--ease), border-color .3s ease;
}
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-q .faq-icon::before { width: 12px; height: 1px; }
.faq-q .faq-icon::after { width: 1px; height: 12px; }
.faq-item[open] .faq-q .faq-icon { border-color: var(--accent); transform: rotate(45deg); }
.faq-a { padding: 0 34px 28px 4px; color: var(--ink-dim); font-size: 1rem; line-height: 1.7; max-width: 680px; }
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
