/* ============================================================
   Hafta Sonu Okulu — Tanıtım Sitesi
   Tasarım dili: "Sıcak Editorial" — derin teal + sıcak altın + krem
   Fontlar: Bricolage Grotesque (başlık) + Plus Jakarta Sans (gövde)
   Vanilla CSS, build adımsız. WeeMe panelinden bağımsız taze kimlik.
   ============================================================ */

/* ---------- Tasarım belirteçleri (design tokens) ---------- */
:root {
  /* Renk paleti */
  --cream:        #FBF6EC;
  --cream-deep:   #F3E9D7;
  --surface:      #FFFFFF;
  --surface-warm: #FCF8F1;

  --ink:          #16302D;   /* koyu teal-siyah, ana metin */
  --ink-medium:   #3C5450;
  --ink-muted:    #6E827E;
  --ink-soft:     #9DACA8;

  --teal:         #0E5A52;   /* ana marka rengi */
  --teal-dark:    #0A413B;
  --teal-deep:    #072F2A;
  --teal-light:   #DCEBE7;
  --teal-tint:    #EFF6F4;

  --gold:         #D69A2E;   /* sıcak altın vurgu */
  --gold-dark:    #B47F1E;
  --gold-light:   #FBEFD4;
  --gold-tint:    #FDF7E9;

  --rose:         #C0563F;   /* nadir, ikincil sıcak vurgu */
  --rose-light:   #F8E3DC;

  --border:       #E8DCC8;
  --border-strong:#D8C7AB;

  /* Tipografi */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Boşluk ölçeği */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* Yarıçap */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Gölge */
  --shadow-sm: 0 1px 2px rgba(22, 48, 45, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(22, 48, 45, 0.14);
  --shadow-lg: 0 24px 60px -20px rgba(22, 48, 45, 0.24);
  --shadow-gold: 0 14px 34px -12px rgba(214, 154, 46, 0.45);

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmosfer: yumuşak radyal degrade dokusu */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 85% -5%, rgba(214, 154, 46, 0.10), transparent 60%),
    radial-gradient(55% 45% at 5% 10%, rgba(14, 90, 82, 0.08), transparent 55%);
  pointer-events: none;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--sp-2);
}

p { margin: 0 0 var(--sp-2); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* Bölüm üst başlığı (eyebrow) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem);
  max-width: 22ch;
}
.section-lead {
  color: var(--ink-medium);
  max-width: 56ch;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-title,
.section-head.center .section-lead { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--gold);
  color: #2a1d05;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255,255,255,0.24); color:#fff; transform: translateY(-2px); }

/* ---------- Şube üst çubuğu ---------- */
:root { --branch-accent: #0E5A52; } /* branch.js şubeye göre override eder */
.branch-bar { background: var(--teal-deep); color: rgba(255,255,255,0.82); border-top: 2px solid var(--branch-accent); transition: border-color .3s ease; }
.branch-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 30px;
  padding-block: .18rem;
}
.branch-bar-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.branch-bar-label svg { width: 15px; height: 15px; color: var(--gold); }
.branch-switch {
  display: inline-flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  padding: 3px;
}
.branch-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  padding: .26rem .7rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.branch-btn:hover { color: #fff; }
.branch-btn.is-active { background: var(--branch-accent); color: #fff; }

.branch-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: color-mix(in srgb, var(--branch-accent) 13%, #fff);
  color: var(--branch-accent);
  font-weight: 700;
  font-size: .85rem;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
}
.branch-chip svg { width: 14px; height: 14px; }

/* ---------- Konum (şube) giriş modalı ---------- */
.loc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 47, 42, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.loc-modal.is-open { opacity: 1; visibility: visible; }
.loc-modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98);
  transition: transform .28s ease;
}
.loc-modal.is-open .loc-modal-card { transform: none; }
.loc-modal-mark {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--teal);
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.loc-modal-mark svg { width: 30px; height: 30px; }
.loc-modal h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); margin-bottom: .5rem; }
.loc-modal p { color: var(--ink-medium); margin: 0; }
.loc-modal-hint { font-size: .85rem; color: var(--ink-muted); margin-top: var(--sp-2) !important; }
.loc-modal-close {
  position: absolute; top: .75rem; right: 1rem;
  border: none; background: transparent;
  font-size: 1.7rem; line-height: 1;
  color: var(--ink-muted); cursor: pointer;
}
.loc-modal-close:hover { color: var(--ink); }
.loc-modal-lang {
  position: absolute;
  top: .85rem;
  left: 1rem;
  display: inline-flex;
  gap: 2px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
}
.loc-modal-lang .lang-btn { padding: .3rem .55rem; font-size: .78rem; color: var(--ink-muted); }
.loc-modal-lang .lang-btn .flag { font-size: 1rem; }
.loc-modal-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: var(--sp-3); }
.loc-card {
  --c: var(--teal);
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  padding: 1.6rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface-warm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.loc-card:hover { transform: translateY(-3px); border-color: var(--c); background: color-mix(in srgb, var(--c) 8%, #fff); }
.loc-card .loc-pin {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 16%, #fff);
  color: var(--c);
}
.loc-card .loc-pin svg { width: 26px; height: 26px; }
.loc-card .loc-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
@media (max-width: 460px) { .loc-modal-options { grid-template-columns: 1fr; } }

/* ---------- Native Instagram ızgarası (website görünümlü) ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: var(--sp-2);
}
.ig-grid a {
  display: block;
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-grid .ig-play {
  position: absolute;
  top: .55rem; right: .55rem;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(7, 47, 42, 0.55);
  color: #fff;
  border-radius: 50%;
  backdrop-filter: blur(2px);
}
.ig-grid .ig-play svg { width: 15px; height: 15px; margin-left: 1px; }

/* Şube takvimi (Google Calendar gömme) */
.cal-embed {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: block;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

@media (max-width: 520px) {
  .branch-bar .container { justify-content: center; }
  .branch-bar-label { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand > span:last-child { display: flex; flex-direction: column; white-space: nowrap; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--teal);
  color: var(--gold);
  border-radius: 11px;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .63rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .12rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: .5rem .6rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-medium);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal-dark); background: var(--teal-tint); }
.nav-links a.active { color: var(--teal-dark); background: var(--teal-light); }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-cta-mobile { display: none; }
.nav-cta-desktop { padding: .68rem 1rem; font-size: .9rem; }

/* Dil değiştirici (bayraklar) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: .35rem .6rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  color: var(--ink-muted);
  transition: background .2s ease, color .2s ease;
}
.lang-btn .flag { font-size: 1.05rem; line-height: 1; }
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--teal); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hero (ana sayfa) ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy, .hero-visual { min-width: 0; }
.hero-title {
  font-size: clamp(2.05rem, 1.2rem + 3.6vw, 4.4rem);
  margin-bottom: var(--sp-3);
  overflow-wrap: break-word;
}
.hero-title .accent { color: var(--teal); }
.hero-title .underline {
  position: relative;
  white-space: nowrap;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.28em;
  background: var(--gold-light);
  border-radius: 4px;
  z-index: -1;
}
.hero-lead {
  font-size: clamp(1.06rem, 1rem + 0.5vw, 1.28rem);
  color: var(--ink-medium);
  max-width: 46ch;
  margin-bottom: var(--sp-4);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.25rem);
  color: var(--teal);
  line-height: 1;
}
.stat .label { font-size: .9rem; color: var(--ink-muted); font-weight: 600; }

/* Hero görsel kompozisyonu */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.75rem;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 230px;
}
.hero-badge .ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 12px;
  flex: none;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-badge span { font-size: .82rem; color: var(--ink-muted); }
.hero-decor {
  position: absolute;
  inset: -8% -6% auto auto;
  width: 60%;
  z-index: -1;
  color: var(--teal-light);
  opacity: .9;
}

/* ---------- Genel sayfa başlığı (alt sayfalar) ---------- */
.page-hero {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(214,154,46,0.14), transparent 60%),
    var(--teal-deep);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  max-width: 18ch;
}
.page-hero p { color: rgba(255,255,255,0.78); max-width: 54ch; font-size: 1.1rem; margin: 0; }
.page-hero .star-bg {
  position: absolute;
  right: -4%; top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 30vw, 420px);
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.breadcrumb { font-size: .88rem; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-2); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Kartlar (programlar / değerler) ---------- */
.grid { display: grid; gap: var(--sp-3); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.card-ic {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: var(--sp-2);
  background: var(--teal-light);
  color: var(--teal-dark);
}
.card-ic svg { width: 28px; height: 28px; }
.card.gold .card-ic { background: var(--gold-light); color: var(--gold-dark); }
.card.rose .card-ic { background: var(--rose-light); color: var(--rose); }
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.card p { color: var(--ink-medium); margin-bottom: var(--sp-2); }
.card .card-link {
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card .tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-dark);
  background: var(--gold-tint);
  padding: .25rem .6rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}

/* Değerler — kompakt liste kart */
.value {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.value .v-ic {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--teal);
}
.value h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.value p { color: var(--ink-medium); font-size: .96rem; margin: 0; }

/* ---------- Bantlar (renkli bölüm) ---------- */
.band {
  background:
    radial-gradient(60% 120% at 0% 0%, rgba(214,154,46,0.16), transparent 55%),
    var(--teal-deep);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band h2 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem); max-width: 24ch; margin-inline: auto; }
.band p { color: rgba(255,255,255,0.82); max-width: 52ch; margin: 0 auto var(--sp-3); }
.band .btn-row { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }
.band .star-bg {
  position: absolute;
  right: -3%; bottom: -30%;
  width: 280px;
  color: rgba(255,255,255,0.06);
}

/* ---------- Split (metin + görsel) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-body, .split-media { min-width: 0; }
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.split-body h2 { font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.5rem); }
.split-body p { color: var(--ink-medium); }

.check-list { list-style: none; margin: var(--sp-2) 0 0; padding: 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-medium); }
.check-list .ck {
  flex: none; width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.check-list .ck svg { width: 14px; height: 14px; }

/* ---------- Program tablosu ---------- */
.schedule {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.schedule table { width: 100%; border-collapse: collapse; }
.schedule th, .schedule td {
  text-align: start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.schedule thead th {
  background: var(--teal-tint);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-dark);
  font-size: .95rem;
}
.schedule tbody tr:last-child td { border-bottom: none; }
.schedule tbody tr:hover { background: var(--surface-warm); }
.schedule td .time { font-weight: 700; color: var(--ink); }

/* ---------- Müfredat — sınıf seçici ---------- */
.grade-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: var(--sp-4);
}
.grade-label {
  width: 100%;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .15rem;
}
.grade-chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .6rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-medium);
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.grade-chip:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
.grade-chip.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Müfredat (35 haftalık tablo) ---------- */
.schedule.curr th:first-child,
.schedule.curr td:first-child { width: 76px; white-space: nowrap; }
.schedule.curr tbody td:first-child { font-weight: 700; color: var(--teal-dark); }
.schedule.curr td { vertical-align: top; }
.curr-status {
  text-align: center;
  color: var(--ink-muted);
  padding: clamp(2rem, 6vw, 3.5rem);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
}
.curr-note {
  margin-top: var(--sp-3);
  font-size: .9rem;
  color: var(--ink-muted);
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
}
/* Mobil: haftalık tablo satırlarını kart'a dönüştür */
@media (max-width: 680px) {
  .schedule.curr { border: none; background: transparent; overflow: visible; }
  .schedule.curr table, .schedule.curr tbody, .schedule.curr tr, .schedule.curr td { display: block; width: 100%; }
  .schedule.curr thead { display: none; }
  .schedule.curr tr {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: var(--sp-2);
    overflow: hidden;
  }
  .schedule.curr td {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    text-align: right;
    border-bottom: 1px solid var(--border);
    padding: .7rem 1rem;
    width: auto;
  }
  .schedule.curr tr td:last-child { border-bottom: none; }
  .schedule.curr td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--ink-muted);
    text-align: left;
    flex: none;
  }
  .schedule.curr td:first-child {
    width: auto;
    background: var(--teal-tint);
    color: var(--teal-dark);
    font-size: 1.02rem;
  }
}

/* ---------- Galeri ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-2);
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
  background: var(--cream-deep);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem .9rem;
  background: linear-gradient(to top, rgba(7,47,42,0.78), transparent);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-item.span-6 { grid-column: span 6; }
.gallery-item.span-4 { grid-column: span 4; }
.gallery-item.span-3 { grid-column: span 3; }
.gallery-item.tall { grid-row: span 2; }

/* Galeri önizleme (ana sayfa, küçük) */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
.preview-grid .gallery-item { aspect-ratio: 1; height: auto; border-radius: var(--r-md); }
.preview-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

/* ---------- Instagram feed (galeri) ---------- */
.insta-feed { min-height: 180px; }
.insta-feed iframe { max-width: 100%; border: 0; }
.insta-placeholder {
  display: grid;
  place-items: center;
  gap: var(--sp-2);
  text-align: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
}
.insta-placeholder .insta-ic {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: var(--gold-light);
  color: var(--gold-dark);
}
.insta-placeholder .insta-ic svg { width: 34px; height: 34px; }
.insta-placeholder p { color: var(--ink-muted); max-width: 38ch; margin: 0; }

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-list { display: grid; gap: var(--sp-2); }
.contact-card {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.contact-card .c-ic {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-card p, .contact-card a { color: var(--ink-medium); margin: 0; font-size: .96rem; }
.contact-card a:hover { color: var(--teal-dark); }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

.social-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: var(--sp-1); }
.social-btn {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.social-btn:hover { transform: translateY(-3px); background: var(--teal); color: #fff; border-color: var(--teal); }
.social-btn svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--sp-4);
  margin-top: var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .brand { color: #fff; margin-bottom: var(--sp-2); }
.site-footer .brand small { color: rgba(255,255,255,0.55); }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: .96rem; }
.footer-links a:hover { color: var(--gold); }
.footer-about p { font-size: .96rem; max-width: 34ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  font-size: .88rem;
  color: rgba(255,255,255,0.55);
}
.site-footer .social-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.site-footer .social-btn:hover { background: var(--gold); color: #2a1d05; border-color: var(--gold); }

/* ---------- Hareket (reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-item.span-6, .gallery-item.span-4, .gallery-item.span-3 { grid-column: span 6; }
}

/* Menü daralt → hamburger (7 öğe için erken eşik) */
@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-2) clamp(1.25rem, 4vw, 2.5rem) var(--sp-3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 90;
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-cta-mobile { display: block; margin-top: var(--sp-1); }
  .nav-cta-desktop { display: none; }
}

@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-grid .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .band { padding-inline: 1.4rem; }
}

@media (max-width: 460px) {
  .nav-actions .lang-switch .lang-btn span:not(.flag) { display: none; }
  .stat .num { font-size: 1.7rem; }
  .hero-stats { gap: 1.1rem; }
  .stat { flex: 1 1 28%; }
  .stat .label { font-size: .8rem; }
  .hero-title .underline { white-space: normal; }
  .brand small { display: none; }
}

/* Erişilebilirlik */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
