/* İlkadım Global — Marka Vitrini
   Akış tarzı arayüz · Dark navy + sıcak kahve paleti */

:root {
  --bg:        #070A14;   /* near-black navy */
  --bg-2:      #0B1020;
  --surface:   #121A30;
  --surface-2: #18223C;
  --elev:      #1E2A47;

  --brown:      #B98B5E;  /* ana sıcak kahve aksanı (kırmızının yerine) */
  --brown-soft: #C9A47B;
  --brown-deep: #6B4A2E;
  --gold:       #E0BE8A;

  --text:    #F2ECE2;     /* sıcak beyaz */
  --muted:   #A7A192;
  --muted-2: #6E6A60;
  --line:    rgba(201, 164, 123, 0.16);

  /* Sinematik altın degrade — koyudan açığa */
  --grad-gold:       linear-gradient(135deg, #4A2F16 0%, #8A6A3A 32%, #C9A465 64%, #F0DBA6 100%);
  --grad-gold-hover: linear-gradient(135deg, #5C3C1E 0%, #A07E46 32%, #DEBC78 64%, #FBE8BE 100%);

  --shadow:  0 14px 40px rgba(0, 0, 0, 0.55);
  --radius:  6px;
  --row-gap: 4px;
  --maxw:    1480px;
  --header-h: 74px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--brown); color: #1a1208; }

/* Custom scrollbar */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 8px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  z-index: 60;
  transition: background-color 0.3s ease;
  background: linear-gradient(180deg, rgba(7, 10, 20, 0.92) 0%, rgba(7, 10, 20, 0) 100%);
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  display: block;
  width: clamp(132px, 15vw, 168px);
  height: clamp(50px, 6vw, 64px);
  flex: 0 0 auto;
  font-size: 0; color: transparent;            /* metin gizli, erişilebilirlik için aria-label */
  /* logoya akan altın degrade animasyonu verir */
  background: linear-gradient(100deg,
    var(--brown) 0%, var(--brown-soft) 22%, var(--gold) 40%,
    #FFF4DF 50%, var(--gold) 60%, var(--brown-soft) 78%, var(--brown) 100%);
  background-size: 230% 100%;
  animation: wordmarkShimmer 5.5s linear infinite;
  -webkit-mask: url("../img/logos/shop-and-shop.svg") left center / contain no-repeat;
          mask: url("../img/logos/shop-and-shop.svg") left center / contain no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.wordmark:hover { transform: scale(1.03); filter: drop-shadow(0 0 14px rgba(224, 190, 138, 0.35)); }
@keyframes wordmarkShimmer {
  0%   { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}
@media (prefers-reduced-motion: reduce) { .wordmark { animation: none; } }

.nav { display: flex; align-items: center; gap: 20px; }
.nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--text); }

/* ----- Markalar dropdown ----- */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-toggle::after {
  content: "▾"; font-size: 10px; opacity: 0.75;
  transition: transform 0.25s ease;
}
.nav-dd:hover .nav-dd-toggle { color: var(--text); }
.nav-dd:hover .nav-dd-toggle::after { transform: rotate(180deg); }
/* görünmez köprü: toggle ile menü arası boşlukta hover kopmasın */
.nav-dd::after {
  content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px;
}
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; margin-top: 13px;
  transform: translateX(-50%) translateY(8px);
  display: grid; gap: 2px; min-width: 210px; padding: 10px;
  background: linear-gradient(165deg, #141C36 0%, #0A0E1A 100%);
  border: 1px solid rgba(224, 190, 138, 0.18);
  border-radius: 14px;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 70;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  font-size: 14px; color: var(--muted);
  padding: 10px 13px; border-radius: 9px; white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.nav-dd-menu a:hover {
  background: rgba(224, 190, 138, 0.1); color: var(--text); padding-left: 17px;
}

.header-spacer { flex: 1; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn { color: var(--text); opacity: 0.85; font-size: 18px; }
.icon-btn:hover { opacity: 1; }
.avatar {
  width: 32px; height: 32px; border-radius: 5px;
  background: linear-gradient(135deg, var(--brown), var(--brown-deep));
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: #1a1208;
}

/* Hamburger butonu (yalnızca mobil) */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 9px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.28s ease, opacity 0.2s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-backdrop { display: none; }

@media (max-width: 720px) {
  .site-header { gap: 12px; padding: 0 16px; }
  .wordmark { width: 124px; height: 46px; }
  .header-spacer, .header-actions { display: none; }
  .nav-toggle { display: block; z-index: 90; }
  /* panel header içinde — açıkken header'ı backdrop'un üstüne çıkar ki panel kararmasın */
  body.nav-open .site-header { z-index: 86; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px;
    padding: 92px 24px 30px; z-index: 85; overflow-y: auto;
    background: linear-gradient(165deg, #141C36 0%, #0A0E1A 100%);
    border-left: 1px solid rgba(224, 190, 138, 0.18);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a {
    font-size: 18px; font-weight: 600; color: var(--text);
    padding: 16px 4px; border-bottom: 1px solid var(--line);
  }
  .nav a.active { color: var(--gold); }
  .nav a:last-child { border-bottom: 0; }

  /* Dropdown mobilde: panel içinde açık alt-liste */
  .nav-dd { display: block; }
  .nav-dd-toggle {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 18px; font-weight: 600; color: var(--text);
    padding: 16px 4px; border-bottom: 1px solid var(--line);
  }
  .nav-dd-toggle::after { content: "▾"; font-size: 13px; opacity: 0.6; transform: none; }
  .nav-dd::after { display: none; }
  .nav-dd-menu {
    position: static; transform: none; margin: 0; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: block; padding: 6px 0 10px 14px;
    background: none; border: 0; border-radius: 0; box-shadow: none;
  }
  .nav-dd-menu a {
    display: block; font-size: 15px; font-weight: 500; color: var(--muted);
    padding: 11px 4px; border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-dd-menu a:hover { padding-left: 4px; background: none; }

  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 80;
    background: rgba(4, 6, 12, 0.74);
    opacity: 0; pointer-events: none; transition: opacity 0.32s ease;
  }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ============ SOL DİKEY İKON ÇUBUĞU ============ */
.side-rail {
  position: fixed; left: 0; top: 0; height: 100vh; z-index: 55;
  width: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; padding: 80px 0 30px; pointer-events: none;
}
.rail-btn {
  pointer-events: auto; position: relative;
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
  color: var(--muted); background: transparent; border: 0;
  transition: color 0.2s ease, background 0.2s ease;
}
.rail-btn svg { width: 23px; height: 23px; }
.rail-btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.rail-btn.active { color: var(--text); }
.rail-btn.active::before {
  content: ""; position: absolute; left: -13px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 22px; border-radius: 3px; background: var(--grad-gold);
}
.rail-btn::after {
  content: attr(data-label); position: absolute; left: 52px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--surface); color: var(--text); font-size: 12px;
  padding: 6px 11px; border-radius: 7px; border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease;
}
.rail-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(2px); }

/* arama kutusu */
.rail-search { position: fixed; inset: 0 0 auto 0; z-index: 70; display: flex; justify-content: center; padding: 92px 20px 0; }
.rail-search[hidden] { display: none; }
.rail-search-box {
  display: flex; align-items: center; gap: 10px; width: min(540px, 92vw);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 14px; box-shadow: var(--shadow); animation: fadeUp 0.25s ease;
}
.rail-search-box svg { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; }
.rail-search-box input { flex: 1; background: none; border: 0; color: var(--text); font-size: 16px; outline: none; }
.rail-search-box input::placeholder { color: var(--muted-2); }
#rail-search-close { color: var(--muted); font-size: 16px; flex: 0 0 auto; }
#rail-search-close:hover { color: var(--text); }

/* çubuğa yer açmak için içeriği sağa kaydır (masaüstü) */
@media (min-width: 901px) {
  .has-rail .billboard-inner { left: clamp(82px, 6vw, 104px); }
  .has-rail .row-title, .has-rail .row-track { padding-left: clamp(82px, 6vw, 104px); }
  .has-rail .site-header { padding-left: clamp(82px, 6vw, 104px); }
}
@media (max-width: 900px) { .side-rail { display: none; } }

/* ============ BILLBOARD HERO ============ */
.billboard {
  position: relative;
  height: 88vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}
.billboard-media,
.billboard-media video,
.billboard-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.billboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(77deg, rgba(7, 10, 20, 0.92) 0%, rgba(7, 10, 20, 0.35) 42%, rgba(7, 10, 20, 0) 68%),
    linear-gradient(0deg, var(--bg) 2%, rgba(7, 10, 20, 0) 26%);
  pointer-events: none;
}
.billboard-inner {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(90px, 16vh, 170px);
  max-width: 620px;
  z-index: 5;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
/* İlk video oynarken yazı/elementler gizli; ~10sn sonra açılır */
.billboard-inner.bb-wait { opacity: 0; transform: translateY(18px); pointer-events: none; }
.billboard-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-soft); font-weight: 700; margin-bottom: 14px;
}
.billboard-kicker::before {
  content: "S&S"; font-weight: 900; font-size: 12px;
  background: var(--brown); color: #1a1208;
  padding: 3px 6px; border-radius: 4px; letter-spacing: 0.05em;
}
.billboard-title {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}
.billboard-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 15px; }
.match { color: var(--brown-soft); font-weight: 700; }
.pill {
  border: 1px solid var(--line); border-radius: 4px;
  padding: 1px 8px; font-size: 12px; color: var(--muted);
}
.billboard-desc {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  color: #E6DFD3;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  margin: 0 0 26px;
}
.billboard-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius);
  transition: transform 0.12s ease, background-color 0.2s ease, opacity 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-play {
  background: var(--grad-gold);
  color: #2a1c08;
  box-shadow: 0 6px 20px rgba(201, 164, 101, 0.28), inset 0 1px 0 rgba(255, 248, 230, 0.45);
}
.btn-play:hover { background: var(--grad-gold-hover); }
.btn-info { background: rgba(110, 106, 96, 0.45); color: var(--text); backdrop-filter: blur(2px); }
.btn-info:hover { background: rgba(110, 106, 96, 0.62); }
.btn svg { width: 22px; height: 22px; }

/* ============ ROWS ============ */
.rows {
  position: relative;
  z-index: 10;
  margin-top: -7vh;
  padding-bottom: 60px;
}

/* ---------- DEV BOY ÇİÇEK FON (altın hairline, siyah zemin) ---------- */
.flower-bg {
  position: fixed;
  top: 50%;
  right: clamp(-320px, -9vw, -90px);
  left: auto; bottom: auto; margin: 0;
  transform: translateY(-50%);
  width: min(1080px, 88vw);
  height: min(1080px, 90vh);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background: linear-gradient(120deg,
    #9A6E2A 0%, #C79A45 18%, var(--gold) 34%, #FFF3D0 50%,
    var(--gold) 66%, #C79A45 82%, #9A6E2A 100%);
  background-size: 220% 220%;
  animation: flowerShimmer 14s ease-in-out infinite;
  -webkit-mask: url("../img/logos/flower.svg") center / contain no-repeat;
          mask: url("../img/logos/flower.svg") center / contain no-repeat;
}
@keyframes flowerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .flower-bg { animation: none; } }
.row { margin: 0 0 3vw; }
.row-title {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #E9E2D6;
}
.row-track-wrap { position: relative; }
.row-track {
  display: flex;
  gap: var(--row-gap);
  padding: 6px clamp(18px, 4vw, 56px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.row-track::-webkit-scrollbar { display: none; }

/* Card */
.card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(140px, 14vw, 220px);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease;
}
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 20, 0.78) 0%, rgba(7, 10, 20, 0) 45%);
  opacity: 0.9;
}
.card-label {
  position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 2;
  font-weight: 800; font-size: 15px; letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.card-cat {
  display: block; font-weight: 400; font-size: 11px;
  color: var(--brown-soft); letter-spacing: 0.08em; text-transform: uppercase;
}
.card-logo {
  display: block; margin-top: 5px;
  height: clamp(20px, 2.4vw, 30px); width: auto; aspect-ratio: var(--ar, 2.5);
  max-width: 90%;
  background: #F5EFE5;
  -webkit-mask: var(--logo) left center / contain no-repeat;
          mask: var(--logo) left center / contain no-repeat;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.75));
}
.card-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  background: var(--brown); color: #1a1208;
  padding: 3px 7px; border-radius: 3px;
}
.card:hover {
  transform: scale(1.12) translateY(-6px);
  box-shadow: var(--shadow);
  z-index: 20;
}
.card:hover img { transform: scale(1.06); }
.card:hover::after { opacity: 1; }

/* ---------- ANA SAYFA HAREKETLİLİĞİ ---------- */
/* Satırlar görünür alana girdikçe aşağıdan yukarı belirir */
.rows .row {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rows .row.in { opacity: 1; transform: none; }
/* Kartlar soldan sağa kademeli açılır (yalnızca opacity — hover transform'la çakışmaz) */
.rows .row .card {
  opacity: 0;
  transition: opacity 0.5s ease,
              transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.28s ease;
  transition-delay: calc(var(--i, 0) * 55ms), 0s, 0s;
}
.rows .row.in .card { opacity: 1; }
/* Hover'da altın halka + glow */
.card:not(.ranked):hover {
  box-shadow: var(--shadow), 0 0 0 1.5px rgba(224, 190, 138, 0.55), 0 0 26px rgba(224, 190, 138, 0.2);
}
/* Rozet hafif nabız atar */
.card-badge { animation: badgePulse 2.6s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 190, 138, 0); }
  50%      { box-shadow: 0 0 12px 1px rgba(224, 190, 138, 0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .rows .row, .rows .row .card { opacity: 1 !important; transform: none !important; transition: none; }
  .card-badge { animation: none; }
}

/* Ranked (Top 10 style) */
.card.ranked { display: flex; align-items: stretch; width: clamp(240px, 24vw, 380px); background: transparent; overflow: visible; aspect-ratio: auto; }
.card.ranked .rank-num {
  flex: 0 0 auto; width: 42%;
  font-weight: 900; font-size: clamp(90px, 12vw, 170px); line-height: 0.8;
  color: var(--bg-2); -webkit-text-stroke: 3px var(--brown-deep);
  display: flex; align-items: flex-end; justify-content: center;
  font-family: "Roboto", sans-serif;
}
.card.ranked .rank-art {
  flex: 1 1 auto; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; position: relative; background: var(--surface);
}
.card.ranked:hover { transform: scale(1.06) translateY(-4px); z-index: 20; }

/* Row arrows */
.row-arrow {
  position: absolute; top: 6px; bottom: 6px; width: clamp(18px, 4vw, 56px);
  z-index: 25; display: grid; place-items: center;
  background: rgba(7, 10, 20, 0.5); color: var(--text); font-size: 26px;
  opacity: 0; transition: opacity 0.2s ease;
}
.row-track-wrap:hover .row-arrow { opacity: 1; }
.row-arrow.left { left: 0; }
.row-arrow.right { right: 0; }
.row-arrow:hover { background: rgba(7, 10, 20, 0.78); }

/* ============ DETAIL MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(4, 6, 12, 0.8);
  display: none; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 48px 16px;
  opacity: 0; transition: opacity 0.25s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  width: min(900px, 96vw);
  background: var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.modal-backdrop.open .modal { transform: none; }

.modal-hero { position: relative; aspect-ratio: 16 / 9; background: #000; }
.modal-hero video, .modal-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-2) 1%, rgba(11, 16, 32, 0) 38%);
}
.modal-hero-content { position: absolute; left: clamp(20px, 4vw, 48px); bottom: 26px; z-index: 3; right: 48px; }
.modal-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin: 0 0 16px; text-shadow: 0 3px 18px rgba(0,0,0,.7); }
.modal-hero-actions { display: flex; gap: 12px; align-items: center; }
.btn-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid rgba(242, 236, 226, 0.5);
  display: grid; place-items: center; color: var(--text);
  background: rgba(7,10,20,.35); transition: border-color .2s ease, background .2s ease;
}
.btn-circle:hover { border-color: var(--text); background: rgba(7,10,20,.6); }

.modal-mute { position: absolute; right: clamp(20px, 4vw, 48px); bottom: 26px; z-index: 3; }

.modal-body { padding: clamp(20px, 3vw, 36px); display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; }
.modal-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 15px; flex-wrap: wrap; }
.modal-story { font-size: 16px; line-height: 1.6; color: #E6DFD3; margin: 0; }
.modal-side dl { margin: 0; font-size: 14px; }
.modal-side dt { color: var(--muted-2); margin-bottom: 2px; }
.modal-side dd { margin: 0 0 16px; color: var(--text); }
.modal-side a.link-brown { color: var(--brown-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag {
  font-size: 12px; padding: 4px 10px; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
}
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); color: var(--text); font-size: 20px;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.modal-close:hover { background: var(--surface-2); }

.gallery-strip { grid-column: 1 / -1; }
.gallery-strip h4 { font-size: 18px; margin: 8px 0 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; }

@media (max-width: 680px) {
  .modal-body { grid-template-columns: 1fr; }
  .billboard-actions .btn { flex: 1; justify-content: center; }
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 40px clamp(18px, 4vw, 56px) 60px;
  color: var(--muted-2); font-size: 13px; line-height: 1.7;
  border-top: 1px solid var(--line); margin-top: 20px;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brown-soft); }

/* Fade-in on load */
.fade-up { opacity: 0; transform: translateY(14px); animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Sinematik yavaş zoom (gerçek videosu olmayan markalar için) */
.kenburns { animation: kenburns 22s ease-in-out infinite alternate; transform-origin: 50% 40%; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .kenburns { animation: none; } }

/* ============ BRAND DETAIL PAGE (marka.html) ============ */
.brand-hero { position: relative; height: 92vh; min-height: 580px; overflow: visible; }
.brand-hero video, .brand-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* Hero crossfade slayt (galeri görselleri) */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg-2); }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; animation: heroZoom 7s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.16); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; transform: none; }
}

/* Hero'daki ufak featured fragman videosu */
.hero-featured {
  position: absolute; z-index: 30;
  right: clamp(24px, 5vw, 80px); top: 42%;
  width: clamp(280px, 30vw, 440px); aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  background: #000;
  cursor: grab; touch-action: none;
  animation: featIn 0.6s ease both;
}
.hero-featured.dragging { cursor: grabbing; box-shadow: 0 26px 72px rgba(0, 0, 0, 0.72); }
/* Tanıtım theater modu — ekran ortasında büyük */
.hero-featured.theater {
  position: fixed; top: 50%; left: 50%; right: auto; bottom: auto;
  transform: translate(-50%, -50%) !important;
  width: min(90vw, 980px); height: auto; aspect-ratio: 16 / 9;
  z-index: 210; cursor: default;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.78);
  transition: none;
}
.feat-theater-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 6, 12, 0.85);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.feat-theater-backdrop.show { opacity: 1; pointer-events: auto; }
@keyframes featIn { from { opacity: 0; } to { opacity: 1; } }

/* Kapatma butonu */
.hero-feat-close {
  position: absolute; top: 8px; right: 8px; z-index: 4;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(7, 10, 20, 0.6); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid; place-items: center; font-size: 13px; line-height: 1;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-feat-close:hover { background: var(--brown); color: #1a1208; border-color: var(--brown); }

/* Tablet: biraz küçült */
@media (max-width: 1024px) { .hero-featured { width: clamp(220px, 34vw, 320px); } }
.hero-feat-badge {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  background: var(--grad-gold); color: #2a1c08;
  padding: 3px 8px; border-radius: 4px;
}
.hero-feat-mute {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(7, 10, 20, 0.5); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-feat-mute:hover { background: rgba(7, 10, 20, 0.8); }
.hero-feat-mute svg { width: 20px; height: 20px; }
@media (max-width: 760px) { .hero-featured { display: none !important; } }

/* Genel video ses (mute) butonu — hairline ikon, billboard'da kullanılır */
.video-mute {
  position: absolute; z-index: 15;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(90px, 16vh, 170px);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(7, 10, 20, 0.45); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-mute:hover { background: rgba(7, 10, 20, 0.75); border-color: #fff; }
.video-mute svg { width: 22px; height: 22px; }
.brand-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(77deg, rgba(7,10,20,.94) 0%, rgba(7,10,20,.4) 46%, rgba(7,10,20,0) 72%),
    linear-gradient(0deg, var(--bg) 1%, rgba(7,10,20,0) 30%);
}
.brand-hero-inner {
  position: absolute; left: clamp(18px,4vw,56px); bottom: clamp(70px,12vh,130px);
  z-index: 5; max-width: 600px;
}
.hero-copy { max-width: 600px; }
/* Marka sayfasında yazı yerine SVG logo (büyük, beyaz; lion royal altın degrade) */
.brand-logo {
  height: clamp(60px, 9.5vw, 124px);
  width: auto; aspect-ratio: var(--ar, 2.5); max-width: 100%;
  margin: 0 0 20px;
  background: #F5EFE5;
  -webkit-mask: var(--logo) left center / contain no-repeat;
          mask: var(--logo) left center / contain no-repeat;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.5));
}
.brand-logo.gold { background: var(--grad-gold); }
/* uzun oranlı logolar (berf, lion royal) biraz daha büyük */
.brand-logo.big { height: clamp(90px, 13.5vw, 172px); margin-bottom: 16px; }
.brand-back {
  position: absolute; top: calc(var(--header-h) + 14px); left: clamp(18px,4vw,56px); z-index: 6;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted); background: rgba(7,10,20,.5);
  padding: 8px 14px; border-radius: 30px; border: 1px solid var(--line);
}
.brand-back:hover { color: var(--text); }
.brand-mute { position: absolute; right: clamp(18px,4vw,56px); bottom: clamp(70px,12vh,130px); z-index: 6; }

/* Marka web sitesi butonu */
.btn-site {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 18px; padding: 11px 20px 11px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(201, 164, 123, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(224, 190, 138, 0.45);
  color: var(--text);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-site svg { width: 26px; height: 26px; color: var(--gold); flex: 0 0 auto; }
.btn-site span { display: flex; flex-direction: column; line-height: 1.15; font-size: 15px; font-weight: 600; }
.btn-site small { font-size: 12px; font-weight: 400; color: var(--brown-soft); letter-spacing: 0.02em; }
.btn-site-arrow { font-style: normal; font-size: 16px; color: var(--brown-soft); margin-left: 4px; transition: transform 0.2s ease; }
.btn-site:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 164, 123, 0.26), rgba(255, 255, 255, 0.08));
  box-shadow: 0 10px 28px rgba(201, 164, 101, 0.22);
}
.btn-site:hover .btn-site-arrow { transform: translate(2px, -2px); }

/* Tekstil bakım ikon şeridi (Netflix uyarı ikonu mantığında) */
.care-strip {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 16px;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(201, 164, 123, 0.22);
  max-width: 560px;
}
.care-strip-label {
  width: 100%; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 2px;
}
.care-strip { gap: 18px; }
.care-item {
  display: flex; align-items: center; justify-content: center; cursor: default;
}
.care-item svg {
  width: 23px; height: 23px; color: #ffffff; stroke-width: 1;
  opacity: 0.5;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.care-item:hover svg { opacity: 0.85; transform: translateY(-2px); }

.brand-body { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px,4vw,56px) 60px; }
.brand-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; margin-top: -4vh; position: relative; z-index: 10; }
.brand-story-lg { font-size: clamp(17px,1.6vw,21px); line-height: 1.65; color: #E6DFD3; }
.brand-section-title {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-soft); font-weight: 700; margin: 0 0 14px;
}
/* Liquid glass — camsı, ışığı kıran künye kartı */
.brand-side-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 164, 123, 0.28) 0%, rgba(185, 139, 94, 0.10) 42%, rgba(224, 190, 138, 0.20) 100%),
    linear-gradient(rgba(46, 33, 20, 0.40), rgba(46, 33, 20, 0.40));
  -webkit-backdrop-filter: blur(28px) saturate(135%) brightness(1.02) grayscale(0.45);
  backdrop-filter: blur(28px) saturate(135%) brightness(1.02) grayscale(0.45);
  border: 1px solid rgba(224, 190, 138, 0.42);
  border-radius: 22px;
  padding: 28px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 240, 212, 0.42),
    inset 0 0 0 1px rgba(224, 190, 138, 0.10),
    inset 0 -14px 30px rgba(224, 190, 138, 0.10);
}
/* köşe parlaması (specular highlight) */
.brand-side-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(130% 90% at 0% 0%, rgba(255, 235, 198, 0.26), transparent 48%),
    radial-gradient(120% 80% at 100% 100%, rgba(224, 190, 138, 0.16), transparent 52%);
}
/* üstte ince ışık yansıması şeridi */
.brand-side-card::after {
  content: "";
  position: absolute; top: 0; left: 12%; right: 12%; height: 1px; z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(224, 190, 138, 0.6), transparent);
}
.brand-side-card dt { color: rgba(242, 236, 226, 0.62); }
.brand-side-card dd { color: #FBF7EF; }
.brand-side-card dl { margin: 0; font-size: 14px; }
.brand-side-card dt { color: var(--muted-2); margin-bottom: 3px; }
.brand-side-card dd { margin: 0 0 18px; color: var(--text); line-height: 1.45; }
.brand-side-card dd:last-child { margin-bottom: 0; }

.brand-gallery { margin-top: 48px; }
.brand-gallery h3 { font-size: 22px; margin: 0 0 16px; }
.brand-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.brand-gallery-grid img { border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; transition: transform .35s ease, box-shadow .3s ease; cursor: zoom-in; }
.brand-gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 14px 34px rgba(0,0,0,.5); }

/* Galeri lightbox (büyütme pop-up) */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 5vh 5vw;
  background: rgba(4, 6, 12, 0.88);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.28s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb-img {
  max-width: 92vw; max-height: 88vh; border-radius: 12px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: default;
}
.lb-img.zoomin { animation: lbZoom 0.38s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes lbZoom { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: none; } }
.lb-close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(7, 10, 20, 0.6); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25); font-size: 20px;
  display: grid; place-items: center; transition: background 0.2s ease, color 0.2s ease;
}
.lb-close:hover { background: var(--brown); color: #1a1208; border-color: var(--brown); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(7, 10, 20, 0.5); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22); font-size: 30px;
  display: grid; place-items: center; transition: background 0.2s ease, border-color 0.2s ease;
}
.lb-nav:hover { background: rgba(7, 10, 20, 0.82); border-color: rgba(255, 255, 255, 0.5); }
.lb-prev { left: clamp(10px, 3vw, 28px); }
.lb-next { right: clamp(10px, 3vw, 28px); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 13px; letter-spacing: 0.1em; color: var(--text);
  background: rgba(7, 10, 20, 0.55); padding: 6px 16px; border-radius: 20px;
  border: 1px solid var(--line);
}
@media (max-width: 600px) { .lb-nav { width: 42px; height: 42px; font-size: 24px; } }

.more-like { margin-top: 56px; }
.more-like h3 { font-size: 22px; margin: 0 0 16px; }

@media (max-width: 760px) { .brand-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ============ CORPORATE PAGE (kurumsal.html) — dinamik & sinematik ============ */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* VIDEO HERO */
.k-hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: center; }
.k-hero video, .k-hero .k-hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.k-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(82deg, rgba(7,10,20,.92) 0%, rgba(7,10,20,.55) 42%, rgba(7,10,20,.2) 72%, rgba(7,10,20,.55) 100%),
    radial-gradient(1200px 700px at 18% 30%, rgba(201,164,101,.16), transparent 60%),
    linear-gradient(0deg, var(--bg) 1%, rgba(7,10,20,0) 30%);
}
.k-hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 clamp(18px,5vw,72px); }
/* AB yıldızları (HTML5 canvas, yavaş dönen halka) */
.k-eu-stars {
  position: absolute; z-index: 1; pointer-events: none;
  right: clamp(-260px, -11vw, -130px); top: 50%; transform: translateY(-50%);
  width: clamp(440px, 64vw, 840px); height: clamp(440px, 64vw, 840px);
  opacity: 1;
}
@media (max-width: 980px) {
  .k-eu-stars { opacity: 0.38; right: -50px; top: 16%; transform: none; width: 300px; height: 300px; }
}
.k-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 20px;
}
.k-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.k-hero-title { font-size: clamp(40px,6.6vw,92px); font-weight: 900; line-height: 0.98; margin: 0 0 22px; letter-spacing: -0.01em; text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.k-hero-title em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.k-hero-sub { font-size: clamp(16px,1.6vw,21px); line-height: 1.6; color: #E4DDD0; max-width: 620px; margin: 0 0 32px; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.k-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.k-hero-mute {
  position: absolute; right: clamp(18px,4vw,56px); bottom: clamp(120px,16vh,180px); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; color: #fff;
  background: rgba(7,10,20,.45); border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.k-hero-mute svg { width: 22px; height: 22px; }
.k-scrollcue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.k-scrollcue i { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 12px; position: relative; }
.k-scrollcue i::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: var(--gold); animation: cueDot 1.6s ease-in-out infinite; }
@keyframes cueDot { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; transform: translate(-50%,8px); } }

/* MARQUEE şerit — SVG marka logoları */
.k-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 18px 0; white-space: nowrap; }
.k-marquee-track { display: inline-flex; align-items: center; animation: marquee 48s linear infinite; }
.k-logo {
  display: inline-block; flex: 0 0 auto;
  height: 76px; width: auto; aspect-ratio: var(--ar, 2.4);
  margin: 0 30px;
  -webkit-mask: var(--logo) center / contain no-repeat;
          mask: var(--logo) center / contain no-repeat;
}
.k-logo-text {
  display: inline-block; margin: 0 18px;
  font-size: clamp(20px,2.4vw,30px); font-weight: 800; letter-spacing: .05em;
}
.k-logo.white { background: #F2ECE2; }
.k-logo.brown {
  background: linear-gradient(110deg, var(--brown-deep) 0%, var(--brown-soft) 22%, var(--gold) 48%, var(--brown-soft) 74%, var(--brown-deep) 100%);
  background-size: 220% 100%;
  animation: logoShimmer 3.8s linear infinite, logoGlow 2.6s ease-in-out infinite;
}
@keyframes logoShimmer { from { background-position: 0% 0; } to { background-position: -220% 0; } }
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 1px rgba(224, 190, 138, 0.25)); }
  50% { filter: drop-shadow(0 0 10px rgba(224, 190, 138, 0.78)); }
}
@media (prefers-reduced-motion: reduce) { .k-logo.brown { animation: none; } }
.k-logo-text.white { color: #F2ECE2; }
.k-logo-text.brown {
  background: linear-gradient(120deg, var(--brown-soft), var(--brown) 52%, var(--brown-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.k-dot { color: var(--brown); font-size: 13px; opacity: .65; flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Genel bölüm sarmalayıcı */
.k-section { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,9vh,110px) clamp(18px,5vw,72px); }
.k-section-head { max-width: 720px; margin-bottom: 48px; }
.k-section-head h2 { font-size: clamp(28px,3.6vw,48px); font-weight: 900; margin: 0 0 12px; line-height: 1.05; }
.k-section-head h2 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color: transparent; }
.k-section-head p { color: var(--muted); font-size: clamp(15px,1.4vw,18px); line-height: 1.65; margin: 0; }
.k-kicker { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--brown-soft); margin-bottom: 14px; }

/* İSTATİSTİK bandı (kutu değil, tam genişlik akış) */
.k-stats-band { position: relative; background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.k-stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 300px at 50% 0%, rgba(201,164,101,.12), transparent 60%); pointer-events: none; }
.k-stats { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px clamp(18px,5vw,72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 24px; }
.k-stat { text-align: center; position: relative; }
.k-stat + .k-stat::before { content: ""; position: absolute; left: -12px; top: 12%; height: 76%; width: 1px; background: var(--line); }
.k-stat .num { font-size: clamp(46px,6vw,78px); font-weight: 900; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.k-stat .lbl { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.4; }

/* SPLIT bölümler (metin + görsel, alternatif) */
.k-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.k-split + .k-split { margin-top: clamp(50px,8vh,90px); }
.k-split.reverse .k-split-media { order: 2; }
.k-split-text h3 { font-size: clamp(24px,2.8vw,38px); font-weight: 800; margin: 0 0 16px; line-height: 1.1; }
.k-split-text p { color: #CFC8BB; font-size: clamp(15px,1.4vw,18px); line-height: 1.7; margin: 0 0 16px; }
.k-split-media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 70px rgba(0,0,0,.5); border: 1px solid rgba(224,190,138,.25); }
.k-split-media img, .k-split-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.k-split-media:hover img { transform: scale(1.05); }
.k-split-media .tagpill { position: absolute; left: 16px; top: 16px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--grad-gold); color: #2a1c08; padding: 5px 12px; border-radius: 50px; }
.k-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.k-list li { display: flex; gap: 12px; align-items: flex-start; color: #D8D1C4; font-size: 15px; }
.k-list li::before { content: "✦"; color: var(--gold); font-size: 12px; margin-top: 4px; }

/* MARKA şeridi (yatay kaydırmalı, sinematik) */
.k-brands { display: flex; gap: 16px; overflow-x: auto; padding: 6px clamp(18px,5vw,72px) 24px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.k-brands::-webkit-scrollbar { display: none; }
.k-brand { position: relative; flex: 0 0 auto; width: clamp(240px,28vw,360px); aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--line); }
.k-brand img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.k-brand:hover img { transform: scale(1.08); }
.k-brand::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,10,20,.92) 0%, rgba(7,10,20,0) 55%); }
.k-brand-info { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; }
.k-brand-info .cat { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--brown-soft); }
.k-brand-info .nm { font-size: 22px; font-weight: 800; margin: 4px 0 0; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.k-brand .go { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(7,10,20,.5); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .25s ease; }
.k-brand:hover .go { opacity: 1; }

/* AKIŞ / timeline (yatay adımlar, bağlantı çizgili) */
.k-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 26px; position: relative; }
.k-step { position: relative; padding-top: 56px; }
.k-step .n {
  position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900; color: #2a1c08;
  background: var(--grad-gold); box-shadow: 0 6px 18px rgba(201,164,101,.3);
}
.k-step::before { content: ""; position: absolute; top: 22px; left: 44px; right: -26px; height: 1px; background: linear-gradient(90deg, var(--brown), transparent); }
.k-step:last-child::before { display: none; }
.k-step h4 { font-size: 18px; margin: 0 0 8px; }
.k-step p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* OPERASYON konumları */
.k-locs { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; }
.k-loc { text-align: center; padding: 26px 16px; border-radius: 14px; background: linear-gradient(160deg, rgba(30,42,71,.4), rgba(11,16,32,.2)); border: 1px solid var(--line); transition: transform .25s ease, border-color .25s ease; }
.k-loc:hover { transform: translateY(-4px); border-color: var(--gold); }
.k-loc .flag { font-size: 30px; }
.k-loc h4 { margin: 10px 0 4px; font-size: 17px; }
.k-loc p { margin: 0; color: var(--muted); font-size: 13px; }

/* BAŞVURU FORMU */
.k-apply { position: relative; overflow: hidden; padding: clamp(64px,10vh,120px) clamp(18px,5vw,72px); }
.k-apply::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(201,164,101,.16), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(30,42,71,.6), transparent 60%),
    var(--bg-2);
}
.k-apply-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.k-apply-intro h2 { font-size: clamp(28px,3.4vw,46px); font-weight: 900; line-height: 1.05; margin: 0 0 16px; }
.k-apply-intro h2 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color: transparent; }
.k-apply-intro p { color: #CFC8BB; font-size: 16px; line-height: 1.7; margin: 0 0 22px; max-width: 460px; }
.k-apply-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.k-apply-points li { display: flex; gap: 12px; align-items: center; color: #E4DDD0; font-size: 15px; }
.k-apply-points li span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,164,123,.16); border: 1px solid rgba(224,190,138,.4); color: var(--gold); flex: 0 0 auto; }

/* Form — cam efektli kart */
.k-form {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.03) 45%, rgba(70,92,150,.10));
  -webkit-backdrop-filter: blur(22px) saturate(140%); backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,.18); border-radius: 22px;
  padding: clamp(24px,3vw,38px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.22);
}
.k-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.k-field { display: flex; flex-direction: column; gap: 7px; }
.k-field.full { grid-column: 1 / -1; }
.k-field label { font-size: 12px; letter-spacing: .04em; color: var(--muted); font-weight: 600; }
.k-field label b { color: var(--gold); font-weight: 700; }
.k-field input, .k-field select, .k-field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  background: rgba(7,10,20,.4); border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 12px 14px; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.k-field textarea { resize: vertical; min-height: 96px; }
.k-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23E0BE8A' stroke-width='1.6'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.k-field input:focus, .k-field select:focus, .k-field textarea:focus {
  border-color: var(--gold); background: rgba(7,10,20,.55);
  box-shadow: 0 0 0 3px rgba(201,164,101,.18);
}
.k-field input::placeholder, .k-field textarea::placeholder { color: var(--muted-2); }
.k-form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.k-form .btn-play { border: 0; }
.k-form-note { font-size: 12px; color: var(--muted-2); }
.k-success {
  display: none; grid-column: 1 / -1;
  background: rgba(46,64,108,.3); border: 1px solid rgba(224,190,138,.4);
  border-radius: 12px; padding: 16px 18px; color: #EDE7DD; font-size: 15px;
}
.k-success.show { display: block; animation: fadeUp .5s ease; }
.k-success b { color: var(--gold); }

/* FOOTER CTA */
.k-footcta { position: relative; text-align: center; padding: clamp(70px,11vh,130px) 20px; overflow: hidden; }
.k-footcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 50% 120%, rgba(201,164,101,.18), transparent 60%), var(--bg); }
.k-footcta-in { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.k-footcta h2 { font-size: clamp(28px,4.4vw,52px); font-weight: 900; margin: 0 0 16px; line-height: 1.05; }
.k-footcta p { color: var(--muted); margin: 0 auto 28px; max-width: 520px; line-height: 1.6; }

@media (max-width: 860px) {
  .k-split, .k-apply-inner { grid-template-columns: 1fr; }
  .k-split.reverse .k-split-media { order: 0; }
  .k-step::before { display: none; }
}
@media (max-width: 560px) {
  .k-form-grid { grid-template-columns: 1fr; }
  .k-stat + .k-stat::before { display: none; }
}

/* ---------- İLETİŞİM HERO (ölçeklenmiş başlık) ---------- */
.c-hero { align-items: center; }
.c-hero .k-hero-content { padding-top: 64px; }
.c-hero .k-hero-title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.06;
  margin-bottom: 18px;
}
.c-hero .k-hero-sub {
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 560px;
  margin-bottom: 26px;
}
@media (max-width: 720px) {
  .c-hero .k-hero-content { padding-top: 48px; }
  .c-hero .k-hero-title { font-size: clamp(27px, 7vw, 40px); }
}

/* ---------- İLETİŞİM KARTLARI ---------- */
.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}
.c-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(30, 42, 71, 0.45), rgba(11, 16, 32, 0.25));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.c-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 190, 138, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.c-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224, 190, 138, 0.18), rgba(185, 139, 94, 0.08));
  border: 1px solid rgba(224, 190, 138, 0.28);
  color: var(--gold);
  margin-bottom: 18px;
}
.c-ico svg { width: 24px; height: 24px; }
.c-card h3 {
  margin: 0 0 10px;
  font-size: 18px; font-weight: 800;
  color: var(--text);
}
.c-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.c-card p strong { color: #E4DDD0; font-weight: 700; }
.c-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14.5px; font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(224, 190, 138, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.c-link:hover { color: var(--brown-soft); border-color: var(--brown-soft); }
.c-tagline {
  display: block;
  margin-top: 14px;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}
