@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --bg:        #fefdfb;
  --bg-alt:    #f8f4ed;
  --bg-dark:   #1c1916;
  --text:      #0d0b09;
  --text-mid:  #2a2318;
  --muted:     #6a5f53;
  --accent:    #5c4a32;
  --border:    #ddd5c6;
  --border-lt: #ede7dc;
  --max:       1040px;
  --content:   630px;
  --surface:   #fbf8f2;
  --shadow-sm: 0 10px 24px rgba(25, 18, 11, 0.05);
  --space-1:   0.5rem;
  --space-2:   0.9rem;
  --space-3:   1.4rem;
  --space-4:   2.2rem;
  --space-5:   3.4rem;
  --space-6:   4.8rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  background: transparent;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll; /* prevents layout shift when scrollbar appears */
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-meta-label {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   GLOBAL NAVIGATION
   ========================================================= */

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 66px;
  background: rgba(254, 253, 251, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 213, 198, 0.82);
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  gap: 1.7rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: var(--text);
  flex-shrink: 0;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a { padding: 0.35rem 0; }

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { position: relative; }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.35rem; height: 1px; background: var(--accent); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  /* Separator sadece pseudo-element ile, taşma yok */
  position: relative;
  padding-left: 1.25rem;
}

.nav-social::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: var(--border);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1;
}

.nav-social a:hover { color: var(--text); }

.nav-social a svg {
  width: 15px !important;
  height: 15px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: currentColor;
  display: block;
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1;
}

.nav-hamburger svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  right: 18px;
  left: auto;
  bottom: auto;
  width: min(260px, calc(100vw - 36px));
  max-height: min(70vh, 420px);
  z-index: 120;
  background: rgba(254, 253, 251, 0.98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 0.55rem 1rem 1rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-radius: 12px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-lt);
  transition: color 0.2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { color: var(--text); }

.nav-mobile-social {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0 0;
  margin-top: 0.5rem;
}

.nav-mobile-social a {
  display: flex;
  align-items: center;
  color: var(--muted);
  border: none !important;
  padding: 0 !important;
  font-size: 0;
  letter-spacing: 0;
  transition: color 0.2s;
}

.nav-mobile-social a:hover { color: var(--text); }

.nav-mobile-social a svg {
  width: 21px;
  height: 21px;
  min-width: 18px;
  fill: currentColor;
  display: block;
}

/* =========================================================
   GLOBAL BREAKPOINTS
   ========================================================= */

@media (max-width: 860px) {
  nav { padding: 0 1.4rem; gap: 1.2rem; }
  .nav-links { gap: 1.15rem; }
  .nav-social { padding-left: 1.2rem; gap: 0.8rem; }
}

@media (max-width: 680px) {
  .nav-links  { display: none !important; }
  /* Social icons: visible, smaller gap */
  .nav-social {
    display: flex !important;
    margin-left: auto;
    padding-left: 0;
    border-left: none;
    gap: 0.85rem;
  }
  .nav-social::before { display: none; }
  /* Lang button: visible */
  .nav-lang { display: flex !important; margin-left: 0.75rem; }
  /* Hamburger: rightmost */
  .nav-hamburger {
    display: flex !important;
    align-items: center;
    margin-left: 0.75rem;
  }
}


/* Contact sayfası büyük sosyal ikonlar */
.social-links-lg {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-mid);
  padding: 0.15rem 0;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.social-link-item:hover { color: var(--accent); }

.social-link-item .icon-wrap {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.social-link-item:hover .icon-wrap {
  border-color: var(--accent);
  background: var(--bg-alt);
}

.social-link-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ─── LAYOUT ──────────────────────────────────── */

main { padding-top: 66px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.page-intro {
  margin-top: 0.75rem;
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.mobile-only-break { display: none; }

.page-content-section {
  padding: 3.15rem 0 5.35rem;
}

.meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}


/* ─── TYPE ────────────────────────────────────── */

.label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.serif-hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.7rem, 8vw, 6.35rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.015em;
}

.serif-hero em { font-style: normal; font-weight: 300; }

.serif-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.serif-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.16;
}

.serif-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.44rem;
  font-weight: 400;
  line-height: 1.42;
  color: var(--text-mid);
}

.body-text {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-mid);
}

/* ─── SECTIONS ────────────────────────────────── */

.section {
  padding: 4.9rem 0;
  border-bottom: 1px solid var(--border);
}

.page-hero {
  padding: 4.45rem 0 3.55rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.58) 0%, rgba(254, 253, 251, 0) 100%);
}

/* ─── HERO ────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 5.2rem;
  align-items: stretch;
  padding: 5.1rem 0 0;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding-bottom: 4.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--content);
}

.hero-content .role-tag {
  display: inline-block;
  font-size: 0.69rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-bio { margin-top: 1.15rem; max-width: 36rem; }
.hero-bio .body-text { max-width: 34rem; }
.home-hero-name { font-size: clamp(4.5rem, 8.8vw, 7.1rem); }

.hero-divider {
  width: 42px;
  height: 1px;
  background: var(--border);
  margin: 2.15rem 0 1.65rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding-top: 0.1rem;
}

.hero-meta-item {
  font-size: 0.67rem;
  color: var(--muted);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-meta-item span {
  display: block;
  color: var(--text-mid);
  margin-left: 0;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.56;
  letter-spacing: 0;
  text-transform: none;
}

.hero-img {
  overflow: hidden;
  align-self: stretch;
  padding-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.hero-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 950 / 1189;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  box-shadow: var(--shadow-sm);
}

/* ─── HIGHLIGHTS ──────────────────────────────── */

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  margin-top: 2rem;
  border-top: none;
  border-bottom: none;
}

.hl-item {
  padding: 1.2rem 2rem 1.15rem;
  border-right: 1px solid var(--border);
  border-top: none;
  border-bottom: none;
}
.hl-item:last-child { border-right: none; }
.highlights-centered .hl-item { text-align: center; }
.highlights-centered .hl-item::before,
.hl-item::before { content: none; }

.hl-year {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.hl-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.62; }
.hl-sub .hl-role {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.hl-sub .hl-channels {
  display: block;
  color: var(--muted);
}


/* ─── THEATRE HOME ────────────────────────────── */

.theatre-home-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.65rem;
}

.theatre-home-head .label { margin-bottom: 0.55rem; }

.theatre-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "primary secondary" "caption .";
  column-gap: 1rem;
  row-gap: 0.55rem;
}

.theatre-home-item {
  overflow: visible;
  background: var(--surface);
}
.theatre-home-item.is-primary { grid-area: primary; }
.theatre-home-item.is-secondary { grid-area: secondary; }

.theatre-home-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9);
  box-shadow: var(--shadow-sm);
}

.theatre-home-item.is-primary img {
  aspect-ratio: 4 / 3;
  object-position: center 44%;
}

.theatre-home-item.is-secondary img {
  aspect-ratio: 4 / 3;
  object-position: center 28%;
}

.theatre-home-caption {
  display: block;
  grid-area: caption;
  margin-top: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: left;
}

/* ─── GALLERY ─────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2rem;
}

.gallery a { display: block; overflow: hidden; background: var(--surface); box-shadow: 0 0 0 1px rgba(221,213,198,0.42) inset; }

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.4s, transform 0.5s;
}

.gallery a:hover img { filter: saturate(1); transform: scale(1.04); }

.gallery-page .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-page .gallery img {
  aspect-ratio: 3 / 4;
}

/* ─── VOICE SECTION ───────────────────────────── */

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 4.9rem;
  align-items: start;
}

.voice-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.82);
  box-shadow: var(--shadow-sm);
}

.db-logo {
  margin-top: 2rem;
  max-width: 110px;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.link-arrow:hover { opacity: 0.55; }

/* ─── TABS ────────────────────────────────────── */

.tabs-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
  padding-bottom: 0.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  padding: 0.7rem 0.1rem 0.95rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--text); border-bottom-color: var(--accent); }
.tabs-nav::after { content: ''; flex: 1 0 2rem; border-bottom: 1px solid transparent; }
.tab-btn[aria-selected="true"] { color: var(--text); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelFade 0.35s ease; }

@keyframes panelFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── CV ──────────────────────────────────────── */

.cv-section { margin-bottom: 2.7rem; }

.cv-section-title {
  font-size: 0.69rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-lt);
}

.cv-entry {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0 1.4rem;
  margin-bottom: 1.45rem;
  font-size: 0.88rem;
}

.cv-year {
  color: var(--muted);
  font-size: 0.78rem;
  padding-top: 0.22rem;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.cv-desc {
  color: var(--text-mid);
  line-height: 1.42;
  font-size: 0.98rem;
}

.cv-desc strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 1.01rem;
  margin-bottom: 0;
}

.cv-desc em {
  display: block;
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
  margin-top: 0.14rem;
}

.cv-subline {
  display: block;
  line-height: 1.3;
  margin-top: 0.12rem;
}

.cv-note {
  display: block;
  line-height: 1.28;
  margin-top: 0.12rem;
}

/* ─── VISUAL BREAK (Hakkında içi görsel bantlar) ─ */

.visual-break {
  margin: 3rem 0;
  display: grid;
  gap: 12px;
}

.visual-break.col-2       { grid-template-columns: 1fr 1fr; }
.visual-break.col-3       { grid-template-columns: 2fr 1fr 1fr; }
.visual-break.col-wide    { grid-template-columns: 1fr 1.4fr; }
.visual-break.col-poster  { grid-template-columns: 1fr 1fr 1fr; }

.visual-break .vb-item { overflow: hidden; }

.visual-break img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.97);
  transition: filter 0.4s;
}

.visual-break img:hover { filter: saturate(1); }

.visual-break img.ratio-tall    { aspect-ratio: 3 / 4; }
.visual-break img.ratio-wide    { aspect-ratio: 16 / 9; }
.visual-break img.ratio-square  { aspect-ratio: 1; }
.visual-break img.ratio-medium  { aspect-ratio: 4 / 3; }
.visual-break img.ratio-poster  { aspect-ratio: 2 / 3; }

.vb-caption {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.45rem;
  padding: 0 0.1rem;
}

/* ─── STAT ROW ────────────────────────────────── */

.stat-row {
  display: flex;
  gap: 2.4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item p:first-child {
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-item p:last-child { font-size: 1.0rem; color: var(--text-mid); }

/* ─── VIDEO GRID ──────────────────────────────── */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.7rem;
  background: transparent;
  margin-top: 0.4rem;
}

.video-item { background: transparent; overflow: visible; border: none; }

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  box-shadow: var(--shadow-sm);
}

.video-caption {
  padding: 0.95rem 1.05rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ─── CONTACT ─────────────────────────────────── */

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.1rem;
  transition: opacity 0.2s;
  display: inline-block;
}

.contact-email:hover { opacity: 0.55; }


.contact-section {
  padding: 5rem 0 5.7rem;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.42) 0%, rgba(254, 253, 251, 0) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 4.9rem;
  align-items: start;
}

.contact-title {
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  line-height: 1.04;
  margin-bottom: 2.2rem;
}

.contact-block {
  max-width: 26rem;
  margin-bottom: 2.2rem;
}

.contact-block + .contact-block {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.contact-note {
  margin-top: 0.75rem;
  max-width: 23rem;
}

.contact-agency-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.contact-page-links .label,
.contact-page-info .label {
  margin-bottom: 0.95rem;
}

/* ─── TAB İÇİ İKİ SÜTUN ──────────────────────── */

.tab-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}

.tab-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 84px;
}

.tab-images .vb-item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.tab-images .vb-item img.ratio-poster  { aspect-ratio: 2 / 3; }
.tab-images .vb-item img.ratio-wide    { aspect-ratio: 16 / 9; }
.tab-images .vb-item img.ratio-medium  { aspect-ratio: 4 / 3; }

/* ─── PAGE HERO EĞİTİM (Hakkında üst) ────────── */

.hero-bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 340px;
  gap: 4rem;
  align-items: start;
  margin-top: 2.35rem;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 34.5rem;
}

.edu-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(221, 213, 198, 0.52);
}

.edu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.edu-item p:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.24rem;
}

.edu-item p:last-child {
  font-size: 0.99rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.edu-item.is-meta {
  margin-top: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-lt);
}

.languages-line {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.page-hero-img-mobile { display: none; }

.page-hero-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 35% top;
  filter: saturate(0.9);
  box-shadow: var(--shadow-sm);
}

/* ─── BÖLÜM DÜZEYİ LAYOUT (sekme içi her bölüm için) ─ */

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3.45rem;
  align-items: start;
  margin-bottom: 4.6rem;
}

.section-layout:last-child { margin-bottom: 0; }

.section-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-images.top,
.section-images.stretch {
  position: sticky;
  top: 94px;
}

/* stretch — görseller bölüm yüksekliğini doldurur */
.section-images.stretch img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.85);
}

/* start — görsel üstten hizalı, taşabilir */
.section-images.top {
  align-self: start;
}

.section-images.top img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.section-images.top img.ratio-poster { aspect-ratio: 2 / 3; }
.section-images.top img.ratio-wide   { aspect-ratio: 16 / 9; }
.section-images.top img.ratio-medium { aspect-ratio: 4 / 3; }
.section-images.top img.ratio-square { aspect-ratio: 1; }

/* section-layout single-col handled in main 780px block */


.db-logo-lg {
  max-width: 180px;
  display: block;
}

/* ─── MOBILE LAYOUT (780px) ───────────────────── */

@media (max-width: 780px) {
  .wrap { padding: 0 1.25rem; }
  .page-content-section { padding: 2.6rem 0 4.3rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 3.35rem 0 2.7rem; gap: 1.95rem; }
  .hero-img {
    display: block;
    width: 100%;
    max-height: 68vw;
    overflow: hidden;
    order: 2;
    padding-bottom: 0;
  }
  .hero-img img {
    width: 100%;
    height: 65vw;
    object-fit: cover;
    object-position: center 15%;
  }
  .hero-content { order: 1; }
  .hero-content { padding-bottom: 0; }

  /* Öne çıkan */
  .highlights { grid-template-columns: 1fr; }

  /* Galeri */
  .gallery { grid-template-columns: repeat(2, 1fr); }

  /* Seslendirme */
  .voice-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Video */
  .video-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Hakkında hero */
  .hero-bio-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 1.35rem;
  }
  /* Portrait shows on mobile below subtitle, hidden from desktop grid position */
  .page-hero-img { display: none; }
  .page-hero-img-mobile {
    display: block;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
  }
  .page-hero-img-mobile img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 35% top;
    filter: saturate(0.9);
  }

  /* Stat row */
  .stat-row { gap: 1.2rem; flex-wrap: wrap; }
  .stat-row .stat-item { min-width: 40%; }

  /* Tabs nav scroll */
  .tabs-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.15rem 0.6rem;
    margin-bottom: 2rem;
  }
  .tab-btn {
    padding: 0.68rem 0.2rem 0.72rem;
    font-size: 0.66rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Tab & section layouts: tek sütun */
  .tab-layout { grid-template-columns: 1fr; }
  .section-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
  }
  .section-layout > div:first-child .cv-section { margin-bottom: 0.9rem; }
  .show-mobile-only { margin-top: 0 !important; }
  .section-layout:last-child { margin-bottom: 0; }
  .tab-images { position: static; flex-direction: row; flex-wrap: wrap; }
  .tab-images .vb-item { flex: 1 1 45%; min-width: 160px; }
  .section-images { flex-direction: row; flex-wrap: wrap; }
  .section-images img { flex: 1 1 45%; min-width: 140px; height: 180px; }
  /* visible section-images: tighter top margin */
  .section-images.crop-bottom { margin-top: 0.25rem; }
  .tab-images-captioned { margin-top: 0.25rem; }

  /* CV */
  .cv-entry { grid-template-columns: 66px 1fr; gap: 0 1.15rem; }

  /* Visual breaks */
  .visual-break.col-2,
  .visual-break.col-3,
  .visual-break.col-wide,
  .visual-break.col-poster { grid-template-columns: 1fr; }

  /* İletişim */
  section > .wrap > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column;
    gap: 3rem;
  }

  /* Hero serif */
  .serif-hero { font-size: clamp(2.6rem, 10vw, 4rem); }
}

/* ─── SMALL MOBILE (480px) ───────────────────── */

@media (max-width: 480px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: 1fr; }
  .tab-images .vb-item { flex: 1 1 100%; }
  .section-images img { flex: 1 1 100%; }
  .cv-entry { grid-template-columns: 1fr; gap: 0.2rem 0; }
  .cv-year { font-size: 0.7rem; }
  .stat-row .stat-item { min-width: 100%; }
  .hl-item { padding: 1.4rem 1.2rem; }
  .theatre-home-caption { margin-top: 0.55rem; }
}


/* ─── LIGHTBOX ───────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(14, 12, 10, 0.93);
  align-items: center;
  justify-content: center;
  cursor: default;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  cursor: auto;
  user-select: auto;
  -webkit-user-select: auto;
  -webkit-touch-callout: default;
  pointer-events: auto;
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.2rem;
  z-index: 510;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-download {
  position: fixed;
  top: 1rem;
  left: 1.2rem;
  z-index: 510;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-download:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 510;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 0.8rem; }
.lightbox-next { right: 0.8rem; }


@media (max-width: 600px) {
  .gallery-page .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .lightbox-prev { left: 0.4rem; width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-next { right: 0.4rem; width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-close { top: 0.5rem; right: 0.5rem; width: 34px; height: 34px; }
  .lightbox-download { top: 0.5rem; left: 0.5rem; height: 34px; padding: 0 0.8rem; font-size: 0.64rem; }
  .lightbox-overlay img { max-width: 86vw; }
}

.nav-lang a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-lt);
  padding: 0.28rem 0.58rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  background: rgba(255,255,255,0.45);
}
.nav-lang a:hover { color: var(--text); border-color: var(--text-mid); background: rgba(248, 244, 237, 0.9); }


/* ─── SEKME GÖRSEL OVERRIDEleri ──────────────────── */

/* Tiyatro & TV/Film: mobile'da gizle */
.section-images.hide-mobile { display: flex; }

/* Seslendirme: sadece alttan cropla — yüz üstte kalır */
.section-images.crop-bottom img { object-position: 50% 20% !important; }

/* Grotowsky görselleri arası boşluk */
.section-images.gap-md { gap: 16px; }

/* Yurtdışı caption responsive */
.tab-images-captioned { display: flex; flex-direction: column; }
.tab-images-captioned .vb-caption { margin-top: 0.45rem; }

/* Edu image col — desktop: flex column, JS controls heights */
#edu-img-col { display: flex; flex-direction: column; }
#edu-spacer  { flex-shrink: 0; }
#edu-img-wrap { overflow: hidden; }
#edu-img { width: 100%; display: block; }

@media (max-width: 780px) {
  /* Tiyatro & TV/Film: gizle */
  .section-images.hide-mobile { display: none !important; }

  /* Eğitim görseli mobile: sağ taraf görünür (beyaz giyimli kadın sağda) */
  #edu-spacer  { display: none !important; }
  #edu-img-col { flex-direction: column !important; }
  #edu-img-wrap { height: 200px !important; overflow: hidden !important; }
  #edu-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: 80% center !important;
    margin-top: 0 !important;
  }

  /* Seslendirme mobile: yüz üstte kalır */
  .section-images.crop-bottom { display: flex !important; flex-direction: column; }
  .section-images.crop-bottom img {
    flex: none !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: 50% 34% !important;
  }

  /* Grotowsky caption stays below image */
  .tab-images-captioned { display: flex; flex-direction: column; }
}



/* Visual tuning — about/hakkinda images */
.theatre-image-stack { gap: 10px !important; }
.prod-radyo-img {
  width: 88% !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: auto;
  object-fit: contain;
}
.prod-mufettis-img {
  width: 92% !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: auto;
  object-fit: cover;
}
.tv-still {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--bg);
}
.tv-still-second { margin-top: 3px; }

/* ─── EĞİTİM SEKMESİ GRID ────────────────────── */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-template-rows: auto auto;
  gap: 0 3.5rem;
}
.edu-workshops { grid-column: 1; grid-row: 1; margin-bottom: 2rem; }
.edu-teaching  { grid-column: 1; grid-row: 2; }
.edu-right-top { grid-column: 2; grid-row: 1; }
.edu-right-img {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: start;
}
.edu-right-img .edu-img-inner {
  overflow: hidden;
  margin-top: -5%;
  /* no margin-bottom — caption sits naturally below image */
}
.edu-right-img img {
  width: 100%;
  height: auto;
  display: block;
}
.edu-right-img .vb-caption {
  margin-top: 0.45rem;
  display: block;
}

@media (max-width: 780px) {
  .edu-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .edu-workshops { grid-column: 1; grid-row: 1; }
  .edu-teaching  { grid-column: 1; grid-row: 2; }
  .edu-right-top { display: none !important; }
  .edu-right-img {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin-top: 0.35rem;
    align-self: start;
  }
  .edu-right-img .edu-img-inner {
    margin-top: 0;
    overflow: visible;
  }
  .edu-right-img .vb-caption {
    display: block !important;
    visibility: visible !important;
    margin-top: 0.45rem;
  }
}


/* ─── MOBILE-ONLY IMAGES ─────────────────────── */
.show-mobile-only { display: none; }
@media (max-width: 780px) {
  .show-mobile-only { display: block; }
  .show-mobile-only.cihangir-mobile-poster {
    margin-top: -1.1rem !important;
  }

  /* Bring these two lagging blocks up to the same visual rhythm as the others */
  #tab-theatre .show-mobile-only.cihangir-mobile-poster,
  #tab-tiyatro .show-mobile-only.cihangir-mobile-poster {
    margin-top: -1.1rem !important;
    width: 92%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #tab-education .edu-right-img,
  #tab-egitim .edu-right-img {
    margin-top: 0.2rem !important;
  }
  #tab-theatre .show-mobile-only .vb-caption,
  #tab-tiyatro .show-mobile-only .vb-caption {
    display: block;
    width: 92%;
    margin: 0.38rem auto 0;
    padding: 0;
    box-sizing: border-box;
  }

  

  #tab-theatre .show-mobile-only.mufettis-mobile-poster,
  #tab-tiyatro .show-mobile-only.mufettis-mobile-poster {
    width: 92%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #tab-theatre .show-mobile-only.mufettis-mobile-poster .vb-caption,
  #tab-tiyatro .show-mobile-only.mufettis-mobile-poster .vb-caption {
    width: 100%;
    margin-top: 0.38rem;
    text-align: center;
  }

#tab-theatre .show-mobile-only.cihangir-mobile-poster .vb-caption,
  #tab-tiyatro .show-mobile-only.cihangir-mobile-poster .vb-caption {
    width: 100%;
    margin-top: 0.38rem;
    text-align: center;
  }


  #tab-education .edu-teaching .cv-section,
  #tab-egitim .edu-teaching .cv-section {
    margin-bottom: 0.8rem !important;
  }
}


/* Accessibility and shared interaction states */
.tab-panel[hidden] {
  display: none !important;
}

.tab-btn:focus-visible,
.nav-hamburger:focus-visible,
.nav-lang a:focus-visible,
.nav-mobile-menu a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 780px) {
  .contact-section { padding: 4rem 0 4.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-title { margin-bottom: 2.2rem; line-height: 1.12; }
  .contact-block { max-width: none; margin-bottom: 2rem; }
  .contact-block + .contact-block { padding-top: 1.75rem; }
}

@media (max-width: 768px) {
  .theatre-home-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "primary" "caption" "secondary";
    row-gap: 0.5rem;
  }
}


/* TV still captions tighter */
.section-images.hide-mobile .tv-still + .vb-caption,
.section-images.top.hide-mobile .tv-still + .vb-caption,
.section-images.stretch.hide-mobile .tv-still + .vb-caption {
  margin-top: 0.06rem;
  line-height: 1.15;
}

/* Compact posters in TV/Film tab */
.poster-compact {
  width: 92% !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.poster-felsefe {
  width: 90% !important;
}
.poster-romantik {
  width: 90% !important;
}

.cv-subline em { font-style: italic; }
