/* =====================================================
   Kavella — V3 (creative developer treatment) — TAM SÜRÜM
   Yalnızca index-v3.html kullanır. v2 dokunulmadan kalır.
   -----------------------------------------------------
   Bölümler: loader · hero · (01) Felsefe (pin) ·
   (02) Seçkiler (yatay pin) · (03) Hikaye (pin) ·
   (04) Galeri (drag) · (05) Ziyaret · footer · perde.
   Hareket: transform / opacity / canvas. Tek rAF (v3.js).
   prefers-reduced-motion: sakin, statik düzene düşer.
   ===================================================== */

/* ---------- 1. Tokenlar ---------- */
:root {
  --k-black: #0b0705;
  --k-deep: #171009;
  --k-panel: #1f150c;
  --k-bone: #f4ecdd;
  --k-bone-dim: rgba(244, 236, 221, 0.55);
  --k-caramel: #e08a3c;
  --k-caramel-hot: #f2a45f;
  --k-wa: #25d366;

  --k-line: rgba(244, 236, 221, 0.14);

  --f-disp: "Fraunces", Georgia, serif;
  --f-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-inout: cubic-bezier(0.83, 0, 0.17, 1);

  --gut: clamp(1.25rem, 3.5vw, 3.5rem);
  --hd-h: 72px;
}

/* ---------- 2. Taban ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
}

body {
  font-family: var(--f-body);
  background: var(--k-black);
  color: var(--k-bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--k-caramel);
  color: var(--k-black);
}

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

html.v3-cursor,
html.v3-cursor a,
html.v3-cursor button {
  cursor: none;
}

.micro {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 900;
  padding: 0.65rem 1.1rem;
  background: var(--k-bone);
  color: var(--k-black);
  font-size: 0.85rem;
  transition: top 0.2s var(--e-out);
}

.skip-link:focus {
  top: 0.75rem;
}

/* Bölüm etiket dili */
.sec-tag {
  position: absolute;
  top: calc(var(--hd-h) + 0.8rem);
  left: var(--gut);
  z-index: 4;
  color: var(--k-bone-dim);
}

.sec-bar {
  position: absolute;
  top: calc(var(--hd-h) + 1.15rem);
  right: var(--gut);
  z-index: 4;
  width: clamp(70px, 10vw, 140px);
  height: 1px;
  background: var(--k-line);
}

.sec-bar span {
  display: block;
  height: 100%;
  background: var(--k-caramel);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* IO reveal dili ([data-rev]: menu.js'in ürettiği v2 uyumlu öznitelik) */
[data-d="1"] { --d: 1; }
[data-d="2"] { --d: 2; }
[data-d="3"] { --d: 3; }
[data-d="4"] { --d: 4; }
[data-d="5"] { --d: 5; }

[data-rv],
[data-rev] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--e-out) calc(var(--d, 0) * 90ms),
    transform 0.9s var(--e-out) calc(var(--d, 0) * 90ms);
}

[data-rv].is-in,
[data-rev].is-in {
  opacity: 1;
  transform: none;
}

[data-rv="mask"] {
  display: block;
  transform: none;
  overflow: hidden;
}

[data-rv="mask"] > .rv-in {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1.05s var(--e-out) calc(var(--d, 0) * 90ms);
}

[data-rv="mask"].is-in > .rv-in {
  transform: translateY(0);
}

/* ---------- 3. Loader ---------- */
.ld {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--k-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.75s var(--e-inout);
}

.ld.is-done {
  transform: translateY(-101%);
  pointer-events: none;
}

.ld-mark {
  display: flex;
  overflow: hidden;
  font-family: var(--f-disp);
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ld-mark span {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.9s var(--e-out);
  transition-delay: calc(var(--i) * 55ms);
}

.ld.is-on .ld-mark span {
  transform: translateY(0);
}

.ld-pct {
  position: absolute;
  right: var(--gut);
  bottom: 1.6rem;
  font-family: var(--f-disp);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--k-caramel);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.ld-hint {
  position: absolute;
  left: var(--gut);
  bottom: 2.2rem;
  color: var(--k-bone-dim);
}

/* ---------- 4. Sayfa geçiş perdesi ---------- */
.pt3 {
  position: fixed;
  inset: -2vh 0;
  z-index: 850;
  background: var(--k-bone);
  transform: translateY(103%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt3 span {
  font-family: var(--f-disp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--k-black);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pt3.is-active {
  pointer-events: auto;
}

.pt3.is-in {
  transform: translateY(0);
  transition: transform 0.55s var(--e-inout);
}

.pt3.is-in span {
  opacity: 1;
}

.pt3.is-out {
  transform: translateY(-103%);
  transition: transform 0.65s var(--e-inout) 0.05s;
}

/* ---------- 5. Özel imleç ---------- */
.cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 700;
  pointer-events: none;
  will-change: transform;
}

.cur--dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--k-caramel);
}

.cur--ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid rgba(244, 236, 221, 0.5);
  border-radius: 50%;
  transition: width 0.35s var(--e-out), height 0.35s var(--e-out),
    margin 0.35s var(--e-out), background-color 0.35s var(--e-out),
    border-color 0.35s var(--e-out);
}

.cur--ring i {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-black);
  opacity: 0;
  transition: opacity 0.25s;
}

.cur--ring.is-view,
.cur--ring.is-drag {
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background: var(--k-bone);
  border-color: var(--k-bone);
}

.cur--ring.is-view i,
.cur--ring.is-drag i {
  opacity: 1;
}

.cur--ring.is-press {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}

/* ---------- 6. Header ---------- */
.hd {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 600;
  height: var(--hd-h);
  display: flex;
  align-items: center;
}

.hd-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gut);
}

.hd-logo {
  font-family: var(--f-disp);
  font-size: 1.3rem;
  font-weight: 700;
}

.hd-logo sup {
  font-size: 0.55em;
  color: var(--k-caramel);
  margin-left: 0.2em;
  font-style: italic;
}

.hd-nav {
  display: none;
}

@media (min-width: 1024px) {
  .hd-nav {
    display: flex;
    gap: 2rem;
  }

  .hd-nav a {
    position: relative;
    padding: 0.35rem 0;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--k-bone-dim);
    transition: color 0.3s var(--e-out);
  }

  .hd-nav a:hover,
  .hd-nav a[aria-current="page"] {
    color: var(--k-bone);
  }

  .hd-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--k-caramel);
  }
}

.hd-burger {
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}

.hd-burger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s var(--e-inout), top 0.4s var(--e-inout);
}

.hd-burger span:nth-child(1) { top: 17px; }
.hd-burger span:nth-child(2) { top: 25px; }

.hd-burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.hd-burger[aria-expanded="true"] span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .hd-burger {
    display: none;
  }
}

/* Mobil tam ekran menü */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 590;
  background: var(--k-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--hd-h) + 1rem) var(--gut) 2.4rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--e-out), visibility 0.4s;
}

.mnav.is-open {
  visibility: visible;
  opacity: 1;
}

.mnav nav {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
  padding-top: 3vh;
}

.mnav nav a {
  overflow: hidden;
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 8.5vh, 3.8rem);
  font-weight: 600;
  line-height: 1.24;
}

.mnav nav a > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s var(--e-out) calc(var(--i) * 60ms);
}

.mnav.is-open nav a > span {
  transform: translateY(0);
}

.mnav nav a[aria-current="page"] {
  color: var(--k-caramel);
}

.mnav-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--k-line);
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--k-bone-dim);
}

@media (min-width: 1024px) {
  .mnav {
    display: none;
  }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-corners {
  position: absolute;
  inset: var(--hd-h) 0 auto 0;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem var(--gut) 0;
  color: var(--k-bone-dim);
}

.hero-corners .micro:nth-child(2) {
  display: none;
}

@media (min-width: 700px) {
  .hero-corners .micro:nth-child(2) {
    display: block;
  }
}

.hero-body {
  padding: 0 var(--gut);
  margin-bottom: 1rem;
}

.hero-tag {
  max-width: 34ch;
  font-family: var(--f-disp);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--k-bone-dim);
  margin-bottom: 1.8rem;
}

.hero-tag em {
  color: var(--k-caramel);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-bottom: 3.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--k-line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
  will-change: transform;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--k-bone);
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 0.45s var(--e-out);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  color: var(--k-black);
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn--solid {
  background: var(--k-caramel);
  border-color: var(--k-caramel);
  color: var(--k-black);
}

.btn--wa {
  background: var(--k-wa);
  border-color: var(--k-wa);
  color: #06130a;
}

.hero-mark {
  display: flex;
  justify-content: space-between;
  padding: 0 max(calc(var(--gut) - 0.5vw), 0.5rem);
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, var(--mark-vw, 19.5vw), 21rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  user-select: none;
  transform: translateY(0.05em);
}

.hero-mark span {
  display: inline-block;
  will-change: transform;
}

.hero-mark .mask {
  overflow: hidden;
  display: inline-block;
}

.hero-mark .mask > span {
  transform: translateY(112%);
  transition: transform 1s var(--e-out) calc(0.05s + var(--i) * 55ms);
}

html.v3-ready .hero-mark .mask > span {
  transform: translateY(0);
}

.hero-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--e-out) calc(0.3s + var(--i, 0) * 120ms),
    transform 0.8s var(--e-out) calc(0.3s + var(--i, 0) * 120ms);
}

html.v3-ready .hero-fade {
  opacity: 1;
  transform: none;
}

.hero-scroll {
  position: absolute;
  right: var(--gut);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--k-bone-dim);
}

.hero-scroll svg {
  width: 0.9rem;
  height: 0.9rem;
  animation: v3-bob 2.2s ease-in-out infinite;
}

@keyframes v3-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- 8. (01) Felsefe — pinli bölüm ---------- */
.ch-track {
  position: relative;
  height: 340vh;
}

.ch-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.ch-text {
  position: relative;
  z-index: 3;
  max-width: 18ch;
  text-align: center;
  font-family: var(--f-disp);
  font-size: clamp(2rem, 5.6vw, 5.2rem);
  font-weight: 550;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.ch-text .w {
  display: inline-block;
  will-change: transform, opacity;
}

.ch-text .it {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.ch-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}

.ch-media-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(0.16);
  will-change: transform;
  border-radius: 4px;
}

.ch-media-box img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  will-change: transform;
}

.ch-media-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(11, 7, 5, 0.38);
  opacity: 0;
  will-change: opacity;
}

.ch-caption {
  position: absolute;
  left: var(--gut);
  bottom: 1.8rem;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.ch-caption strong {
  font-family: var(--f-disp);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 600;
}

.ch-caption .micro {
  color: var(--k-bone-dim);
}

/* ---------- 9. (02) Seçkiler — yatay pin ---------- */
.ch2-track {
  position: relative;
  /* yükseklik JS tarafından ayarlanır (pin modu) */
}

.ch2-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--k-deep);
}

.ch2-rail {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding-inline: var(--gut) 12vw;
  will-change: transform;
}

.ch2-intro {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 460px);
}

.ch2-intro h2 {
  font-family: var(--f-disp);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.ch2-intro h2 em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.ch2-intro p {
  color: var(--k-bone-dim);
  max-width: 30ch;
  margin-bottom: 1.6rem;
}

.ch2-intro .lnk3 {
  color: var(--k-bone);
}

.p-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(240px, 26vw, 420px);
}

.p-idx {
  position: absolute;
  top: -0.55em;
  left: -0.35em;
  z-index: 2;
  font-family: var(--f-disp);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--k-caramel);
  pointer-events: none;
}

.p-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--k-panel);
}

.p-media img,
.p-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--e-out);
}

.p-card:hover .p-media img {
  transform: scale(1.05);
}

.p-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.p-name {
  font-family: var(--f-disp);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
}

.p-cat {
  display: block;
  margin-top: 0.35rem;
  color: var(--k-bone-dim);
}

.p-price {
  font-family: var(--f-disp);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--k-caramel);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.p-desc {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--k-bone-dim);
  max-width: 36ch;
}

/* Dokunmatik / dar ekran: yerel yatay kaydırma */
html.ch2-native .ch2-track {
  height: auto !important;
}

html.ch2-native .ch2-stage {
  position: static;
  height: auto;
  overflow: visible;
  padding-block: 5.5rem;
}

html.ch2-native .ch2-rail {
  transform: none !important;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  scrollbar-width: none;
  width: 100%;
}

html.ch2-native .ch2-rail::-webkit-scrollbar {
  display: none;
}

html.ch2-native .ch2-intro,
html.ch2-native .p-card {
  scroll-snap-align: start;
}

html.ch2-native .p-card {
  width: min(72vw, 340px);
}

html.ch2-native .sec-tag,
html.ch2-native .ch2-stage .sec-bar {
  position: absolute;
}

html.ch2-native .ch2-stage {
  position: relative;
}

html.ch2-native .ch2-stage .sec-bar {
  display: none;
}

/* ---------- 10. (03) Hikaye — pinli bölüm ---------- */
.ch3-track {
  position: relative;
  height: 280vh;
}

.ch3-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding: calc(var(--hd-h) + 2rem) var(--gut) 2rem;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .ch3-stage {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.ch3-year {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-size: clamp(10rem, 34vw, 34rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 236, 221, 0.35);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  user-select: none;
}

.ch3-visual {
  position: relative;
  z-index: 1;
  height: min(30svh, 300px);
}

@media (min-width: 1024px) {
  .ch3-visual {
    height: min(52svh, 560px);
  }
}

.ch3-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  will-change: transform;
}

.ch3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch3-img--a {
  left: 0;
  top: 0;
  width: 62%;
  height: 78%;
}

.ch3-img--b {
  right: 4%;
  bottom: 0;
  width: 44%;
  height: 58%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.ch3-body {
  position: relative;
  z-index: 2;
  max-width: 46ch;
}

.ch3-title {
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.ch3-title .mask {
  display: block;
  overflow: hidden;
}

.ch3-title .mask > span {
  display: block;
  transform: translateY(112%);
  will-change: transform;
}

.ch3-title em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.ch3-copy {
  opacity: 0;
  transform: translateY(26px);
  will-change: transform, opacity;
}

.ch3-copy p {
  color: var(--k-bone-dim);
  margin-bottom: 1.1rem;
}

.lnk3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-disp);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 600;
  padding-bottom: 0.3rem;
  margin-top: 0.6rem;
}

.lnk3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--k-caramel);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s var(--e-out);
}

.lnk3:hover::after {
  transform: scaleX(0.3);
}

.lnk3 svg {
  width: 0.85em;
  height: 0.85em;
  transition: transform 0.45s var(--e-out);
}

.lnk3:hover svg {
  transform: translateX(0.3em);
}

/* ---------- 11. (04) Galeri — drag şeridi ---------- */
.g4 {
  position: relative;
  padding: 6.5rem 0 5.5rem;
}

.g4-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 var(--gut);
  margin-bottom: 2.6rem;
}

.g4-title {
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.g4-title em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.g4-label {
  color: var(--k-bone-dim);
  margin-bottom: 0.9rem;
}

.g4-strip {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  padding: 0 var(--gut) 1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}

.g4-strip::-webkit-scrollbar {
  display: none;
}

.g4-strip.is-drag {
  cursor: grabbing;
  scroll-snap-type: none;
}

.g4-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: min(70vw, 26rem);
}

.g4-item:nth-child(2n) {
  width: min(52vw, 19rem);
  align-self: flex-end;
}

.g4-media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.g4-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--e-out);
}

.g4-item:nth-child(2n) .g4-media img {
  aspect-ratio: 1;
}

.g4-item:hover .g4-media img {
  transform: scale(1.06);
}

.g4-cap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--k-bone-dim);
}

/* ---------- 12. (05) Ziyaret ---------- */
.visit {
  position: relative;
  background: var(--k-deep);
  padding: 7rem 0 6rem;
}

.visit-in {
  padding: 0 var(--gut);
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .visit-in {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

.visit-display {
  font-family: var(--f-disp);
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.visit-display em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.visit-sub {
  margin-top: 2rem;
  color: var(--k-bone-dim);
  max-width: 44ch;
}

.visit-cta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.8rem;
}

.visit-info {
  display: grid;
  gap: 2.4rem;
  align-content: start;
}

.visit-block h3 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--k-caramel);
  margin-bottom: 1rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--k-line);
  font-size: 0.92rem;
  color: var(--k-bone-dim);
}

.hours td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--k-bone);
  font-weight: 500;
}

.visit-block address {
  font-style: normal;
  color: var(--k-bone-dim);
  line-height: 1.7;
}

.visit-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.visit-lines a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--k-bone-dim);
  transition: color 0.3s var(--e-out);
  justify-self: start;
}

.visit-lines a:hover {
  color: var(--k-caramel);
}

.visit-lines svg {
  width: 1rem;
  height: 1rem;
  color: var(--k-caramel);
  flex-shrink: 0;
}

/* ---------- 13. Marquee + Footer ---------- */
.mq3 {
  overflow: hidden;
  border-block: 1px solid var(--k-line);
  padding-block: 1rem;
}

.mq3-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mq3-scroll 32s linear infinite;
}

.mq3:hover .mq3-track {
  animation-play-state: paused;
}

.mq3-row {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.mq3-row span {
  font-family: var(--f-disp);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  padding-inline: 1.5rem;
  white-space: nowrap;
  color: var(--k-bone-dim);
}

.mq3-row span.it {
  font-style: italic;
  text-transform: none;
  color: var(--k-caramel);
}

.mq3-row i {
  font-style: normal;
  color: var(--k-caramel);
  transform: translateY(-0.3em);
  font-size: 0.9rem;
}

@keyframes mq3-scroll {
  to {
    transform: translateX(-50%);
  }
}

.ft {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
  color: var(--k-bone-dim);
}

.ft-top {
  display: grid;
  gap: 2.4rem;
  padding: 0 var(--gut) 3.5rem;
}

@media (min-width: 700px) {
  .ft-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

.ft-blurb {
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.ft-social {
  display: flex;
  gap: 1.4rem;
}

.ft-social a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s var(--e-out);
}

.ft-social a:hover {
  color: var(--k-caramel);
}

.ft-col h3 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--k-caramel);
  margin-bottom: 1rem;
}

.ft-col ul {
  display: grid;
  gap: 0.5rem;
}

.ft-col a {
  transition: color 0.3s var(--e-out);
}

.ft-col a:hover {
  color: var(--k-bone);
}

.ft-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-variant-numeric: tabular-nums;
  padding-block: 0.15rem;
}

.ft-mark {
  display: block;
  font-family: var(--f-disp);
  font-size: clamp(4.5rem, 19.5vw, 19rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--k-bone);
  transform: translateY(0.06em);
  user-select: none;
}

.ft-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 1.3rem var(--gut);
  border-top: 1px solid var(--k-line);
  font-size: 0.76rem;
  color: rgba(244, 236, 221, 0.4);
}

/* =====================================================
   İÇ SAYFALAR (v3) — menu-v3 · hakkimizda-v3 · galeri-v3 · iletisim-v3
   ===================================================== */

/* ---------- 15. Sayfa hero (kısa, kinetik mark) ---------- */
.hero--page {
  min-height: 78svh;
}

.hero--page .hero-body {
  margin-bottom: 0.6rem;
}

/* Türkçe diakritikler (Ü, İ, Ş) maskede kırpılmasın */
.hero--page .hero-mark {
  line-height: 1;
  transform: translateY(0.1em);
}

.hero--page .hero-cta {
  margin-bottom: 2.6rem;
}

.hero-lede {
  max-width: 44ch;
  font-family: var(--f-disp);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--k-bone-dim);
  margin-bottom: 2.4rem;
}

.hero-lede em {
  color: var(--k-caramel);
  font-style: italic;
}

/* Bölüm başlığı (statik bölümler için) */
.sx {
  position: relative;
  padding: 6rem var(--gut) 5rem;
}

.sx--deep {
  background: var(--k-deep);
}

.sx-label {
  color: var(--k-bone-dim);
  margin-bottom: 2.4rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.sx-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--k-line);
  transform: translateY(-0.2em);
}

.sx-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

@media (min-width: 900px) {
  .sx-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
  }
}

.sx-title {
  font-family: var(--f-disp);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sx-title em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.sx-head p {
  color: var(--k-bone-dim);
  max-width: 40ch;
}

@media (min-width: 900px) {
  .sx-head p {
    text-align: right;
  }
}

/* CTA bandı */
.cta3 {
  padding: 6.5rem var(--gut);
  background: var(--k-deep);
}

.cta3-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.2rem;
}

@media (min-width: 1024px) {
  .cta3-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 4rem;
  }
}

.cta3-title {
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta3-title em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.cta3-side p {
  color: var(--k-bone-dim);
  max-width: 40ch;
  margin-bottom: 1.6rem;
}

.cta3-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}

/* ---------- 16. Menü (menu.js çıktısı .mn-*) ---------- */
.mn3 {
  padding: 1rem var(--gut) 6rem;
}

.mn-layout {
  display: grid;
  gap: 2.5rem;
}

.mn-layout > * {
  min-width: 0;
}

@media (min-width: 1024px) {
  .mn-layout {
    grid-template-columns: 250px 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: start;
  }
}

.mn-aside {
  position: sticky;
  top: var(--hd-h);
  z-index: 50;
  background: var(--k-black);
  border-bottom: 1px solid var(--k-line);
}

.mn-aside::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--gut));
  right: calc(-1 * var(--gut));
  bottom: 100%;
  height: var(--hd-h);
  background: var(--k-black);
}

.mn-aside-label {
  display: none;
}

.mn-cats {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
}

.mn-cats::-webkit-scrollbar {
  display: none;
}

.mn-cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--k-line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--k-bone-dim);
  transition: background-color 0.3s var(--e-out), color 0.3s var(--e-out),
    border-color 0.3s var(--e-out);
}

.mn-cat i {
  font-style: normal;
  font-size: 0.6rem;
  color: var(--k-caramel);
}

.mn-cat:hover,
.mn-cat.is-active {
  background: var(--k-bone);
  border-color: var(--k-bone);
  color: var(--k-black);
}

.mn-cat.is-active i {
  color: var(--k-caramel);
}

@media (min-width: 1024px) {
  .mn-aside {
    top: calc(var(--hd-h) + 1.5rem);
    background: transparent;
    border-bottom: 0;
    padding-top: 0.5rem;
  }

  .mn-aside::before {
    display: none;
  }

  .mn-aside-label {
    display: flex;
    margin-bottom: 1.4rem;
  }

  .mn-cats {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding: 0;
    border-top: 1px solid var(--k-line);
  }

  .mn-cat {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0.2rem;
    border: 0;
    border-bottom: 1px solid var(--k-line);
    border-radius: 0;
    font-family: var(--f-disp);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--k-bone-dim);
  }

  .mn-cat i {
    order: -1;
    margin-right: 0.8rem;
    font-family: var(--f-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
  }

  .mn-cat::after {
    content: "→";
    font-family: var(--f-body);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s var(--e-out), transform 0.3s var(--e-out);
  }

  .mn-cat:hover,
  .mn-cat.is-active {
    background: transparent;
    color: var(--k-bone);
  }

  .mn-cat.is-active::after,
  .mn-cat:hover::after {
    opacity: 1;
    transform: none;
    color: var(--k-caramel);
  }
}

.mn-sec {
  scroll-margin-top: calc(var(--hd-h) + 5rem);
  padding-block: 2.5rem 1rem;
}

.mn-sec + .mn-sec {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .mn-sec {
    scroll-margin-top: calc(var(--hd-h) + 1.5rem);
    padding-top: 1.5rem;
  }
}

.mn-sec-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

@media (min-width: 700px) {
  .mn-sec-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
  }
}

.mn-sec-title {
  font-family: var(--f-disp);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mn-sec-title i {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--k-caramel);
  vertical-align: top;
  margin-right: 0.6rem;
}

.mn-sec-desc {
  color: var(--k-bone-dim);
  max-width: 34ch;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .mn-sec-desc {
    text-align: right;
  }
}

.mn-list {
  border-top: 1px solid var(--k-line);
}

.mn-item {
  position: relative;
  padding: 1.25rem 0.6rem;
  border-bottom: 1px solid var(--k-line);
  transition: color 0.35s var(--e-out);
}

.mn-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--k-bone);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--e-out);
  z-index: 0;
}

.mn-item > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .mn-item:hover {
    color: var(--k-black);
  }

  .mn-item:hover::before {
    transform: scaleY(1);
  }

  .mn-item:hover .mn-desc,
  .mn-item:hover .mn-leader {
    color: rgba(11, 7, 5, 0.6);
    border-color: rgba(11, 7, 5, 0.4);
  }

  .mn-item:hover .mn-price {
    color: var(--k-black);
  }
}

.mn-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.mn-name {
  font-family: var(--f-disp);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.15;
  flex-shrink: 0;
  max-width: 70%;
}

.mn-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6rem;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-caramel);
}

.mn-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(244, 236, 221, 0.35);
  transform: translateY(-0.35em);
  transition: border-color 0.35s var(--e-out);
}

.mn-price {
  font-family: var(--f-disp);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  color: var(--k-caramel);
  transition: color 0.35s var(--e-out);
}

.mn-desc {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--k-bone-dim);
  max-width: 56ch;
  transition: color 0.35s var(--e-out);
}

.mn-empty {
  padding: 2rem 0;
  color: var(--k-bone-dim);
}

/* ---------- 17. Hakkımızda-v3 ---------- */
.ab3-text {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ab3-text {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}

.ab3-text-side {
  color: var(--k-bone-dim);
  max-width: 28ch;
  font-size: 0.92rem;
  line-height: 1.7;
}

.ab3-text-body p {
  color: var(--k-bone-dim);
  margin-bottom: 1.2rem;
  max-width: 60ch;
}

.ab3-text-body p:first-child {
  font-family: var(--f-disp);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 450;
  line-height: 1.4;
  color: var(--k-bone);
  margin-bottom: 1.6rem;
}

.ab3-text-body strong {
  color: var(--k-bone);
  font-weight: 600;
}

.vals {
  border-top: 1px solid var(--k-line);
}

.val {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--k-line);
}

@media (min-width: 900px) {
  .val {
    grid-template-columns: 4rem 3rem 1fr 1.4fr;
    align-items: start;
    gap: 2rem;
    padding: 2.4rem 0;
  }
}

.val-idx {
  font-family: var(--f-disp);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--k-caramel);
  line-height: 1;
}

.val-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--k-caramel);
}

.val-icon svg {
  width: 100%;
  height: 100%;
}

.val h3 {
  grid-column: 1 / -1;
  font-family: var(--f-disp);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
}

.val p {
  grid-column: 1 / -1;
  color: var(--k-bone-dim);
  max-width: 48ch;
}

@media (min-width: 900px) {
  .val h3,
  .val p {
    grid-column: auto;
  }

  .val p {
    padding-top: 0.35rem;
  }
}

/* Ekip kartı (ch2 raylı; .p-card yapısı → liquid hover) */
.p-card--person .p-media {
  aspect-ratio: 3 / 4;
}

.p-role {
  display: block;
  margin-top: 0.35rem;
  color: var(--k-bone-dim);
}

/* ---------- 18. Galeri-v3 ---------- */
.gl3 {
  padding: 1rem var(--gut) 6rem;
}

.gl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 38vw;
  grid-auto-flow: dense;
  gap: 0.6rem;
}

@media (min-width: 700px) {
  .gl-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(150px, 12vw, 260px);
    gap: 0.9rem;
  }
}

.gl-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--k-bone);
  background: var(--k-panel);
  border-radius: 3px;
}

.gl-item--w { grid-column: span 2; }
.gl-item--t { grid-row: span 2; }
.gl-item--l { grid-column: span 2; grid-row: span 2; }

.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e-out);
}

.gl-item:hover img {
  transform: scale(1.06);
}

.gl-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 7, 5, 0.75), rgba(11, 7, 5, 0) 55%);
  opacity: 0;
  transition: opacity 0.45s var(--e-out);
  pointer-events: none;
}

.gl-item:hover::after,
.gl-item:focus-visible::after {
  opacity: 1;
}

.gl-num {
  position: absolute;
  top: 0.8rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--f-disp);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--k-caramel);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.gl-cap {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  font-family: var(--f-disp);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--e-out), transform 0.45s var(--e-out);
}

.gl-item:hover .gl-cap,
.gl-item:focus-visible .gl-cap {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .gl-item::after,
  .gl-cap {
    opacity: 1;
    transform: none;
  }
}

/* Lightbox (gallery.js .lb-*) */
.lb {
  position: fixed;
  inset: 0;
  z-index: 750;
  display: grid;
  grid-template-rows: 1fr auto;
  background: rgba(11, 7, 5, 0.97);
  color: var(--k-bone);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--e-out), visibility 0.4s;
}

.lb.is-open {
  visibility: visible;
  opacity: 1;
}

.lb-figure {
  margin: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--hd-h) + 0.5rem) var(--gut) 1rem;
  min-height: 0;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100svh - var(--hd-h) - 7rem);
  object-fit: contain;
  border-radius: 3px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s var(--e-out), transform 0.7s var(--e-out);
}

.lb-img.is-loaded {
  opacity: 1;
  transform: none;
}

.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gut) 1.6rem;
  border-top: 1px solid var(--k-line);
}

.lb-cap {
  font-family: var(--f-disp);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.lb-count {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 300;
  color: var(--k-caramel);
  font-variant-numeric: tabular-nums;
}

.lb-btn {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--k-line);
  border-radius: 50%;
  color: var(--k-bone);
  transition: background-color 0.3s var(--e-out), color 0.3s var(--e-out);
}

.lb-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.lb-btn:hover {
  background: var(--k-bone);
  color: var(--k-black);
}

.lb-btn--prev { left: var(--gut); }
.lb-btn--next { right: var(--gut); }

.lb-btn--close {
  top: calc(var(--hd-h) / 2);
  right: var(--gut);
  margin-top: -26px;
}

@media (max-width: 699px) {
  .lb-btn--prev,
  .lb-btn--next {
    top: auto;
    bottom: 5.2rem;
    width: 44px;
    height: 44px;
    margin-top: 0;
  }
}

/* ---------- 19. İletişim-v3 ---------- */
.ct3 {
  padding: 1rem var(--gut) 6rem;
}

.ct-layout {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .ct-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
  }

  .ct-info {
    position: sticky;
    top: calc(var(--hd-h) + 1.5rem);
  }
}

.ct-block + .ct-block {
  margin-top: 3rem;
}

.ct-address {
  font-family: var(--f-disp);
  font-style: normal;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 1.4rem;
}

.ct-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.ct-lines a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--k-bone-dim);
  transition: color 0.3s var(--e-out);
  justify-self: start;
}

.ct-lines a:hover {
  color: var(--k-caramel);
}

.ct-lines svg {
  width: 1rem;
  height: 1rem;
  color: var(--k-caramel);
  flex-shrink: 0;
}

.ct-info .btn {
  margin-top: 1.8rem;
}

.ct-form h2 {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 1.4rem;
}

.ct-form h2 em {
  font-style: italic;
  font-weight: 380;
  color: var(--k-caramel);
}

.ct-form > p {
  color: var(--k-bone-dim);
  margin: 1rem 0 2.4rem;
  max-width: 44ch;
}

.fld {
  position: relative;
  margin-bottom: 1.8rem;
}

.fld label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--k-bone-dim);
  margin-bottom: 0.4rem;
}

.fld input,
.fld select,
.fld textarea {
  width: 100%;
  font: inherit;
  font-family: var(--f-disp);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--k-bone);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--k-line);
  border-radius: 0;
  padding: 0.55rem 0;
  outline: none;
  transition: border-color 0.3s var(--e-out);
  -webkit-appearance: none;
  appearance: none;
}

.fld select option {
  color: var(--k-black);
}

.fld input::placeholder,
.fld textarea::placeholder {
  color: rgba(244, 236, 221, 0.3);
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--k-bone);
}

.fld input:focus-visible,
.fld select:focus-visible,
.fld textarea:focus-visible {
  outline: none;
  border-color: var(--k-caramel);
}

.fld textarea {
  min-height: 7rem;
  resize: vertical;
}

.fld--select::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  bottom: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--k-bone);
  border-bottom: 1.5px solid var(--k-bone);
  transform: rotate(45deg);
  pointer-events: none;
}

.fld select {
  padding-right: 1.6rem;
  cursor: pointer;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--k-caramel);
}

.map3 {
  padding: 6rem 0 0;
  background: var(--k-deep);
}

.map3 .sx-label,
.map3 .sx-head {
  padding-inline: var(--gut);
}

.map-embed {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--k-panel);
}

@media (min-width: 700px) {
  .map-embed {
    aspect-ratio: 21 / 9;
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(190deg) saturate(0.35) brightness(0.9);
}

/* ---------- 14. Hareket azaltma: sakin düzen ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .ld,
  .cur,
  .pt3,
  .hero-canvas {
    display: none !important;
  }

  html.v3-cursor,
  html.v3-cursor a,
  html.v3-cursor button {
    cursor: auto;
  }

  .hero-mark .mask > span,
  .hero-fade,
  [data-rv],
  [data-rev],
  [data-rv="mask"] > .rv-in {
    transform: none;
    opacity: 1;
  }

  .mq3-track {
    animation: none;
  }

  /* (01) statik */
  .ch-track {
    height: auto;
  }

  .ch-stage {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
    padding: 6rem var(--gut);
    overflow: visible;
  }

  .sec-tag,
  .sec-bar,
  .ch-caption {
    position: static;
    opacity: 1;
    transform: none;
    margin-bottom: 1.5rem;
  }

  .sec-bar {
    display: none;
  }

  .ch-text {
    margin: 0 auto 3rem;
  }

  .ch-text .w {
    transform: none !important;
    opacity: 1 !important;
  }

  .ch-media {
    position: static;
    margin-top: 2rem;
  }

  .ch-media-box {
    transform: none;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ch-media-shade {
    display: none;
  }

  /* (02) statik ızgara */
  .ch2-track {
    height: auto !important;
  }

  .ch2-stage {
    position: static;
    height: auto;
    overflow: visible;
    padding: 6rem 0;
  }

  .ch2-rail {
    transform: none !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2.5rem;
    padding-inline: var(--gut);
  }

  .ch2-intro,
  .p-card {
    width: min(100%, 380px);
  }

  /* (03) statik */
  .ch3-track {
    height: auto;
  }

  .ch3-stage {
    position: static;
    height: auto;
    overflow: visible;
    padding: 6rem var(--gut);
  }

  .ch3-year {
    display: none;
  }

  .ch3-visual {
    height: 380px;
  }

  .ch3-img--a,
  .ch3-img--b {
    transform: none !important;
  }

  .ch3-title .mask > span {
    transform: none !important;
  }

  .ch3-copy {
    opacity: 1;
    transform: none;
  }
}
