/* =========================================================================
   PEAK DETAILING — ÇALIŞMALARIMIZ  ·  works-luxury.css  (v3 — "THE INDEX")
   ---------------------------------------------------------------------------
   A from-scratch concept: a type-driven editorial hero feeding into a
   "live-preview index" — a sticky image stage on the left that responds to a
   numbered list of selected work on the right (the lookbook-index pattern used
   by high-end design studios). Warm near-black canvas, one decisive orange
   accent, generous negative space, calm crossfades.
   Inherits base tokens: --or / --or2, blacks --blk*, --line/--line2,
   --muted/--soft/--white, --font-head 'Barlow Condensed', --font-body 'Barlow'.
   ========================================================================= */

.cw-page {
  --wk-ease: cubic-bezier(.22, 1, .36, 1);
  --wk-shell: 1320px;
  --wk-pad: clamp(22px, 5vw, 64px);
  --wk-nav: 94px;
  background: var(--blk);
  color: var(--white);
}

.cw-page main { display: block; }

.wk-shell {
  width: 100%;
  max-width: var(--wk-shell);
  margin-inline: auto;
  padding-inline: var(--wk-pad);
}

/* shared scroll-reveal */
.cw-page .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--wk-ease), transform .7s var(--wk-ease);
}
.cw-page .reveal.visible { opacity: 1; transform: none; }

/* =========================================================================
   1 · TYPE-DRIVEN HERO
   ========================================================================= */
.wk-hero {
  position: relative;
  padding-top: clamp(132px, 17vh, 200px);
  padding-bottom: clamp(40px, 6vh, 72px);
  overflow: hidden;
}

.wk-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(232, 93, 31, .16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wk-hero-inner { position: relative; z-index: 2; }

.wk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(28px, 5vh, 52px);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.wk-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.wk-breadcrumb a:hover { color: var(--white); }
.wk-breadcrumb i { color: rgba(255, 255, 255, .22); font-style: normal; }
.wk-breadcrumb span { color: var(--or); }

.wk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vh, 30px);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--or);
}
.wk-kicker i { width: 42px; height: 1px; background: var(--or); }

.wk-headline {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .84;
  letter-spacing: .004em;
  color: var(--white);
  font-size: clamp(52px, 9.2vw, 168px);
}
.wk-headline em { font-style: normal; color: var(--or); }
.wk-headline .wk-thin {
  display: block;
  font-weight: 300;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .42);
  color: transparent;
}

.wk-hero-lead {
  max-width: 56ch;
  margin: clamp(26px, 4vh, 38px) 0 0;
  color: var(--soft);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
}

/* metadata row */
.wk-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(34px, 5vh, 54px);
  padding-top: clamp(24px, 4vh, 34px);
  border-top: 1px solid var(--line);
}
.wk-hero-meta b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.wk-hero-meta b em { font-style: normal; color: var(--or); }
.wk-hero-meta span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================================
   2 · MARQUEE STRIP
   ========================================================================= */
.wk-marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(34px, 6vh, 64px);
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.wk-marquee-track {
  display: inline-flex;
  align-items: center;
  padding-block: 18px;
  will-change: transform;
  animation: wkMarquee 32s linear infinite;
}
.wk-marquee-track span {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .14);
  padding-inline: clamp(22px, 3vw, 46px);
}
.wk-marquee-track span::before {
  content: "◆";
  margin-right: clamp(22px, 3vw, 46px);
  font-size: .42em;
  vertical-align: middle;
  color: var(--or);
}
@keyframes wkMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   3 · THE INDEX  (sticky live-preview stage + numbered list)
   ========================================================================= */
.wk-index {
  padding-block: clamp(72px, 10vw, 130px);
}

.wk-index-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.wk-index-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}
.wk-index-head h2 em { font-style: normal; color: var(--or); }
.wk-index-count {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.wk-index-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

/* ── sticky stage (left) ──────────────────────────────────────────────── */
.wk-stage {
  position: sticky;
  top: calc(var(--wk-nav) + 24px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line2);
  background: var(--blk3);
}
.wk-stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.84) contrast(1.05) saturate(1.02);
  opacity: 1;
  transition: opacity .45s var(--wk-ease);
}
.wk-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, .82) 0%, rgba(6, 6, 6, .12) 42%, transparent 70%);
  pointer-events: none;
}
.wk-stage-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
}
.wk-stage-no {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
  color: var(--or);
}
.wk-stage-service {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft);
}
.wk-stage-name {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── numbered list (right) ────────────────────────────────────────────── */
.wk-list { border-top: 1px solid var(--line); }

.wk-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: left;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: padding-left .35s var(--wk-ease);
}
.wk-row-no {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .25s ease;
}
.wk-row-main { min-width: 0; }
.wk-row-name {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .25s ease;
}
.wk-row-service {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.wk-row-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--line2);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s ease, transform .35s var(--wk-ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.wk-row-arrow svg { width: 18px; height: 18px; }

/* inline thumb — only used on mobile */
.wk-row-thumb {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: brightness(.86) saturate(1);
}

/* active / hover state (desktop) */
.wk-row.is-active { padding-left: clamp(12px, 1.4vw, 22px); }
.wk-row.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--or);
  transform: translateY(-50%) rotate(45deg);
}
.wk-row.is-active .wk-row-no { color: var(--or); }
.wk-row.is-active .wk-row-name { color: var(--or); }
.wk-row.is-active .wk-row-service { color: var(--soft); }
.wk-row.is-active .wk-row-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--or);
  border-color: var(--or);
  color: #0a0a0a;
}
.wk-row:focus-visible { outline: 2px solid var(--or); outline-offset: 4px; }

/* =========================================================================
   4 · CATEGORIES (deep-links to the existing sub-pages)
   ========================================================================= */
.wk-cats {
  padding-block: clamp(64px, 9vw, 110px);
  border-top: 1px solid var(--line);
}
.wk-cats-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.wk-cats-head .wk-kicker { margin-bottom: 16px; }
.wk-cats-head h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-head);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}
.wk-cats-list { border-top: 1px solid var(--line); }
.wk-cat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .35s var(--wk-ease);
}
.wk-cat-no {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .25s ease;
}
.wk-cat-name {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .25s ease;
}
.wk-cat-go {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .25s ease;
}
.wk-cat-go svg { width: 17px; height: 13px; transition: transform .3s var(--wk-ease); }
.wk-cat:hover { padding-left: clamp(12px, 1.4vw, 22px); }
.wk-cat:hover .wk-cat-no,
.wk-cat:hover .wk-cat-name,
.wk-cat:hover .wk-cat-go { color: var(--or); }
.wk-cat:hover .wk-cat-go svg { transform: translateX(5px); }
.wk-cat:focus-visible { outline: 2px solid var(--or); outline-offset: 4px; }

/* =========================================================================
   5 · CTA
   ========================================================================= */
.wk-cta {
  position: relative;
  background: #080808;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 140px);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 130%;
  background: radial-gradient(closest-side, rgba(232, 93, 31, .14), transparent 70%);
  pointer-events: none;
}
.wk-cta-inner { position: relative; z-index: 2; }
.wk-cta .wk-kicker { justify-content: center; margin-bottom: 22px; }
.wk-cta h2 {
  margin: 0 auto 20px;
  max-width: 16ch;
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}
.wk-cta h2 em { font-style: normal; color: var(--or); }
.wk-cta p {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.78;
}
.wk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =========================================================================
   6 · BUTTONS
   ========================================================================= */
.wk-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--wk-ease), background .25s ease, border-color .25s ease, color .25s ease;
}
.wk-btn svg { width: 17px; height: 17px; transition: transform .3s var(--wk-ease); }
.wk-btn-primary { color: #0a0a0a; background: var(--or); border-color: var(--or); }
.wk-btn-primary:hover { background: var(--or2); border-color: var(--or2); }
.wk-btn-primary:hover svg { transform: translateX(5px); }
.wk-btn-ghost { color: var(--white); background: transparent; border-color: var(--line2); }
.wk-btn-ghost:hover { border-color: var(--or); color: var(--or); }

/* =========================================================================
   7 · LIGHTBOX
   ========================================================================= */
.wk-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 5, .97);
  backdrop-filter: blur(8px);
  color: var(--white);
}
.wk-lb.open { display: flex; animation: wkLbIn .3s ease; }
@keyframes wkLbIn { from { opacity: 0; } to { opacity: 1; } }
.wk-lb-head {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.wk-lb-service {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--or);
}
.wk-lb-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.wk-lb-desc {
  max-width: 760px;
  margin-top: 12px;
  color: var(--soft);
  font-size: 13.5px;
  line-height: 1.72;
}
.wk-lb-close {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .25s var(--wk-ease);
}
.wk-lb-close:hover { background: var(--or); border-color: var(--or); color: #0a0a0a; transform: rotate(90deg); }
.wk-lb-main {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 28px clamp(14px, 6vw, 80px);
}
.wk-lb-img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}
.wk-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0a0a0a;
  background: var(--or);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.wk-lb-nav:hover { background: var(--or2); }
.wk-lb-nav.prev { left: clamp(8px, 2vw, 22px); }
.wk-lb-nav.next { right: clamp(8px, 2vw, 22px); }
.wk-lb-nav.prev:hover { transform: translateY(-50%) translateX(-3px); }
.wk-lb-nav.next:hover { transform: translateY(-50%) translateX(3px); }

/* =========================================================================
   8 · RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .wk-index-grid { grid-template-columns: 1fr; gap: 0; }

  /* drop the sticky stage; each row becomes an image card */
  .wk-stage { display: none; }
  .wk-list { border-top: 0; }

  .wk-row {
    display: block;
    padding: 0 0 clamp(40px, 8vw, 56px);
    border-bottom: 0;
    cursor: pointer;
  }
  .wk-row-thumb { display: block; margin-bottom: 16px; }
  .wk-row-arrow { display: none; }
  .wk-row-no { font-size: 12px; }
  .wk-row-main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 12px;
  }
  .wk-row-name { font-size: clamp(22px, 6.4vw, 32px); }
  .wk-row-service { margin-top: 0; }
  .wk-row.is-active { padding-left: 0; }
  .wk-row.is-active::before { display: none; }
  .wk-row.is-active .wk-row-name,
  .wk-row.is-active .wk-row-no { color: var(--white); }
}

@media (max-width: 560px) {
  .wk-hero-meta { gap: 22px 32px; }
  .wk-cta-actions { flex-direction: column; align-items: stretch; }
  .wk-cta-actions .wk-btn { justify-content: center; }
  .wk-cat-go span { display: none; }
}

/* =========================================================================
   9 · MOTION-SAFE
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .cw-page .reveal { opacity: 1; transform: none; transition: none; }
  .wk-marquee-track { animation: none; }
  .wk-stage-img,
  .wk-btn,
  .wk-btn svg,
  .wk-row,
  .wk-cat { transition: none; }
}

/* =========================================================================
   10 · IMAGE-DRIVEN HERO  (full-bleed, Porsche-style)
   ========================================================================= */
.cwh {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.cwh-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.cwh-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,8,.86) 0%, rgba(8,8,8,.52) 44%, rgba(8,8,8,.06) 100%),
    linear-gradient(to top, rgba(8,8,8,.64) 0%, transparent 46%);
  pointer-events: none;
}

.cwh-headline {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 96px);
  top: 50%;
  transform: translateY(calc(-50% + 24px));
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .87;
  letter-spacing: .006em;
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 78px);
  max-width: 36vw;
}

.cwh-headline em {
  font-style: normal;
  color: var(--or);
}

/* CTA Card — bottom-right */
.cwh-card {
  position: absolute;
  z-index: 2;
  bottom: clamp(28px, 4.5vh, 56px);
  right: clamp(28px, 5vw, 80px);
  display: flex;
  align-items: stretch;
  width: 308px;
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.11);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}

.cwh-card:hover {
  border-color: rgba(232,93,31,.55);
  background: rgba(10,10,10,.95);
}

.cwh-card-thumb {
  width: 108px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(.80) saturate(.92);
}

.cwh-card-text {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.cwh-card-title {
  display: block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}

.cwh-card-sub {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.cwh-card-arrow {
  flex-shrink: 0;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-left: 1px solid rgba(255,255,255,.10);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.cwh-card:hover .cwh-card-arrow {
  background: var(--or);
  color: #0a0a0a;
  border-left-color: var(--or);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Okunabilirlik: alt-ağırlıklı scrim (başlık + kart altta), üst hafif */
  .cwh-overlay {
    background:
      linear-gradient(to top, rgba(8,8,8,.94) 0%, rgba(8,8,8,.62) 30%, rgba(8,8,8,.12) 60%, transparent 100%),
      linear-gradient(to bottom, rgba(8,8,8,.48) 0%, transparent 26%);
  }
  .cwh-headline {
    top: auto;
    transform: none;
    left: clamp(18px, 4.5vw, 36px);
    right: clamp(18px, 4.5vw, 36px);
    bottom: calc(clamp(22px, 3.5vh, 36px) + 80px + 26px);
    max-width: 92vw;
    font-size: clamp(31px, 8.7vw, 50px);   /* TR "PEAK STÜDYOSUNDA" + EN "AT THE PEAK STUDIO." tek satır → 4 satır */
    line-height: 0.92;
    text-shadow: 0 2px 22px rgba(0,0,0,0.55);
  }
  .cwh-headline em { white-space: nowrap; }   /* "ÇALIŞMALAR." / "PEAK STUDIO." bütün kalsın */
  .cwh-card {
    left: clamp(20px, 5vw, 36px);
    right: clamp(20px, 5vw, 36px);
    width: auto;
    bottom: clamp(22px, 3.5vh, 36px);
  }
}

@media (max-width: 480px) {
  .cwh-card-thumb { width: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .cwh-card, .cwh-card-arrow { transition: none; }
}

/* =========================================================================
   11 · FILTERABLE GALLERY  (gal-*)
   ========================================================================= */
.gal {
  padding-block: clamp(72px, 10vw, 130px);
  border-top: 1px solid var(--line);
}

.gal-shell {
  width: 100%;
  max-width: var(--wk-shell);
  margin-inline: auto;
  padding-inline: var(--wk-pad);
}

/* ── Header row ──────────────────────────────────────────────────────── */
.gal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.gal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--or);
}
.gal-kicker i { width: 36px; height: 1px; background: var(--or); }

.gal-title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 56px);
  line-height: .9;
  letter-spacing: .01em;
  color: var(--white);
}
.gal-title em { font-style: normal; color: var(--or); }

/* ── Filter tabs ─────────────────────────────────────────────────────── */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.gal-filter {
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  white-space: nowrap;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}
.gal-filter:hover { color: var(--white); border-color: rgba(255,255,255,.28); }
.gal-filter.is-active { color: #0a0a0a; background: var(--or); border-color: var(--or); }
.gal-filter:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

/* ── Card grid ───────────────────────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

/* ── Individual card ─────────────────────────────────────────────────── */
.gal-card {
  cursor: pointer;
}
.gal-card.is-hidden { display: none; }

.gal-card.gal-enter {
  animation: galFadeIn .3s cubic-bezier(.22,1,.36,1) both;
}

@keyframes galFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Image wrapper — carries aspect-ratio and overflow */
.gal-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blk3);
}

.gal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.88) saturate(1.02);
  transition: transform .55s cubic-bezier(.22,1,.36,1), filter .4s ease;
  will-change: transform;
}
.gal-card:hover .gal-img {
  transform: scale(1.045);
  filter: brightness(1) saturate(1.06);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0);
  pointer-events: none;
  transition: background .35s ease;
}
.gal-card:hover .gal-overlay { background: rgba(6,6,6,.45); }

/* Centered hover CTA */
.gal-hover-cta {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gal-hover-cta svg { width: 16px; height: 16px; }
.gal-card:hover .gal-hover-cta { opacity: 1; }

/* Signature — bottom-left of image (populated later) */
.gal-sig {
  position: absolute;
  left: clamp(12px, 1.8vw, 20px);
  bottom: clamp(12px, 1.8vw, 20px);
  z-index: 2;
  width: clamp(90px, 10vw, 140px);
  opacity: .82;
  pointer-events: none;
  display: none; /* hidden until src is set */
}
.gal-sig[src]:not([src=""]) { display: block; }

/* Card text below image */
.gal-card-body {
  padding-top: 14px;
}
.gal-card-name {
  margin: 0 0 5px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
}
.gal-card-service {
  margin: 0;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
}

/* ── Lightbox (glb-*) ────────────────────────────────────────────────── */
.glb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.glb.open { display: flex; animation: glbIn .25s ease; }
@keyframes glbIn { from { opacity: 0; } to { opacity: 1; } }

.glb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,4,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.glb-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(92vw, 620px);
  height: 92vh;
  max-height: 92vh;
  background: #0f0f0f;
  border: 1px solid var(--line2);
  overflow: hidden;
}

/* Caption overlay on image */
.glb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 22px 18px;
  background: linear-gradient(to top, rgba(4,4,4,.93) 0%, rgba(4,4,4,.45) 55%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}
.glb-service {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 5px;
}
.glb-title {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}

/* Close button — floating over image, top-right */
.glb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(4,4,4,.65);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background .2s ease, transform .25s ease;
}
.glb-close:hover { background: var(--or); color: #0a0a0a; transform: rotate(90deg); }

/* Main stage */
.glb-stage {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  overflow: hidden;
}
.glb-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .22s ease;
}
.glb-main-img.fading { opacity: 0; }

.glb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0a0a0a;
  background: var(--or);
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.glb-nav:hover { background: var(--or2); }
.glb-nav.glb-prev { left: 12px; }
.glb-nav.glb-next { right: 12px; }

/* Thumbnail strip */
.glb-thumbs {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--or) transparent;
}
.glb-thumbs::-webkit-scrollbar { height: 4px; }
.glb-thumbs::-webkit-scrollbar-thumb { background: var(--or); }

.glb-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 80px;
  object-fit: cover;
  opacity: .5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease;
}
.glb-thumb:hover { opacity: .8; }
.glb-thumb.is-active { opacity: 1; border-color: var(--or); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gal-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gal-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  /* ── Filtreler — sarmalı, kompakt (hepsi görünür; yatay scroll/ekran dışı yok) ── */
  .gal-filters {
    flex-wrap: wrap;
    gap: 7px;
    width: 100%;
    max-width: 100%;
  }
  .gal-filter {
    padding: 8px 13px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  /* ── Galeri — 2 sütun (ikili ikili) ── */
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .gal-card-body { padding-top: 10px; }
  .gal-card-name { font-size: 14px; margin-bottom: 4px; }
  .gal-card-service { font-size: 9px; letter-spacing: .12em; }

  /* ── Lightbox — tam ekran, mobil optimize ── */
  .glb-panel {
    width: 100vw;
    height: 100svh;
    max-height: 100svh;
    border: none;
  }
  .glb-nav { width: 40px; height: 40px; font-size: 20px; }
  .glb-nav.glb-prev { left: 8px; }
  .glb-nav.glb-next { right: 8px; }
  .glb-close { top: calc(10px + env(safe-area-inset-top)); right: 10px; }
  .glb-caption { padding: 46px 16px 16px; }
  .glb-thumbs { gap: 7px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
  .glb-thumb { width: 46px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .gal-card.gal-enter { animation: none; }
  .gal-img, .glb-main-img { transition: none; }
}

/* === mobil-rotus (auto) === */
@media (max-width: 1024px) {
  .wk-cta { min-height: auto; padding-top: 76px; padding-bottom: 88px; }
}
