/* ═══════════════════════════════════════════════════════════
   VERA — Tanıtım Şablonu
   Stil: koyu/krem editoryal sanat yönetimi — dev Fraunces
   serifler, film greni, özel imleç, blend-mode nav, yapışkan
   kart destesi, dev footer yazısı. Ödeme/fiyat yok; saf tanıtım.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Renkler */
  --paper: #F1EDE2;          /* sıcak krem zemin */
  --paper-soft: #E9E4D6;
  --ink: #131009;            /* mürekkep */
  --ink-2: #1D1910;          /* koyu bölümlerde kart zemini */
  --accent: #2B44FF;         /* elektrik mavisi — sektöre göre tek değişecek renk */
  --muted: rgba(19, 16, 9, 0.55);
  --faint: rgba(19, 16, 9, 0.16);
  --line: rgba(19, 16, 9, 0.14);
  --cream-muted: rgba(241, 237, 226, 0.55);
  --cream-line: rgba(241, 237, 226, 0.16);

  /* Tipografi */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Space Grotesk", -apple-system, "Segoe UI", sans-serif;

  /* Ritim */
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(96px, 16vw, 200px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }
em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.container { width: min(1280px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2 * var(--gutter)); }

/* ─────────── Film greni ─────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1.5%); }
  50%  { transform: translate(1.5%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ─────────── Özel imleç ─────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 3000;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
  opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor.is-hover { width: 64px; height: 64px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ─────────── NAV (blend-mode ile her zeminde okunur) ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  mix-blend-mode: difference;
  color: #fff;
}
.nav__inner {
  height: var(--nav-h);
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.nav__logo sup { font-size: 0.55em; font-family: var(--font-sans); }
.nav__links {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav__links a { position: relative; padding-block: 4px; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 1.4rem; }
.nav__cta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.6em 1.3em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.nav__cta:hover { background: #fff; color: #000; }
.nav__cta span { display: inline-block; transition: transform 0.35s var(--ease); }
.nav__cta:hover span { transform: translate(3px, -3px); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 30px; height: 1.5px;
  background: currentColor;
  margin-inline: auto;
  transition: transform 0.4s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ─────────── Tam ekran menü ─────────── */
.menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5rem);
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.15em;
  border-bottom: 1px solid var(--cream-line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
  transition-delay: 0s;
}
.menu.is-open .menu__links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.15s + var(--i) * 0.06s);
}
.menu__links a:hover { color: var(--accent); font-style: italic; }
.menu__links small {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--cream-muted);
}
.menu__foot {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ─────────── Butonlar ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 1.05em 2em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn span { transition: transform 0.35s var(--ease); }
.btn:hover span { transform: translateY(3px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: none; }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4vh) var(--gutter) 9vh;
  overflow: clip;
}
.hero__ghost {
  position: absolute;
  top: 6vh;
  right: -4vw;
  font-family: var(--font-display);
  font-size: clamp(180px, 34vw, 560px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--faint);
  letter-spacing: -0.03em;
  user-select: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  width: 46vw; height: 46vw;
  min-width: 340px; min-height: 340px;
  right: -8vw; top: -10vw;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 65%);
  filter: blur(90px);
  opacity: 0.22;
  animation: blob-drift 12s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8vw, 9vh) scale(1.15); }
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  animation: fade-up 1s var(--ease) 0.9s both;
}
.hero__kicker-line { width: clamp(40px, 8vw, 110px); height: 1px; background: var(--ink); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 13.5vw, 12.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__title .line__in { display: block; transform: translateY(115%); animation: line-rise 1.1s var(--ease) forwards; }
.hero__title .line:nth-child(2) .line__in { animation-delay: 0.14s; }
@keyframes line-rise { to { transform: translateY(0); } }
.hero__title .outline { color: transparent; -webkit-text-stroke: 2.5px var(--ink); }
.hero__title em { color: var(--accent); }
.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  padding-right: 170px; /* dönen rozete yer aç */
  animation: fade-up 1s var(--ease) 0.55s both;
}
.hero__sub {
  max-width: 44ch;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--muted);
}
.hero__sub em { color: var(--ink); }
.hero__actions { display: flex; gap: 0.8rem; flex-shrink: 0; flex-wrap: wrap; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Dönen rozet */
.hero__orbit {
  position: absolute;
  right: clamp(1rem, 5vw, 4.5rem);
  bottom: 8vh;
  width: 120px; height: 120px;
  z-index: 2;
}
.hero__orbit svg {
  width: 100%; height: 100%;
  animation: orbit-spin 16s linear infinite;
  fill: var(--ink);
}
.hero__orbit text { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; font-family: var(--font-sans); }
.hero__orbit-dot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* ─────────── Değerler şeridi ─────────── */
.ribbon {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(1.4rem, 3vw, 2.6rem);
  transform: rotate(-2deg) scale(1.06);
  overflow: clip;
}
.ribbon__track {
  display: flex;
  align-items: center;
  gap: 3.5vw;
  width: max-content;
  animation: ribbon-scroll 22s linear infinite;
}
.ribbon__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 4.6rem);
  white-space: nowrap;
}
.ribbon__track span:nth-child(4n + 3) { color: transparent; -webkit-text-stroke: 1.5px var(--paper); }
.ribbon__track em { color: var(--accent); font-size: clamp(1.2rem, 3vw, 2rem); font-style: normal; }
@keyframes ribbon-scroll { to { transform: translateX(-50%); } }

/* ─────────── Bölüm iskeleti ─────────── */
.section { padding-block: var(--section); position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section__head { margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-right: 1rem;
}
.section__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.section--ink .section__label { color: var(--cream-muted); }
.section__head::after {
  content: "";
  display: block;
  width: 100%; height: 1px;
  background: var(--line);
  margin-top: 1.2rem;
}
.section--ink .section__head::after { background: var(--cream-line); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 2.2rem;
  text-wrap: balance;
}
.section__title em { color: var(--accent); }

/* ─────────── Manifesto ─────────── */
.manifesto { padding-top: calc(var(--section) * 0.9); }
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.6rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.manifesto__text .w { color: var(--faint); transition: color 0.5s var(--ease); }
.manifesto__text .w.on { color: var(--ink); }
.manifesto__text em { font-style: italic; }
.manifesto__text .w.on em, .manifesto__text em .w.on { color: var(--accent); }
.manifesto__sign {
  margin-top: 3rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--muted);
}

/* ─────────── Hizmetler (editoryal satırlar) ─────────── */
.services { padding-bottom: 0; }
.services__list { border-top: 1px solid var(--line); margin-top: -1px; }
.service {
  position: relative;
  display: grid;
  grid-template-columns: clamp(40px, 7vw, 110px) 1.1fr 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3.5vw, 3rem) var(--gutter);
  border-bottom: 1px solid var(--line);
  overflow: clip;
  isolation: isolate;
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.service:hover::after { transform: scaleY(1); transform-origin: top; }
.service__no {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  transition: color 0.4s;
}
.service__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition: color 0.4s, transform 0.5s var(--ease);
}
.service__name em { color: var(--accent); }
.service__desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 40ch;
  transition: color 0.4s;
}
.service__arrow {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.5s var(--ease), color 0.4s;
}
.service:hover .service__no,
.service:hover .service__desc { color: var(--cream-muted); }
.service:hover .service__name { color: var(--paper); transform: translateX(0.6vw); }
.service:hover .service__arrow { color: var(--accent); transform: translate(6px, -6px); }

/* ─────────── Yaklaşım (yapışkan kart destesi) ─────────── */
.approach { padding-bottom: calc(var(--section) * 0.5); }
.stack { display: flex; flex-direction: column; gap: clamp(1.5rem, 4vh, 3rem); }
.stack__card {
  position: sticky;
  background: var(--ink-2);
  border: 1px solid var(--cream-line);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  min-height: 46vh;
}
.stack__card:nth-child(1) { top: calc(var(--nav-h) + 2vh); }
.stack__card:nth-child(2) { top: calc(var(--nav-h) + 7vh); }
.stack__card:nth-child(3) { top: calc(var(--nav-h) + 12vh); }
.stack__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(241, 237, 226, 0.35);
}
.stack__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.stack__body h3 em { color: var(--accent); }
.stack__body p {
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 52ch;
}

/* ─────────── Sayılar ─────────── */
.stats { padding-top: 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cream-line);
}
.stat {
  min-width: 0; /* grid'in mobilde daralabilmesi için */
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--cream-line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat strong i { font-style: italic; font-size: 0.42em; color: var(--accent); }
.stat p {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream-muted);
}

/* ─────────── Sesler ─────────── */
.voices__list { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); }
.voice { max-width: min(100%, 56rem); position: relative; }
.voice--right { margin-left: auto; text-align: right; }
.voice blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.voice blockquote em { color: var(--accent); }
.voice::before {
  content: "“";
  position: absolute;
  top: -0.55em;
  left: -0.45em;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  color: var(--faint);
  z-index: -1;
}
.voice--right::before { left: auto; right: -0.25em; }
.voice figcaption {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ─────────── SSS ─────────── */
.faq__list { border-top: 1px solid var(--line); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--accent); font-style: italic; }
.faq__list summary span {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq__list details[open] summary span { transform: rotate(45deg); }
.faq__list details[open] summary { font-style: italic; }
.faq__list details p {
  padding-bottom: 1.8rem;
  color: var(--muted);
  max-width: 58ch;
}

/* ─────────── Tanışalım ─────────── */
.contact { text-align: center; overflow: clip; }
.contact__pre {
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream-muted);
  margin-bottom: clamp(1rem, 3vh, 2rem);
}
.contact__big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 15rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  transition: color 0.4s var(--ease);
}
.contact__big em {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left 92%;
  background-size: 0% 3px;
  transition: background-size 0.6s var(--ease);
}
.contact__big:hover { color: var(--accent); }
.contact__big:hover em { background-size: 100% 3px; }
.contact__big span {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.5em;
  vertical-align: 0.5em;
  transition: transform 0.5s var(--ease);
}
.contact__big:hover span { transform: translate(0.15em, -0.15em); }
.contact__meta {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: clamp(2rem, 6vh, 4rem);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
}
.contact__meta a {
  color: var(--cream-muted);
  border-bottom: 1px solid var(--cream-line);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.contact__meta a:hover { color: var(--paper); border-color: var(--paper); }

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(3rem, 6vw, 5rem);
  overflow: clip;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--cream-line);
}
.footer__about p { color: var(--cream-muted); font-size: 0.95rem; max-width: 34ch; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer__nav a, .footer__social a {
  color: var(--cream-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--paper); transform: translateX(4px); }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(120px, 27vw, 480px);
  line-height: 0.78;
  text-align: center;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(241, 237, 226, 0.28);
  user-select: none;
  transform: translateY(6%);
  transition: color 1s var(--ease);
}
.footer__wordmark:hover { color: rgba(241, 237, 226, 0.06); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  border-top: 1px solid var(--cream-line);
  font-size: 0.78rem;
  color: var(--cream-muted);
}

/* ─────────── Scroll reveal ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(5px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ─────────── Kırılımlar ─────────── */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .service { grid-template-columns: auto 1fr auto; }
  .service__desc { display: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; }
  .hero { align-items: center; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 2rem; margin-top: 2.5rem; padding-right: 0; }
  .hero__orbit { display: none; }
  .hero__ghost { font-size: 52vw; right: -10vw; top: 10vh; }
  .stack__card { grid-template-columns: 1fr; min-height: 0; gap: 1.2rem; }
  .stack__no { font-size: 3rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat strong { font-size: clamp(2.2rem, 9.5vw, 3.6rem); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--cream-line); }
  .voice, .voice--right { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(3rem, 16.5vw, 5rem); }
  .hero__actions .btn { padding: 0.95em 1.6em; font-size: 0.82rem; }
  .service { padding-block: 1.4rem; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .contact__meta { flex-direction: column; align-items: center; gap: 1rem; }
}

@media (max-width: 420px) {
  :root { --gutter: 18px; }
  .hero__sub { font-size: 1rem; }
  .manifesto__text { font-size: 1.55rem; }
}

/* ─────────── Erişilebilirlik: hareket azaltma ─────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .cursor { display: none; }
  .hero__blob, .hero__orbit svg { animation: none; }
  .ribbon__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .hero__title .line__in { animation: none; transform: none; }
  .hero__kicker, .hero__foot { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .manifesto__text .w { color: var(--ink); }
  .manifesto__text em .w, .manifesto__text .w em { color: var(--accent); }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
