/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ TOKENS ============ */
:root {
  --bg: #efece4;        /* cream / paper */
  --bg-alt: #e8e4d8;
  --ink: #1a1a18;       /* near black */
  --ink-soft: #2c2c28;
  --mute: #6b6a62;
  --line: #d4cfc1;
  --accent: #ff4a1c;    /* warm red-orange */
  --accent-2: #1f3a2e;  /* deep forest */

  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --pad: clamp(20px, 3vw, 40px);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip; /* clip yerine hidden — sticky'yi bozmaz, scroll container oluşturmaz */
  max-width: 100vw;
}

/* Global mobile safety: media never overflows its container */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* hidden olursa body scroll container'a dönüşür ve sticky kırılır */
}

/* Paper texture */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><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>");
}

/* ============ HEADER — Editorial ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px var(--pad);
  color: var(--ink);
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
}
/* Scrolled state — applied via JS */
.header.is-scrolled {
  background: rgba(239,236,228,0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  padding: 12px var(--pad);
  border-bottom: 1px solid rgba(26,26,24,0.08);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1700px;
  margin: 0 auto;
}

/* ===== Brand Logo — SVG asset ===== */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo__img {
  display: block;
  height: 60px;
  width: auto;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.logo:hover .logo__img {
  opacity: 0.85;
}
.logo__img--lg { height: 80px; }
.logo__img--sm { height: 28px; }

/* ===== Navigation — Editorial (matches eyebrow/wordmark language) ===== */
.nav {
  justify-self: center;
}
.nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(14px, 2.4vw, 36px);
  align-items: center;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 2px;
  color: var(--ink);
  text-decoration: none;
}
.nav__num {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-transform: uppercase;
  transition: color .35s ease;
}
.nav__num::before { content: '['; margin-right: 4px; opacity: 0.5; }
.nav__num::after  { content: ']'; margin-left: 4px; opacity: 0.5; }

.nav__label {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color .35s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.nav__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

/* Hover state — bring item alive */
.nav a:hover .nav__num,
.nav a:focus-visible .nav__num {
  color: var(--ink);
}
.nav a:hover .nav__label,
.nav a:focus-visible .nav__label {
  color: var(--accent);
}
.nav a:hover .nav__bar,
.nav a:focus-visible .nav__bar {
  transform: scaleX(1);
}

/* Aktif sayfa — kalıcı accent underline + ink rengi label */
.nav a.is-active { color: var(--ink); }
.nav a.is-active .nav__label { color: var(--accent); }
.nav a.is-active .nav__bar {
  background: var(--accent);
  transform: scaleX(1);
}

/* ===== Right side: status + CTA ===== */
.header__right {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}

.header__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.7;
  transition: opacity .3s ease;
}
.header__status:hover { opacity: 1; }
.header__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d176;
  box-shadow: 0 0 0 0 rgba(52,209,118,.6);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
.header__status-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.header__status-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.header__status-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,209,118,.6); }
  70% { box-shadow: 0 0 0 8px rgba(52,209,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,209,118,0); }
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: gap .35s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.header__cta:hover {
  gap: 14px;
  background: currentColor;
}
.header__cta:hover .header__cta-label,
.header__cta:hover .header__cta-arrow {
  /* Invert via mix-blend-mode parent or rely on color contrast — use a trick: */
  color: var(--bg);
}
/* Use mix-blend-mode-friendly approach: arrow circle accent */
.header__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.header__cta:hover .header__cta-arrow {
  transform: rotate(-45deg);
}

/* When header is scrolled (not difference), simplify hover */
.header.is-scrolled .header__cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  background: none;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  color: inherit;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: currentColor;
  transition: transform .25s, opacity .2s, top .25s;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Mobile drawer — editorial */
.drawer {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0;
  height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  padding: 96px var(--pad) 32px;
  z-index: 49;
  overflow-y: auto;
}
/* When drawer is open: lock body scroll + keep header opaque on top */
body.drawer-open { overflow: hidden; }
body.drawer-open .header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 51;
  color: var(--ink);
}
.drawer.is-open { display: flex; flex-direction: column; }
.drawer ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.drawer li {
  border-bottom: 1px solid var(--line);
}
.drawer a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 380;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  transition: color .3s ease, padding-left .35s ease;
}
.drawer a:hover {
  color: var(--accent);
  padding-left: 12px;
}
.drawer__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--mute);
  font-weight: 500;
}
.drawer__foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
  border-top: 1px solid var(--line);
}
.drawer__foot a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Corner meta info */
.hero__meta {
  position: absolute;
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  z-index: 5;
}
.hero__meta--tl { top: 78px; left: var(--pad); }
.hero__meta--tr { top: 78px; right: var(--pad); align-items: flex-end; }
.hero__meta--bl { bottom: 88px; left: var(--pad); }
.hero__meta--br { bottom: 88px; right: var(--pad); align-items: flex-end; }
.meta__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
}
.meta__value {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink);
  font-weight: 500;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,74,28,.6);
  animation: pulse 2s infinite;
}

/* Hero inner content — 2-column, CTA floats above */
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  padding: 120px 0 80px;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 44px);
  container-type: inline-size;
  container-name: heroleft;
  min-width: 0;
}

.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Urgency badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,74,28,0.08);
  border: 1px solid rgba(255,74,28,0.2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  width: fit-content;
}
.hero__badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

.hero__top { margin-bottom: 22px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.3);
}
.kicker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* MAIN HEADLINE — Fully dynamic, fits container */
.hero__title {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}
.hero__title .line {
  display: block;
  font-weight: 380;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  white-space: nowrap;
  font-size: 14.5cqi;
}

@supports not (font-size: 1cqi) {
  .hero__title .line { font-size: clamp(48px, 7.5vw, 132px); }
}
.hero__title .line--accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero__title .reg {
  font-size: 0.18em;
  vertical-align: super;
  font-family: var(--sans);
  font-weight: 500;
  margin-left: 0.1em;
  opacity: .45;
}

/* HOOK — Psychological trigger copy */
.hero__hook {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 580px;
}
.hero__hook-main {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero__hook-main strong {
  color: var(--ink);
  font-weight: 600;
}
.strike {
  position: relative;
  color: var(--mute);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

/* Circular CTA — free-floating overlay between columns, lower */
.cta-circle {
  display: block;
  width: clamp(110px, 10vw, 160px);
  aspect-ratio: 1;
  position: absolute;
  left: 62%;
  bottom: clamp(60px, 10vw, 140px);
  transform: translateX(-50%);
  z-index: 5;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  animation: spin-cta 12s linear infinite;
}
@keyframes spin-cta {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
.cta-circle:hover { animation-play-state: paused; }
.cta-circle:hover .cta-circle__inner { transform: scale(1.06); }
.cta-circle__inner { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.cta-circle__inner {
  position: relative;
  width: 100%; height: 100%;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: grid; place-items: center;
}
.cta-circle__text {
  position: absolute; inset: 0;
  animation: spin 16s linear infinite;
}
.cta-circle__text svg {
  width: 100%; height: 100%;
}
.cta-circle__text text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  fill: var(--bg);
}
.cta-circle__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  animation: spin-cta-reverse 12s linear infinite;
}
@keyframes spin-cta-reverse {
  to { transform: rotate(-360deg); }
}
.cta-circle__arrow svg { width: 18px; height: 18px; }

/* Featured image card */
.hero__feature {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.hero__feature-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-alt);
  box-shadow:
    0 2px 4px rgba(26,26,24,0.04),
    0 14px 32px -12px rgba(26,26,24,0.20),
    0 36px 64px -24px rgba(26,26,24,0.28);
  transition: box-shadow .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
}
.hero__feature:hover .hero__feature-img {
  box-shadow:
    0 4px 6px rgba(26,26,24,0.06),
    0 22px 44px -14px rgba(26,26,24,0.26),
    0 48px 88px -28px rgba(26,26,24,0.36);
  transform: translateY(-3px);
}
.hero__feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s;
  filter: saturate(0.92);
}
.hero__feature:hover .hero__feature-img img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.hero__feature-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
}
.hero__feature figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}
.hero__feature-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__feature-title sup {
  font-size: 9px;
  vertical-align: super;
  opacity: .55;
  margin-left: 2px;
}
.hero__feature-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--mute);
}

/* ============ TICKER ============ */
.ticker {
  margin: 0 calc(-1 * var(--pad));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.ticker__track {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  color: var(--ink);
  width: max-content;            /* track sizes to natural content width */
  will-change: transform;
}
.ticker__track > * { flex-shrink: 0; }   /* items must not collapse */
.ticker__sep { color: var(--accent); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION — Creative Editorial
   ============================================ */
.services {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(90px, 11vw, 180px) var(--pad) clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
/* Dot-grid decorative background */
.services__grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,24,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.services__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ====== HEADER ====== */
.services__head {
  margin-bottom: clamp(60px, 8vw, 120px);
}
.services__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.services__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.services__eyebrow-num {
  color: var(--ink);
  font-weight: 500;
}
.services__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--line);
}
.services__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}

.services__head-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

.services__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 8px);
  min-width: 0;
  /* Container query reference for child lines */
  container-type: inline-size;
  container-name: heroservicetitle;
}
.services__title-line {
  display: block;
  white-space: nowrap;
  /* Calibrated so longest line ("Trafik değil, satış." ~20 chars) fits column width */
  font-size: 10.4cqi;
  will-change: transform, opacity;
}
@supports not (font-size: 1cqi) {
  .services__title-line { font-size: clamp(44px, 6vw, 104px); }
}
.services__title-accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 340;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.services__title-underline {
  position: absolute;
  bottom: -0.08em;
  left: 0;
  width: 100%;
  height: 0.15em;
  color: var(--accent);
  opacity: 0.55;
}
.services__title-accent--alt::after {
  content: "";
  position: absolute;
  right: -0.32em;
  top: 0.32em;
  width: 0.2em;
  height: 0.2em;
  background: var(--accent);
  border-radius: 50%;
}

.services__head-side {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  padding-bottom: 8px;
}
.services__sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.services__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.services__head-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.services__head-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hstat__num {
  font-family: var(--serif);
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 380;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.hstat__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* GSAP-managed reveal: initial state set in JS to avoid FOUC mismatch */

/* Fallback if JS disabled — show content */
.no-js .services__head, .no-js .svc { opacity: 1 !important; transform: none !important; }

/* ====== SERVICE CARDS — Asymmetric Horizontal Stack ====== */
.services__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 56px);
}

.svc {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 3.5vw, 56px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform .6s cubic-bezier(.2,.8,.2,1),
    border-color .5s ease,
    box-shadow .6s ease,
    background .5s ease;
  will-change: transform;
}
.svc:hover {
  border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -28px rgba(26,26,24,0.25);
  background: var(--bg-alt, #e9e5db);
}
.svc--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.svc--reverse .svc__body {
  order: -1;
}

/* Card stagger offset */
.svc:nth-child(1) { margin-left: 0; margin-right: clamp(0px, 6vw, 80px); }
.svc:nth-child(2) { margin-left: clamp(0px, 6vw, 80px); margin-right: 0; }
.svc:nth-child(3) { margin-left: clamp(0px, 3vw, 40px); margin-right: clamp(0px, 3vw, 40px); }

/* Sweeping accent line on hover */
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .7s cubic-bezier(.2,.8,.2,1);
  z-index: 2;
}
.svc:hover::before { width: 100%; }

/* Bottom corner accent square */
.svc::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0; height: 0;
  border-bottom: 36px solid transparent;
  border-right: 36px solid var(--accent);
  opacity: 0;
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1);
  transform: translate(20px, 20px);
  z-index: 2;
}
.svc:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Huge ghost number */
.svc__ghost {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(180px, 22vw, 380px);
  line-height: 0.7;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  letter-spacing: -0.06em;
  user-select: none;
  z-index: 0;
  transition: opacity .6s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.svc:hover .svc__ghost {
  opacity: 0.09;
  transform: translateY(-50%) translateX(-6px);
}
.svc--reverse:hover .svc__ghost {
  transform: translateY(-50%) translateX(6px);
}
.svc--reverse .svc__ghost {
  right: auto;
  left: -0.05em;
}
.svc--accent .svc__ghost {
  color: var(--accent);
  opacity: 0.1;
}

/* Visual area */
.svc__visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,26,24,0.025) 0%, rgba(255,74,28,0.04) 100%);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 48px);
  overflow: hidden;
  z-index: 1;
}
.svc--accent .svc__visual {
  background: linear-gradient(135deg, rgba(255,74,28,0.06) 0%, rgba(255,74,28,0.12) 100%);
}
.svc__art {
  width: 100%;
  height: auto;
  max-width: 320px;
  color: var(--ink);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.svc--accent .svc__art {
  color: var(--accent);
}
.svc:hover .svc__art {
  transform: scale(1.06) rotate(-1.5deg);
}
.svc__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,74,28,0.18), transparent 50%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.svc:hover .svc__visual::before { opacity: 1; }
.svc__art--orbit {
  animation: spin 30s linear infinite;
}

/* Photo variant — real imagery instead of SVG illustration */
.svc__visual--photo {
  padding: 0;
  background: #1a1a18;
  aspect-ratio: 4 / 3;
}
.svc__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  will-change: transform;
}
.svc:hover .svc__visual--photo .svc__photo {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
}
.svc__visual--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0) 50%, rgba(26,26,24,0.55) 100%);
  /* Editorial frame: thin top highlight + soft inset bottom shadow */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -80px 120px -60px rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow .8s cubic-bezier(.2,.8,.2,1);
}
.svc:hover .svc__visual--photo::after {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -100px 140px -60px rgba(0,0,0,0.65);
}

/* Floating badge on photo */
.svc__photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: rgba(239,236,228,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(26,26,24,0.08);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.svc__photo-badge svg {
  color: var(--accent);
}
.svc:hover .svc__photo-badge {
  transform: translateY(-2px);
}

/* Body */
.svc__body {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  position: relative;
  z-index: 1;
}
.svc__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc__title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  transform-origin: left center;
}
.svc:hover .svc__title {
  transform: translateX(6px);
}
.svc__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 320;
  font-size: 0.92em;
}
.svc__desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.svc__desc strong {
  color: var(--ink);
  font-weight: 600;
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.svc__list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--accent);
}

.svc__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.svc__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc__metric-num {
  font-family: var(--serif);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.svc__metric-num small {
  font-size: 0.45em;
  color: var(--mute);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
}
.svc--accent .svc__metric-num {
  color: var(--accent);
}
.svc__metric-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}

.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.svc__link:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 14px;
}
.svc--accent .svc__link {
  border-color: var(--accent);
  color: var(--accent);
}
.svc--accent .svc__link:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================
   PROCESS SECTION — Editorial timeline (matches services language)
   ============================================ */
.process {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(90px, 11vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.process__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Decorative dot-grid (same as services) */
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,24,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Header (mirrors services__head) ===== */
.process__head {
  margin-bottom: clamp(60px, 8vw, 120px);
}
.process__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.process__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.process__eyebrow-num { color: var(--ink); font-weight: 500; }
.process__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--line);
}
.process__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}

.process__head-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

.process__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 8px);
  min-width: 0;
  container-type: inline-size;
}
.process__title-line {
  display: block;
  white-space: nowrap;
  font-size: 10.4cqi;
  will-change: transform, opacity;
}
@supports not (font-size: 1cqi) {
  .process__title-line { font-size: clamp(44px, 6vw, 104px); }
}
.process__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}

.process__head-side {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 36px);
  padding-bottom: 8px;
}
.process__sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.process__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.process__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.process__cta:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 14px;
}

/* ===== Timeline ===== */
.process__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 48px 140px 1fr;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(36px, 4.5vw, 64px) 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }

/* Rail with connecting line + node */
.step__rail {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.step__rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, var(--line), rgba(26,26,24,0.05));
}
.step:first-child .step__rail::after { top: 30px; }
.step__rail--last::after {
  background: linear-gradient(180deg, var(--line), transparent);
  bottom: 50% !important;
}
.step__node {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--ink);
  transition: background .4s ease, border-color .4s ease, transform .4s ease;
}
.step__node--final {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,74,28,0.12);
}
.step:hover .step__node {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* Step number — editorial italic */
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  padding-top: 4px;
  transition: color .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.step:hover .step__num {
  color: var(--accent);
  transform: translateX(-4px);
}

/* Content */
.step__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
  padding-top: 12px;
  max-width: 880px;
}
.step__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.step__title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.step__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 320;
}
.step__duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.step__desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.step__desc strong {
  color: var(--ink);
  font-weight: 600;
}

.step__deliverables {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  border-top: 1px solid var(--line);
}
.step__deliverables li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.step__deliverables li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 1px;
  background: var(--accent);
}

/* ============================================
   SELECTED WORK SECTION — Editorial cases
   ============================================ */
.work {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(90px, 11vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,24,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.work__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== Header (shared editorial pattern) ===== */
.work__head {
  margin-bottom: clamp(60px, 8vw, 120px);
}
.work__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.work__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.work__eyebrow-num { color: var(--ink); font-weight: 500; }
.work__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--line);
}
.work__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}

.work__head-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

.work__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 8px);
  min-width: 0;
  container-type: inline-size;
}
.work__title-line {
  display: block;
  white-space: nowrap;
  font-size: 10.4cqi;
  will-change: transform, opacity;
}
@supports not (font-size: 1cqi) {
  .work__title-line { font-size: clamp(44px, 6vw, 104px); }
}
.work__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}

.work__head-side {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  padding-bottom: 8px;
}
.work__sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.work__sub strong {
  color: var(--ink);
  font-weight: 600;
}

.work__head-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.work__head-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wstat__num {
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 380;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.wstat__num small {
  font-size: 0.45em;
  color: var(--mute);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0;
}
.wstat__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ===== Featured case ===== */
.case--featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: clamp(28px, 3.5vw, 56px);
  transition: border-color .4s ease, transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s ease;
}
.case--featured {
  box-shadow:
    0 1px 2px rgba(26,26,24,0.04),
    0 12px 28px -14px rgba(26,26,24,0.14),
    0 30px 56px -28px rgba(26,26,24,0.20);
}
.case--featured:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(26,26,24,0.05),
    0 18px 40px -14px rgba(26,26,24,0.22),
    0 44px 80px -28px rgba(26,26,24,0.32);
}

.case__media {
  position: relative;
  background: linear-gradient(135deg, rgba(26,26,24,0.04) 0%, rgba(255,74,28,0.08) 100%);
  overflow: hidden;
  min-height: 380px;
}

/* Photo variant — image's natural 3:2 aspect ratio drives the row
   height so the box never exceeds the image. Body fits this height
   via tighter padding/gap below. */
.case__media--photo {
  background: #1a1a18;
  display: flex;
  aspect-ratio: 3 / 2;
  min-height: 0;
  align-self: stretch;
}
.case__photo {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  will-change: transform;
}
.case--featured:hover .case__photo {
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.05);
}

/* Featured-card body fits within the image-driven row height */
.case--featured .case__body {
  padding: clamp(24px, 2.6vw, 40px);
  gap: clamp(12px, 1.2vw, 18px);
  justify-content: center;
}
.case--featured .case__title {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}
.case--featured .case__excerpt {
  font-size: clamp(14px, 0.95vw, 15.5px);
  line-height: 1.55;
}
.case--featured .case__metrics {
  gap: 14px 24px;
  padding-top: 14px;
  margin-top: 4px;
}
.case--featured .case-metric__num {
  font-size: clamp(22px, 2vw, 30px);
}
.case--featured .case__link {
  margin-top: 2px;
}
.case__media--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24,0) 55%, rgba(26,26,24,0.45) 100%);
  /* Editorial frame mirroring service photos */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -100px 160px -80px rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow .8s cubic-bezier(.2,.8,.2,1);
}
.case--featured:hover .case__media--photo::after {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -120px 180px -80px rgba(0,0,0,0.65);
}
.case__media--photo .case__media-tag { z-index: 2; }
.case__media-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.case__media-art {
  position: absolute;
  inset: 0;
  display: block;
}
.case__media-art svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.case--featured:hover .case__media-art svg {
  transform: scale(1.04);
}

.case__body {
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
}
.case__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.case__sep { opacity: 0.5; }
.case__client { color: var(--ink); font-weight: 500; }

.case__title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.case__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 320;
}

.case__excerpt {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.case__excerpt strong {
  color: var(--ink);
  font-weight: 600;
}

.case__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.case-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-metric__num {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.case-metric__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

.case__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin-top: 4px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.case__link:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 14px;
}

/* ===== Mini cases grid ===== */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.case--mini {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .4s ease;
}
.case--mini:hover {
  background: var(--bg-alt, #e9e5db);
}

/* Mini kart üst görseli — tasarım dili: editorial, kart kenarlarına dayanır,
   16:10 oran, subtle koyu degrade overlay, hover'da hafif zoom. */
.case__mini-media {
  position: relative;
  margin: calc(-1 * clamp(28px, 3vw, 40px));
  margin-bottom: 6px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a18;
}
.case__mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  will-change: transform;
}
.case--mini:hover .case__mini-media img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.04);
}
.case__mini-media::after {
  display: none;
}
.case--mini:hover .case__mini-media::after {
  display: none;
}
.case__mini-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.case__mini-tag {
  color: var(--accent);
}
.case__mini-title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.case__mini-title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 320;
}
.case__mini-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.case__mini-desc strong {
  color: var(--ink);
  font-weight: 600;
}
.case__mini-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ============================================
   FAQ SECTION — Editorial accordion
   ============================================ */
.faq {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(90px, 11vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,24,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.faq__inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== Header ===== */
.faq__head {
  margin-bottom: clamp(60px, 8vw, 120px);
}
.faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.faq__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.faq__eyebrow-num { color: var(--ink); font-weight: 500; }
.faq__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--line);
}
.faq__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}

.faq__head-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}

.faq__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 8px);
  min-width: 0;
  container-type: inline-size;
}
.faq__title-line {
  display: block;
  white-space: nowrap;
  font-size: 10.4cqi;
  will-change: transform, opacity;
}
@supports not (font-size: 1cqi) {
  .faq__title-line { font-size: clamp(44px, 6vw, 104px); }
}
.faq__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}

.faq__head-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.faq__sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.faq__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.faq__link-inline {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity .3s ease;
}
.faq__link-inline:hover { opacity: 0.75; }

/* ===== FAQ List ===== */
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__details {
  position: relative;
}
.faq-item__summary {
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(8px, 1vw, 16px);
  cursor: pointer;
  list-style: none;
  transition: background .3s ease;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary::marker { display: none; }
.faq-item__details[open] .faq-item__summary {
  padding-bottom: 12px;
}
.faq-item__summary:hover {
  background: rgba(26,26,24,0.02);
}

.faq-item__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mute);
  font-weight: 500;
}
.faq-item__details[open] .faq-item__num {
  color: var(--accent);
}

.faq-item__q {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color .3s ease;
}
.faq-item__summary:hover .faq-item__q {
  color: var(--accent);
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background .35s ease, color .35s ease, border-color .35s ease;
}
.faq-item__details[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Answer panel */
.faq-item__answer {
  padding: 0 clamp(8px, 1vw, 16px) clamp(28px, 3vw, 40px) calc(64px + clamp(20px, 3vw, 48px));
  max-width: 880px;
  animation: faqOpen .55s cubic-bezier(.2,.8,.2,1);
}
.faq-item__answer p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer strong {
  color: var(--ink);
  font-weight: 600;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA strip ===== */
.faq__cta-strip {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.faq__cta-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 380;
  letter-spacing: -0.025em;
  color: var(--bg);
}
.faq__cta-text .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}
.faq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: gap .35s cubic-bezier(.2,.8,.2,1), background .35s ease, transform .35s ease;
}
.faq__cta-btn:hover {
  gap: 16px;
  background: #ff5a2e;
  transform: translateY(-2px);
}

/* ============================================
   CONTACT CTA — Final funnel section
   ============================================ */
.contact {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(100px, 13vw, 220px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,24,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact__inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(28px, 3vw, 48px);
}
.contact__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.contact__eyebrow-num { color: var(--ink); font-weight: 500; }
.contact__eyebrow-line {
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: var(--line);
}
.contact__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}

.contact__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0 0 clamp(20px, 2vw, 32px);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.3vw, 8px);
  container-type: inline-size;
}
.contact__title-line {
  display: block;
  white-space: nowrap;
  font-size: 13cqi;
}
@supports not (font-size: 1cqi) {
  .contact__title-line { font-size: clamp(48px, 9vw, 140px); }
}
.contact__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}

.contact__sub {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.contact__sub strong {
  color: var(--ink);
  font-weight: 600;
}

/* Actions */
.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 2.5vw, 36px);
}
.contact__primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  border-radius: 999px;
  transition: gap .35s cubic-bezier(.2,.8,.2,1), transform .35s ease, background .35s ease;
  font-family: var(--serif);
}
.contact__primary:hover {
  gap: 24px;
  transform: translateY(-3px);
  background: var(--accent);
}
.contact__primary-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-right: 12px;
  border-right: 1px solid rgba(239,236,228,0.2);
}
.contact__primary-email {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.contact__primary svg { color: var(--accent); }
.contact__primary:hover svg { color: #fff; }

.contact__alt {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact__alt-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color .3s ease;
}
.contact__alt-item:hover { color: var(--accent); }
.contact__alt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .3s ease, color .3s ease;
}
.contact__alt-item:hover .contact__alt-icon {
  border-color: var(--accent);
  color: var(--accent);
}
.contact__alt-sep {
  color: var(--mute);
  opacity: 0.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(72px, 8vw, 120px) var(--pad) clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.footer__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(239,236,228,0.12);
}

/* Brand block */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
}
/* Logo variant placeholders kept for future overrides */
.footer__tagline {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.4;
  color: rgba(239,236,228,0.75);
  margin: 0;
  letter-spacing: -0.01em;
}
.footer__tagline .line--italic {
  font-style: italic;
  color: var(--accent);
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(239,236,228,0.5);
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color .3s ease, padding-left .35s ease;
  display: inline-block;
  position: relative;
}
.footer__col a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.footer__muted {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(239,236,228,0.5);
}

/* Giant wordmark — stacked two-line */
.footer__wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--bg);
  text-align: center;
  margin: clamp(40px, 5vw, 80px) 0 clamp(32px, 4vw, 56px);
  user-select: none;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.12em;
}
.footer__wordmark-l1 {
  display: block;
}
.footer__wordmark-l2 {
  display: block;
  color: var(--accent);
  opacity: 0.92;
}
.footer__wordmark sup {
  font-size: 0.18em;
  vertical-align: super;
  margin-left: 8px;
  color: var(--bg);
  font-style: normal;
  font-weight: 400;
  opacity: 0.5;
}

/* Bottom legal */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(239,236,228,0.12);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(239,236,228,0.5);
}
.footer__legal a {
  color: rgba(239,236,228,0.7);
  text-decoration: none;
  transition: color .3s ease;
}
.footer__legal a:hover { color: var(--accent); }
.footer__sep { opacity: 0.4; }

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,236,228,0.5);
}
.footer__credit-label {
  color: rgba(239,236,228,0.4);
}
.footer__credit-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bg);
  font-weight: 500;
}
.footer__credit-mark svg { color: var(--bg); }

/* ====== Bottom marquee strip ====== */
.services__strip {
  margin-top: clamp(60px, 7vw, 100px);
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.services__strip-track {
  display: flex;
  gap: clamp(32px, 4vw, 56px);
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
  animation: scroll 32s linear infinite;
  width: max-content;
}
.services__strip-track > * {
  display: inline-block;
  flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hero__meta--bl, .hero__meta--br { display: none; }
  .hero__inner { padding-bottom: 90px; gap: 48px; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header__status { display: none; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .services__head-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .process__head-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .work__head-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .faq__head-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  /* Critical: reset desktop align-items: center on hero so children stretch */
  .hero__inner { align-items: stretch; }
  .hero__left, .hero__right { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .contact__primary { flex-direction: column; gap: 8px; padding: 20px 28px; text-align: center; }
  .contact__primary-label { border-right: 0; padding-right: 0; }
  .faq-item__summary { grid-template-columns: 48px 1fr 36px; gap: 16px; }
  .faq-item__answer { padding-left: 64px; }
  .faq__cta-strip { flex-direction: column; align-items: flex-start; }
  .case--featured { grid-template-columns: 1fr; }
  .case__media { min-height: 280px; }
  .case__metrics { grid-template-columns: 1fr 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .case--mini { border-top: 1px solid var(--line); }
  .case--mini:first-child { border-top: 0; }
  .step { grid-template-columns: 40px 80px 1fr; gap: 16px; }
  .step__num { font-size: 56px; }
  .step__title { font-size: 28px; }
  .step__deliverables { grid-template-columns: 1fr; }
  .svc, .svc--reverse { grid-template-columns: 1fr; padding: 32px; }
  .svc--reverse .svc__body { order: 0; }
  .svc:nth-child(1), .svc:nth-child(2), .svc:nth-child(3) { margin-left: 0; margin-right: 0; }
  .svc__visual { aspect-ratio: 16 / 10; max-height: 320px; }
  .svc__list { grid-template-columns: 1fr; }
  .svc__ghost { font-size: 200px; opacity: 0.05; }
  .hero__inner { display: flex; flex-direction: column; gap: 40px; padding: 110px 0 60px; }
  .hero__title .line { font-size: clamp(48px, 10vw, 88px); }
  .hero__feature-img { aspect-ratio: 16 / 10; }
  .hero__hook { max-width: 100%; }
  .cta-circle { position: static; transform: none; left: auto; bottom: auto; align-self: center; }
  @keyframes spin-cta { to { transform: rotate(360deg); } }
}

@media (max-width: 768px) {
  /* ==========================================
     MOBILE NAVBAR — rebuilt from scratch
     ========================================== */
  .header {
    padding: 0;
    background: rgba(239,236,228,0.92);
    -webkit-backdrop-filter: saturate(1.1) blur(14px);
    backdrop-filter: saturate(1.1) blur(14px);
    border-bottom: 1px solid rgba(26,26,24,0.08);
    color: var(--ink);
  }
  .header.is-scrolled { padding: 0; }
  .header__inner {
    height: 72px;
    padding: 0 var(--pad);
    gap: 16px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
  }
  /* Logo: bigger */
  .logo__img,
  .logo__img--sm { height: 48px; width: auto; }
  .logo__img--lg { height: 64px; }

  /* Right column flush to edge */
  .header__right { justify-self: end; margin-right: 0; }

  /* Center column unused on mobile */
  .nav { display: none; }
  .header__status { display: none; }

  /* Right side: only hamburger (CTA moves into drawer) */
  .header__right { gap: 0; }
  .header__cta { display: none; }

  /* Hamburger — circular, ink outline */
  .hamburger {
    display: block;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    position: relative;
  }
  .hamburger span {
    position: absolute;
    left: 11px; right: 11px;
    height: 1.5px;
    background: currentColor;
    transition: top .25s ease, transform .25s ease;
  }
  .hamburger span:nth-child(1) { top: 16px; }
  .hamburger span:nth-child(2) { top: 22px; }
  .hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

  /* Drawer — fullscreen editorial */
  .drawer {
    top: 72px;                       /* sit below header */
    height: calc(100dvh - 72px);
    padding: 24px var(--pad) 32px;
    background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .drawer.is-open { display: flex; flex-direction: column; }
  .drawer ul {
    border-top: 0;
    margin-bottom: auto;
  }
  .drawer li { border-bottom: 1px solid var(--line); }
  .drawer li:first-child { border-top: 1px solid var(--line); }
  .drawer a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 22px 4px;
    font-family: var(--serif);
    font-style: normal;
    font-weight: 380;
    font-size: clamp(28px, 7vw, 36px);
    letter-spacing: -0.025em;
    color: var(--ink);
    text-decoration: none;
    transition: color .3s ease, padding-left .35s ease;
  }
  .drawer a:hover, .drawer a:focus { color: var(--accent); padding-left: 12px; }
  .drawer__num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--mute);
  }

  /* Drawer footer: contact CTA + meta */
  .drawer__foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    margin-top: 32px;
  }
  .drawer__foot a {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 0;
    letter-spacing: 0.02em;
  }
  .drawer__foot span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
  }

  /* Body scroll lock when drawer open */
  body.drawer-open { overflow: hidden; }
  body.drawer-open .header {
    background: var(--bg);
    z-index: 51;
  }
  
  .hero__inner { padding: 110px 0 50px; }
  .hero__title { margin-bottom: 36px; }
  .hero__title .line { font-size: clamp(44px, 13vw, 72px); }
  .hero__hook-main { font-size: 16px; }
  .cta-circle { width: 120px; height: 120px; margin-top: 8px; }
  .cta-circle__arrow { width: 30px; height: 30px; }
  .ticker__track { font-size: 22px; gap: 22px; padding: 14px 0; }
  .hero__feature-img { aspect-ratio: 16 / 10; }
}

/* ============ TABLET 768px — comprehensive refinements ============ */
@media (max-width: 768px) {
  :root { --pad: 20px; }

  /* Footer brand logo only — navbar logo sized in navbar block */
  .logo__img--lg { height: 64px; }

  /* Hero — vertical-friendly imagery, no crop */
  .hero { min-height: auto; }
  .hero__inner { gap: 32px; padding: 96px 0 40px; align-items: stretch; }
  .hero__left, .hero__right { width: 100%; max-width: 100%; }
  .hero__title { margin-bottom: 24px; width: 100%; }
  .hero__title .line {
    font-size: clamp(40px, 12vw, 64px);
    line-height: 1;
    white-space: normal;       /* allow wrap on phone */
    word-wrap: break-word;
  }
  .hero__hook { width: 100%; max-width: 100%; }
  .hero__hook-main { font-size: 15px; line-height: 1.55; width: 100%; }
  .hero__feature { max-width: 100%; }
  .hero__feature-img {
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .hero__feature-img img {
    object-fit: cover;
    object-position: center;
  }
  .cta-circle { width: 110px; height: 110px; }

  /* Ticker */
  .ticker__track { font-size: 18px; gap: 18px; padding: 12px 0; }

  /* Services — full-width photo stack */
  .services { padding-left: 0; padding-right: 0; }
  .services__inner { padding-left: var(--pad); padding-right: var(--pad); }
  .svc, .svc--reverse {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }
  .svc__visual,
  .svc__visual--photo {
    aspect-ratio: 4 / 3;
    max-height: none;
    width: 100%;
  }
  .svc__photo { object-fit: cover; object-position: center; }
  .svc__title { font-size: clamp(28px, 7vw, 38px); }
  .svc__desc { font-size: 15px; }
  .svc__list { font-size: 14px; }
  .svc__ghost { font-size: 140px; opacity: 0.04; }
  .svc__footer { flex-wrap: wrap; gap: 16px; }

  /* Services head titles */
  .services__title-line { font-size: clamp(40px, 11vw, 60px); white-space: normal; }
  .services__sub { font-size: 15px; }
  .services__head-stats { gap: 24px; }

  /* Process / Timeline */
  .process__title-line { font-size: clamp(40px, 11vw, 60px); white-space: normal; }
  .step {
    display: block;            /* drop grid — children flow vertically */
    padding: 28px 0;
  }
  .step__rail { display: none; }
  .step__num {
    display: block;
    font-size: 44px;
    padding-top: 0;
    margin: 0 0 8px;
  }
  .step__content {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
  }
  .step__head { gap: 12px; }
  .step__title { font-size: clamp(22px, 5.5vw, 28px); }
  .step__duration { font-size: 10px; }
  .step__desc { font-size: 14px; width: 100%; max-width: 100%; }

  /* Work / Cases */
  .work__title-line { font-size: clamp(40px, 11vw, 60px); white-space: normal; }
  .case--featured { grid-template-columns: 1fr; }
  .case__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .case__media-art svg,
  .case__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .case__metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .case__body { padding: 28px 24px; }
  .case__title { font-size: clamp(26px, 6.5vw, 34px); }
  .case--mini { padding: 28px 22px; }

  /* FAQ */
  .faq__title-line { font-size: clamp(40px, 11vw, 60px); white-space: normal; }
  .faq-item__summary {
    grid-template-columns: 36px 1fr 28px;
    gap: 14px;
    padding: 22px 0;
  }
  .faq-item__q { font-size: clamp(17px, 4.5vw, 22px); line-height: 1.3; }
  .faq-item__answer { padding-left: 50px; padding-right: 0; font-size: 15px; }
  .faq-item__answer p { font-size: 15px; }
  .faq__cta-strip { padding: 28px 24px; gap: 20px; }
  .faq__cta-text { font-size: 18px; }

  /* Contact */
  .contact { padding: clamp(72px, 16vw, 120px) var(--pad); }
  .contact__title-line { font-size: clamp(44px, 13vw, 84px); white-space: normal; }
  .contact__sub { font-size: 16px; }
  .contact__primary {
    width: 100%;
    max-width: 360px;
    padding: 18px 24px;
  }
  .contact__primary-email { font-size: 15px; word-break: break-all; }
  .contact__alt { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Footer */
  .footer__inner { padding: clamp(48px, 10vw, 80px) var(--pad) clamp(28px, 5vw, 40px); }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer__brand { max-width: 100%; }
  .footer__tagline { font-size: 16px; }
  .footer__col-title { font-size: 11px; }
  .footer__col a, .footer__muted { font-size: 14px; }
  .footer__wordmark {
    font-size: clamp(64px, 22vw, 140px);
    line-height: 0.9;
    margin: clamp(28px, 6vw, 48px) 0 clamp(24px, 4vw, 32px);
  }
  .footer__legal { font-size: 11px; gap: 8px; }
  .footer__legal span, .footer__legal a { white-space: normal; }

  /* Marquee strips: speed up, smaller */
  .services__strip-track { font-size: 16px; gap: 28px; animation-duration: 24s; }

  /* Eyebrows wrap */
  .services__eyebrow,
  .process__eyebrow,
  .work__eyebrow,
  .faq__eyebrow,
  .contact__eyebrow { flex-wrap: wrap; gap: 8px; font-size: 10px; }
  .services__eyebrow-line,
  .process__eyebrow-line,
  .work__eyebrow-line,
  .faq__eyebrow-line,
  .contact__eyebrow-line { width: 32px; }
}

/* ============ PHONE 480px — extra-tight ============ */
@media (max-width: 480px) {
  :root { --pad: 16px; }
  .hero__meta--tr { display: none; }

  .logo__img { height: 42px; }
  .hamburger { width: 38px; height: 38px; }

  .hero__inner { padding-top: 88px; }
  .hero__title .line { font-size: clamp(36px, 13vw, 56px); }

  /* Hero feature: keep vertical aspect to avoid heavy cropping */
  .hero__feature-img { aspect-ratio: 5 / 6; }

  .ticker__track { font-size: 16px; gap: 16px; }

  .svc { padding: 16px; }
  .svc__visual, .svc__visual--photo { aspect-ratio: 5 / 4; }

  .case__metrics { grid-template-columns: 1fr; }
  .case__body { padding: 24px 18px; }

  .faq-item__summary { grid-template-columns: 28px 1fr 24px; gap: 12px; }
  .faq-item__answer { padding-left: 40px; }

  .contact__primary {
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    text-align: center;
  }
  .contact__primary svg { display: none; }
  .contact__primary-email { font-size: 13px; }

  .footer__nav { grid-template-columns: 1fr; gap: 24px; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================
   JOURNAL / BLOG SECTION — Editorial cards
   ============================================ */
.journal {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(90px, 11vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}
.journal__inner {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}

/* Header — work pattern paralelinde */
.journal__head {
  margin-bottom: clamp(60px, 8vw, 120px);
}
.journal__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.journal__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.journal__eyebrow-num { color: var(--ink); font-weight: 500; }
.journal__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1px;
  background: var(--line);
}
.journal__eyebrow-meta {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  font-family: var(--serif);
  color: var(--ink-soft);
}

.journal__head-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.journal__title {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 92px);
}
.journal__title-line { display: block; }
.journal__title .line--italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 340;
}
.journal__head-side {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
  padding-bottom: 8px;
}
.journal__sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.journal__sub strong { color: var(--ink); font-weight: 600; }
.journal__head-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.journal__head-cta:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 14px;
}

/* Slider toolbar (sağ üstte prev/next butonları) */
.journal__toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: clamp(28px, 3vw, 40px) 0 clamp(20px, 2vw, 28px);
}
.journal__slider-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background .35s cubic-bezier(.2,.8,.2,1), color .35s cubic-bezier(.2,.8,.2,1), transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.journal__slider-btn:hover:not(:disabled),
.journal__slider-btn:focus-visible:not(:disabled) {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}
.journal__slider-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.journal__slider-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}
.journal__slider-btn svg { display: block; }

/* Posts grid → slider (yatay scroll-snap) */
.journal__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * clamp(28px, 3vw, 48px)) / 3);
  grid-template-columns: unset;
  gap: clamp(28px, 3vw, 48px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Kart shadow/hover translasyonu için biraz nefes */
  padding: 4px 4px 12px;
  margin: 0 -4px;
  /* Yumuşak kenar mask — sağda taşma sinyali */
  -webkit-overflow-scrolling: touch;
}
.journal__grid::-webkit-scrollbar { display: none; }
.journal__grid > .post {
  scroll-snap-align: start;
  min-width: 0;
}

/* Post card */
.post {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
  position: relative;
}
.post:hover {
  transform: translateY(-4px);
  border-color: rgba(26,26,24,0.22);
  box-shadow:
    0 18px 40px -22px rgba(26,26,24,0.18),
    0 32px 60px -32px rgba(26,26,24,0.18);
}

.post__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(26,26,24,0.06), rgba(255,74,28,0.10));
  overflow: hidden;
}
.post__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.post:hover .post__img { transform: scale(1.04); }

.post__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(239,236,228,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  z-index: 2;
}

.post__body {
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.post__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.post__meta-sep { opacity: 0.5; }
.post__title {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.post__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  /* 3-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post__more {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s ease;
}
.post:hover .post__more { gap: 12px; }

/* Skeleton */
.post--skeleton .post__media--skeleton {
  background: linear-gradient(90deg, rgba(26,26,24,0.04) 0%, rgba(26,26,24,0.08) 50%, rgba(26,26,24,0.04) 100%);
  background-size: 200% 100%;
  animation: skel 1.4s ease-in-out infinite;
}
.post__meta-skel,
.post__title-skel,
.post__excerpt-skel {
  background: linear-gradient(90deg, rgba(26,26,24,0.05) 0%, rgba(26,26,24,0.10) 50%, rgba(26,26,24,0.05) 100%);
  background-size: 200% 100%;
  animation: skel 1.4s ease-in-out infinite;
  border-radius: 3px;
}
.post__meta-skel { height: 10px; width: 38%; }
.post__title-skel { height: 22px; width: 92%; }
.post__title-skel--short { width: 64%; }
.post__excerpt-skel { height: 56px; width: 100%; margin-top: 6px; }
@keyframes skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.journal__empty {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 24px;
  border: 1px dashed var(--line);
  border-radius: 4px;
}
.journal__empty-text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.journal__empty-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.journal__empty-link:hover { color: var(--ink); }

/* Shared CTA wrapper — .faq__cta-strip'in blog/hizmetler/vb. sayfalarda
   footer'a yapışmaması için dış section padding'i. */
.blog-cta-section {
  padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 40px) clamp(70px, 8vw, 110px);
}
.blog-cta-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.blog-cta-section .faq__cta-strip { margin-top: 0; }

/* ============================================================
   WORK / Çalışmalar — Slider (blog gibi, yatay scroll-snap)
   ============================================================ */
.work__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: clamp(28px, 3vw, 40px) 0 clamp(20px, 2vw, 28px);
}
.work__toolbar-btns { display: flex; gap: 10px; }
.work__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.work__view-all:hover { color: var(--accent); }
.work__slider-btn {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background .35s cubic-bezier(.2,.8,.2,1), color .35s cubic-bezier(.2,.8,.2,1), transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.work__slider-btn:hover:not(:disabled),
.work__slider-btn:focus-visible:not(:disabled) {
  background: var(--ink); color: var(--bg); transform: translateY(-1px);
}
.work__slider-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.work__slider-btn:disabled { opacity: 0.28; cursor: not-allowed; transform: none; }
.work__slider-btn svg { display: block; }

/* Eski .work__grid (3'lü grid) görünümünü slider'a dönüştüren varyant.
   Featured kart üstte ayrı dururken, mini kartlar yatay scroll-snap yapar. */
.work__grid.work__grid--slider {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 2px) / 3);
  gap: 1px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* border + background eski grid ile aynı (line rengi gap görevi görür) */
}
.work__grid--slider::-webkit-scrollbar { display: none; }
.work__grid--slider > .case--mini {
  scroll-snap-align: start;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: clamp(48px, 4vw, 64px);
}
.work__grid--slider > .case--mini:hover .case__mini-title { color: var(--accent); }
.work__grid--slider > .case--mini .case__mini-title { transition: color .3s ease; }
.work__grid--slider > .case--mini::after {
  content: '→';
  position: absolute;
  right: clamp(20px, 2vw, 28px);
  bottom: clamp(20px, 2vw, 28px);
  font-family: var(--mono);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1;
  transition: color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.work__grid--slider > .case--mini:hover::after {
  color: var(--accent); transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .journal__head-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .journal__grid { grid-auto-columns: calc((100% - clamp(24px, 3vw, 36px)) / 2); }
  .work__grid--slider { grid-auto-columns: calc((100% - 1px) / 2); }
}
@media (max-width: 720px) {
  .journal__title { font-size: clamp(36px, 9vw, 56px); }
  .journal__grid { grid-auto-columns: 86%; }
  .journal__slider-btn { width: 44px; height: 44px; }
  /* MOBIL SLIDER FIX - Flexbox ile */
  .work__grid.work__grid--slider,
  .work__grid--slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    scroll-padding: 0 16px !important;
    padding: 0 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    background: transparent !important;
    border: none !important;
  }
  .work__grid--slider > .case--mini {
    flex: 0 0 calc(100% - 32px) !important;
    scroll-snap-align: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    border: 1px solid var(--line) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }
  .work__slider-btn { width: 44px; height: 44px; }
  .work__toolbar { flex-direction: row; flex-wrap: wrap; }

  /* Mini kart mobil optimizasyonları */
  .case--mini {
    padding: clamp(20px, 5vw, 28px);
    gap: 12px;
  }
  .case__mini-media {
    margin: calc(-1 * clamp(20px, 5vw, 28px));
    margin-bottom: 6px;
    aspect-ratio: 16 / 10;
  }
  .case__mini-top {
    font-size: 10px;
    letter-spacing: 0.08em;
    gap: 8px;
  }
  .case__mini-title {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .case__mini-desc {
    font-size: 13px;
    line-height: 1.5;
  }
  .case__mini-metric {
    margin-top: auto;
    padding-top: 12px;
  }
  .case-metric__num {
    font-size: clamp(20px, 6vw, 24px);
  }
  .case-metric__label {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .work__grid--slider > .case--mini::after {
    bottom: clamp(20px, 5vw, 28px);
    right: clamp(20px, 5vw, 28px);
    font-size: 16px;
  }

  /* Çalışmalar sayfası mobil grid */
  .work__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
    border: none;
  }
  .work__grid > .case--mini,
  .case--mini {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
  }

  /* Featured case mobil */
  .case--featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .case__media--photo {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
  .case--featured .case__body {
    padding: clamp(20px, 5vw, 28px);
    gap: 10px;
  }
  .case--featured .case__title {
    font-size: clamp(20px, 5vw, 26px);
  }
  .case--featured .case__excerpt {
    font-size: 13px;
  }
  .case--featured .case__metrics {
    gap: 12px 20px;
  }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
  .case__mini-title {
    font-size: 17px;
  }
  .case-metric__num {
    font-size: 20px;
  }
  .case__mini-desc {
    font-size: 12px;
  }
  .work__grid.work__grid--slider,
  .work__grid--slider {
    gap: 12px !important;
    scroll-padding: 0 12px !important;
    padding: 0 12px !important;
  }
  .work__grid--slider > .case--mini {
    flex: 0 0 calc(100% - 24px) !important;
    scroll-snap-align: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    border: 1px solid var(--line) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }
  .case--mini {
    padding: 18px;
  }
  .case__mini-media {
    margin: -18px;
    margin-bottom: 6px;
  }
  .journal__grid {
    grid-auto-columns: 92%;
  }
}
