/* ============ ABUBA EVENTS — bold minimal / monochrome ============ */
:root {
  --ink: #0a0a0a;
  --ink-soft: #6a6a6a;
  --line: #e6e6e6;
  --line-2: #d4d4d4;
  --paper: #ffffff;
  --paper-2: #f4f4f2;
  --night: #0a0a0a;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Jost", "Century Gothic", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
::selection { background: var(--ink); color: #fff; }

/* film grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

/* ---------- Topbar ---------- */
.topbar { background: var(--night); color: #fff; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar a { color: #fff; opacity: .8; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .tb-mid { color: #888; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.7);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand img { height: 22px; width: auto; transition: opacity .3s; }
.brand:hover img { opacity: 0.6; }
.brand-tag {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft);
  padding-left: 16px; border-left: 1px solid var(--line-2); line-height: 1.3; max-width: 90px;
}
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .25s var(--ease); position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--ink); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 12px !important; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid var(--ink); color: var(--ink) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 34px; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  cursor: pointer; transition: color .4s var(--ease); z-index: 1;
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: #fff; z-index: -1;
  transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease);
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: scaleY(1); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: #fff; }
.btn-sm { padding: 12px 22px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Hero (editorial) ---------- */
.hero {
  position: relative; min-height: calc(100vh - 116px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 40px 0 0;
}
.hero-bg-word {
  position: absolute; bottom: -4vw; right: -2vw; transform: none;
  font-family: var(--font-display); font-weight: 300;
  font-size: 26vw; letter-spacing: 0.02em; color: var(--paper-2);
  white-space: nowrap; z-index: 0; user-select: none; pointer-events: none; line-height: 1;
}
.side-label {
  position: absolute; left: 26px; top: 50%; transform: rotate(180deg); transform-origin: center;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); z-index: 3;
}
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; width: 100%; }
.hero .eyebrow {
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 30px;
  display: flex; align-items: center; gap: 14px;
}
.hero .eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--ink); }
.hero h1 {
  font-size: clamp(44px, 7.4vw, 116px); letter-spacing: 0.01em; line-height: 1.0;
  font-weight: 300;
}
.hero h1 .em { font-style: italic; font-weight: 400; }
.line-word { padding: 0.06em 0.08em 0.22em; margin: -0.06em -0.08em -0.22em; }
.hero-meta { padding-bottom: 14px; }
.hm-row { display: flex; gap: 14px; align-items: baseline; padding-bottom: 16px; margin-bottom: 22px; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.hm-row span:first-child { font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.hero-lead { color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 17px); max-width: 340px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-foot {
  position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-foot span { white-space: nowrap; }
.hero-foot .hf-scroll { color: var(--ink); }
.line-word { display: block; overflow: hidden; }
.line-word > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease-2); }
.hero h1 .line-word:nth-child(2) > span { transition-delay: .12s; }
.loaded .line-word > span { transform: none; }

/* ---------- Statement band ---------- */
.statement-band {
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line);
  padding: clamp(70px, 9vw, 130px) 0; text-align: center;
}
.statement-band p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 4.4vw, 58px); line-height: 1.18; letter-spacing: 0.01em;
  color: var(--ink); margin: 0 auto;
}
.statement-band em { font-style: italic; color: var(--ink-soft); }

/* ---------- Sections ---------- */
section { padding: 130px 0; }
.section-head { margin-bottom: 60px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-head .kicker {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.section-head .kicker::before { content: ""; width: 28px; height: 1px; background: var(--ink); }
.section-head h2, .section-head h1 { font-size: clamp(34px, 5.5vw, 76px); font-weight: 300; }
.section-head .sub { color: var(--ink-soft); margin-top: 16px; max-width: 480px; }
.line-top { border-top: 1px solid var(--line); }

/* ---------- Event grid ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.event-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.event-card {
  background: var(--paper); display: flex; flex-direction: column;
  transition: transform .5s var(--ease-2); position: relative;
}
.event-card:hover { transform: translateY(-6px); z-index: 2; }
.event-card .thumb { aspect-ratio: 4/5; background: var(--paper-2); overflow: hidden; position: relative; }
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-2), filter .5s; filter: grayscale(100%); }
.event-card:hover .thumb img { transform: scale(1.06); filter: grayscale(0%); }
.event-card .thumb .noimg {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 44px; letter-spacing: .3em; color: #d2d2cf;
}
.event-card .idx {
  position: absolute; top: 16px; right: 18px; z-index: 2;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .1em; color: #fff;
  mix-blend-mode: difference;
}
.event-card .body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.event-card .date { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.event-card h3 { font-size: 26px; margin: 12px 0 6px; transition: opacity .3s; }
.event-card .venue { font-size: 14px; color: var(--ink-soft); }
.event-card .card-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.event-card .price { font-family: var(--font-display); font-size: 18px; }
.event-card .more { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); transition: transform .35s var(--ease); }
.event-card:hover .more { transform: translateX(5px); color: var(--ink); }
.tag-featured {
  position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--ink); color: #fff;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 12px;
}
.empty { text-align: center; padding: 90px 20px; color: var(--ink-soft); border: 1px dashed var(--line-2); }

/* ---------- Split / About blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.big-statement { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 4vw, 50px); line-height: 1.12; }
.big-statement em { font-style: italic; }

/* ---------- Disciplines (Kültür / Sanat / Eğlence) ---------- */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.disc { background: var(--paper); padding: 56px 40px 48px; position: relative; transition: background .4s var(--ease); overflow: hidden; }
.disc:hover { background: var(--night); color: #fff; }
.disc .d-idx {
  font-family: var(--font-display); font-weight: 300; font-size: 90px; line-height: 1;
  color: var(--paper-2); position: absolute; top: 18px; right: 24px; transition: color .4s;
}
.disc:hover .d-idx { color: #161616; }
.disc h3 { font-size: 32px; margin: 0 0 16px; position: relative; }
.disc p { color: var(--ink-soft); font-size: 15px; position: relative; transition: color .4s; }
.disc:hover p { color: #b8b8b8; }

/* ---------- Dark CTA ---------- */
.cta-dark { background: var(--night); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-dark .ghost {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 300; font-size: 26vw; color: #161616;
  white-space: nowrap; user-select: none;
}
.cta-dark .inner { position: relative; z-index: 2; }
.cta-dark h2 { font-size: clamp(36px, 6vw, 84px); font-weight: 300; }
.cta-dark p { color: #aaa; max-width: 460px; margin: 22px auto 40px; }
.cta-dark .btn { border-color: #fff; background: #fff; color: var(--night); }
.cta-dark .btn::before { background: transparent; }
.cta-dark .btn:hover { color: #fff; background: transparent; }

/* ---------- Event detail ---------- */
.event-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-bottom: 1px solid var(--line); }
.event-hero .media { background: var(--paper-2); aspect-ratio: 1/1; overflow: hidden; }
.event-hero .media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .6s; }
.event-hero .media:hover img { filter: grayscale(0%); }
.event-hero .media .noimg { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:90px;letter-spacing:.3em;color:#dcdcd9;}
.event-hero .info { padding: 80px clamp(28px, 5vw, 88px); display: flex; flex-direction: column; justify-content: center; }
.event-hero .info .date { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.event-hero .info h1 { font-size: clamp(38px, 5.5vw, 68px); margin: 18px 0; font-weight: 300; }
.event-hero .info .subtitle { color: var(--ink-soft); font-size: 18px; }
.meta-list { margin: 32px 0; border-top: 1px solid var(--line); }
.meta-list .row { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.meta-list .row span:first-child { color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }
.ticket-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.event-body { padding: 100px 0; }
.event-body .prose { max-width: 720px; font-size: 18px; color: #2a2a2a; white-space: pre-line; line-height: 1.8; }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(28px, 4vw, 50px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 16px; border: 1px solid var(--line); background: #fff;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.notice { padding: 15px 18px; margin-bottom: 24px; font-size: 14px; border: 1px solid; }
.notice.ok { border-color: #1f7a1f; color: #1f7a1f; background: #f3fbf3; }
.notice.error { border-color: #b00020; color: #b00020; background: #fdf2f4; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ---------- About ---------- */
.about-hero { text-align: center; padding: 130px 0 90px; position: relative; }
.about-hero h1 { font-size: clamp(44px, 8vw, 110px); font-weight: 300; }
.about-hero p { max-width: 600px; margin: 30px auto 0; color: var(--ink-soft); font-size: 18px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.stats .stat { padding: 50px 24px; text-align: center; border-right: 1px solid var(--line); }
.stats .stat:last-child { border-right: 0; }
.stats .num { font-family: var(--font-display); font-size: 60px; font-weight: 300; }
.stats .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); margin-top: 64px; }
.values .v { background: var(--paper); padding: 44px 34px; transition: background .4s; }
.values .v:hover { background: var(--paper-2); }
.values .v h3 { font-size: 24px; margin: 14px 0 10px; }
.values .v p { color: var(--ink-soft); font-size: 15px; }
.values .v .idx { font-family: var(--font-display); font-size: 14px; color: #bdbdbd; letter-spacing: .2em; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--ink); padding: 80px 0 44px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 44px; }
.site-footer .fbrand img { height: 22px; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); transition: color .25s; }
.footer-nav a:hover { color: var(--ink); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; }

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .hero-meta { padding-bottom: 0; }
  .hero-lead { max-width: 100%; }
}
@media (max-width: 920px) {
  .event-grid, .event-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .event-hero { grid-template-columns: 1fr; }
  .two-col, .field-row, .split { grid-template-columns: 1fr; gap: 36px; }
  .values, .stats, .disc-grid { grid-template-columns: 1fr; }
  .stats .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .side-label { display: none; }
  .brand-tag { display: none; }
  .topbar .tb-mid { display: none; }
}

/* ---- Tablet & below: mobile nav ---- */
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .nav { height: 66px; }
  /* backdrop-filter kaldırılmazsa fixed menünün containing block'u header olur */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }
  .nav-toggle { display: block; position: relative; z-index: 80; line-height: 1; }
  .nav-links {
    position: fixed; inset: 0; z-index: 40; background: var(--paper);
    flex-direction: column; justify-content: center; align-items: stretch;
    gap: 0; padding: 96px 28px 48px; overflow-y: auto;
    transform: translateX(100%); transition: transform .45s var(--ease-2);
  }
  .nav-links.open { transform: none; }
  .nav-links a {
    width: 100%; padding: 20px 2px; border-bottom: 1px solid var(--line);
    font-size: 18px; letter-spacing: 0.06em; color: var(--ink);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 26px; text-align: center; border: 1px solid var(--ink) !important;
    padding: 18px !important; font-size: 14px !important;
  }
}

/* ---- Phone ---- */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 76px 0; }
  .topbar { display: none; }
  .event-grid, .event-grid.cols-2 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 48px 0 40px; }
  .hero-inner { align-items: flex-start; }
  .hero h1 { font-size: clamp(52px, 17vw, 80px); }
  .hero-foot { font-size: 10px; letter-spacing: 0.14em; gap: 14px; }
  .hero-foot span:nth-child(2) { display: none; }
  .statement-band { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .section-head .sub { max-width: 100%; }
  .disc { padding: 40px 28px; }
  .disc .d-idx { font-size: 64px; }
  .event-hero .info { padding: 48px 24px; }
  .event-body { padding: 60px 0; }
  .about-hero { padding: 80px 0 56px; }
  .stats .num { font-size: 48px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { gap: 18px 26px; }
  .cta-dark .ghost { font-size: 44vw; }
}

/* ---- Small phone ---- */
@media (max-width: 380px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .ticket-actions .btn { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .line-word > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ v2 — ek bileşenler & animasyonlar ============ */

/* küçük harf iletişim linkleri (caps-lock görünümünü kır) */
.lower { text-transform: none !important; letter-spacing: 0.01em !important; }

/* topbar iletişim grubu */
.topbar .tb-contact { display: flex; gap: 22px; align-items: center; }

/* scroll ilerleme çubuğu */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 100;
  background: var(--ink); transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* kayan WhatsApp butonu */
.wa-float {
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--night); color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transition: transform .3s var(--ease-2), background .3s;
  animation: wa-pop .5s var(--ease-2) both; animation-delay: 1s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* footer yeni düzen */
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav .fn-head { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.footer-nav a { font-size: 14px; letter-spacing: 0.04em; text-transform: none; color: var(--ink-soft); transition: color .25s; }
.footer-nav a:hover { color: var(--ink); }
.footer-bottom .credit a { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: border-color .25s; }
.footer-bottom .credit a:hover { border-color: var(--ink); }

/* reveal stagger (grid çocuklarına gecikme) */
.reveal { transition-delay: var(--d, 0ms); }

/* görsel clip-reveal (kartlar) */
.event-card .thumb img { transition: transform .7s var(--ease-2), filter .6s, clip-path .9s var(--ease-2); }

/* mobil canlılık & dokunma hedefleri */
@media (max-width: 860px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  /* mobilde kart görselleri renkli kalsın (hover yok) */
  .event-card .thumb img { filter: grayscale(0%); }
  .event-hero .media img { filter: grayscale(0%); }
  .nav-links a { transition: transform .4s var(--ease-2), opacity .4s; transform: translateX(20px); opacity: 0; }
  .nav-links.open a { transform: none; opacity: 1; }
  .nav-links.open a:nth-child(1){ transition-delay:.08s; }
  .nav-links.open a:nth-child(2){ transition-delay:.14s; }
  .nav-links.open a:nth-child(3){ transition-delay:.20s; }
  .nav-links.open a:nth-child(4){ transition-delay:.26s; }
  .nav-links.open a:nth-child(5){ transition-delay:.32s; }
}
@media (max-width: 640px) {
  .footer-cols { gap: 36px; }
}

/* hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
  .scroll-progress { display: none; }
}

/* geçmiş etkinlikler */
.tag-past { background: var(--ink-soft); }
.event-grid.is-past .event-card .thumb img { filter: grayscale(100%); opacity: .9; }
.event-grid.is-past .event-card:hover .thumb img { filter: grayscale(100%); }
.past-note {
  margin-top: 12px; padding: 22px 24px; border: 1px solid var(--line); background: var(--paper-2);
}
.past-note span { display: block; font-family: var(--font-display); font-size: 17px; color: var(--ink); }

/* ============ v3 — zengin boş durum & mobil cila ============ */
.empty {
  border: 1px solid var(--line); background: var(--paper-2);
  padding: clamp(56px, 9vw, 96px) 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.empty .empty-kicker {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 22px;
}
.empty .empty-title {
  font-family: var(--font-display); font-weight: 300; line-height: 1.05;
  font-size: clamp(32px, 6vw, 56px); color: var(--ink); margin-bottom: 18px;
}
.empty .empty-sub { color: var(--ink-soft); max-width: 420px; margin: 0 auto 32px; font-size: 15px; }

/* ---- mobil ince ayarlar ---- */
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 40px 0 0; }
  .hero-foot { margin-top: 36px; font-size: 9px; letter-spacing: 0.12em; }
  .statement-band { padding: 56px 0; }
  .statement-band p { font-size: clamp(24px, 7vw, 34px); }
  .section-head { margin-bottom: 32px; }
  .section-head h1, .section-head h2 { font-size: clamp(30px, 9vw, 44px); }
  .big-statement { font-size: clamp(26px, 8vw, 38px); }
  .disc { padding: 36px 26px; }
  .disc h3 { font-size: 27px; }
  .disc .d-idx { font-size: 80px; opacity: .9; top: 22px; right: 22px; }
  .cta-dark h2 { font-size: clamp(32px, 11vw, 52px); }
  .cta-dark .ghost { font-size: 52vw; }
  .event-card .body { padding: 24px 22px 28px; }
  .event-card h3 { font-size: 23px; }
}
