/* =========================================================
   ElephantShop — Editorial street gallery
   ========================================================= */

:root {
  --teal:      #00A0A8;
  --teal-600:  #017F86;   /* metin için (beyaz üstünde okunur) */
  --teal-700:  #0B5E63;
  --teal-050:  #E9F6F6;

  --ink:       #0F1717;   /* neredeyse siyah, hafif teal tonu */
  --ink-soft:  #4A5654;
  --paper:     #FFFFFF;
  --paper-2:   #F6F5F1;   /* sıcak kırık beyaz */
  --line:      #E5E3DC;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max: 1440px;
  --max-wide: 1720px;
  --pad: clamp(20px, 5vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--teal); color: #fff; }

/* ---------- erişilebilirlik ---------- */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: fixed; top: -64px; left: 16px; z-index: 11000; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 100px; font-family: var(--font-mono); font-size: 13px; transition: top .25s var(--ease); }
.skip-link:focus-visible { top: 14px; outline-color: #fff; }
/* hover-only içeriğin klavye eşleniği */
.g-item:focus-visible .g-cap { opacity: 1; transform: translateY(0); }
.g-item:focus-visible::after { opacity: 1; transform: scale(1) rotate(0); }
.g-item:focus-visible img { transform: scale(1.05); }
.svc:focus-within .svc__txt p { max-height: 120px; opacity: 1; }
.svc:focus-within .svc__plus { transform: rotate(135deg); }
.work-card:focus-visible .work-card__go { opacity: 1; transform: scale(1) rotate(0); }
.work-card:focus-visible .work-card__title { color: var(--teal); }
.work-card:focus-visible .work-card__media img { transform: scale(1.06); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.035;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- cursor dot ---------- */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none;
  width: 9px; height: 9px; border-radius: 50%; background: var(--teal);
  transform: translate(-50%, -50%); transition: scale .25s var(--ease), background .25s;
  mix-blend-mode: multiply; opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-dot { opacity: 1; } }
.cursor-dot.is-big { scale: 5.1; background: rgba(0,160,168,.25); }

/* =========================================================
   Layout helpers
   ========================================================= */
.section { padding: clamp(72px, 12vh, 160px) var(--pad); max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal-600);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content: "●"; font-size: 8px; color: var(--teal); }
.h2 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.02em;
  font-size: clamp(34px, 6vw, 76px);
}
.ink-teal { color: var(--teal); }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 1000; transition: background .4s var(--ease), box-shadow .4s; }
.nav__inner {
  max-width: var(--max-wide); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 18px var(--pad);
}
.nav__logo { height: 38px; width: auto; transition: transform .4s var(--ease); }
.nav__brand:hover .nav__logo { transform: rotate(-3deg) scale(1.04); }

.nav__links { display: flex; gap: 28px; margin-left: 12px; }
.nav__links a {
  font-weight: 600; font-size: 15px; position: relative; padding: 4px 0; color: var(--ink);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--teal);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__meta { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.nav__loc  { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--ink-soft); }
.nav__clock { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--teal-600); }

.nav__actions { display: flex; align-items: center; gap: 16px; }
.lang {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
}
.lang__opt { color: var(--ink-soft); transition: color .25s; }
.lang__opt.is-active { color: var(--ink); }
.lang__sep { color: var(--line); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 100px; transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--wa { background: var(--teal-700); color: #fff; padding: 10px 18px; box-shadow: 0 6px 20px -8px rgba(0,160,168,.8); }
.btn--wa:hover { background: var(--teal); transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--teal); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--teal-700); font-size: 17px; padding: 16px 32px; }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.45); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* nav scrolled */
.nav.is-scrolled { background: rgba(255,255,255,.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }

/* =========================================================
   HERO
   ========================================================= */
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(64px, 17.5vw, 280px); line-height: 0.84; letter-spacing: -0.035em;
  margin: 10px 0 clamp(28px, 4vw, 52px);
}
.hero__title .line { display: block; overflow: hidden; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: var(--pad); bottom: 30px; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
.hero__scroll-line { width: 60px; height: 1px; background: var(--ink-soft); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--teal); transform: translateX(-100%); animation: swipe 2.2s var(--ease) infinite; }
@keyframes swipe { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* =========================================================
   HERO JOURNEY — 3B sprey kutusu + scroll yolculuğu
   ========================================================= */
.hero-journey { position: relative; }
.hero-stage { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-canvas { display: none; }

.hero-journey .hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 6.6vw, 96px); line-height: .9; letter-spacing: -.035em; white-space: nowrap; }
.hero-journey .hero__title .line { display: block; overflow: visible; }
.beat__kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.beat__kicker::before { content: "●"; font-size: 8px; color: var(--teal); }
.beat__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 92px); line-height: .95; letter-spacing: -.03em; }
.beat__lead { font-size: clamp(18px, 2.2vw, 26px); line-height: 1.4; color: var(--ink-soft); }

/* --- FALLBACK (JS/WebGL yok): normal sade hero, beat'ler alt alta --- */
.beats { width: 100%; max-width: var(--max-wide); margin: 0 auto; padding: clamp(140px,18vh,200px) var(--pad) 80px; display: flex; flex-direction: column; gap: clamp(40px,7vh,80px); }
.beat--d .hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* --- AKTİF 3B MOD --- */
html.is-3d .hero-journey { height: 600vh; }
html.is-3d .hero-stage { position: sticky; top: 0; height: 100svh; min-height: 0; overflow: hidden; display: block; }
html.is-3d .hero-canvas { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* sprey ile boyanan arka plan (kaydırdıkça açığa çıkar) */
.paint-layer { display: none; }
html.is-3d .paint-layer {
  display: block; position: absolute; inset: 0; z-index: 0; background: var(--teal);
  -webkit-mask-image: radial-gradient(135% 125% at 50% 8%, #000 calc(var(--paint, 0) * 100%), rgba(0,0,0,0) calc(var(--paint, 0) * 100% + 13%));
          mask-image: radial-gradient(135% 125% at 50% 8%, #000 calc(var(--paint, 0) * 100%), rgba(0,0,0,0) calc(var(--paint, 0) * 100% + 13%));
}
html.is-3d .paint-layer::after {
  content: ""; position: absolute; inset: 0; opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
}
/* finalde teal zemine beyaz CTA */
html.is-3d .beat--d, html.is-3d .beat--d .beat__big { color: #fff; }
html.is-3d .beat--d .btn--solid { background: #fff; color: var(--teal-700); }
html.is-3d .beat--d .btn--solid:hover { background: var(--ink); color: #fff; }
html.is-3d .beat--d .btn--ghost { border-color: rgba(255,255,255,.65); color: #fff; }
html.is-3d .beat--d .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
html.is-3d .beats { position: absolute; inset: 0; max-width: none; margin: 0; padding: 0; display: block; }
html.is-3d .beat { position: absolute; opacity: 0; visibility: hidden; z-index: 2; width: min(44vw, 480px); will-change: opacity, transform; }
html.is-3d .beat--a { left: var(--pad); bottom: 15vh; }
html.is-3d .beat--b { left: var(--pad); top: 17vh; }
html.is-3d .beat--c { right: var(--pad); bottom: 15vh; text-align: right; width: min(42vw, 500px); }
html.is-3d .beat--c .beat__kicker { flex-direction: row-reverse; }
html.is-3d .beat--d { left: 0; right: 0; margin: 0 auto; top: 54vh; text-align: center; width: min(92vw, 640px); isolation: isolate; }
html.is-3d .beat--d .hero__cta { justify-content: center; }
/* finalde "Hadi başlayalım"ın ÜSTÜNDE açıkça görünür beyaz graffiti tag */
.beat-d-tag { display: none; }
html.is-3d .beat-d-tag { display: block; position: absolute; left: 50%; bottom: calc(100% + 2vh); transform: translateX(-50%); width: min(155%, 940px); max-width: none; opacity: .55; pointer-events: none; z-index: 0; }
html.is-3d .beat--d .beat__big, html.is-3d .beat--d .hero__cta { position: relative; z-index: 1; }
html.is-3d .hero__scroll { left: auto; right: var(--pad); bottom: 30px; z-index: 3; }

@media (max-width: 720px) {
  html.is-3d .hero-journey { height: 440vh; }
  html.is-3d .beat { width: min(86vw, 420px); }
  html.is-3d .beat--c { text-align: left; }
  html.is-3d .beat--c .beat__kicker { flex-direction: row; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--paper); }
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 5vw, 56px); letter-spacing: -0.02em; -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.marquee__track span.dot { -webkit-text-stroke: 0; color: var(--teal); font-size: 18px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.about__head .h2 { margin-top: 4px; }
.about__body p { font-size: clamp(16px,1.5vw,19px); color: var(--ink-soft); margin-bottom: 20px; max-width: 52ch; }
.stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,46px); color: var(--teal); line-height: 1; letter-spacing: -.02em; }
.stats span { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* =========================================================
   WORK / GALLERY
   ========================================================= */
.work { background: var(--paper); }
.work__head { margin-bottom: clamp(36px, 6vw, 64px); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.services__head { margin-bottom: clamp(36px, 6vw, 64px); }
.work__head .h2 span { display: inline; }
.work__all { font-family: var(--font-mono); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-600); display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 2px solid transparent; transition: border-color .3s, gap .3s; white-space: nowrap; }
.work__all:hover { border-color: var(--teal); gap: 12px; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.g-item { position: relative; display: block; overflow: hidden; border-radius: 12px; background: var(--paper-2); color: inherit; aspect-ratio: 4/3; }
.g-item--wide { grid-column: 1 / -1; aspect-ratio: 21/8; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute; inset: auto 0 0 0; padding: 22px; display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(to top, rgba(15,23,23,.85), rgba(15,23,23,.05) 75%, transparent);
  color: #fff; transform: translateY(8px); opacity: 0; transition: opacity .4s, transform .4s var(--ease);
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; opacity: .85; }
.g-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 24px); }
.g-item::after { content: "↗"; position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-size: 17px; opacity: 0; transform: scale(.6) rotate(-15deg); transition: .35s var(--ease); }
.g-item:hover::after { opacity: 1; transform: scale(1) rotate(0); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--paper-2); max-width: none; }
.services > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 24px;
  padding: clamp(24px,4vw,40px) 8px; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease), background .4s;
}
.svc:hover { padding-left: 26px; }
.svc__no { font-family: var(--font-mono); font-size: 14px; color: var(--teal-600); }
.svc__txt h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,3vw,34px); letter-spacing: -.01em; }
.svc__txt p { color: var(--ink-soft); margin-top: 8px; max-width: 60ch; font-size: 15.5px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .4s, margin .4s; }
.svc:hover .svc__txt p { max-height: 120px; opacity: 1; }
.svc__plus { font-family: var(--font-display); font-size: 30px; color: var(--teal); transition: transform .4s var(--ease); }
.svc:hover .svc__plus { transform: rotate(135deg); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: var(--teal); color: #fff; padding: clamp(72px,12vw,140px) var(--pad); text-align: center; position: relative; overflow: hidden; }
.cta-band__inner { max-width: 820px; margin: 0 auto; position: relative; }
.cta-band__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,6vw,72px); line-height: .98; letter-spacing: -.02em; }
.cta-band__sub { margin: 20px auto 36px; font-size: clamp(16px,2vw,20px); opacity: .9; max-width: 50ch; }
.spray-dot { position: absolute; top: -40px; left: 50%; width: 90px; height: 90px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.55), transparent 60%); filter: blur(2px); }

/* =========================================================
   TATTOO (koyu bant)
   ========================================================= */
.tattoo { background: var(--ink); color: #fff; padding: clamp(72px,11vw,140px) var(--pad); position: relative; overflow: hidden; }
.tattoo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(52vw 52vw at 88% 6%, rgba(0,160,168,.17), transparent 62%); pointer-events: none; }
.tattoo__bgword { position: absolute; top: 14px; right: -1%; font-family: var(--font-display); font-weight: 800; font-size: clamp(130px,17vw,290px); line-height: .8; letter-spacing: .02em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07); pointer-events: none; user-select: none; }
.tattoo__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.tattoo__text { max-width: 640px; }
.tattoo .h2 { color: #fff; }
.eyebrow--on-dark { color: #3bd0d6; }
.tattoo__lead { color: rgba(255,255,255,.68); font-size: clamp(16px,1.6vw,19px); margin: 22px 0 26px; max-width: 48ch; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chips li { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 9px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; color: rgba(255,255,255,.85); }
/* --- akan polaroid şeridi --- */
.tattoo__strip { margin: clamp(44px,6vw,72px) calc(var(--pad) * -1) 0; overflow: hidden; transform: rotate(-1.2deg); }
.tattoo__track { display: flex; width: max-content; animation: tattoo-strip 46s linear infinite; }
.tattoo__strip:hover .tattoo__track { animation-play-state: paused; }
.tattoo__half { display: flex; gap: clamp(16px,2vw,26px); padding: 20px clamp(16px,2vw,26px) 20px 0; }
@keyframes tattoo-strip { to { transform: translateX(-50%); } }
.tattoo__item { --r: 0deg; position: relative; flex: 0 0 auto; width: clamp(170px,19vw,235px); background: #fff; padding: 8px 8px 0; border-radius: 4px; box-shadow: 0 16px 38px rgba(0,0,0,.48); transform: rotate(var(--r)); transition: transform .4s var(--ease), box-shadow .3s var(--ease); }
.tattoo__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border-radius: 2px; }
/* yatay çekimler: kırpmadan sığdır (beyaz bar polaroid çerçevesine karışır) */
.tattoo__item--wide img { object-fit: contain; }
.tattoo__item figcaption { padding: 10px 4px 12px; text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: #33403e; }
/* bant parçası */
.tattoo__item::before { content: ""; position: absolute; top: -11px; left: 50%; width: 76px; height: 22px; background: rgba(255,255,255,.26); border-left: 1px dashed rgba(255,255,255,.4); border-right: 1px dashed rgba(255,255,255,.4); transform: translateX(-50%) rotate(var(--tr,-4deg)); z-index: 2; }
/* dağınık rotasyonlar */
.tattoo__item:nth-child(3n+1) { --r: -2.6deg; }
.tattoo__item:nth-child(3n+2) { --r: 1.8deg; }
.tattoo__item:nth-child(3n+3) { --r: -1.2deg; }
.tattoo__item:nth-child(4n+2) { --r: 2.8deg; }
.tattoo__item:nth-child(5n) { --r: -3.4deg; }
.tattoo__item:nth-child(2n)::before { --tr: 5deg; }
.tattoo__item:nth-child(3n)::before { width: 54px; }
/* hover: fotoğraf düzelip öne gelir (şerit de durur) */
.tattoo__item:hover { transform: rotate(0deg) scale(1.07); box-shadow: 0 28px 60px rgba(0,0,0,.62), 0 0 0 3px var(--teal); z-index: 5; }
@media (max-width: 860px) {
  .tattoo__bgword { font-size: clamp(84px,22vw,150px); }
}
@media (prefers-reduced-motion: reduce) {
  .tattoo__strip { overflow-x: auto; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items: stretch; }
.contact__list { margin-top: 40px; }
.contact__list li { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline; }
.contact__list li:last-child { border-bottom: 1px solid var(--line); }
.contact__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.contact__list a, .contact__list li > span:last-child { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px,2vw,24px); }
.contact__list a { transition: color .25s; }
.contact__list a:hover { color: var(--teal); }
.contact__map { border-radius: 12px; overflow: hidden; min-height: 360px; border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(1) contrast(1.05); transition: filter .5s; }
.contact__map:hover iframe { filter: grayscale(0); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #fff; padding: clamp(56px,8vw,96px) var(--pad) 30px; }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; align-items: start; }
.footer__logo { height: 44px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.6); max-width: 34ch; font-size: 15px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.footer__col a { color: rgba(255,255,255,.72); transition: color .25s; width: fit-content; font-size: 15px; }
.footer__col a:hover { color: var(--teal); }
.footer__muted { color: rgba(255,255,255,.45); font-size: 13.5px; }
.footer__bottom { max-width: var(--max); margin: 56px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.45); flex-wrap: wrap; }
.credit { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; max-width: var(--max); margin: clamp(40px,5vw,60px) auto 0; }
.credit__logo { display: inline-grid; place-items: center; background: #fff; border-radius: 100px; padding: 12px 26px; box-shadow: 0 10px 28px -8px rgba(0,0,0,.55); transition: transform .3s var(--ease); }
.credit__logo:hover { transform: translateY(-2px); }
.credit__logo img { height: 24px; width: auto; display: block; }
.credit__txt { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); max-width: 24ch; line-height: 1.7; }

/* =========================================================
   WA FLOAT (yüzen WhatsApp + 10 sn bildirimi)
   ========================================================= */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 8000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-float__btn { width: 54px; height: 54px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,.4); transition: transform .3s var(--ease), background .3s; }
.wa-float__btn:hover { transform: scale(1.08); background: var(--teal); }
.wa-float__bubble { position: relative; width: min(280px, calc(100vw - 36px)); background: #fff; color: var(--ink); border-radius: 16px; padding: 18px 18px 16px; box-shadow: 0 24px 60px -18px rgba(0,0,0,.35); transform: translateX(calc(100% + 30px)); transition: transform .55s var(--ease); }
.wa-float__bubble.is-on { transform: translateX(0); }
.wa-float__bubble p { font-size: 15px; line-height: 1.45; margin-bottom: 12px; padding-right: 18px; }
.wa-float__close { position: absolute; top: 8px; right: 8px; font-size: 14px; color: var(--ink-soft); padding: 6px; }
.wa-float__close:hover { color: var(--ink); }
.wa-float__cta { font-size: 14px; padding: 10px 16px; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(10,15,15,.94); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage { max-width: 90vw; max-height: 84vh; display: flex; flex-direction: column; gap: 14px; }
.lightbox__stage img { max-width: 90vw; max-height: 76vh; object-fit: contain; border-radius: 6px; }
.lightbox__stage figcaption { text-align: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.lightbox__close { position: absolute; top: 22px; right: 26px; font-size: 22px; color: #fff; width: 44px; height: 44px; border-radius: 50%; transition: background .25s; }
.lightbox__close:hover { background: rgba(255,255,255,.12); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 44px; color: #fff; width: 60px; height: 60px; opacity: .7; transition: opacity .25s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

/* =========================================================
   REVEAL animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.gallery .reveal.is-in, .works-grid .reveal.is-in { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav__meta { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__loc { display: none; }
  .burger { display: flex; }
  .nav__links {
    display: flex; position: fixed; inset: 72px 0 auto 0; background: var(--paper); flex-direction: column; gap: 0;
    padding: 8px var(--pad) 24px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.25);
    transform: translateY(-120%); visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s .45s;
  }
  .nav.is-open .nav__links { transform: translateY(0); visibility: visible; transition: transform .45s var(--ease); }
  .nav.is-open .burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.is-open .burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav__links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav__links a::after { display: none; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-item, .g-item--wide { aspect-ratio: 4/3; }
  .g-cap { opacity: 1; transform: none; }
  .svc { grid-template-columns: 48px 1fr auto; gap: 14px; }
  .svc__txt p { max-height: 200px; opacity: 1; margin-top: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav__actions .btn--wa span { display: none; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .hero-journey .hero__title { white-space: normal; }
}

/* =========================================================
   PAGE HERO (İşler / Detay üst başlığı)
   ========================================================= */
.page-hero { max-width: var(--max); margin: 0 auto; width: 100%; padding: clamp(130px,17vh,210px) var(--pad) clamp(8px,2vw,24px); }
.page-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 12vw, 170px); line-height: .88; letter-spacing: -0.035em; }
.page-hero__lead { margin-top: clamp(18px,2.5vw,30px); max-width: 56ch; color: var(--ink-soft); font-size: clamp(16px,1.6vw,20px); }

/* =========================================================
   WORKS — filter + grid
   ========================================================= */
.works-grid-wrap { padding-top: clamp(28px,4vw,44px); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px,4vw,46px); }
.filter { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .03em; padding: 9px 19px; border-radius: 100px; border: 1.5px solid var(--line); color: var(--ink-soft); transition: background .25s, border-color .25s, color .25s, transform .25s; }
.filter:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2.2vw,32px); }
.work-card { display: flex; flex-direction: column; color: inherit; }
.work-card.is-hidden { display: none; }
.work-card__media { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 4/3; background: var(--paper-2); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__go { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-size: 17px; opacity: 0; transform: scale(.6) rotate(-15deg); transition: .35s var(--ease); }
.work-card:hover .work-card__go { opacity: 1; transform: scale(1) rotate(0); }
.work-card__body { padding: 18px 2px 0; }
.work-card__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); }
.work-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2vw,27px); margin: 7px 0 9px; letter-spacing: -.01em; transition: color .25s; }
.work-card:hover .work-card__title { color: var(--teal); }
.work-card__excerpt { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
/* Mağaza: ürün fotoları beyaz zeminde tam görünür */
.work-card--shop .work-card__media { aspect-ratio: 1/1; background: #fff; border: 1px solid rgba(15,23,23,.08); }
.work-card--shop .work-card__media img { object-fit: contain; padding: 12px; }
.work-card__title--shop { font-size: clamp(16px,1.5vw,19px); }
.work-card--shop { cursor: zoom-in; }
.work-card__count { position: absolute; top: 12px; right: 12px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: 100px; }

/* =========================================================
   CAP REHBERİ (mağaza bilgi bloğu)
   ========================================================= */
.cap-guide { background: var(--paper-2); padding: clamp(56px,8vw,110px) var(--pad); }
.cap-guide__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px,4vw,64px); align-items: center; }
.cap-guide__lead { color: var(--ink-soft); font-size: clamp(16px,1.6vw,19px); margin-top: 18px; max-width: 44ch; }
.cap-guide__media { background: #fff; border: 1px solid rgba(15,23,23,.08); border-radius: 14px; overflow: hidden; cursor: zoom-in; transition: transform .4s var(--ease), box-shadow .4s; }
.cap-guide__media:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(15,23,23,.25); }
.cap-guide__media img { width: 100%; display: block; }
@media (max-width: 860px) { .cap-guide__inner { grid-template-columns: 1fr; } }
.works-empty { text-align: center; color: var(--ink-soft); padding: 48px 0; font-size: 18px; }

/* =========================================================
   WORK DETAIL
   ========================================================= */
.back-link { display: inline-flex; gap: 9px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: clamp(22px,3vw,38px); transition: gap .3s var(--ease), color .3s; }
.back-link:hover { color: var(--teal); gap: 14px; }
.work-detail__wrap { padding-top: clamp(110px,15vh,170px); }
.work-detail__head { max-width: 64ch; margin-bottom: clamp(28px,4vw,52px); }
.work-detail__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px,7vw,100px); line-height: .9; letter-spacing: -.035em; margin: 12px 0 20px; }
.work-detail__excerpt { font-size: clamp(17px,2vw,23px); color: var(--ink-soft); max-width: 54ch; line-height: 1.4; }

.work-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px,1.5vw,20px); margin-bottom: clamp(40px,6vw,76px); }
.work-media__item { overflow: hidden; border-radius: 14px; background: var(--paper-2); }
.work-media__item--hero { grid-column: 1 / -1; }
.work-media__item img, .work-media__item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-media__item--hero img { max-height: 74vh; }
.work-media__item img { transition: transform .6s var(--ease); }
.work-media__item:hover img { transform: scale(1.03); }

.work-detail__info { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px,6vw,84px); align-items: start; margin-bottom: clamp(48px,7vw,96px); }
.work-detail__desc p { font-size: clamp(16px,1.6vw,19px); color: var(--ink-soft); line-height: 1.72; }
.work-detail__cta { margin-top: 30px; }
.work-detail__meta dl { border-top: 1px solid var(--line); }
.work-detail__meta dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.work-detail__meta dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.work-detail__meta dd { font-family: var(--font-display); font-weight: 600; font-size: 16px; text-align: right; }

.work-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid var(--line); padding-top: 28px; }
.work-nav__item { display: flex; flex-direction: column; gap: 6px; padding: 14px 0; }
.work-nav__item--next { text-align: right; align-items: flex-end; }
.work-nav__dir { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600); }
.work-nav__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px,2.4vw,28px); letter-spacing: -.01em; transition: color .25s; }
.work-nav__item:hover .work-nav__title { color: var(--teal); }

@media (max-width: 900px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-detail__info { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .works-grid { grid-template-columns: 1fr; }
  .work-media { grid-template-columns: 1fr; }
  .work-nav { grid-template-columns: 1fr; }
  .work-nav__item--next { text-align: left; align-items: flex-start; }
}
