/* ------------------------------------------------------------------
   Fonts
   "Comma Sans" font dosyalarını assets/fonts/ içine at:
   commasans.woff2  ve/veya  commasans.woff
------------------------------------------------------------------ */
@font-face {
  font-family: "Comma Sans";
  src: url("../fonts/commasans.woff2") format("woff2"),
       url("../fonts/commasans.woff")  format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------
   Reset / base
------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;   /* yatay kaymayı engelle */
  max-width: 100%;
}

/* aynı ton ailesinde organik "mesh" derinlik — yumuşak ışık ve gölge lekeleri */
html {
  background-color: #e4e8ed;
  background-image:
    radial-gradient(56% 46% at 16% 10%, #fafbfd 0%, rgba(228, 232, 237, 0) 60%),   /* beyaza yakın ışık */
    radial-gradient(50% 42% at 90% 14%, #f1f4f8 0%, rgba(228, 232, 237, 0) 56%),
    radial-gradient(62% 56% at 86% 98%, #cfd6e1 0%, rgba(228, 232, 237, 0) 60%),    /* derin gölge */
    radial-gradient(56% 50% at 6% 94%, #d5dbe4 0%, rgba(228, 232, 237, 0) 58%),
    radial-gradient(72% 62% at 50% 46%, #eef2f7 0%, rgba(228, 232, 237, 0) 72%),
    linear-gradient(180deg, #f3f5f9 0%, #e8ecf1 40%, #e2e6ec 72%, #dbe0e8 100%);    /* beyaz → renk: belli belirsiz dikey derinlik */
  background-attachment: fixed;
  min-height: 100%;
}

body {
  font-family: "Comma Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: transparent;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

/* çok hafif film greni — dokusal derinlik (rengi değiştirmez) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* çok hafif kenar vinyeti — derinlik (aynı ton ailesi) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(135% 115% at 50% 42%,
    rgba(255, 255, 255, 0) 52%,
    rgba(66, 78, 96, 0.08) 100%);
}

/* ana sayfada logo hero'dayken gizli (hero zaten AYCENOVIC gösteriyor),
   hero'yu geçince header'da belirir → pişti olmaz */
.home .site-header .brand-logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.home .site-header.is-past-hero .brand-logo {
  opacity: 1;
  visibility: visible;
}

/* tüm öğeler gövde fontunu (Comma Sans) kullansın */
button, input, textarea, select,
h1, h2, h3, h4, h5, h6,
blockquote, cite, a, p, span, label {
  font-family: inherit;
}

/* ------------------------------------------------------------------
   Scroll-reveal (site geneli akıcı beliriş)
------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------------
   Header / Navigation
------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1),
              background 0.4s ease, padding 0.4s ease;
}

/* aşağı kaydırınca: çok hafif zemin + incelme */
.site-header.is-scrolled {
  background: rgba(228, 232, 237, 0.7);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  padding-top: clamp(0.65rem, 1.4vw, 1rem);
  padding-bottom: clamp(0.65rem, 1.4vw, 1rem);
}

/* aşağı kaydırırken zarifçe gizlen */
.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header a {
  pointer-events: auto;
  color: #1a1a1a;
  text-decoration: none;
}

.site-header__brand {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* logo bloğu (üç nokta + isim + alt başlık) — header & footer ortak */
.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #1a1a1a;
  pointer-events: auto;
}

.brand-logo__dots {
  display: flex;
  gap: 0.32rem;
}

.brand-logo__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4202a;
}

.brand-logo__name {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
}

.brand-logo__studio {
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* menüyü başlıkta yatayda + dikeyde ortala (logo solda kalır) */
.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-nav__list {
  list-style: none;
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  margin: 0;
  padding: 0;
}

.main-nav__list a {
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.main-nav__list a:hover,
.main-nav__list .current-menu-item a {
  opacity: 1;
}

/* menü altı (Instagram + dil) yalnız mobil overlay'de görünür */
.main-nav__footer { display: none; }
.main-nav__ig {
  color: #1a1a1a;
  opacity: 0.7;
  pointer-events: auto;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.main-nav__ig:hover { opacity: 1; }

/* dil geçişi (EN / TR) — minimal, site vibe'ına uygun */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-switch__item {
  pointer-events: auto;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.4;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lang-switch__item:hover { opacity: 0.75; }
.lang-switch__item.is-active {
  opacity: 1;
  border-bottom-color: #d4202a;
}
.lang-switch__sep {
  font-size: 0.7rem;
  opacity: 0.25;
}

/* TranslatePress'in varsayılan yüzen dil kartını gizle (ayar + CSS yedeği) */
.trp-floating-switcher,
.trp-language-switcher.trp-floating-switcher,
#trp-floater-language,
.trp_floater_language_selector,
#trp-floater-ls-container {
  display: none !important;
}

/* menü ikonu — ince kırmızı hamburger çizgileri (açıkken kırmızı ×); yalnız mobilde */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 110;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #d4202a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .nav-toggle { display: flex; order: 3; }
  .lang-switch { order: 2; margin-left: auto; }   /* EN/TR + menü ikonu sağ kenarda */

  /* menü: tüm sayfayı kaplayan tam ekran overlay */
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(5.5rem, 18vw, 7rem) 2rem clamp(2.5rem, 9vw, 3.5rem);
    background: rgba(228, 232, 237, 0.98);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
    pointer-events: auto;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 2.1rem);
  }
  .main-nav__list a {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    letter-spacing: 0.2em;
    opacity: 0.9;
  }

  /* menü altı: Instagram + EN/TR */
  .main-nav__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(2.5rem, 9vw, 3.5rem);
  }
  .main-nav__footer .lang-switch { justify-content: center; }
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  width: 100%;
}

/* kaydırma göstergesi — ince kırmızı çizgi (içinde aşağı akan segment) + ok */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4.5vh, 3rem);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: clamp(2.75rem, 7vh, 4.25rem);
  background: rgba(212, 32, 42, 0.22);   /* soluk kırmızı ray */
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 45%;
  background: #d4202a;
  animation: heroScrollLine 1.9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
@keyframes heroScrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

.hero__scroll-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid #d4202a;
  border-bottom: 1px solid #d4202a;
  transform: rotate(45deg);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line::after { animation: none; }
}

.hero__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title,
.hero__studio {
  max-width: 100%;
}

.hero__dots {
  display: flex;
  /* scroll ile açılan nokta aralığı (JS --dots-gap) */
  gap: var(--dots-gap, 1.4rem);
  margin-bottom: clamp(1.75rem, 4vw, 3.25rem);
  will-change: gap;
}

.hero__dots span {
  width: clamp(24px, 2.7vw, 34px);
  height: clamp(24px, 2.7vw, 34px);
  border-radius: 50%;
  background: #d4202a;
}

.hero__title {
  font-family: "Comma Sans", system-ui, sans-serif;
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.5rem, 6vw, 5.5rem);
  line-height: 1;
  opacity: 0.5;
  /* scroll ile açılan harf aralığı (JS --hero-spacing) */
  letter-spacing: var(--hero-spacing, 0.6em);
  text-indent: var(--hero-spacing, 0.6em);
  text-transform: uppercase;
  will-change: letter-spacing;
}

.hero__studio {
  margin-top: clamp(0.8rem, 2vw, 1.5rem);
  font-weight: 300;
  font-size: clamp(0.78rem, 1.5vw, 1.2rem);
  /* scroll ile açılan harf aralığı (JS --studio-spacing) */
  letter-spacing: var(--studio-spacing, 0.55em);
  text-indent: var(--studio-spacing, 0.55em);
  text-transform: uppercase;
  opacity: 0.45;
  will-change: letter-spacing;
}

@media (max-width: 680px) {
  .hero__scatter { display: none; }  /* mobilde sade: sadece merkez yazı */
}
@media (max-width: 480px) {
  .hero { padding: 1.25rem; }   /* dar ekranda başlık taşmasın */
}

/* ------------------------------------------------------------------
   About — split: solda daire içinde küçük portre, sağda havadar metin
------------------------------------------------------------------ */
.about {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9.5rem) 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__photo-wrap {
  margin: 0;
}

/* küçük, daire içinde portre */
.about__photo {
  width: clamp(8rem, 14vw, 11rem);
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.about__body {
  max-width: 40rem;
}

/* kırmızı aksan çizgisi + ince başlık (sola yaslı) */
.about__label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.about__label::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: #d4202a;
  opacity: 0.85;
}

/* ince, ferah; geniş kolon → uzun-dar paragraf hissi yok */
.about__text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.95;
  letter-spacing: 0.005em;
  text-align: left;
  color: #2c2c2c;
}

.about__sign {
  display: block;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.5;
}

@media (max-width: 680px) {
  .about {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 6vw, 2.5rem);
    justify-items: center;
    text-align: center;
  }
  .about__label { justify-content: center; }
  .about__text { text-align: center; }
  .about__sign { text-align: center; }
}

/* ------------------------------------------------------------------
   Inner pages (Works / Exhibitions / Contact / default)
------------------------------------------------------------------ */
.page-wrap {
  max-width: 70rem;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 12rem) 2rem clamp(5rem, 10vw, 8rem);
}

.page-head {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.page-head__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.page-head__sub {
  margin: 1rem 0 0;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* Works — gerçek ölçülere göre orantılı "duvar" düzeni */
.works-wall {
  /* 1 cm = bu kadar px (responsive). En büyük eser ~172cm. */
  --cm-unit: clamp(2px, 0.55vw, 4.6px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;          /* duvarda göz hizası gibi ortala */
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  padding: 1rem 0 2rem;
}

.work-card {
  /* genişlik gerçek cm ile orantılı → tablolar birbirine ölçekli */
  width: calc(var(--w, 50) * var(--cm-unit));
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-card__frame {
  display: block;
  width: 100%;
  aspect-ratio: var(--w, 50) / var(--h, 50);  /* gerçek en-boy oranı */
}

.work-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* tüm tablo görünür, kırpılmaz */
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));  /* duvara asılı hissi */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.work-card:hover .work-card__frame img {
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.24));
  transform: translateY(-3px);
}

.work-card__label {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-card__label {
  opacity: 1;
}
/* dokunmatik: hover yok → etiket hep görünür */
@media (hover: none) {
  .work-card__label { opacity: 0.7; }
}

.work-card__label .t {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.work-card__label .d {
  display: block;
  font-size: 0.62rem;
  opacity: 0.5;
  margin-top: 0.2rem;
}

.works-empty {
  width: 100%;
  text-align: center;
  opacity: 0.5;
  font-weight: 300;
}

/* Exhibitions list */
.exh-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 46rem;
}

.exh-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  font-weight: 300;
}

.exh-list li:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.exh-list .exh-year {
  flex: 0 0 4rem;
  opacity: 0.5;
}

/* Contact */
.contact-block {
  text-align: center;
  font-weight: 300;
  line-height: 2.2;
}

.contact-block a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  padding-bottom: 2px;
}

.contact-block .contact-email {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.06em;
}

/* Default page / single work content */
.entry-content {
  max-width: 44rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

.single-work__media {
  max-width: 52rem;
  margin: 0 auto 3rem;
}

.single-work__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.site-footer {
  margin-top: clamp(4rem, 10vw, 9rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  font-weight: 300;
}

.site-footer__inner {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer a {
  color: #1a1a1a;
  text-decoration: none;
}

.site-footer__brand {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* footer'da logo bloğu: noktalar isimle hizalı kalsın diye içeride ortalı,
   blok ise sütunun soluna yaslı */
.site-footer__brand-col {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

/* footer logosu header'dakinden daha büyük */
.site-footer__brand-col .brand-logo {
  gap: 0.5rem;
}
.site-footer__brand-col .brand-logo__dots {
  gap: 0.45rem;
}
.site-footer__brand-col .brand-logo__dots span {
  width: 9px;
  height: 9px;
}
.site-footer__brand-col .brand-logo__name {
  font-size: 1.15rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}
.site-footer__brand-col .brand-logo__studio {
  font-size: 0.72rem;
}

.site-footer__tagline {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  opacity: 0.55;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__nav a,
.site-footer__social a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__social a:hover {
  opacity: 1;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.ig-icon {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;          /* logo ortalı */
  }
  /* menü ve iletişim sola yaslı (logo ortada kalır) */
  .site-footer__nav,
  .site-footer__contact {
    align-self: flex-start;
  }
}

/* ------------------------------------------------------------------
   Footer legal links
------------------------------------------------------------------ */
.site-footer__bottom {
  max-width: 70rem;
  margin: clamp(2.75rem, 5vw, 4.5rem) auto 0;
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  text-align: center;
}

.site-footer__legal {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 2;
}

.site-footer__legal a {
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.site-footer__legal a:hover {
  opacity: 1;
}

/* ince ayraç (·) linkler arasında */
.site-footer__legal a:not(:last-child) {
  margin-right: 1.1rem;
}

.site-footer__legal a:not(:last-child)::after {
  content: "·";
  margin-left: 1.1rem;
  opacity: 0.35;
}

.site-footer__copy {
  margin: 1.1rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.32;
}

.site-footer__copy .dot {
  margin: 0 0.5rem;
}

@media (max-width: 480px) {
  .site-footer__legal a:not(:last-child)::after {
    display: none;
  }
  .site-footer__legal a {
    display: inline-block;
    margin: 0.2rem 0.6rem;
  }
}

/* ------------------------------------------------------------------
   Cookie consent banner
------------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 200;
  max-width: 38rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.78rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #1a1a1a;
  text-decoration: underline;
}

.cookie-banner__en {
  display: block;
  opacity: 0.5;
  margin-top: 0.35rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(26, 26, 26, 0.25);
  background: transparent;
  color: #1a1a1a;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn--accept {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.cookie-banner__btn--reject:hover {
  background: rgba(26, 26, 26, 0.06);
}

.cookie-banner__btn--accept:hover {
  background: #000000;
}

/* ------------------------------------------------------------------
   Contact form (about altı)
------------------------------------------------------------------ */
.contact-form-section {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding: 0 2rem;
}

.contact-form-wrap {
  width: 100%;
  max-width: 38rem;
}

.form-label {
  display: block;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 2rem;
}

.form-notice {
  font-weight: 300;
  font-size: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.form-notice--ok {
  background: rgba(40, 120, 60, 0.1);
  border: 1px solid rgba(40, 120, 60, 0.3);
}

.form-notice--err {
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.3);
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-form__row input {
  flex: 1 1 14rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-weight: 300;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  border-radius: 0;
  transition: border-color 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #1a1a1a;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-form__consent input {
  margin-top: 0.2rem;
  accent-color: #d4202a;
  flex-shrink: 0;
}

.contact-form__consent a {
  color: #1a1a1a;
}

.contact-form__submit {
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2.6rem;
  border: 1px solid #d4202a;     /* site kırmızı aksanı */
  background: transparent;
  color: #d4202a;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-form__submit:hover {
  background: #d4202a;
  color: #fff;
}

/* ------------------------------------------------------------------
   Contact page — editorial two-column
------------------------------------------------------------------ */
.contact-layout {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info__label {
  font-weight: 300;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
}

.contact-info__item > a,
.contact-info__item > span:not(.contact-info__label) {
  font-weight: 300;
  font-size: 1.0625rem;
  color: #1a1a1a;
  text-decoration: none;
}

.contact-info__item > a {
  width: fit-content;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.contact-info__item > a:hover {
  border-bottom-color: #1a1a1a;
}

.contact-info__note {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* formu kolon içinde tam genişlikte hizala */
.contact-form-col .contact-form-wrap {
  max-width: none;
}

@media (max-width: 720px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ------------------------------------------------------------------
   Ana sayfa bölümleri
------------------------------------------------------------------ */
.home-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 2rem;
}

.section-label {
  display: block;
  text-align: center;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
/* tutarlı kırmızı aksan — her section başlığının üstünde küçük çizgi */
.section-label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #d4202a;
  opacity: 0.85;
  margin: 0 auto clamp(1rem, 2.2vw, 1.5rem);
}

/* Seçili Eserler — aynı yükseklikte, oranlı şerit */
.selected__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.strip-item img {
  height: clamp(8rem, 15vw, 14rem);
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.strip-item:hover img {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.24));
}

.more-link {
  display: block;
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.more-link:hover { opacity: 1; }

/* Seriler */
.series__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;            /* eserler ortak tabana otursun */
  gap: clamp(3rem, 9vw, 7rem);      /* kartlar arası ferah boşluk */
  --u: clamp(2.8px, 0.78vw, 6px);   /* 1cm = bu kadar px → gerçek oran/boyut */
}

.series-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: calc(var(--w, 80) * var(--u));   /* gerçek genişlik oranı */
  max-width: 100%;
}

.series-card__media {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.series-card__media img {
  width: 100%;
  height: auto;                    /* kendi en-boy oranı, kırpma yok */
  display: block;
  transition: transform 0.6s ease;
}

.series-card:hover .series-card__media img { transform: scale(1.04); }

.series-card__title {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.12em;
}

/* Söz / Alıntı */
.home-section.quote {
  text-align: center;
  max-width: 54rem;
}

.big-quote {
  position: relative;
  margin: 0;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  line-height: 1.7;
  color: #1a1a1a;
}
/* büyük, soluk kırmızı dekoratif tırnak */
.big-quote::before {
  content: "\201C";
  display: block;
  font-style: normal;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.55;
  color: #d4202a;
  opacity: 0.16;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.big-quote__cite {
  display: block;
  margin-top: 1.75rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
}
.big-quote__cite::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background: #d4202a;
  opacity: 0.7;
  margin: 0 auto 0.9rem;
}

/* İletişim çağrısı */
.home-section.cta {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

/* split: solda fade ile rastgele eser slaytı, sağda metin + form */
.cta__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta__slideshow {
  position: relative;
  height: clamp(16rem, 37vw, 24rem);   /* sabit alan; slaytlar içinde ortalı */
  --su: clamp(2.5px, 0.85vw, 4.1px);   /* 1cm = bu kadar px → gerçek oran, büyükten başlar */
}
/* her tablo gerçek cm'ine göre boyutlu, tamamı görünür (kırpma yok), sola yaslı */
.cta__slide {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--w, 60) * var(--su));
  max-width: 100%;
  max-height: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.9s ease;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.16));
}
.cta__slide.is-active { opacity: 1; }

.cta__text {
  margin: 0 0 1.75rem;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.04em;
  text-align: left;
}
.cta__text::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #d4202a;
  opacity: 0.85;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);   /* sola yaslı aksan */
}

@media (max-width: 760px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 7vw, 3rem);
    max-width: 32rem;
  }
  .cta__slideshow {
    height: clamp(13rem, 52vw, 17rem);
    --su: clamp(2px, 1.3vw, 3px);
  }
  /* mobilde slaytlar ortalı */
  .cta__slide {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta__text { text-align: center; }
  .cta__text::before { margin-left: auto; margin-right: auto; }
}

.cta__btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.6rem;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta__btn:hover { background: transparent; color: #1a1a1a; }

/* İletişim sayfası — ana sayfadaki cta düzeniyle (solda slayt, sağda form) */
.cta--page {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 2rem clamp(3rem, 7vw, 5rem);
}
.contact-intro {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0 0 1.5rem;
}
.contact-mini {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-mini li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 300;
  font-size: 0.9rem;
}
.contact-mini__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;            /* siyah, yarı opak: belli belirsiz */
  opacity: 0.4;
}
.contact-mini a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 32, 42, 0.4);
  transition: border-color 0.2s ease;
}
.contact-mini a:hover { border-bottom-color: #d4202a; }

/* footer bağlamı: sade, çizgisiz */
.site-footer__contact .contact-mini {
  margin: 0;
  padding: 0;
  border-top: 0;
  gap: 0.6rem;
}
.site-footer__contact .contact-mini li { font-size: 0.85rem; }
.site-footer__contact .contact-mini a {
  border-bottom: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.site-footer__contact .contact-mini a:hover { opacity: 1; }

@media (max-width: 600px) {
  .series__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   Instagram feed
------------------------------------------------------------------ */
.home-section.instagram {
  text-align: center;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 6 post → tam 2 satır, boşluk yok */
  gap: clamp(0.5rem, 1.1vw, 0.9rem);
  max-width: 54rem;                          /* derli toplu, ortalı modül */
  margin: 0 auto;
}

.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;          /* IG tarzı düzgün kareler, tam genişlik */
  overflow: hidden;
  border-radius: 2px;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* kareye otursun (sosyal küçük resim) */
  display: block;
  transition: transform 0.5s ease;
}

.ig-tile:hover img {
  transform: scale(1.05);
}

.ig-tile__cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.55);
  color: #fff;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-tile:hover .ig-tile__cap {
  opacity: 1;
}

.ig-note {
  margin: 1.25rem 0 0;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.4;
}

@media (max-width: 560px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* takip bağlantısı (ikon + @kullanıcı) */
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.ig-follow:hover { opacity: 1; }
.ig-follow__icon { display: block; }

/* ------------------------------------------------------------------
   Exhibitions (sergi listesi)
------------------------------------------------------------------ */
.exh-grid {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6rem);
}

.exh {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.exh:nth-child(even) .exh__media {
  order: 2;
}

.exh__media {
  overflow: hidden;
  border-radius: 2px;
  background: rgba(26, 26, 26, 0.05);
}

.exh__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.exh:hover .exh__media img {
  transform: scale(1.03);
}

.exh__date {
  display: block;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.9rem;
}

.exh__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.exh__meta {
  margin: 0.8rem 0 0;
  font-weight: 300;
  font-size: 0.95rem;
  opacity: 0.7;
}

.exh__text {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 680px) {
  .exh {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .exh:nth-child(even) .exh__media {
    order: 0;
  }
}

/* ------------------------------------------------------------------
   Gallery (videolar + fotoğraflar)
------------------------------------------------------------------ */
.home-section.gallery {
  text-align: center;
}

.gallery__intro {
  max-width: 34rem;
  margin: -1rem auto clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.7;
}

.gallery__subhead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
}

.gallery__subhead::before,
.gallery__subhead::after {
  content: "";
  height: 1px;
  width: clamp(2rem, 8vw, 5rem);
  background: rgba(26, 26, 26, 0.18);
}

.gallery__subhead:first-of-type {
  margin-top: 0;
}

/* yatay kaydırmalı carousel + sağ/sol ok */
.gallery__carousel {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 2.8rem;   /* oklar için yanlarda yer — medyanın üstüne gelmez */
}
.gallery__videos,
.gallery__photos {
  display: flex;
  gap: clamp(0.7rem, 1.6vw, 1.2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.4rem;
}
.gallery__videos::-webkit-scrollbar,
.gallery__photos::-webkit-scrollbar { display: none; }

.gallery__video,
.gallery__photo {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery__video:hover,
.gallery__photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.gallery__video video,
.gallery__photo img {
  height: clamp(15rem, 26vw, 22rem);   /* sabit yükseklik → tek sıra, kırpma yok */
  width: auto;
  max-width: none;
  display: block;
}

/* ince kırmızı ok — yuvarlak yok, medyanın yanında */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 3.2rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.gallery__arrow--prev { left: 0; }
.gallery__arrow--next { right: 0; }
.gallery__arrow span {
  display: block;
  width: 13px;
  height: 13px;
  border-right: 1.5px solid #d4202a;
  border-bottom: 1.5px solid #d4202a;
}
.gallery__arrow--prev span { transform: rotate(135deg); }
.gallery__arrow--next span { transform: rotate(-45deg); }
.gallery__arrow:hover { opacity: 0.6; }
.gallery__arrow[disabled] { opacity: 0; pointer-events: none; }

.gallery__video figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  color: #fff;
  font-weight: 300;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: left;
  pointer-events: none;
}

@media (hover: none) {
  .gallery__arrow { display: none; }   /* dokunmatik: parmakla kaydır */
}
@media (max-width: 600px) {
  .gallery__video video,
  .gallery__photo img { height: clamp(13rem, 52vw, 17rem); }
}

/* ------------------------------------------------------------------
   Footer slogan
------------------------------------------------------------------ */
.site-footer__slogan {
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  text-align: center;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.65rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.slogan-heart {
  color: #d4202a;
  font-style: normal;
}

.slogan-bird {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.55rem;
  position: relative;
  top: -0.12em;
}

/* ------------------------------------------------------------------
   Exhibitions — liste linkleri
------------------------------------------------------------------ */
.exh__media { display: block; cursor: pointer; }
.exh__title a { color: inherit; text-decoration: none; }
.exh__title a:hover { opacity: 0.7; }

.exh__more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.exh__more:hover { opacity: 1; }

/* ------------------------------------------------------------------
   Exhibition — tekil sayfa
------------------------------------------------------------------ */
.exh-single__back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.55;
}
.exh-single__back:hover { opacity: 1; }

.exh-single__meta {
  margin: 1rem 0 0;
  font-weight: 300;
  font-size: 0.95rem;
  opacity: 0.7;
}

.exh-single__intro {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.9;
  text-align: center;
}

.exh-single__video {
  max-width: 60rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.exh-single__video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* sergiden foto galerisi — masonry, kırpılmaz */
.exh-gallery {
  column-count: 3;
  column-gap: clamp(0.6rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.exh-gallery__img {
  width: 100%;
  height: auto;
  display: block;
  break-inside: avoid;
  margin-bottom: clamp(0.6rem, 1.5vw, 1.1rem);
  border-radius: 2px;
}

/* sergilenen eserler */
.exh-works__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.exh-work {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 12rem;
}

.exh-work img {
  width: auto;
  max-width: 100%;
  max-height: 14rem;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
}

.exh-work:hover img { transform: translateY(-3px); }

.exh-work__title {
  display: block;
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

@media (max-width: 680px) {
  .exh-gallery { column-count: 2; }
}

/* ------------------------------------------------------------------
   Exhibitions — tam ekran scroll-snap (split paneller)
------------------------------------------------------------------ */
/* .exh-story = kendi scroll-container'ı (kök eleman snap'i güvenilmez) */
.exh-story {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y proximity;  /* yedek: JS kapalı/mobilde yumuşak snap */
  scrollbar-width: none;          /* Firefox: scrollbar gizle */
  -ms-overflow-style: none;
}
.exh-story::-webkit-scrollbar {   /* WebKit: scrollbar gizle */
  width: 0;
  height: 0;
}

/* Her sergi = bir sahne (tam ekran, split). İçindeki eserler yerinde değişir. */
.exh-show {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.exh-show--alt .exh-show__media { order: 2; }

/* tablo ile yazı arasında ince, kenarları soluklaşan dikey ayraç */
.exh-show::after {
  content: "";
  position: absolute;
  top: 16%;
  bottom: 16%;
  left: 52.5%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 26, 26, 0.14) 18%,
    rgba(26, 26, 26, 0.14) 82%,
    transparent 100%
  );
  pointer-events: none;
}

/* divider'da kırmızı ilerleme dolgusu — eserlerde ilerledikçe yukarıdan aşağı dolar */
.exh-show::before {
  content: "";
  position: absolute;
  left: 52.5%;
  top: 16%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(var(--prog, 0) * 68%);   /* divider uzunluğu = 100% - 16% - 16% */
  background: rgba(212, 32, 42, 0.45);   /* marka kırmızısı, düşük opaklık → soluk ama şık */
  z-index: 2;
  pointer-events: none;
  border-radius: 2px;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
/* ilerleme noktası — dolgunun ucunda; sergi değişince parlar */
.exh-show__node {
  position: absolute;
  left: 52.5%;
  top: calc(16% + var(--prog, 0) * 68%);
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(212, 32, 42, 0.6);   /* marka kırmızısı, düşük opaklık */
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 5px rgba(212, 32, 42, 0.08);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.exh-show.is-current .exh-show__node { animation: exhDotPulse 1.6s ease-out; }
@keyframes exhDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 32, 42, 0.3); }
  70%  { box-shadow: 0 0 0 15px rgba(212, 32, 42, 0); }
  100% { box-shadow: 0 0 0 5px rgba(212, 32, 42, 0.08); }
}

/* SOL: eserler üst üste yığılır; yalnız aktif olan görünür (geçişli) */
.exh-show__media {
  position: relative;
  height: 100vh;
  height: 100dvh;
}

.exh-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);   /* çıkış: yerinde yumuşak fade */
  pointer-events: none;
  will-change: opacity, transform;
}
.exh-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  /* giriş: zarif kayma + fade (easeOutQuint) */
  animation: exhFrameIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes exhFrameIn {
  from { opacity: 0; transform: translateY(34px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.exh-frame img,
.exh-frame video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.2);
}

.exh-frame__cap { display: none; }  /* masaüstü: sağdaki bilgi paneli kullanılır */

/* SAĞ: sabit sergi bilgisi + değişen eser başlığı */
.exh-show__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.exh-show__kicker {
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.exh-show__meta {
  margin-top: 0.7rem;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* tarih + mekân ayrı alanları yalnız mobil timeline'da görünür */
.exh-show__date,
.exh-show__loc { display: none; }
/* masaüstünde head şeffaf: çocuklar doğrudan info'nun (flex column) parçası */
.exh-show__head { display: contents; }

.exh-show__title {
  margin: clamp(2rem, 5vh, 3.5rem) 0 0;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.01em;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
/* eser başlığının üstünde küçük aksan çizgisi */
.exh-show__title::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 1px;
  margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
  background: #d4202a;
  opacity: 0.7;
}
.exh-show__title.is-in { animation: exhIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

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

.exh-show__dim {
  margin-top: 0.5rem;
  font-weight: 300;
  font-size: 0.92rem;
  opacity: 0.65;
}

.exh-show__pos {
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  opacity: 0.4;
}

/* Mobil: akordeon — sergiler kapalı liste, başlığa dokununca galeri açılır */
@media (max-width: 820px) {
  .exh-story {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .exh-show {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
  }
  .exh-show + .exh-show { border-top: 1px solid rgba(26, 26, 26, 0.1); }
  .exh-show:first-of-type { margin-top: clamp(4.5rem, 16vw, 6.5rem); }
  .exh-show::after,
  .exh-show::before,
  .exh-show__node { display: none; }   /* masaüstü divider/ilerleme mobilde yok */

  /* başlık = timeline satırı (flex): tarih | başlık+mekân | ok
     çizgi = tarih sütununun SAĞ KENARI → her başlığı tam kapsar, kopmaz */
  .exh-show__info {
    position: relative;
    order: -1;
    display: flex;
    flex-direction: row;        /* masaüstü column'unu sıfırla → tarih|başlık|ok yan yana */
    align-items: stretch;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  /* tarih (sol) — tam yükseklik; sağ kenarı timeline çizgisi */
  .exh-show__date {
    position: relative;
    flex: 0 0 4.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding: clamp(1.5rem, 5.5vw, 2rem) 0.95rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.55;
    line-height: 1.5;
    border-right: 1px solid rgba(26, 26, 26, 0.16);
  }
  /* nokta (çizginin tam üzerinde) */
  .exh-show__date::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7cad0;
    z-index: 2;
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }
  .exh-show.is-open .exh-show__date::after {
    background: #d4202a;
    box-shadow: 0 0 0 4px rgba(212, 32, 42, 0.15);
  }
  /* başlık + mekân (sağ) */
  .exh-show__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    gap: 0.25rem;
    padding: clamp(1.5rem, 5.5vw, 2rem) 1rem clamp(1.5rem, 5.5vw, 2rem) 1.25rem;
  }
  .exh-show__kicker {
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
    line-height: 1.2;
  }
  .exh-show__loc {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    opacity: 0.5;
    line-height: 1.3;
  }
  .exh-show__meta { display: none; }
  .exh-show__title[data-role],
  .exh-show__dim[data-role],
  .exh-show__pos[data-role] { display: none; }

  /* aşağı bakan ok (açıkken yukarı döner) */
  .exh-show__info::after {
    content: "";
    flex: 0 0 auto;
    align-self: center;
    margin: 0 1.25rem 0 0.75rem;
    width: 9px;
    height: 9px;
    border-right: 1.6px solid #d4202a;
    border-bottom: 1.6px solid #d4202a;
    transform: rotate(45deg);          /* ↓ */
    transition: transform 0.3s ease;
  }
  .exh-show.is-open .exh-show__info::after { transform: rotate(-135deg); }   /* ↑ */

  /* galeri: açılınca yumuşakça iner; yana kaydırmalı (swipe) — manuel */
  .exh-show__media {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 0;
    opacity: 0;
    padding: 0 1.25rem;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, padding 0.5s ease;
  }
  .exh-show.is-open .exh-show__media {
    max-height: 66vh;
    opacity: 1;
    padding: 0.5rem 1.25rem clamp(1.75rem, 6vw, 2.5rem);
  }
  .exh-show__media::-webkit-scrollbar { display: none; }
  .exh-show--alt .exh-show__media { order: 0; }

  .exh-frame {
    position: relative;
    inset: auto;
    flex: 0 0 80%;
    width: auto;
    min-height: 0;
    opacity: 1;
    transform: none;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
  }
  .exh-frame img,
  .exh-frame video {
    width: 100%;
    height: 42vh;
    max-height: none;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14));   /* eserin etrafında derinlik */
  }
  .exh-frame__cap {
    display: block;
    text-align: center;
    padding: 0;
  }
  .exh-frame__t { display: block; font-weight: 300; font-size: 0.82rem; letter-spacing: 0.02em; line-height: 1.3; }
  .exh-frame__d { display: block; font-weight: 300; font-size: 0.72rem; opacity: 0.55; margin-top: 0.15rem; }
}

/* ------------------------------------------------------------------
   Yukarı çık butonu — site stiliyle uyumlu, aşağı inince belirir
------------------------------------------------------------------ */
.to-top {
  position: fixed;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 90;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 232, 237, 0.72);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover { background: rgba(228, 232, 237, 0.96); }
.to-top__arrow {
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border-left: 1.5px solid #d4202a;
  border-top: 1.5px solid #d4202a;
  transform: rotate(45deg);
}
