/* ==========================================================
   GRID DENIM — www.griddenims.com
   Tema: indigo denim, bakır dikiş ipliği, marka kırmızısı
   ========================================================== */

@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-ext-400.woff2") format("woff2"); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122; }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-ext-500.woff2") format("woff2"); unicode-range: U+0100-02AF, U+1E00-1EFF; }
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122; }
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-ext-600.woff2") format("woff2"); unicode-range: U+0100-02AF, U+1E00-1EFF; }
@font-face { font-family: "Poppins"; font-weight: 800; font-display: swap; src: url("../fonts/poppins-latin-800.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122; }
@font-face { font-family: "Poppins"; font-weight: 800; font-display: swap; src: url("../fonts/poppins-latin-ext-800.woff2") format("woff2"); unicode-range: U+0100-02AF, U+1E00-1EFF; }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-display: swap; src: url("../fonts/instrument-serif-latin-italic.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-display: swap; src: url("../fonts/instrument-serif-latin-ext-italic.woff2") format("woff2"); unicode-range: U+0100-02AF, U+1E00-1EFF; }

:root {
  --ink: #04091a;
  --indigo-900: #060d1f;
  --indigo-800: #0a1733;
  --indigo-700: #0f2350;
  --denim-600: #1d3a6e;
  --denim-500: #2e5290;
  --denim-400: #5a7fb5;
  --denim-200: #a9bfdc;
  --sky: #4fb3e8;
  --red: #e11d2a;
  --copper: #d4903f;
  --copper-2: #f0b464;
  --cream: #f3eee4;
  --text: #e8ecf5;
  --muted: #9fb0cc;
  --line: rgba(169, 191, 220, .16);

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r: 22px;
  --gutter: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body {
  margin: 0;
  background: var(--indigo-900);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* ince denim dokusu tüm sayfada */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .5;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(45deg, rgba(0,0,0,.12) 0 1px, transparent 1px 5px);
}
/* JS çalışmazsa bile açılış ekranı 3.5 sn sonra kendiliğinden kaybolur */
@keyframes loaderOut { to { opacity: 0; visibility: hidden; } }
.loader { animation: loaderOut .5s ease 3.5s forwards; }
img { max-width: 100%; display: block; }
a { color: inherit; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--copper-2); letter-spacing: 0; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px dashed var(--copper-2); outline-offset: 4px; border-radius: 6px; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--cream); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

.container { width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
main, footer { position: relative; z-index: 1; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 999; display: grid; place-items: center;
  background: var(--ink);
}
.loader__inner { position: relative; width: 170px; height: 170px; display: grid; place-items: center; }
.loader__logo { width: 64px; height: auto; }
.loader__stitch { position: absolute; inset: 0; width: 100%; height: 100%; }
.loader__stitch rect { fill: none; stroke: var(--copper); stroke-width: 2.4; stroke-dasharray: 2.2 1.4; stroke-dashoffset: 0; }
.loader__count { position: absolute; bottom: -42px; left: 0; right: 0; text-align: center; font-size: 12px; letter-spacing: .3em; color: var(--muted); font-variant-numeric: tabular-nums; }
.loader.is-done { pointer-events: none; }

/* ---------- Cursor (yalnız masaüstü) ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 998; pointer-events: none; display: none; }
.cursor span {
  display: block; width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
  border: 1.5px dashed var(--copper-2); transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.cursor.is-hover span { transform: scale(1.8); background: rgba(212,144,63,.14); border-style: solid; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 14px var(--gutter) auto; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  background: rgba(6, 13, 31, .55); border: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translateY(-140%); }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: .12em; font-size: 14px; }
.nav__brand img { width: 22px; height: auto; }
.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: 14px; padding: 8px 14px; border-radius: 999px; color: var(--muted); transition: color .25s, background .25s; }
.nav__links a:hover, .nav__links a.is-active { color: #fff; background: rgba(255,255,255,.06); }
.nav__toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red);
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px 14px 18px; border-radius: 999px; border: 0; cursor: pointer;
  font: 600 14px/1 var(--sans); letter-spacing: .02em; color: #fff; text-decoration: none;
  background: var(--bg); overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s;
}
/* bakır perçin */
.btn--rivet::before {
  content: ""; width: 12px; height: 12px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 35%, #ffe0b0, var(--copper) 45%, #7a4a18 100%);
  box-shadow: 0 0 0 2px rgba(0,0,0,.25), inset 0 0 0 2px rgba(0,0,0,.15);
}
/* dikiş kenarı */
.btn::after {
  content: ""; position: absolute; inset: 4px; border-radius: inherit; z-index: -1;
  border: 1.5px dashed rgba(255,255,255,.45); opacity: .8; transition: inset .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(225,29,42,.6); }
.btn:hover::after { inset: 6px; }
.btn--ghost { --bg: transparent; border: 1px solid var(--line); padding-left: 24px; }
.btn--ghost:hover { box-shadow: none; background: rgba(255,255,255,.06); }
.btn--wa { --bg: #1f7a4d; padding-left: 24px; }
.nav__cta { padding: 11px 18px 11px 14px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero__loom { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero__light {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; mix-blend-mode: soft-light;
  background: radial-gradient(40vmax 40vmax at var(--lx, 70%) var(--ly, 35%), rgba(190,215,255,.55), transparent 60%);
}
.hero__bleach { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(70% 60% at 60% 40%, #7d9ccc, #4a6a9e 70%); }
.hero__shade {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 20% 100%, rgba(4,9,26,.92) 0%, rgba(4,9,26,.55) 45%, rgba(4,9,26,.1) 80%),
    linear-gradient(180deg, rgba(4,9,26,.55) 0%, transparent 25%, transparent 70%, var(--indigo-900) 100%);
}
.hero__content { padding: 140px var(--gutter) clamp(90px, 14vh, 150px); max-width: 1100px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--denim-200); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,29,42,.2); }
.hero__title { margin: 0; font-weight: 800; font-size: clamp(42px, 8.4vw, 132px); line-height: .95; letter-spacing: -.035em; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span { display: inline-block; }
.hero__title em { font-size: 1.08em; letter-spacing: -.01em; }
.hero__lead { margin: 28px 0 34px; font-size: clamp(16px, 1.4vw, 20px); color: var(--denim-200); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* deri etiket (arka cep patch) */
.hero__patch {
  position: absolute; right: var(--gutter); top: 50%; translate: 0 -50%;
  display: grid; justify-items: center; gap: 14px; padding: 28px 30px 24px;
  width: 210px; border-radius: 14px; rotate: 6deg;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.12), transparent 60%),
    repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0 2px, transparent 2px 5px),
    #8a5a2b;
  color: #fbe9cf; text-align: center; font-weight: 800; letter-spacing: .14em; font-size: 15px; line-height: 1.3;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(0,0,0,.25);
}
.hero__patch::before { content: ""; position: absolute; inset: 8px; border-radius: 9px; border: 1.5px dashed rgba(251,233,207,.6); }
.hero__patch img { width: 54px; height: auto; filter: drop-shadow(0 2px 0 rgba(0,0,0,.35)); opacity: .92; }
.hero__patch small { font-weight: 500; letter-spacing: .24em; font-size: 10px; opacity: .8; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; translate: -50% 0; display: grid; justify-items: center; gap: 8px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--copper), transparent); animation: drip 2s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 60% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
.hero__wash { position: absolute; right: var(--gutter); bottom: 30px; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .22em; color: var(--muted); }
.hero__wash i { width: 110px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.hero__wash b { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--denim-600), var(--denim-200)); transform-origin: left; transform: scaleX(0); }

/* ---------- 3D Hikâye (scroll ile ilerleyen sahne) ---------- */
.story { position: relative; height: 620vh; }
.story__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; isolation: isolate; }
.story__glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(42vmax 34vmax at var(--gx, 62%) 50%, var(--glow, rgba(46, 82, 144, .55)), transparent 70%),
    radial-gradient(30vmax 22vmax at 70% 80%, rgba(225, 29, 42, .10), transparent 70%),
    linear-gradient(180deg, #050b1c, var(--indigo-900));
  transition: background .8s;
}
.story__word {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; mix-blend-mode: overlay;
}
.story__word span {
  font-weight: 800; font-size: clamp(90px, 24vw, 420px); letter-spacing: -.06em; line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .45);
  transition: opacity .5s, transform .6s var(--ease);
}
.story__word.is-swap span { opacity: 0; transform: translateY(6%) scale(.97); }
/* gerçek video sahneleri — perde gibi açılır */
.story__media { position: absolute; inset: 0; z-index: 1; overflow: hidden; background: #03060f; }
.scene {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; clip-path: inset(100% 0 0 0); transform: scale(1.22);
  transition: clip-path 1.25s cubic-bezier(.77, 0, .18, 1), opacity .6s ease, filter 1.2s ease;
  filter: brightness(.7) saturate(.85);
  will-change: transform, clip-path;
}
.scene.is-on { opacity: 1; clip-path: inset(0 0 0 0); filter: brightness(1) saturate(1); z-index: 2; }
.scene.is-before { opacity: 1; clip-path: inset(0 0 0 0); filter: brightness(.35) saturate(.6); z-index: 1; }
.story__shade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,7,18,.88) 0%, rgba(3,7,18,.55) 32%, rgba(3,7,18,.05) 62%, rgba(3,7,18,0) 100%),
    linear-gradient(180deg, rgba(3,7,18,.55) 0%, transparent 22%, transparent 70%, rgba(3,7,18,.75) 100%);
}
.story__labels { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
/* sinematik film greni + vinyet */
.story__grain { position: absolute; inset: -50%; z-index: 3; pointer-events: none; opacity: .09; background: url("../grain.png") repeat; animation: grain 1s steps(6) infinite; }
.story__stage::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: radial-gradient(120% 90% at 55% 50%, transparent 55%, rgba(2,5,14,.55) 100%); }
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-7%, 4%); } 40% { transform: translate(5%, -6%); } 60% { transform: translate(-3%, 8%); } 80% { transform: translate(8%, 2%); } 100% { transform: translate(-5%, -4%); } }
.lbl {
  position: absolute; left: 0; top: 0; display: flex; align-items: center; gap: 10px; white-space: nowrap;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--denim-200);
  opacity: 0; transition: opacity .4s; will-change: transform;
}
.lbl::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--copper-2); box-shadow: 0 0 0 4px rgba(240,180,100,.18); flex: none; }
.lbl::after { content: ""; order: -1; }
.lbl i { display: block; width: 46px; height: 1px; background: linear-gradient(90deg, var(--copper), transparent); }
.lbl.is-on { opacity: 1; }
.lbl--l { flex-direction: row-reverse; }
.lbl--l i { background: linear-gradient(270deg, var(--copper), transparent); }

.chap {
  position: absolute; z-index: 4; left: var(--gutter); bottom: clamp(70px, 13vh, 140px);
  width: min(560px, calc(100% - 2 * var(--gutter)));
  opacity: 0; visibility: hidden; transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .8s var(--ease), visibility .6s;
}
.chap.is-on { opacity: 1; visibility: visible; transform: none; }
.chap--0 { bottom: auto; top: 50%; transform: translateY(-45%); width: min(640px, calc(100% - 2 * var(--gutter))); }
.chap--0.is-on { transform: translateY(-50%); }
.chap__no { margin: 0 0 12px; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--sky); font-weight: 600; }
.chap__title { margin: 0; font-weight: 800; font-size: clamp(40px, 6.2vw, 104px); line-height: .98; letter-spacing: -.035em; }
.chap__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.chap__title .line > span { display: inline-block; }
.chap__title em { font-size: 1.06em; }
.chap__text { margin: 20px 0 26px; font-size: clamp(15px, 1.25vw, 19px); color: var(--denim-200); max-width: 42ch; }
.chap--end .chap__title { font-size: clamp(44px, 7vw, 120px); }

.story__nav { position: absolute; z-index: 4; right: var(--gutter); top: 50%; translate: 0 -50%; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: c; }
.story__nav { padding: 16px 16px 16px 22px; border-radius: 16px; background: rgba(3,7,18,.38); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.story__nav li { counter-increment: c; display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(159,176,204,.45); transition: color .4s; }
.story__nav li::after { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: width .4s var(--ease), background .4s; }
.story__nav li.is-on { color: #fff; }
.story__nav li.is-on::after { width: 40px; background: var(--copper-2); }
.story__bar { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.06); }
.story__bar i { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(0); background: repeating-linear-gradient(90deg, var(--copper) 0 12px, transparent 12px 18px); }
.story .hero__scroll { z-index: 4; }

/* WebGL yok / hareket azaltılmış: tek ekranlık statik giriş */
.no-webgl .story { height: auto; }
.no-webgl .story__stage { position: relative; min-height: 100svh; height: auto; }
.no-webgl .chap:not(.chap--0), .no-webgl .story__nav, .no-webgl .story__bar { display: none; }

@media (max-width: 980px) {
  .story { height: 620vh; }
  .story__nav { display: none; }
  .chap { bottom: 64px; }
  .chap--0 { top: auto; bottom: 64px; transform: translateY(30px); }
  .chap--0.is-on { transform: none; }
  .chap::before { content: ""; position: absolute; inset: -80px calc(-1 * var(--gutter)) -64px; z-index: -1; background: linear-gradient(transparent, rgba(3,7,18,.9) 50%); }
  .story__shade { background: linear-gradient(180deg, rgba(3,7,18,.5) 0%, transparent 20%, transparent 45%, rgba(3,7,18,.6) 100%); }
  .story__labels { display: none; }
  .story .hero__scroll { display: none; }
}

/* ---------- Tape (kayan şerit) ---------- */
.tape { position: relative; z-index: 2; background: var(--red); color: #fff; overflow: hidden; rotate: -1.4deg; margin: -10px -20px 0; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); }
.tape::before, .tape::after { content: ""; position: absolute; left: 0; right: 0; height: 0; border-top: 1.5px dashed rgba(255,255,255,.55); }
.tape::before { top: 6px; } .tape::after { bottom: 6px; }
.tape__track { display: flex; width: max-content; gap: 26px; padding: 16px 0; font-weight: 800; letter-spacing: .16em; font-size: clamp(13px, 1.2vw, 16px); animation: marq 28s linear infinite; }
.tape__track b { color: rgba(255,255,255,.55); font-weight: 400; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(90px, 13vw, 170px) 0; }
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 900px; }
.kicker { margin: 0 0 14px; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--sky); font-weight: 600; }
h2 { margin: 0; font-weight: 800; font-size: clamp(34px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.03em; }
h3 { margin: 0 0 10px; font-weight: 600; font-size: clamp(19px, 1.6vw, 23px); letter-spacing: -.01em; }
.sec-lead { color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); max-width: 60ch; margin: 22px 0 0; }
/* başlık altı dikiş */
.seam { display: block; margin-top: 22px; width: 120px; height: 2px; background: repeating-linear-gradient(90deg, var(--copper) 0 10px, transparent 10px 16px); transform-origin: left; }

.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.reveal-words .w > span { display: inline-block; }

/* About */
.about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.about .big { font-size: clamp(21px, 2.3vw, 32px); line-height: 1.35; font-weight: 500; letter-spacing: -.015em; margin: 0 0 26px; color: #fff; }
.about__text > p:not(.big) { color: var(--muted); max-width: 56ch; }
.about__photo { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.about__photo img { width: 100%; height: 118%; object-fit: cover; }
.about__photo::after { content: ""; position: absolute; inset: 10px; border-radius: 14px; border: 1.5px dashed rgba(240,180,100,.55); pointer-events: none; }
.about__photo figcaption { position: absolute; left: 22px; bottom: 20px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; background: rgba(4,9,26,.7); padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(6px); }
.patches { list-style: none; padding: 0; margin: clamp(50px, 7vw, 90px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.patch {
  position: relative; padding: 28px 26px; border-radius: 16px;
  background: linear-gradient(160deg, var(--indigo-700), var(--indigo-800));
  border: 1px solid rgba(79,179,232,.35);
}
.patch::before { content: ""; position: absolute; inset: 7px; border-radius: 11px; border: 1.5px dashed rgba(212,144,63,.45); pointer-events: none; }
.patch strong { display: block; font-size: clamp(19px, 1.8vw, 24px); font-weight: 800; letter-spacing: -.01em; }
.patch span { color: var(--muted); font-size: 14px; }

/* Numune kartı (swatch) */
.swatch {
  position: relative; border-radius: 10px; background: var(--cream); color: var(--ink);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(0,0,0,.08);
  padding: 0 0 26px; overflow: hidden; rotate: -2deg;
}
.swatch::before { /* zımba deliği */
  content: ""; position: absolute; top: 14px; left: 50%; z-index: 2; width: 16px; height: 16px; margin-left: -8px;
  border-radius: 50%; background: var(--indigo-900); box-shadow: inset 0 0 0 3px #cfc7b3;
}
.swatch__fabric {
  --tone: #1a2f63; position: relative; height: clamp(220px, 26vw, 340px);
  /* zikzak (pinking) kesim kenarı */
  -webkit-mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 18px 100%;
          mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / 18px 100%;
  background: url("../media/swatch.webp") center / cover;
}
.swatch__fabric::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 40% 35%, rgba(255,255,255,.22), transparent 60%), linear-gradient(transparent 70%, rgba(0,0,0,.35)); }
.swatch__selvedge { position: absolute; top: 0; bottom: 0; right: 0; width: 22px; z-index: 1;
  background: linear-gradient(90deg, #e8e4da 0 40%, var(--red) 40% 58%, #e8e4da 58%); box-shadow: -2px 0 4px rgba(0,0,0,.35); }
.swatch__spec { margin: 22px 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.swatch__spec dt { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #6b7690; }
.swatch__spec dd { margin: 2px 0 0; font-weight: 600; font-size: 15px; }
.swatch__spec div:last-child { grid-column: 1 / -1; }
.swatch__logo { position: absolute; right: 26px; bottom: 24px; width: 30px; height: auto; opacity: .85; }

/* Adım ikonları (fotoğraf yerine çizim) */
.step__icon { display: grid; place-items: center; background:
  radial-gradient(circle at 50% 45%, rgba(79,179,232,.12), transparent 60%),
  repeating-linear-gradient(-58deg, rgba(255,255,255,.03) 0 1px, transparent 1px 4px), var(--indigo-700); }
.step__icon svg { width: 42%; height: auto; overflow: visible; }
.step__icon svg path, .step__icon svg circle { fill: none; stroke: var(--denim-200); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; }
.step__icon svg .st { stroke: var(--copper-2); stroke-dasharray: .03 .02; }

/* Söz bandı */
.quote { padding-block: clamp(70px, 10vw, 140px); }
.quote__text { margin: 0; text-align: center; font-weight: 800; font-size: clamp(40px, 7.5vw, 120px); line-height: 1; letter-spacing: -.04em; }
.quote__text em { color: var(--red); }

/* Services */
.services { background: var(--cream); color: var(--ink); }
.services .kicker { color: var(--red); }
.services .sec-lead { color: #4b5873; }
.fray { position: absolute; left: 0; right: 0; height: 26px; pointer-events: none; }
.fray--top { top: -25px; background: radial-gradient(circle at 6px 26px, var(--cream) 7px, transparent 7.5px) 0 0 / 12px 26px repeat-x, linear-gradient(transparent 60%, var(--cream) 60%); }
.fray--bottom { bottom: -25px; background: radial-gradient(circle at 6px 0, var(--cream) 7px, transparent 7.5px) 0 0 / 12px 26px repeat-x, linear-gradient(var(--cream) 40%, transparent 40%); z-index: 2; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  --tone: #0f2350;
  position: relative; min-height: 360px; padding: 34px 30px; border-radius: var(--r); color: #fff; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  transform-style: preserve-3d; will-change: transform;
}
/* dokunmuş denim kumaşı: 3/1 dimi diyagonal + atkı iplikleri */
.denim-swatch {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,.14), transparent 55%),
    repeating-linear-gradient(-58deg, rgba(255,255,255,.10) 0 1.2px, transparent 1.2px 4px),
    repeating-linear-gradient(32deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 2px),
    var(--tone);
}
.card[data-shade="raw"] { --tone: #13254f; }
.card[data-shade="mid"] { --tone: #2d5189; }
.card[data-shade="light"] { --tone: #5c80b3; }
/* gerçek kumaş görüntüleri */
.card[data-shade] { background-size: cover; background-position: center; box-shadow: 0 30px 60px -30px rgba(4,9,26,.7); }
.card[data-shade="raw"] { background-image: linear-gradient(180deg, rgba(4,9,26,.05) 20%, rgba(4,9,26,.9) 100%), url("../media/card-raw.webp"); }
.card[data-shade="mid"] { background-image: linear-gradient(180deg, rgba(4,9,26,.05) 20%, rgba(4,9,26,.9) 100%), url("../media/card-mid.webp"); }
.card[data-shade="light"] { background-image: linear-gradient(180deg, rgba(4,9,26,.0) 20%, rgba(4,9,26,.88) 100%), url("../media/card-light.webp"); }
.card { min-height: 420px; }
.card__no { color: rgba(255,255,255,.55); }
.card::before { content: ""; position: absolute; inset: 10px; border-radius: 14px; border: 1.5px dashed var(--copper-2); opacity: .55; transition: inset .45s var(--ease), opacity .45s; z-index: -1; }
.card:hover::before { inset: 14px; opacity: 1; }
.card::after { /* yıkama efekti */
  content: ""; position: absolute; inset: -40%; z-index: -1; opacity: 0; transition: opacity .6s;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.28), transparent 35%);
}
.card:hover::after { opacity: 1; }
.card__no { position: absolute; top: 26px; left: 30px; font-family: var(--serif); font-style: italic; font-size: 64px; line-height: 1; color: rgba(255,255,255,.3); }
.card p { color: rgba(255,255,255,.82); margin: 0; }
.card__tag { position: absolute; top: 30px; right: 26px; font-size: 10px; letter-spacing: .22em; background: rgba(0,0,0,.25); padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); }

/* Process (yatay) */
.process { position: relative; background: var(--indigo-900); padding-top: clamp(70px, 9vw, 120px); }
.process__pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 96px 0 30px; }
.process__head { margin-bottom: clamp(20px, 3vh, 40px); }
.process__head h2 { font-size: clamp(30px, min(4.2vw, 7vh), 62px); }
.process__head .sec-lead { max-width: 80ch; margin-top: 14px; font-size: clamp(15px, 1.1vw, 17px); }
.process__track { position: relative; display: flex; gap: clamp(18px, 2.4vw, 34px); padding-inline: var(--gutter); width: max-content; }
.process__thread { position: absolute; left: 0; right: 0; top: 50%; width: 100%; height: 20px; z-index: 0; overflow: visible; }
.process__thread path { fill: none; stroke: var(--copper); stroke-width: 2; stroke-dasharray: .006 .004; vector-effect: non-scaling-stroke; }
.step { position: relative; z-index: 1; width: clamp(280px, min(34vw, 62vh), 480px); flex: none; border-radius: var(--r); background: var(--indigo-800); border: 1px solid var(--line); overflow: hidden; }
.step__img { aspect-ratio: 16/10; overflow: hidden; background: var(--indigo-700); }
.step__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.2s var(--ease); }
.step:hover .step__img img { transform: scale(1.02); }
.step__body { padding: 26px 28px 30px; }
.step__body p { color: var(--muted); margin: 0; }
.step__no { display: inline-block; margin-bottom: 12px; font-weight: 800; color: var(--sky); font-size: 28px; letter-spacing: -.02em; }
.step--wash { background: linear-gradient(160deg, var(--denim-600), var(--indigo-800)); }
/* yıkama makinesi */
.step__drum { display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, #1b2f5c, #0a1733 70%); }
.drum { width: 62%; aspect-ratio: 1; border-radius: 50%; padding: 7%; background: linear-gradient(145deg, #c9d3e3, #6d7c96); box-shadow: 0 20px 50px -10px rgba(0,0,0,.6), inset 0 -6px 12px rgba(0,0,0,.35); }
.drum__glass { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.35), transparent 40%), #3b73b9; box-shadow: inset 0 0 0 6px #25324a, inset 0 0 30px rgba(0,0,0,.5); animation: spin 5s linear infinite; }
.drum__glass i { position: absolute; width: 58%; height: 30%; border-radius: 40% 60% 50% 50%; background: repeating-linear-gradient(-58deg, rgba(255,255,255,.18) 0 1px, transparent 1px 3px), #1d3a6e; }
.drum__glass i:nth-child(1) { left: 8%; top: 52%; rotate: 20deg; }
.drum__glass i:nth-child(2) { left: 36%; top: 22%; rotate: -30deg; background-color: #5a7fb5; }
.drum__glass i:nth-child(3) { left: 30%; top: 60%; rotate: 70deg; width: 40%; background-color: #2e5290; }
@keyframes spin { to { rotate: 360deg; } }

/* Gallery */
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(90px, 11vw, 150px); gap: 16px; }
.g { margin: 0; border-radius: var(--r); overflow: hidden; position: relative; }
.g img { width: 100%; height: 125%; object-fit: cover; }
.g--a { grid-column: 1 / 7; grid-row: span 3; }
.g--b { grid-column: 7 / 13; grid-row: span 2; }
.g--c { grid-column: 8 / 13; grid-row: span 3; }
.g--q { grid-column: 1 / 8; grid-row: span 2; display: grid; align-content: center; padding: 0 clamp(10px, 3vw, 40px); font-size: clamp(34px, 5vw, 72px); font-weight: 800; line-height: 1; letter-spacing: -.03em; border-radius: 0; }
.g--q em { color: var(--red); }

/* Values */
.values__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value { position: relative; padding: clamp(30px, 4vw, 54px); border-radius: var(--r); background: var(--indigo-800); border: 1px solid var(--line); overflow: hidden; }
.value::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; border: 1.5px dashed rgba(212,144,63,.35); }
.value__label { display: inline-block; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: 18px; }
.value p { margin: 0; font-size: clamp(22px, 2.6vw, 36px); line-height: 1.25; font-weight: 500; letter-spacing: -.02em; }

/* Refs */
.marquee { display: grid; gap: 10px; margin-bottom: clamp(50px, 6vw, 80px); overflow: hidden; }
.marquee__row { display: flex; width: max-content; gap: 14px; animation: marq 40s linear infinite; }
.marquee__row--rev { animation-direction: reverse; animation-duration: 46s; }
.marquee__row span { flex: none; padding: 16px 30px; border-radius: 999px; border: 1px solid var(--line); font-weight: 800; font-size: clamp(18px, 2.4vw, 32px); letter-spacing: -.01em; white-space: nowrap; color: var(--denim-200); }
.marquee__row span:nth-child(3n+1) { background: var(--indigo-700); color: #fff; }
.refs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ref { padding: 30px; border-radius: var(--r); border: 1px solid var(--line); background: rgba(10,23,51,.6); }
.ref h3 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; }
.ref ul { list-style: none; margin: 0; padding: 0; }
.ref li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-weight: 500; }
.ref li::before { content: "— "; color: var(--copper); }
.ref li:last-child { border-bottom: 0; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 60px); align-items: start; }
.hangtag {
  position: relative; padding: 70px 34px 34px; border-radius: 18px 18px 26px 26px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.025) 0 2px, transparent 2px 6px),
    var(--cream);
  color: var(--ink); transform-origin: 50% 0; box-shadow: 0 40px 70px -30px rgba(0,0,0,.8);
  clip-path: polygon(18% 0, 82% 0, 100% 9%, 100% 100%, 0 100%, 0 9%);
}
.hangtag::before { content: ""; position: absolute; inset: 10px; border: 1.5px dashed rgba(225,29,42,.5); border-radius: 12px 12px 20px 20px; pointer-events: none; clip-path: inherit; }
.hangtag__hole { position: absolute; top: 20px; left: 50%; width: 22px; height: 22px; margin-left: -11px; border-radius: 50%; background: var(--indigo-900); box-shadow: inset 0 0 0 4px #c9c1ae; }
.hangtag__logo { width: 46px; height: auto; margin-bottom: 22px; }
.hangtag dl { margin: 0 0 26px; display: grid; gap: 14px; }
.hangtag dt { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #6b7690; }
.hangtag dd { margin: 2px 0 0; font-weight: 600; font-size: 16px; }
.hangtag a { text-decoration: none; }
.hangtag dd a:hover { color: var(--red); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: clamp(24px, 3vw, 40px); border-radius: var(--r); background: var(--indigo-800); border: 1px solid var(--line); }
.form__note { grid-column: 1 / -1; margin: 0 0 6px; font-size: 13px; color: var(--muted); }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%; padding: 26px 16px 10px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(4,9,26,.6); color: var(--text); font: 500 15px/1.4 var(--sans); resize: vertical;
  transition: border-color .25s, box-shadow .25s; appearance: none;
}
.field select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--indigo-800); }
.field label { position: absolute; left: 17px; top: 18px; font-size: 15px; color: var(--muted); pointer-events: none; transition: transform .2s var(--ease), font-size .2s, top .2s; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label, .field label.is-static { top: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(212,144,63,.18); border-style: dashed; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--muted); }
.check input { width: 18px; height: 18px; accent-color: var(--red); }
.form .btn { justify-content: center; padding-block: 18px; font-size: 15px; }
.form__status { margin: 0; min-height: 1.4em; font-size: 14px; color: var(--copper-2); }

/* Footer */
.footer { padding: 80px 0 30px; border-top: 1px dashed var(--line); background: var(--ink); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1.4fr .8fr; gap: 40px; font-size: 14px; color: var(--muted); }
.footer h4 { margin: 0 0 12px; color: #fff; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.footer a { text-decoration: none; } .footer a:hover { color: #fff; }
.footer__brand { display: flex; gap: 16px; align-items: center; }
.footer__brand img { width: 40px; height: auto; }
.footer__brand p { margin: 0; color: #fff; font-weight: 800; letter-spacing: .14em; }
.footer__brand small { font-weight: 400; letter-spacing: .04em; color: var(--muted); }
.footer__big { margin-top: 60px; font-weight: 800; font-size: clamp(60px, 16.5vw, 260px); line-height: .8; letter-spacing: -.05em; text-align: center; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px rgba(169,191,220,.22); background: repeating-linear-gradient(-58deg, rgba(90,127,181,.35) 0 2px, transparent 2px 6px); -webkit-background-clip: text; background-clip: text; }
.footer__copy { margin-top: 30px; font-size: 12px; color: #5f6f8c; }

/* KVKK / 404 sayfaları */
.page { padding: 150px 0 100px; }
.page h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; letter-spacing: -.03em; margin: 0 0 30px; }
.page h2 { font-size: 22px; letter-spacing: -.01em; margin: 34px 0 10px; }
.page p, .page li { color: var(--muted); max-width: 75ch; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { gap: 12px; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: grid; gap: 6px; place-content: center; width: 44px; height: 44px; margin-left: auto;
    border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer;
  }
  .nav__toggle span { display: block; width: 18px; height: 1.5px; background: #fff; transition: transform .3s var(--ease); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav__links {
    position: fixed; inset: 76px 0 auto; margin: 0 var(--gutter); flex-direction: column; padding: 14px;
    border-radius: 22px; background: rgba(6,13,31,.96); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s var(--ease);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { font-size: 18px; padding: 14px 16px; }
  .hero__patch { display: none; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4/3; }
  .cards, .refs__grid, .patches { grid-template-columns: 1fr; }
  .card { min-height: 280px; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g--a, .g--b, .g--c, .g--q { grid-column: auto; grid-row: span 1; }
  .g--q { grid-column: 1 / -1; padding: 10px 0; }
}
@media (max-width: 640px) {
  .form { grid-template-columns: 1fr; }
  .hero__wash { display: none; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g--q { grid-row: auto; }
}
/* Yatay kaydırma sadece JS + geniş ekranda; aksi halde dikey liste */
.no-hscroll .process__pin { min-height: 0; }
.no-hscroll .process__track { width: auto; flex-direction: column; }
.no-hscroll .step { width: 100%; }
.no-hscroll .process__thread { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .loader { display: none; }
}
