:root {
  --bg: #F4F1EB;
  --surface: #FFFFFF;
  --surface-2: #EDE9E1;
  --ink: #1C1917;
  --ink-soft: #57534E;
  --accent: #B5432A;
  --accent-2: #4A6FA5;
  --line: rgba(28,25,23,.12);
  --line-strong: rgba(28,25,23,.24);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 6px;
  interpolate-size: allow-keywords;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { max-width: 68ch; }
p + p { margin-top: 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed; top: -60px; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 10px 18px; border-radius: var(--radius);
  z-index: 9999; font-size: 0.875rem;
  transition: top 200ms;
}
.skip-link:focus { top: 16px; outline: none; }

/* ===== FOCUS RING ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(244,241,235,0.92);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  padding: 0 var(--pad);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 80ms linear;
  z-index: 1;
}
.site-header.scrolled {
  background: rgba(244,241,235,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 60px;
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container); margin: 0 auto;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.2rem; color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* ===== NAV DESKTOP ===== */
.nav-desktop { display: none; }
@media (min-width: 1025px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 26px;
  }
  .nav-desktop a {
    position: relative;
    font-size: 0.85rem; font-weight: 600;
    color: var(--ink); text-decoration: none;
    padding: 4px 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .nav-desktop a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 280ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop .nav-cta {
    background: var(--ink); color: var(--surface);
    padding: 10px 22px; border-radius: var(--radius);
    font-size: 0.8rem; letter-spacing: 0.06em;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }
  .nav-desktop .nav-cta.is-active { color: var(--surface); }
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  z-index: 1100; position: relative; padding: 6px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1025px) { .nav-toggle { display: none; } }

/* ===== MOBILE DRAWER ===== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) var(--pad) var(--pad);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem; color: var(--ink);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms;
  z-index: 1;
}
.drawer-close:hover { background: var(--surface-2); color: var(--accent); }
.drawer a {
  display: block;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms;
}
.drawer a:hover { color: var(--accent); }
.drawer a.is-active { color: var(--accent); }
.drawer .nav-cta {
  margin-top: 16px;
  background: var(--ink); color: var(--surface);
  text-align: center; padding: 14px 24px;
  border-radius: var(--radius); border-bottom: none;
}
.drawer .nav-cta:hover { background: var(--accent); color: var(--surface); }

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem,10vw,8rem) 0 clamp(3rem,6vw,5rem);
}
.hero__eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-style: normal;
}
.hero__title { margin-bottom: 1.5rem; max-width: min(20ch, 90%); margin-inline: auto; }
.hero__line {
  display: block;
  position: relative;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  transition: color 400ms cubic-bezier(.2,.7,.2,1);
}
.hero__line::after {
  content: '';
  position: absolute; left: 5%; right: 5%; top: 30%;
  height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='40'%3E%3Cpath d='M0 20Q25 0 50 20Q75 40 100 20Q125 0 150 20Q175 40 200 20' stroke='%23B5432A' stroke-width='2' fill='none'/%3E%3Cpath d='M0 30Q30 5 60 25Q90 45 120 20Q150-5 180 20' stroke='%234A6FA5' stroke-width='1.5' fill='none' opacity='.5'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 40px;
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.hero__title:hover .hero__line { color: var(--accent); }
.hero__title:hover .hero__line::after {
  opacity: 0.55;
  animation: morph-flow 5s linear infinite;
}
@keyframes morph-flow {
  from { background-position: 0 0; }
  to { background-position: 200px 0; }
}
.hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero__actions { margin-bottom: 2.5rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color 240ms, color 240ms;
}
.trust-badge:hover { border-color: var(--accent); color: var(--accent); }
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__deco {
  position: absolute;
  bottom: -20px; left: -5%; width: 110%;
  pointer-events: none; opacity: 0.12;
}
.dance-curve {
  stroke: var(--accent); stroke-width: 2; fill: none;
  stroke-dasharray: 2200; stroke-dashoffset: 2200;
  animation: draw-curve 3s cubic-bezier(.2,.7,.2,1) 0.8s forwards;
}
@keyframes draw-curve { to { stroke-dashoffset: 0; } }

.hero__dancer {
  position: absolute; right: 6%; bottom: 8%;
  width: 120px; opacity: 0.08;
  pointer-events: none;
}
.hero__dancer path {
  stroke: var(--ink); stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--ink); color: var(--surface);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--ink);
  padding: 12px 28px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== SECTIONS ===== */
.section {
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative;
}
.section__title {
  text-align: center;
  margin-bottom: 1.5em;
}
.section__eyebrow {
  display: block; text-align: center;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-style: normal;
}

/* ===== DROP CAP ===== */
.drop-cap::first-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  float: left;
  font-size: 4.2em;
  line-height: 0.78;
  margin: 0.06em 0.12em 0 0;
  color: var(--accent);
  animation: drop-pulse 6s ease-in-out infinite;
}
@keyframes drop-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding: 1em 0 1em 1.5em;
  margin: 2.5em 0;
  line-height: 1.4;
  max-width: 52ch;
}
.pull-quote cite {
  display: block; margin-top: 0.6em;
  font-size: 0.45em; font-style: normal;
  color: var(--ink-soft);
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ===== #manifesto ===== */
.manifesto {
  padding-top: clamp(5rem,10vw,9rem);
  padding-bottom: clamp(4rem,8vw,7rem);
}
.manifesto .section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.manifesto__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.manifesto__body p { max-width: none; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(3rem,5vw,4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(181,67,42,0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(74,111,165,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem,3vw,3rem);
  text-align: center;
  position: relative;
}
.stat__number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--accent);
}
.stat__label {
  display: block; margin-top: 0.4em;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ===== #felsefe ===== */
.felsefe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.felsefe__col { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); }
.felsefe__col p { max-width: none; }
.felsefe__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--accent);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem 0;
}

/* ===== #egitmenler ===== */
.instructor {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.instructor:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.instructor:nth-child(even) { grid-template-columns: 1fr 260px; }
.instructor:nth-child(even) .instructor__photo { order: 2; }

.instructor__photo {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.instructor:hover .instructor__photo {
  transform: rotate(-2deg) scale(1.02);
}
.instructor__photo-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.85rem;
}
.instructor__photo-inner svg {
  width: 80px; height: auto; opacity: 0.2;
}
.instructor__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}
.instructor__name {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.25em;
  color: var(--ink);
}
.instructor__role {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1em;
}
.instructor__bio {
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-soft);
}
.instructor__bio p { max-width: none; }

/* ===== #surec (process timeline) ===== */
.surec { background: var(--surface); }
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.timeline__step {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.timeline__step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -48px; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  z-index: 1;
}
.timeline__icon {
  width: 32px; height: 32px;
  margin-bottom: 0.5rem;
  color: var(--accent-2);
}
.timeline__icon svg { width: 100%; height: 100%; }
.timeline__time {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5em;
}
.timeline__step h4 { margin-bottom: 0.5em; font-style: normal; }
.timeline__step p {
  font-size: 0.95rem; line-height: 1.65;
  color: var(--ink-soft);
  max-width: none;
}

/* ===== #takvim ===== */
.takvim__list {
  max-width: 720px;
  margin: 0 auto;
}
.takvim__item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: background 240ms;
}
.takvim__item:hover { background: var(--surface); border-radius: var(--radius); padding-left: 12px; padding-right: 12px; }
.takvim__day {
  font-weight: 700; font-size: 0.95rem;
  color: var(--ink);
}
.takvim__class {
  font-size: 1rem;
  color: var(--ink-soft);
}
.takvim__class strong { color: var(--ink); font-weight: 600; }
.takvim__level {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  white-space: nowrap;
}
.takvim__level--baslangic { border-color: var(--accent); color: var(--accent); }
.takvim__level--orta { border-color: var(--accent-2); color: var(--accent-2); }
.takvim__level--tum { border-color: var(--ink-soft); color: var(--ink-soft); }

/* ===== #ucretler ===== */
.ucretler__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(181,67,42,0.15);
}
.price-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.price-card--featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--surface);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px;
}
.price-card__name {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75em;
  font-style: normal;
}
.price-card__price {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.15em;
}
.price-card__price small {
  font-size: 0.4em; font-weight: 400;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  color: var(--ink-soft);
}
.price-card__list {
  list-style: none; text-align: left;
  margin: 1.5em 0;
  font-size: 0.92rem; line-height: 1.8;
  color: var(--ink-soft);
}
.price-card__list li { padding-left: 1.3em; position: relative; }
.price-card__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.price-card__excluded {
  list-style: none; text-align: left;
  margin-bottom: 1.5em;
  font-size: 0.85rem; line-height: 1.8;
  color: var(--ink-soft);
  opacity: 0.6;
}
.price-card__excluded li { padding-left: 1.3em; position: relative; }
.price-card__excluded li::before {
  content: '—'; position: absolute; left: 0;
}
.price-disclaimer {
  text-align: center; margin-top: 2rem;
  font-size: 0.85rem; color: var(--ink-soft);
  font-style: italic;
}

/* ===== #yorumlar ===== */
.yorumlar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.yorumlar__grid .testimonial:first-child {
  grid-row: span 2;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(181,67,42,0.12);
}
.testimonial__text {
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5em;
  font-style: italic;
}
.testimonial__text::before {
  content: '"';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem; line-height: 0;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3em;
  opacity: 0.5;
}
.testimonial__author {
  font-weight: 700; font-size: 0.95rem;
  color: var(--ink);
}
.testimonial__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.25em;
}

/* ===== #sss (FAQ accordion) ===== */
.sss { background: var(--surface); }
.sss__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.5rem; font-weight: 300;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(.4,0,.2,1),
              background 240ms, color 240ms;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.faq-item > .body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .body {
  height: auto;
  padding-block-end: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .body { transition: none; }
}
.faq-item .body p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--ink-soft);
  max-width: none;
}

/* ===== CONTACT / FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-info { font-size: 0.95rem; line-height: 1.7; }
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 1.5rem;
}
.contact-channel {
  display: contents;
  cursor: default;
}
.contact-channel__icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel__text {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover .contact-channel__icon { color: var(--accent); transform: scale(1.08); }
.contact-channel:hover .contact-channel__text { transform: translateX(4px); }
.contact-channel__label {
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-channel__value {
  color: var(--ink-soft);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-channel__value a { color: var(--accent); }

/* ===== FORM ===== */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form__title {
  font-size: 1.25rem;
  margin-bottom: 1.25em;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  display: block; width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,67,42,0.1);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.field-checkbox label {
  font-size: 0.85rem; font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 0;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ===== CONTACT CHANNELS (iletisim page) ===== */
.contact-channels-page {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 14px;
  align-items: start;
}
.channel-row {
  display: contents;
  cursor: default;
}
.channel-row__icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  margin-top: 3px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-row__content {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-row:last-of-type .channel-row__content,
.channel-row:last-child .channel-row__content { border-bottom: none; }
.channel-row:hover .channel-row__icon { color: var(--accent); transform: scale(1.08); }
.channel-row:hover .channel-row__content { transform: translateX(4px); }
.channel-row__label {
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.channel-row__value {
  font-size: 0.95rem; color: var(--ink-soft);
  word-break: break-word; overflow-wrap: anywhere;
}
.channel-row__value a { color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem,6vw,5rem) 0 0;
  font-size: 0.9rem; line-height: 1.65;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  margin-bottom: clamp(2rem,4vw,3.5rem);
}
.footer__brand .logo { color: var(--surface); font-size: 1.15rem; margin-bottom: 1rem; display: inline-block; }
.footer__brand .logo:hover { color: var(--accent); }
.footer__brand p { color: rgba(255,255,255,0.55); max-width: 340px; }
.footer__heading {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1em;
  font-style: normal;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.5em; }
.footer__links a {
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
  text-decoration: none;
  transition: color 240ms;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  transform: translateY(0); opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner__title {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: var(--ink); margin-bottom: 0.5em;
  font-style: normal;
}
.cookie-banner__text {
  font-size: 0.85rem; color: var(--ink-soft);
  line-height: 1.55; margin-bottom: 1em;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-btn {
  flex: 1; min-width: 100px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer; border: 1px solid var(--line-strong);
  background: var(--bg); color: var(--ink);
  transition: background 200ms, color 200ms, border-color 200ms;
  min-height: 44px;
}
.cookie-btn:hover { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }
.cookie-btn--accept { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-btn--accept:hover { background: var(--accent); border-color: var(--accent); color: var(--surface); }

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse; width: 100%;
  font-size: 0.92rem;
}
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th {
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}
td { color: var(--ink-soft); }

/* ===== DANCE-SPECIFIC ANIMATIONS ===== */
@keyframes arabesque-draw {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}
.deco-arabesque {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}
.deco-arabesque path {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  stroke-linecap: round;
}
.deco-arabesque.is-in path {
  animation: arabesque-draw 2s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes pirouette {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.pirouette-hover:hover .pirouette-icon {
  animation: pirouette 800ms cubic-bezier(.2,.7,.2,1);
}

@keyframes gentle-sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.sway { animation: gentle-sway 8s ease-in-out infinite; }

@keyframes breath {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.06); opacity: 0.18; }
}
.breath { animation: breath 10s ease-in-out infinite; }

/* ===== DIVIDER ===== */
.section-divider {
  display: block; width: 80px; height: 2px;
  margin: 0 auto clamp(3rem,6vw,5rem);
  background: var(--accent);
  opacity: 0.3;
  border: none;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: clamp(3rem,8vw,6rem) 0 clamp(2rem,4vw,3rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0.3em; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: clamp(3rem,6vw,5rem);
}
.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  text-align: left;
}
.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align: left;
}
.policy-content p {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1em;
  max-width: none;
}
.policy-content ul, .policy-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: var(--ink-soft);
}
.policy-content li { margin-bottom: 0.5em; font-size: 0.95rem; line-height: 1.6; }
.policy-content strong { color: var(--ink); }

/* ===== THANK YOU ===== */
.thankyou {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(3rem,8vw,6rem) 0;
}
.thankyou h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
.thankyou p { color: var(--ink-soft); margin: 0 auto 2rem; max-width: 480px; font-size: 1.05rem; }

/* ===== 404 ===== */
.not-found {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(3rem,8vw,6rem) 0;
}
.not-found__code {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem,12vw,10rem);
  font-weight: 700; font-style: italic;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.not-found h1 { font-size: clamp(2rem,4vw,3rem); margin: 0.3em 0; }
.not-found p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ===== SITE MAP PAGE ===== */
.sitemap-list { list-style: none; }
.sitemap-list li { margin-bottom: 0.75em; }
.sitemap-list a { font-size: 1.05rem; font-weight: 600; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  align-items: start;
  margin-bottom: clamp(3rem,6vw,5rem);
}
.about-intro__text { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); }
.about-intro__text p { max-width: none; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem,3vw,2.5rem);
  margin-top: clamp(3rem,6vw,5rem);
}
.value-card {
  text-align: center;
  padding: clamp(1.5rem,3vw,2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(181,67,42,0.12);
}
.value-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.value-card__icon svg { width: 100%; height: 100%; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.5em; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ucretler__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .instructor { grid-template-columns: 200px 1fr; }
  .instructor:nth-child(even) { grid-template-columns: 1fr 200px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .felsefe__grid { grid-template-columns: 1fr; }
  .instructor,
  .instructor:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .instructor__photo { max-width: 280px; }
  .instructor:nth-child(even) .instructor__photo { order: 0; }
  .yorumlar__grid { grid-template-columns: 1fr; }
  .yorumlar__grid .testimonial:first-child { grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .takvim__item { grid-template-columns: 1fr; gap: 4px; }
  .takvim__level { justify-self: start; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero__line { font-size: clamp(2.8rem, 12vw, 4rem); }
  .trust-badge { font-size: 0.78rem; padding: 6px 14px; }
  .price-card { padding: clamp(1.2rem,3vw,1.8rem); }
  .testimonial { padding: clamp(1.2rem,3vw,1.8rem); }
  .timeline { padding-left: 40px; }
  .timeline__marker { width: 30px; height: 30px; font-size: 0.8rem; left: -40px; }
  .timeline::before { left: 14px; }
  .value-card__icon { width: 36px; height: 36px; }
  .value-card { padding: clamp(1rem,3vw,1.5rem); }
}

@media (max-width: 430px) {
  .hero__trust { flex-direction: column; align-items: center; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-btn { min-width: 0; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero { min-height: auto; padding: 2rem 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  .btn-primary, .btn-ghost { border: 1px solid #000; background: none; color: #000; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__title:hover .hero__line::after { animation: none; }
  .dance-curve { animation: none; stroke-dashoffset: 0; }
  .deco-arabesque path { animation: none; stroke-dashoffset: 0; }
  .drop-cap::first-letter { animation: none; }
  .sway { animation: none; }
  .breath { animation: none; }
}

.instructor__photo-img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 360ms cubic-bezier(.2,.7,.2,1)}
.pirouette-hover:hover .instructor__photo-img{transform:scale(1.04)}
