*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --dark: #0a0a0a;
  --mid: #1a1a1a;
  --white: #f5f5f0;
  --gray: #888;
  --light-bg: #f8f7f4;
  --border: #e8e4dc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--light-bg);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .nav-logo { font-size: 0.85rem; letter-spacing: 1.5px; }
}

.nav-logo span { color: var(--gold); }

.nav-logo-img {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 0;
  padding-top: 24px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-8px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 9px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Lang Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  border: 1px solid transparent;
  padding: 4px 8px;
}

.lang-btn.active,
.lang-btn:hover { color: var(--gold); }

.lang-btn.active { border-color: rgba(201,168,76,0.4); }

.lang-sep { color: rgba(255,255,255,0.2); font-size: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  background: #0a0a0a;
}

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
  padding: 20px 0;
}

.hero-ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-card {
  flex: 0 0 130px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.15);
}

.ticker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.ticker-card:hover img { transform: scale(1.05); }

.ticker-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 8px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-ticker { height: 150px; }
  .ticker-card { flex: 0 0 100px; height: 130px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-slide.active { opacity: 1; }

/* Alt karartma — yazı okunabilsin */
.hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

/* Slide sol alt bilgi — z-index overlay'den yüksek */
.slide-info {
  position: absolute;
  bottom: 44px;
  left: 60px;
  z-index: 3;
  opacity: 0;
}

.slide-info.revealed {
  opacity: 1;
  transition: opacity 2.2s ease-in-out;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
}

.slide-year {
  font-size: 0.55em;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.slide-actor {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.slide-company {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-top: 6px;
}

.slide-extra {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-top: 4px;
}

/* Sağ alt CTA butonu */
.hero-cta-corner {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 4;
  margin-top: 0;
}

/* Desktop: mobil slider ve mobil dots gizli */
.hero-mobile { display: none !important; }
.hero-dots-mobile { display: none !important; }


/* ─── MOBİL ─── */
@media (max-width: 900px) {
  .hero {
    height: 100vh;
    padding: 0 0 100px;
  }

  /* Desktop slider gizle, mobil slider göster */
  .hero-desktop { display: none !important; }
  .hero-mobile  { display: block !important; }

  /* Mobil slide görseli — tam genişlik, üste yasla */
  .hero-mobile .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 72px;
    background-color: #0a0a0a;
  }

  /* Mobil slide bilgisi sol alt */
  .slide-info { bottom: 130px; left: 24px; }
  .slide-title { font-size: 1.8rem; }

  /* Mobil'de CTA butonunu gizle */
  .hero-cta-corner { display: none !important; }

  .hero-scroll { display: none; }
}

/* Dot göstergeleri — gizli */
.hero-dots { display: none !important; }
.hero-dot  { display: none !important; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  max-width: 400px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s;
}

.hero-cta:hover { gap: 18px; }

.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTIONS ─── */
.section { padding: 100px 60px; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark); }
.section-mid { background: var(--mid); }

.section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

.section-link {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.7; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

/* ─── ACTORS GRID (Homepage) ─── */
.actors-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

/* ─── ACTOR CARD ─── */
.actor-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}

.actor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  transform: scale(1.22);
  transform-origin: 50% 28%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(1.02) contrast(1.05) saturate(1.04);
}

.actor-card:hover img {
  transform: scale(1.3);
  filter: brightness(1.05) contrast(1.07) saturate(1.06);
}

.actor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.actor-card:hover .actor-overlay { opacity: 1; }

.actor-overlay-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.actor-card:hover .actor-overlay-name { transform: translateY(0); }

.actor-overlay-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

.actor-card:hover .actor-overlay-role { transform: translateY(0); }

.actor-overlay-meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s;
}

.actor-card:hover .actor-overlay-meta { transform: translateY(0); opacity: 1; }

.meta-item {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.meta-item span {
  color: rgba(255,255,255,0.9);
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 1px;
}

.actor-name-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  transition: opacity 0.3s;
}

.actor-card:hover .actor-name-strip { opacity: 0; }

.strip-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* ─── TRAINING CARDS ─── */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.training-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  overflow: hidden;
  background: var(--mid);
  cursor: pointer;
  text-decoration: none;
}

.training-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.training-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 2;
  transition: background 0.5s ease;
  pointer-events: none;
}

.training-card:hover::after {
  background: rgba(0,0,0,0.32);
}

.training-card-num {
  position: absolute;
  top: 40px; right: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  z-index: 3;
}

.training-card-content {
  position: relative;
  z-index: 3;
  transition: transform 0.5s ease;
}

.training-card:hover .training-card-content {
  transform: translateY(-8px);
}

.training-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.training-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.training-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 24px;
}

.training-card-link {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.training-card:hover .training-card-link { gap: 16px; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 140px 60px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-text p:first-of-type {
  font-size: 15px;
  color: #333;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.stat-card {
  background: var(--dark);
  padding: 36px 30px;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 50px;
}

.team-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── ACTORS PAGE ─── */
.page-header {
  padding: 140px 60px 60px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.page-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--dark);
}

.page-title em { font-style: italic; color: var(--gold); }

.page-count {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.tabs-wrap {
  padding: 0 60px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 20px 40px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active { color: var(--dark); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--dark); }

.grid-section { display: none; padding: 50px 60px 80px; }
.grid-section.active { display: block; }

.actors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-backdrop.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--dark);
  transition: color 0.2s;
}

.modal-close:hover { color: var(--gold); }

.modal-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 500px;
}

.modal-sidebar {
  background: var(--dark);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
}

.modal-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  margin-bottom: 24px;
}

.modal-meta-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.modal-meta-list { list-style: none; margin-bottom: 24px; }

.modal-meta-list li {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
}

.modal-meta-list li strong {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-content { padding: 40px 36px; }

.modal-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.modal-section-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.modal-exp-list { list-style: none; }

.modal-exp-list li {
  font-size: 12px;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.modal-exp-list li:last-child { border-bottom: none; }

.modal-langs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

.lang-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.modal-interests { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

.interest-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #666;
  background: var(--border);
  padding: 4px 10px;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mid);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
}

.gallery-item-year {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 4px;
}

/* ─── INSTAGRAM FEED (Smash Balloon override) ─── */
#sb_instagram,
.sbi_feedtheme,
#sbi_mod_error,
.sbi_load_btn_wrapper { background: transparent !important; }

#sb_instagram .sbi_photo_wrap { overflow: hidden; }

#sb_instagram .sbi_photo {
  transition: transform 0.5s ease, filter 0.5s ease !important;
  border-radius: 0 !important;
}

#sb_instagram .sbi_photo_wrap:hover .sbi_photo {
  transform: scale(1.06) !important;
  filter: brightness(0.7) !important;
}

#sb_instagram .sbi_photo_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
  transition: border-color 0.3s;
  z-index: 2;
}

#sb_instagram .sbi_photo_wrap:hover::after {
  border-color: rgba(201,168,76,0.7);
}

.sbi_load_btn {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.5) !important;
  color: var(--gold) !important;
  letter-spacing: 2px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.75rem !important;
  transition: border-color 0.3s, color 0.3s !important;
}

.sbi_load_btn:hover {
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-value {
  font-size: 13px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-textarea { resize: none; height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.btn-submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.6; cursor: default; }

.application-box {
  background: var(--dark);
  padding: 50px;
  margin-top: 80px;
}

.application-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.application-list li {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.application-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

.application-email {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ─── TRAINING PAGES ─── */
.training-hero {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.training-hero::before {
  content: attr(data-num);
  position: absolute;
  right: 60px;
  bottom: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
}

.training-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.curriculum-list { list-style: none; margin-top: 20px; }

.curriculum-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: #444;
  line-height: 1.5;
}

.curriculum-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.who-card {
  background: var(--dark);
  padding: 32px;
  margin-bottom: 2px;
}

.who-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.who-card-text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.compare-table th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  font-size: 11px;
  color: #555;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  vertical-align: top;
}

.cta-box {
  background: var(--dark);
  padding: 60px;
  text-align: center;
  margin-top: 80px;
}

.cta-box .section-title { color: var(--white); margin-bottom: 16px; }

.cta-box p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 40px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-gold:hover { background: var(--gold-light); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col-title {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-contact-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-contact-value {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.footer-social { display: flex; gap: 20px; }

.footer-social a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--border); }
::-webkit-scrollbar-thumb { background: var(--gold); }
.modal::-webkit-scrollbar { width: 4px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 0 24px 60px; }
  .hero-scroll { display: none; }

  .section { padding: 60px 24px; }

  .about-grid,
  .contact-grid,
  .training-content-grid { grid-template-columns: 1fr; gap: 40px; }

  .training-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .page-header { padding: 120px 24px 40px; flex-direction: column; align-items: flex-start; }
  .tabs-wrap { padding: 0 24px; overflow-x: auto; }
  .tab-btn { padding: 16px 20px 14px; white-space: nowrap; }
  .grid-section { padding: 30px 24px 60px; }
  .actors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px !important; }
  .actors-grid .actor-card { outline: 1px solid rgba(201,168,76,0.25); }

  .modal-inner { grid-template-columns: 1fr; }
  .modal-sidebar { flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
  .modal-photo { width: 120px; aspect-ratio: 3/4; margin-bottom: 0; }
  .modal-name { font-size: 2rem; }

  .application-box { padding: 30px 24px; }
  .application-list { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; }

  .about-hero,
  .training-hero { padding: 120px 24px 60px; }
}

/* ─── MOBILE SIDEBAR MENU ─── */
.nav-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.nav-mobile-open .nav-sidebar-overlay {
  display: block;
}

.nav-links {
  /* Sidebar panel */
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #111111;
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex !important;
  flex-direction: column;
  padding: 90px 28px 60px;
  gap: 0;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -4px 0 20px rgba(0,0,0,0.5);
}

.nav-mobile-open .nav-links {
  right: 0;
}

.nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-links > li > a {
  display: block;
  padding: 16px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  pointer-events: auto !important;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold) !important; }

/* Eğitim dropdown — sidebar içinde */
.nav-links .nav-dropdown-menu {
  position: static !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 0 14px 0;
  display: flex !important;
  flex-direction: column;
  gap: 0;
  min-width: unset;
  width: 100%;
}

.nav-links .nav-dropdown-menu a {
  display: block !important;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 8px 0 8px 12px;
  color: rgba(255,255,255,0.45) !important;
  pointer-events: auto !important;
  border-left: 1px solid rgba(201,168,76,0.3);
}

.nav-links .nav-dropdown-menu a:hover {
  color: var(--gold) !important;
}

/* Desktop'ta sidebar stillerini sıfırla — nav-links body'e taşınmış olsa bile doğru görünsün */
@media (min-width: 901px) {
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: 72px !important;
    background: transparent !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 36px !important;
    transition: none !important;
    overflow: visible !important;
    z-index: 1001 !important;
    list-style: none !important;
  }
  .nav-links li { border-bottom: none !important; }
  .nav-links > li > a {
    padding: 0 !important;
    font-size: 9px !important;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 3px !important;
  }
  .nav-links .nav-dropdown-menu {
    position: absolute !important;
    display: none !important;
    flex-direction: column !important;
    top: 100% !important;
    padding-top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-8px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(10,10,10,0.97) !important;
    border: 1px solid rgba(201,168,76,0.2) !important;
    padding: 8px 0 !important;
    min-width: 200px !important;
    width: auto !important;
    gap: 0 !important;
  }
  .nav-links .nav-dropdown:hover .nav-dropdown-menu {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  .nav-links .nav-dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
    color: rgba(255,255,255,0.7) !important;
    border-left: none !important;
  }
  .nav-sidebar-overlay { display: none !important; }
}

/* ─── MOBILE FIX ─── */
@media (max-width: 900px) {
  /* Hamburger görünür ve tıklanabilir */
  .nav-hamburger {
    display: flex !important;
    position: relative;
    z-index: 1002;
  }
  .nav-hamburger span {
    background: #f5f5f0 !important;
    display: block !important;
    opacity: 1 !important;
  }

  /* Lang switch mobilde küçük */
  .lang-switch { font-size: 9px; }

  /* Ana sayfa oyuncu grid → yatay kaydırma carousel */
  .actors-grid-home {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 24px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset !important;
  }
  .actors-grid-home::-webkit-scrollbar { display: none; }

  .actors-grid-home .actor-card {
    flex: 0 0 44vw;
    max-width: 180px;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Oyuncular sayfası kart yüksekliği */
  .actors-grid .actor-card { min-height: 240px; }

  /* Oyuncular grid boşluk ve çerçeve */
  .actors-grid { gap: 10px !important; }
  .actors-grid .actor-card { outline: 1px solid rgba(201,168,76,0.25); }
}
