/* ==========================================================================
   VULOIR — "Kesik" tasarım sistemi
   Tek jest: logodaki V'yi bölen 25° kesik. Geçişler, vurgu çizgileri,
   kart köşeleri ve silmeler (wipe) hep bu açıyla çalışır.
   ========================================================================== */

@property --p { syntax: '<length-percentage>'; inherits: false; initial-value: 0%; }

:root {
  --ink: #0E0F13;
  --ink-2: #14161B;
  --ink-3: #1B1D24;          /* logonun zemin rengi */
  --bone: #EEEAE2;           /* logonun kemik beyazı */
  --bone-2: #C9C4BA;
  --muted: #8E9098;
  --line: rgba(238, 234, 226, .12);
  --line-2: rgba(238, 234, 226, .26);
  --accent: #EEEAE2;         /* marka tek renkli: vurgu ışığı kemik beyazıdır. Renk yalnızca projelerden gelir (--c). */
  --c: var(--accent);

  --tan: .4663;              /* tan(25°) */
  --f-sans: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1680px;
  --hdr-h: 76px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  color-scheme: dark;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.05vw + 8px, 18px);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::after { /* film greni */
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--bone); color: var(--ink); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
main:focus { outline: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; line-height: 1.4; }
.muted { color: var(--muted); }
.ico { width: 1em; height: 1em; flex: none; }

.skip {
  position: fixed; left: 16px; top: 16px; z-index: 200; padding: 12px 16px;
  background: var(--bone); color: var(--ink); font-weight: 600; transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* Başlık tipografisi — geniş (expanded) Archivo, logonun geniş kelime markasına eş */
.display, .h2, .hero__title, .phero__title, .proj__name, .cta__title, .drow__name,
.pcard__name, .prow__name, .nextp__name, .tri__name, .marquee, .ftr__big, .menu__link, .pcard__endt, .contact__mail {
  font-family: var(--f-sans);
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .9;
  font-variation-settings: "wdth" 125;
}
.h2 { font-size: clamp(44px, 7.4vw, 128px); }

/* altı çizili bağlantı: 25° açıyla dolan çizgi */
.ulink { display: inline-flex; align-items: center; gap: .5em; position: relative; padding-bottom: 3px;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; transition: background-size .5s var(--ease); }
.ulink:hover { background-size: 0 1px; background-position: 100% 100%; }
.ulink .ico { transition: transform .4s var(--ease); }
.ulink:hover .ico { transform: translate(3px, -3px); }

/* bölüm başlığı */
.sechead { display: flex; align-items: center; gap: 16px; color: var(--muted); margin-bottom: clamp(28px, 4vw, 56px); }
.sechead > .mono:first-child { color: var(--bone); }
.sechead__line { flex: 1; height: 1px; background: var(--line-2); transform-origin: left; }
.js .sechead__line { transform: scaleX(0); transition: transform 1.4s var(--ease); }
.js .sechead.in .sechead__line { transform: scaleX(1); }

/* çipler */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line-2); }

/* ---------- Buton ---------- */
.btn {
  --h: 58px;
  position: relative; display: inline-flex; align-items: center; gap: 14px; height: var(--h);
  padding: 0 26px; border: 1px solid var(--line-2); overflow: hidden; isolation: isolate;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; color: var(--bone);
  transition: color .5s var(--ease), border-color .5s var(--ease);
  will-change: transform;
}
.btn__fill {
  position: absolute; inset: 0; z-index: -1; background: var(--bone);
  clip-path: polygon(0 0, var(--p) 0, calc(var(--p) - 124px) 100%, 0 100%);
  --p: 0%; transition: --p .7s var(--ease);
}
.btn:hover, .btn:focus-visible { color: var(--ink); border-color: var(--bone); }
.btn:hover .btn__fill, .btn:focus-visible .btn__fill { --p: calc(100% + 124px); }
.btn .ico { transition: transform .5s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn--light { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--light .btn__fill { background: var(--ink-3); }
.btn--light:hover, .btn--light:focus-visible { color: var(--bone); border-color: var(--ink-3); }
.btn--accent { background: var(--c); color: var(--ink); border-color: var(--c); }
.btn--ghost { height: 48px; margin-top: 20px; }

/* ---------- Sayfa geçiş perdesi (25° kenar) ---------- */
.curtain { position: fixed; inset: 0; z-index: 150; pointer-events: none; overflow: hidden; }
.curtain__panel {
  position: absolute; inset: -60vmax; background: var(--ink-3);
  display: grid; place-items: center;
  transform: rotate(-25deg) translateY(100%);
}
.curtain__mark { width: 64px; fill: var(--bone); transform: rotate(25deg); opacity: 0; transition: opacity .3s; }
.curtain.is-in .curtain__panel { transform: rotate(-25deg) translateY(0); transition: transform .75s var(--ease-io); }
.curtain.is-in .curtain__mark { opacity: 1; transition-delay: .35s; }
.is-entering .curtain__panel { transform: rotate(-25deg) translateY(0); }
.is-entering .curtain__mark { opacity: 1; }
.curtain.is-out .curtain__panel { transform: rotate(-25deg) translateY(-100%); transition: transform .9s var(--ease-io); }
.curtain.is-out .curtain__mark { opacity: 0; }

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 120; height: var(--hdr-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-inline: var(--gutter); mix-blend-mode: difference; color: var(--bone);
  transition: transform .6s var(--ease);
}
.hdr.is-hidden { transform: translateY(-100%); }
.hdr__logo { display: block; width: 124px; }
.hdr__svg { width: 100%; fill: currentColor; }
.hdr__svg path { transition: transform .6s var(--ease); }
.nav__list { display: flex; gap: clamp(16px, 2.4vw, 40px); }
.nav__link { display: flex; align-items: flex-start; gap: 5px; font-size: 14px; font-weight: 500; padding: 8px 0; position: relative; }
.nav__n { font-family: var(--f-mono); font-size: 9px; letter-spacing: .06em; opacity: .55; margin-top: -1px; }
.nav__t { position: relative; }
.nav__t::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav__link:hover .nav__t::after, .nav__link[aria-current] .nav__t::after { transform: scaleX(1); transform-origin: left; }
.burger { display: none; align-items: center; gap: 12px; height: 44px; font-size: 14px; font-weight: 500; }
.burger__lines { width: 26px; height: 10px; position: relative; }
.burger__lines i { position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .5s var(--ease), top .5s var(--ease); }
.burger__lines i:first-child { top: 0; } .burger__lines i:last-child { top: 8px; }
.burger[aria-expanded="true"] .burger__lines i:first-child { top: 4px; transform: rotate(-25deg); }
.burger[aria-expanded="true"] .burger__lines i:last-child { top: 4px; transform: rotate(25deg); }

.menu {
  position: fixed; inset: 0; z-index: 110; background: var(--ink-3);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--hdr-h) + 24px) var(--gutter) max(32px, env(safe-area-inset-bottom));
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path .8s var(--ease-io);
}
.menu[hidden] { display: flex; visibility: hidden; }
.menu.is-open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% + 46.6vw)); visibility: visible; }
.menu__list { display: grid; gap: 6px; }
.menu__link { display: flex; align-items: flex-start; gap: 10px; font-size: clamp(36px, 10vw, 72px); padding: 6px 0; }
.menu__link .nav__n { font-size: 11px; margin-top: 8px; }
.menu__link[aria-current] { color: var(--muted); }
.menu__foot { color: var(--muted); margin: 32px 0 0; border-top: 1px solid var(--line); padding-top: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; overflow: hidden; isolation: isolate; }
.hero__field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; opacity: .9; }
.hero__inner { position: relative; display: grid; grid-template-rows: auto 1fr auto; padding-top: calc(var(--hdr-h) + clamp(24px, 5vh, 64px)); padding-bottom: clamp(24px, 4vh, 48px); min-height: inherit; }
.hero__meta { position: relative; z-index: 4; mix-blend-mode: difference; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
.hero__title {
  align-self: center; position: relative; z-index: 2;
  font-size: clamp(64px, 15.5vw, 280px); line-height: .84; letter-spacing: -.05em;
  mix-blend-mode: difference; margin: clamp(32px, 6vh, 72px) 0;
}
.hl { display: block; overflow: hidden; padding-bottom: .04em; margin-bottom: -.04em; }
.hl__i { display: inline-block; }
.hl:nth-child(2) { padding-left: clamp(0px, 9vw, 180px); }
.hl:nth-child(3) { padding-left: clamp(0px, 3.5vw, 64px); }
.js .hl__i { transform: translateY(105%); }
.is-ready .hl__i { transform: none; transition: transform 1.3s var(--ease); }
.is-ready .hl:nth-child(2) .hl__i { transition-delay: .08s; }
.is-ready .hl:nth-child(3) .hl__i { transition-delay: .16s; }

.hero__mark {
  position: absolute; z-index: 1; right: calc(var(--gutter) * -.2); top: 50%;
  width: min(58vw, 92vh); transform: translateY(-46%);
  --bx: 0; --by: 0; --cx: 0; --cy: 0;
}
.hero__svg { width: 100%; height: auto; fill: var(--bone); overflow: visible; }
.hero__svg path, .nf__svg path, .mark-story__svg path { transition: transform .9s var(--ease); }
.hero__svg path:nth-child(2), [data-mark] svg path:nth-child(2) { transform: translate(calc(var(--bx) * 1px), calc(var(--by) * 1px)); transition: none; }
.hero__svg path:nth-child(3), [data-mark] svg path:nth-child(3) { transform: translate(calc(var(--cx) * 1px), calc(var(--cy) * 1px)); transition: none; }
.js .hero__mark { opacity: 0; }
.is-ready .hero__mark { opacity: 1; transition: opacity 1.2s var(--ease) .2s; }

.hero__laser {
  position: absolute; z-index: 3; left: var(--lx, 70%); top: var(--ly, 40%);
  width: 260vmax; height: 1.5px; background: var(--accent);
  transform: translate(-50%, -50%) rotate(-25deg) scaleX(0);
  box-shadow: 0 0 14px 1px rgba(238, 234, 226, .45);
  mix-blend-mode: difference;   /* işaretin üstünde koyu, boşlukta ışık */
  pointer-events: none;
}
.is-ready .hero__laser { transform: translate(-50%, -50%) rotate(-25deg) scaleX(1); transition: transform 1.8s var(--ease) .45s; }
.no-js .hero__laser { display: none; }

.hero__foot { display: grid; grid-template-columns: minmax(0, 520px) auto; justify-content: space-between; align-items: end; gap: 24px; position: relative; z-index: 4; }
.hero__lede { font-size: clamp(17px, 1.3vw, 20px); margin: 0; color: var(--bone-2); max-width: 44ch; }
.hero__scroll { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); }
.hero__scroll-line { width: 1px; height: 48px; background: var(--line-2); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--bone); animation: drip 2.2s var(--ease-io) infinite; }
@keyframes drip { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: clamp(18px, 2.4vw, 34px) 0; font-size: clamp(44px, 8vw, 140px); line-height: 1; }
.marquee__track { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marquee__group { display: flex; align-items: center; }
.marquee__group > span { padding-inline: .3em; }
.marquee__group > span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1.5px var(--bone); }
.marquee__mark { width: .5em; height: .45em; fill: var(--accent); flex: none; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Alanlar (divisions) ---------- */
.divs { padding-block: clamp(96px, 14vw, 200px) clamp(64px, 8vw, 120px); }
.divs .h2 { margin-bottom: clamp(40px, 6vw, 96px); }
.divs__list { border-top: 1px solid var(--line-2); }
.drow {
  position: relative; display: grid; align-items: center; isolation: isolate;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) 110px 48px; gap: 16px;
  padding: clamp(22px, 3vw, 40px) 12px; border-bottom: 1px solid var(--line-2);
  transition: color .5s var(--ease);
}
.drow__wipe { position: absolute; inset: -1px 0; z-index: -1; background: var(--bone);
  clip-path: polygon(0 0, var(--p) 0, calc(var(--p) - 260px) 100%, 0 100%); --p: 0%; transition: --p .9s var(--ease-io); }
.drow:hover, .drow:focus-visible { color: var(--ink); }
.drow:hover .drow__wipe, .drow:focus-visible .drow__wipe { --p: calc(100% + 260px); }
.drow__n { color: var(--muted); transition: color .5s; }
.drow:hover .drow__n { color: var(--ink); }
.drow__name { font-size: clamp(34px, 6vw, 104px); transition: transform .8s var(--ease); }
.drow:hover .drow__name { transform: translateX(clamp(8px, 1.6vw, 28px)); }
.drow__desc { font-size: clamp(15px, 1.1vw, 18px); }
.drow__status { justify-self: end; }
.drow__arr { justify-self: end; font-size: 28px; display: grid; }
.drow__arr .ico { transition: transform .6s var(--ease); }
.drow:hover .drow__arr .ico { transform: rotate(45deg); }

/* ---------- Studios yatay kaydırma ---------- */
.work { position: relative; padding-top: clamp(40px, 6vw, 80px); }
.work__sticky { position: relative; overflow: hidden; }
.work__head { margin-bottom: clamp(28px, 4vw, 56px); }
.work__row { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; }
.work__side { display: grid; gap: 12px; justify-items: start; max-width: 320px; }
.work__side p { margin: 0; }
.work__track {
  display: flex; gap: clamp(16px, 2vw, 32px); padding-inline: var(--gutter); padding-bottom: 32px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.work__track::-webkit-scrollbar { display: none; }
.is-hscroll .work__sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.is-hscroll .work__track { overflow: visible; will-change: transform; padding-bottom: 0; }
.is-hscroll .work__head .h2 { font-size: clamp(40px, min(5.6vw, 8.4vh), 104px); }
.is-hscroll .work__head .sechead { margin-bottom: 20px; }
.is-hscroll .work__head { margin-bottom: clamp(20px, 3vh, 40px); }
.is-hscroll .pcard { width: clamp(240px, min(29vw, calc((100vh - 430px) * .8)), 480px); gap: 14px; }
.is-hscroll .pcard__tag { display: none; }
.is-hscroll .pcard--end { width: clamp(220px, min(22vw, calc((100vh - 430px) * .8)), 360px); }

.pcard { flex: none; width: clamp(282px, 29vw, 480px); scroll-snap-align: start; display: grid; gap: 20px; }
.pcard__art { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3);
  clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 29.8px, 100% 100%, 0 100%);
  transition: clip-path .8s var(--ease); }
.pcard:hover .pcard__art { clip-path: polygon(0 0, calc(100% - 128px) 0, 100% 59.7px, 100% 100%, 0 100%); }
.pcard__art .art { width: 100%; height: 100%; transition: transform 1.2s var(--ease); }
.pcard:hover .pcard__art .art { transform: scale(1.05); }
.pcard__note { position: absolute; left: 12px; bottom: 12px; font-size: 9.5px; padding: 5px 8px; background: rgba(14, 15, 19, .72); color: var(--bone-2); backdrop-filter: blur(6px); }
.pcard__meta { display: grid; gap: 6px; }
.pcard__n { color: var(--muted); }
.pcard__name { font-size: clamp(34px, 3.4vw, 56px); margin-top: 4px; }
.pcard__name::after { content: ""; display: block; height: 3px; width: 36px; background: var(--c); margin-top: 14px; transform: skewX(-25deg); transform-origin: left; transition: width .6s var(--ease); }
.pcard:hover .pcard__name::after { width: 88px; }
.pcard__cat { margin: 4px 0 0; font-weight: 600; }
.pcard__tag { color: var(--muted); margin: 0 0 8px; }
.pcard--end { align-content: center; justify-items: start; gap: 20px; aspect-ratio: 4 / 5; align-self: start; padding: 32px; border: 1px solid var(--line-2); width: clamp(240px, 22vw, 360px); transition: background .5s var(--ease), color .5s var(--ease); }
.pcard--end .ico { width: 40px; height: 40px; }
.pcard__endt { font-size: clamp(34px, 3.4vw, 56px); }
.pcard--end:hover { background: var(--bone); color: var(--ink); }

/* ---------- Manifesto ---------- */
.manifesto { padding-block: clamp(120px, 16vw, 240px) clamp(80px, 10vw, 160px); }
.manifesto__text { font-size: clamp(28px, 4.1vw, 68px); line-height: 1.08; letter-spacing: -.025em; font-weight: 500; max-width: 25ch; margin: 0; font-stretch: 110%; font-variation-settings: "wdth" 110; }
.manifesto__text .w { transition: opacity .2s linear; }
.js .manifesto__text[data-words] .w { opacity: .16; }
.js .manifesto__text[data-words] .w.on { opacity: 1; }
.manifesto__cta { margin-top: clamp(40px, 5vw, 72px); }

/* ---------- CTA ---------- */
.cta { position: relative; background: var(--bone); color: var(--ink); isolation: isolate;
  clip-path: polygon(0 0, calc(100% - 22vw) 0, 100% calc(22vw * .4663), 100% 100%, 0 100%);
  padding-block: clamp(96px, 12vw, 180px) clamp(72px, 8vw, 120px); }
.cta .sechead { color: rgba(14, 15, 19, .55); }
.cta .sechead > .mono:first-child { color: var(--ink); }
.cta .sechead__line { background: rgba(14, 15, 19, .25); }
.cta__title { font-size: clamp(46px, 9.4vw, 170px); }
.cta__row { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 72px); }
.cta .muted { color: rgba(14, 15, 19, .62); margin: 0; max-width: 36ch; }

/* ---------- Footer ---------- */
.ftr { padding-top: clamp(80px, 10vw, 140px); overflow: hidden; border-top: 1px solid var(--line); }
.ftr__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.ftr__big { font-size: clamp(30px, 3.4vw, 56px); margin-bottom: 20px; }
.ftr__claim .muted { max-width: 42ch; }
.ftr__h { color: var(--muted); margin-bottom: 18px; font-size: 11px; font-weight: 500; }
.ftr__h--gap { margin-top: 32px; }
.ftr__col ul { display: grid; gap: 10px; justify-items: start; }
.ftr__word { margin-top: clamp(64px, 8vw, 120px); }
.ftr__svg { width: 100%; fill: var(--bone); transform: translateY(18%); }
.ftr__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 20px; color: var(--muted); border-top: 1px solid var(--line); position: relative; background: var(--ink); }

/* ---------- İç sayfa hero ---------- */
.phero { padding-top: calc(var(--hdr-h) + clamp(64px, 12vh, 160px)); padding-bottom: clamp(64px, 9vw, 140px); }
.phero__label { color: var(--muted); margin-bottom: clamp(20px, 3vw, 40px); }
.phero__label span { color: var(--bone); }
.phero__title { font-size: clamp(52px, 11.5vw, 208px); letter-spacing: -.045em; }
.phero__lede { max-width: 46ch; margin-top: clamp(28px, 4vw, 56px); font-size: clamp(17px, 1.35vw, 21px); color: var(--bone-2); }

/* bölünmüş başlık animasyonu */
.sw { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .06em; margin-bottom: -.06em; }
.sw__i { display: inline-block; }
.js [data-split] .sw__i { transform: translateY(108%); }
.js [data-split].in .sw__i { transform: none; transition: transform 1.2s var(--ease); transition-delay: calc(var(--i) * 45ms); }

.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.js .reveal-clip { clip-path: polygon(0 0, 0 0, -50% 100%, 0 100%); }
.js .reveal-clip.in { clip-path: polygon(0 0, 150% 0, 100% 100%, 0 100%); transition: clip-path 1.6s var(--ease-io); }

/* ---------- Studios listesi ---------- */
.plist { display: grid; gap: clamp(72px, 10vw, 160px); padding-bottom: clamp(96px, 12vw, 180px); }
.prow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 96px); align-items: center; }
.prow:nth-child(even) .prow__art { order: 2; }
.prow__art { position: relative; aspect-ratio: 4 / 5; max-height: 86vh; overflow: hidden; background: var(--ink-3);
  clip-path: polygon(0 0, calc(100% - 96px) 0, 100% 44.8px, 100% 100%, 0 100%); }
.prow__art .art { width: 100%; height: 100%; transition: transform 1.4s var(--ease); }
.prow__art:hover .art { transform: scale(1.04); }
.prow__n { color: var(--muted); margin-bottom: 20px; }
.prow__name { font-size: clamp(48px, 7.6vw, 136px); }
.prow__name a:hover { color: var(--c); }
.prow__tag { font-size: clamp(18px, 1.6vw, 24px); margin: 20px 0 36px; color: var(--bone-2); }
.prow .ulink { margin-top: 32px; }
.plist__note { text-transform: none; letter-spacing: .02em; border-top: 1px solid var(--line); padding-top: 18px; margin: 0; }

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--line-2); }
.facts > div { padding: 14px 16px 0 0; }
.facts > div + div { border-left: 1px solid var(--line); padding-left: 16px; }
.facts dt { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.facts dd { margin: 0; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; background: var(--c); flex: none; transform: skewX(-25deg); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }

/* ---------- Proje sayfası ---------- */
.proj { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 96px); align-items: end;
  padding-top: calc(var(--hdr-h) + clamp(40px, 8vh, 110px)); padding-bottom: clamp(64px, 9vw, 140px); }
.proj__name { font-size: clamp(56px, 10vw, 184px); letter-spacing: -.05em; }
.proj__tag { font-size: clamp(20px, 2vw, 30px); line-height: 1.25; margin: clamp(20px, 3vw, 36px) 0 clamp(36px, 5vw, 64px); max-width: 22ch; font-weight: 500; }
.proj__art { position: relative; margin: 0; aspect-ratio: 4 / 5; max-height: calc(100vh - var(--hdr-h) - 40px); width: 100%; overflow: hidden; background: var(--ink-3); justify-self: end; }
.proj__art .art { width: 100%; height: 100%; }
.proj__art::before { content: ""; position: absolute; z-index: 2; left: 0; right: 0; top: 50%; height: 2px; background: var(--c); transform: rotate(-25deg) scaleX(1.6); opacity: .9; mix-blend-mode: screen; pointer-events: none; }

.pabout { padding-bottom: clamp(80px, 10vw, 160px); }
.pabout__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 120px); }
.pabout__lead { font-size: clamp(22px, 2.3vw, 36px); line-height: 1.25; letter-spacing: -.015em; font-weight: 500; }
.pabout__copy .muted { max-width: 52ch; }
.feats { border-top: 1px solid var(--line-2); }
.feat { display: grid; grid-template-columns: 28px 1fr; column-gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feat__dot { width: 10px; height: 10px; margin-top: 8px; background: var(--c); transform: skewX(-25deg); grid-row: span 2; }
.feat strong { font-weight: 700; font-size: 18px; }

.store { padding-bottom: clamp(96px, 12vw, 180px); }
.store__box { display: flex; gap: 20px; align-items: flex-start; padding: clamp(22px, 3vw, 40px); border: 1px solid var(--line-2); }
.store__box p { margin: 0; }
.store__box--wait { border-style: dashed; }
.store__pulse { width: 12px; height: 12px; margin-top: 7px; flex: none; background: var(--c); transform: skewX(-25deg); position: relative; }
.store__pulse::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--c); animation: ping 2s var(--ease) infinite; }
@keyframes ping { from { opacity: 1; transform: scale(.6); } to { opacity: 0; transform: scale(2.2); } }

.nextp { position: relative; display: block; min-height: clamp(360px, 62vh, 640px); overflow: hidden; isolation: isolate; border-top: 1px solid var(--line); }
.nextp__art { position: absolute; inset: 0; z-index: -1; opacity: .38; transition: opacity .8s var(--ease), transform 1.4s var(--ease); }
.nextp__art .art { width: 100%; height: 100%; }
.nextp::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, var(--ink) 5%, transparent 70%); }
.nextp:hover .nextp__art { opacity: .7; transform: scale(1.04); }
.nextp__in { position: absolute; left: 0; right: 0; bottom: clamp(28px, 5vw, 64px); margin-inline: auto; display: grid; gap: 14px; }
.nextp__in .mono { color: var(--muted); }
.nextp__name { font-size: clamp(56px, 12vw, 220px); letter-spacing: -.05em; }
.nextp__cat { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.nextp__cat .ico { color: var(--c); transition: transform .6s var(--ease); }
.nextp:hover .nextp__cat .ico { transform: translateX(8px); }

/* ---------- Yakında sayfaları ---------- */
.soon { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 120px); align-items: start; padding-bottom: clamp(96px, 12vw, 180px); }
.signal, .wave { position: relative; aspect-ratio: 5 / 4; border: 1px solid var(--line-2); background: var(--ink-2); overflow: hidden; }
.signal { display: flex; align-items: flex-end; gap: 4%; padding: 10% 10% 16%; }
.signal i { flex: 1; height: calc(18% + var(--i) * 11%); background: var(--bone); transform-origin: bottom; opacity: calc(.25 + var(--i) * .1); animation: sig 2.6s var(--ease-io) calc(var(--i) * -.3s) infinite alternate; }
.signal i:last-of-type { opacity: 1; }
@keyframes sig { from { transform: scaleY(.35); } to { transform: scaleY(1); } }
.signal__t { position: absolute; left: 16px; bottom: 14px; color: var(--muted); }
.signal::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 2px, transparent 2px 4px); pointer-events: none; }
.wave { display: flex; align-items: center; gap: .6%; padding: 0 6%; }
.wave i { flex: 1; height: calc(var(--h) * 70%); background: var(--bone); border-radius: 0; transform: scaleY(.3); transform-origin: center; animation: wv 1.8s ease-in-out calc(var(--i) * -.07s) infinite alternate; }
.wave i:nth-child(12n) { background: var(--muted); }
@keyframes wv { to { transform: scaleY(1); } }
.chan { border-top: 1px solid var(--line-2); }
.chan__a { display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease), color .3s; }
.chan__a:hover { padding-left: 12px; color: var(--muted); }
.chan__a .muted { grid-column: 2; }

/* ---------- Hakkımızda ---------- */
.about { padding-bottom: clamp(80px, 10vw, 160px); }
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-2); padding-inline: 0; max-width: calc(var(--maxw) - var(--gutter) * 2); width: calc(100% - var(--gutter) * 2); }
.tri { display: grid; gap: 14px; align-content: start; min-height: 320px; padding: 28px 28px 32px 0; border-bottom: 1px solid var(--line-2); transition: background .5s var(--ease), color .5s var(--ease), padding .5s var(--ease); }
.tri + .tri { border-left: 1px solid var(--line-2); padding-left: 28px; }
.tri > .mono:first-child { color: var(--muted); }
.tri__name { font-size: clamp(30px, 3.2vw, 52px); margin-top: auto; padding-top: 72px; }
.tri__st { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.tri:hover { background: var(--bone); color: var(--ink); padding-left: 28px; }
.tri:hover .muted, .tri:hover > .mono:first-child { color: rgba(14, 15, 19, .6); }
.mark-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 120px); align-items: center; padding-block: clamp(120px, 14vw, 220px); }
.mark-story__vis { position: relative; padding: 8%; border: 1px solid var(--line); }
.mark-story__svg { width: 100%; fill: var(--bone); overflow: visible; }
.mark-story__angle { position: absolute; right: 16px; top: 16px; color: var(--muted); }
.mark-story__vis::after { content: ""; position: absolute; left: 50%; top: 32%; width: 140%; height: 1.5px; background: var(--bone); transform: translate(-50%, -50%) rotate(-25deg); mix-blend-mode: difference; }
.mark-story .h2 { margin-bottom: 28px; }
.mark-story__txt p:not(.muted) { font-size: clamp(18px, 1.5vw, 22px); }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: clamp(32px, 6vw, 120px); padding-bottom: clamp(96px, 12vw, 180px); }
.contact__mail { display: block; font-size: clamp(30px, 5vw, 84px); word-break: break-word; }
.contact__mail:hover { color: var(--muted); }
.sr-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.contact__side .muted { max-width: 38ch; }

/* ---------- 404 ---------- */
.nf { min-height: 100svh; padding-top: calc(var(--hdr-h) + 48px); padding-bottom: 64px; display: grid; align-content: center; justify-items: start; position: relative; }
.nf__mark { position: absolute; right: var(--gutter); top: 50%; width: min(40vw, 480px); transform: translateY(-50%); opacity: .14; }
.nf__svg { width: 100%; fill: var(--bone); overflow: visible; }
.nf__svg path:nth-child(2) { transform: translate(40px, 60px) !important; }
.nf__svg path:nth-child(3) { transform: translate(90px, -50px) !important; }
.nf .phero__lede { margin-bottom: 40px; }

/* ---------- Özel imleç etiketi ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 130; pointer-events: none; width: 92px; height: 92px; margin: -46px 0 0 -46px;
  display: grid; place-items: center; border-radius: 50%; background: var(--bone); color: var(--ink);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  transform: translate3d(var(--x, -200px), var(--y, -200px), 0) scale(0); transition: transform .45s var(--ease); }
.cursor.on { transform: translate3d(var(--x), var(--y), 0) scale(1); }

/* ---------- Duyarlı ---------- */
@media (max-width: 1100px) {
  .drow { grid-template-columns: minmax(0, 1fr) auto 36px; }
  .drow__desc { display: none; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hero__mark { width: 92vw; right: -24vw; top: 46%; opacity: .95; }
  .hero__foot { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .prow, .proj, .pabout__grid, .soon, .mark-story, .contact { grid-template-columns: 1fr; }
  .prow:nth-child(even) .prow__art { order: 0; }
  .proj__art { justify-self: stretch; max-height: none; }
  .trio { grid-template-columns: 1fr; }
  .tri + .tri { border-left: 0; padding-left: 0; }
  .tri { min-height: 0; }
  .tri__name { padding-top: 24px; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .ftr__claim { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  :root { --hdr-h: 64px; }
  .hdr__logo { width: 104px; }
  .hero__meta span:last-child { display: none; }
  .hl:nth-child(2), .hl:nth-child(3) { padding-left: 0; }
  .hero__title { font-size: 17.5vw; }
  .hero__mark { width: 118vw; right: -46vw; top: 40%; }
  .drow { grid-template-columns: minmax(0, 1fr) 28px; padding-inline: 4px; }
  .drow__status { display: none; }
  .drow__arr { font-size: 22px; }
  .facts { grid-template-columns: 1fr; }
  .facts > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .facts > div { padding: 12px 0; }
  .ftr__top { grid-template-columns: 1fr; }
  .cta { clip-path: polygon(0 0, calc(100% - 34vw) 0, 100% calc(34vw * .4663), 100% 100%, 0 100%); }
  .chan__a { grid-template-columns: 1fr auto; }
  .chan__a .muted { grid-column: 1; }
  .pcard__art { clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 22.4px, 100% 100%, 0 100%); }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js .hl__i, .js [data-split] .sw__i, .js .reveal, .js .reveal-clip { transform: none !important; opacity: 1 !important; clip-path: none !important; }
  .js .hero__mark { opacity: 1; }
  .hero__laser { transform: translate(-50%, -50%) rotate(-25deg) scaleX(1); }
  .js .manifesto__text[data-words] .w { opacity: 1; }
  .marquee__track { animation: none; }
  .curtain { display: none; }
}

/* ---------- Animasyonlu görseller ---------- */
.art-spin { transform-box: fill-box; transform-origin: center; animation: spin 120s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.art-twinkle { animation: tw 3.2s ease-in-out var(--d) infinite alternate; }
@keyframes tw { to { opacity: .1; } }
.art-pulse circle:last-child { transform-box: fill-box; transform-origin: center; animation: pp 2.8s var(--ease) var(--d) infinite; }
@keyframes pp { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.art-ping { transform-box: fill-box; transform-origin: center; animation: pp 2.4s var(--ease) infinite; }

@media print {
  .hdr, .curtain, .hero__field, .hero__laser, .marquee, .cursor, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}
