/* ==========================================================================
   KAMAN UBYO 2026 — Tasarım Sistemi
   Yön: "Modern Anadolu Mirası" — editöryel lüks, koyu tema.
   Zümrüt + antik altın · Fraunces (display) + Plus Jakarta Sans (gövde)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) TASARIM TOKEN'LARI
   -------------------------------------------------------------------------- */
:root {
  /* Mürekkep (arka plan katmanları) */
  --ink-900: #04070a;
  --ink-850: #060b0f;
  --ink-800: #080f13;
  --ink-700: #0b141a;
  --ink-600: #0f1b21;

  /* Zümrüt */
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-900: #03291f;

  /* Antik altın / şampanya */
  --gold-200: #f7e3b0;
  --gold-300: #f1d28a;
  --gold-400: #e3b85f;
  --gold-500: #cda349;
  --gold-600: #b4892f;

  /* Metin */
  --text: #eaf1ee;
  --text-dim: #9db0a9;
  --text-faint: #687a73;
  --ink-on-gold: #1a1206;

  /* Çizgiler & yüzeyler */
  --line: rgba(205, 163, 73, 0.16);
  --line-strong: rgba(205, 163, 73, 0.32);
  --line-emerald: rgba(16, 185, 129, 0.18);
  --surface: linear-gradient(165deg, rgba(18, 32, 38, 0.72), rgba(8, 15, 19, 0.72));
  --surface-solid: #0b141a;

  /* Degradeler */
  --grad-gold: linear-gradient(135deg, #f7e3b0 0%, #cda349 52%, #b4892f 100%);
  --grad-emerald: linear-gradient(135deg, #34d399 0%, #059669 100%);
  --grad-text: linear-gradient(120deg, #f7e3b0 0%, #e3b85f 45%, #cda349 100%);

  /* Gölgeler */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 40px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 80px -24px rgba(0, 0, 0, 0.7);
  --glow-gold: 0 0 0 1px var(--line-strong), 0 18px 50px -18px rgba(205, 163, 73, 0.4);
  --glow-emerald: 0 18px 50px -18px rgba(5, 150, 105, 0.45);

  /* Tipografi */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Ölçü */
  --container: 1180px;
  --container-narrow: 920px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* ---- Geriye dönük uyumluluk (eski değişken adları) ---- */
  --bg-dark: var(--ink-900);
  --bg-card: var(--ink-700);
  --yesil-ana: var(--emerald-600);
  --yesil-parlak: var(--emerald-500);
  --yesil-koyu: var(--emerald-700);
  --sari-ana: var(--gold-500);
  --sari-parlak: var(--gold-400);
  --sari-koyu: var(--gold-600);
  --yazi-ana: var(--text);
  --yazi-ikincil: var(--text-dim);
  --border-color: var(--line);
  --glow-shadow: var(--glow-gold);
}

/* --------------------------------------------------------------------------
   2) RESET & TEMEL
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.75;
  color: var(--text);
  background-color: var(--ink-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmosfer: zümrüt/altın ışıltılar + yıldız dokusu (Cacabey gökbilim göndermesi) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -8%, rgba(5, 150, 105, 0.16), transparent 60%),
    radial-gradient(800px 520px at 100% 0%, rgba(205, 163, 73, 0.10), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(4, 120, 87, 0.12), transparent 60%),
    var(--ink-900);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(1.2px 1.2px at 20% 30%, rgba(247, 227, 176, 0.5) 50%, transparent),
    radial-gradient(1px 1px at 75% 18%, rgba(255, 255, 255, 0.35) 50%, transparent),
    radial-gradient(1.4px 1.4px at 60% 70%, rgba(247, 227, 176, 0.4) 50%, transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.3) 50%, transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(247, 227, 176, 0.45) 50%, transparent);
  background-size: 100% 100%;
}

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

::selection { background: rgba(205, 163, 73, 0.32); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-850); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--emerald-700), var(--gold-600)); border-radius: 99px; border: 3px solid var(--ink-850); }

/* --------------------------------------------------------------------------
   3) TİPOGRAFİ
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
  font-optical-sizing: auto;
}

.display {
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.kicker.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.gold-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

p { color: var(--text-dim); }
strong { color: var(--gold-300); font-weight: 600; }

.lead { font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem); color: var(--text); line-height: 1.7; }

/* --------------------------------------------------------------------------
   4) DÜZEN
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(56px, 8vw, 110px); }
.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .kicker { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

.eyrow { display: flex; justify-content: center; }

/* --------------------------------------------------------------------------
   5) HEADER & NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 15, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-block: 12px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-badge {
  position: relative;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #fff, #eef2f0);
  padding: 4px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 0 4px rgba(205, 163, 73, 0.10), 0 10px 24px -8px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.brand-badge::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--grad-gold) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55;
}
.brand-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.brand:hover .brand-badge { transform: rotate(-4deg) scale(1.05); box-shadow: var(--glow-gold); }

.brand-name { font-family: var(--font-body); font-weight: 800; font-size: 1.18rem; letter-spacing: 0.04em; color: #fff; line-height: 1; }
.brand-name b { color: var(--gold-400); font-weight: 800; }
.brand-name span { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.34em; color: var(--text-faint); margin-top: 5px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1.5px; border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(0.5); }
.nav a.is-active { color: var(--gold-300); }
.nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.6px;
  background: var(--gold-300); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span { transform: translate(-50%, -50%); }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   6) BUTONLAR
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

.btn--gold { background: var(--grad-gold); color: var(--ink-on-gold); box-shadow: 0 12px 30px -12px rgba(205, 163, 73, 0.6); }
.btn--gold:hover { box-shadow: 0 18px 44px -12px rgba(205, 163, 73, 0.75); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-200); background: rgba(205, 163, 73, 0.06); }

.btn--emerald { background: var(--grad-emerald); color: #03130d; box-shadow: var(--glow-emerald); }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }

.textlink { color: var(--emerald-400); font-weight: 600; transition: color 0.2s ease; }
.textlink:hover { color: var(--emerald-300); }

/* --------------------------------------------------------------------------
   7) HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 86px); padding-bottom: clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy .kicker { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .display { display: block; }
.hero .lead { max-width: 50ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { position: relative; padding-left: 18px; }
.hero-stats .stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--grad-gold); border-radius: 2px; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: #fff; line-height: 1; }
.stat span { font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.04em; }

/* Hero görsel: logo halka emblemi */
.hero-emblem { position: relative; display: grid; place-items: center; aspect-ratio: 1; max-width: 440px; margin-inline: auto; }
.hero-emblem .disc {
  position: relative; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff, #f3f5f3);
  padding: 7%;
  box-shadow: 0 0 0 1px var(--line-strong), 0 30px 80px -20px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(205, 163, 73, 0.08);
  z-index: 2;
}
.hero-emblem .disc img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.hero-emblem .ring { position: absolute; border-radius: 50%; border: 1px solid var(--line); }
.hero-emblem .ring.r1 { inset: 0; border-color: var(--line-strong); }
.hero-emblem .ring.r2 { inset: 9%; border-style: dashed; border-color: rgba(16, 185, 129, 0.22); animation: spin 60s linear infinite; }
.hero-emblem .ring.r3 { inset: -8%; border-color: rgba(205, 163, 73, 0.10); }
.hero-emblem .glow { position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(circle, rgba(5,150,105,0.28), transparent 70%); filter: blur(30px); z-index: 1; }

@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   8) KARTLAR & GRID'LER
   -------------------------------------------------------------------------- */
.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.panel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-gold); opacity: 0.85; }
.panel h3 { font-size: 1.35rem; margin-bottom: 14px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Vurgu kartı (vizyon/misyon) */
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--glow-gold); }
.feature .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(16,185,129,0.16), rgba(205,163,73,0.10));
  border: 1px solid var(--line); color: var(--gold-300);
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { font-size: 0.95rem; }

/* Keşfet kartları (görselli) */
.discover { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.disc-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); min-height: 300px;
  box-shadow: var(--shadow-md); isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease;
}
.disc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.disc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,7,10,0.15) 0%, rgba(4,7,10,0.55) 52%, rgba(4,7,10,0.94) 100%); }
.disc-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.disc-card:hover img { transform: scale(1.07); }
.disc-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.disc-card .kicker { margin-bottom: 10px; }
.disc-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.disc-card p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 14px; }
.disc-go { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; color: var(--gold-300); }
.disc-go svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.disc-card:hover .disc-go svg { transform: translateX(5px); }

/* Liste (duyurular) */
.ulist { display: grid; gap: 14px; margin-top: 8px; }
.ulist li { position: relative; padding-left: 26px; font-size: 0.95rem; color: var(--text-dim); }
.ulist li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-emerald); box-shadow: 0 0 10px rgba(16,185,129,0.5); }

.panel-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.panel-head h3 { margin-bottom: 0; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot.gold { background: var(--gold-400); box-shadow: 0 0 12px var(--gold-500); }
.dot.emerald { background: var(--emerald-500); box-shadow: 0 0 12px var(--emerald-500); }

/* --------------------------------------------------------------------------
   9) ZİKZAK YER/PROFİL KARTLARI (Kırşehir & Düşünürler)
   -------------------------------------------------------------------------- */
.places { counter-reset: place; display: grid; gap: clamp(26px, 4vw, 52px); }
.place {
  counter-increment: place;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.place::before {
  content: counter(place, decimal-leading-zero);
  position: absolute; top: -14px; right: 22px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(4rem, 9vw, 7rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(205,163,73,0.16);
  z-index: 0; pointer-events: none;
}
.place:nth-child(even) .place-media { order: 2; }
.place-body { position: relative; z-index: 1; }
.place-num { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: var(--radius-pill); background: rgba(205,163,73,0.08); border: 1px solid var(--line-strong); color: var(--gold-300); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; }
.place-body h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 16px; }
.place-body h3 { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-400); margin: 20px 0 8px; }
.place-body p { font-size: 0.95rem; margin-bottom: 6px; }
.place-media { position: relative; }
.place-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.place:hover .place-media img { transform: scale(1.02); }
.place-media::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); pointer-events: none; }

/* --------------------------------------------------------------------------
   10) AKADEMİK KADRO
   -------------------------------------------------------------------------- */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 2.5vw, 30px); }
.staff-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 26px; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.staff-card:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: var(--glow-gold); }
.staff-photo { position: relative; width: 150px; height: 150px; margin-bottom: 22px; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid var(--line); box-shadow: var(--shadow-md); transition: border-color 0.4s ease, transform 0.4s ease; }
.staff-photo::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid transparent; background: var(--grad-gold) border-box; -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s ease; }
.staff-card:hover .staff-photo::before { opacity: 0.8; }
.staff-card:hover .staff-photo img { transform: scale(1.04); }
.staff-name { font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.staff-role { display: inline-block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); background: rgba(205,163,73,0.08); border: 1px solid var(--line); padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.staff-desc { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 18px; }
.staff-mail { margin-top: auto; }
.staff-mail a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--emerald-400); font-weight: 600; word-break: break-all; }
.staff-mail svg { width: 15px; height: 15px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   11) SSS AKORDEON
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px; transition: border-color 0.3s ease, background 0.3s ease;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--gold-400); border-radius: 2px; transition: transform 0.3s ease; }
.faq summary .pm::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq summary .pm::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq details[open] summary .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq details > p { font-size: 0.95rem; color: var(--text-dim); padding-bottom: 20px; margin: 0; }
.faq details > p a { color: var(--emerald-400); }

/* --------------------------------------------------------------------------
   12) ALINTI / SÖZ
   -------------------------------------------------------------------------- */
.pullquote {
  position: relative; text-align: center; max-width: 760px; margin: 8px auto;
  padding: clamp(30px, 4vw, 50px);
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-style: italic;
  line-height: 1.5; color: var(--text);
}
.pullquote::before { content: "\201C"; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 5rem; color: rgba(205,163,73,0.25); line-height: 1; }
.pullquote cite { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); margin-top: 22px; }

/* --------------------------------------------------------------------------
   13) BREADCRUMB & SAYFA BAŞLIĞI
   -------------------------------------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--text-faint); margin-bottom: 26px; }
.breadcrumb a { color: var(--text-dim); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span.sep { color: var(--line-strong); }
.breadcrumb b { color: var(--gold-300); font-weight: 600; }

.page-head { text-align: center; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(28px, 4vw, 44px); }
.page-head .kicker { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 20px; }
.page-head p { max-width: 70ch; margin-inline: auto; font-size: 1.05rem; }
.page-head .crumbs { justify-content: center; }

/* --------------------------------------------------------------------------
   14) ÖĞRENCİ YAŞAM REHBERİ
   -------------------------------------------------------------------------- */
.guide-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(36px, 5vw, 60px); }
.guide-nav a {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dim); padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: rgba(255,255,255,0.015);
  transition: all 0.25s ease;
}
.guide-nav a:hover { color: var(--gold-200); border-color: var(--gold-400); background: rgba(205,163,73,0.06); transform: translateY(-2px); }
.guide-nav a svg { width: 16px; height: 16px; color: var(--gold-400); }

.guide-cat { scroll-margin-top: 110px; margin-bottom: clamp(40px, 6vw, 72px); }
.guide-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.guide-cat-ic { flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(160deg, rgba(16,185,129,0.16), rgba(205,163,73,0.12)); border: 1px solid var(--line-strong); color: var(--gold-300); }
.guide-cat-ic svg { width: 28px; height: 28px; }
.guide-cat-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.guide-cat-head .kicker { margin-bottom: 6px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(18px, 2.2vw, 26px); }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform 0.4s ease, border-color 0.4s ease; }
.info-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.info-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.info-card .tagline { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--emerald-400); font-weight: 700; margin-bottom: 14px; }
.info-card p { font-size: 0.92rem; margin-bottom: 14px; }
.info-meta { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 14px; }
.info-meta div { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-dim); }
.info-meta svg { width: 15px; height: 15px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.info-meta b { color: var(--text); font-weight: 600; }

.tip { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(160deg, rgba(16,185,129,0.07), rgba(5,150,105,0.02)); border: 1px solid var(--line-emerald); border-left: 3px solid var(--emerald-500); border-radius: 12px; padding: 16px 18px; margin-top: 18px; }
.tip svg { width: 20px; height: 20px; color: var(--emerald-400); flex-shrink: 0; margin-top: 2px; }
.tip p { font-size: 0.9rem; color: var(--text); margin: 0; }
.tip b { color: var(--emerald-300); }

.notice { display: flex; gap: 14px; align-items: flex-start; background: rgba(205,163,73,0.05); border: 1px dashed var(--line-strong); border-radius: 14px; padding: 18px 22px; margin-bottom: 38px; }
.notice svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.notice p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

/* --------------------------------------------------------------------------
   15) HARİTA
   -------------------------------------------------------------------------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg); line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   16) CTA BANDI
   -------------------------------------------------------------------------- */
.cta-band { position: relative; text-align: center; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); overflow: hidden; border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(5,150,105,0.12), rgba(205,163,73,0.08)); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(205,163,73,0.18), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { max-width: 56ch; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* --------------------------------------------------------------------------
   17) FOOTER
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); margin-top: clamp(40px, 6vw, 80px); background: linear-gradient(180deg, transparent, rgba(6,11,15,0.7)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(44px, 6vw, 70px); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-400); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--text-dim); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-200); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-faint); }
.footer-bottom .seal { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .seal b { color: var(--gold-300); font-weight: 600; }

/* --------------------------------------------------------------------------
   18) 404
   -------------------------------------------------------------------------- */
.error-wrap { min-height: 64vh; display: grid; place-items: center; text-align: center; padding-block: 60px; }
.error-code { font-family: var(--font-display); font-size: clamp(6rem, 22vw, 13rem); line-height: 0.9; font-weight: 600; }
.error-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 8px 0 16px; }
.error-wrap p { max-width: 46ch; margin: 0 auto 30px; }

/* --------------------------------------------------------------------------
   19) ANİMASYON (scroll reveal)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* Eski sınıf uyumu */
.animasyonlu { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.animasyonlu.gorunur, .animasyonlu.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   20) ERİŞİLEBİLİRLİK
   -------------------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 2000; background: var(--gold-400); color: var(--ink-on-gold); padding: 10px 18px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { left: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .animasyonlu { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21) RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-emblem { order: -1; max-width: 320px; }
  .hero-copy { text-align: center; }
  .hero-copy .kicker { justify-content: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .discover, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(6, 11, 15, 0.97); backdrop-filter: blur(20px);
    padding: 16px clamp(18px, 4vw, 40px) 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 0.95rem; border-radius: 12px; }
  .nav a::after { display: none; }
  .nav a.is-active { background: rgba(205,163,73,0.08); }

  .place { grid-template-columns: 1fr; gap: 24px; }
  .place:nth-child(even) .place-media { order: 0; }
  .place-media { max-width: 360px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .discover { grid-template-columns: 1fr; }
  .brand-name span { display: none; }
  .hero-stats { gap: 22px; }
  .section { padding-block: 52px; }
}
