/* =============================================================
   DUDAK AKADEMİ — Medikal Estetik Eğitim
   Tasarım sistemi / global stiller
   Palet: Porselen · Blush · Gül · Bordo · Mürekkep · Şampanya
   Tipografi: Fraunces (display) + Jost (sans)
   ============================================================= */

:root {
  /* Renkler */
  --porcelain: #FBF7F5;
  --porcelain-2: #F6EFEA;
  --blush: #F3E4DF;
  --blush-deep: #EBD1C9;
  --rose: #B05C6E;
  --rose-deep: #8F4356;
  --bordeaux: #5A1E2D;
  --bordeaux-deep: #3D1522;
  --ink: #2B1B22;
  --ink-soft: #6A5560;
  --champagne: #BFA06A;
  --champagne-soft: #D8C39A;

  --line: rgba(43, 27, 34, 0.12);
  --line-soft: rgba(43, 27, 34, 0.07);
  --line-light: rgba(251, 247, 245, 0.18);

  /* Tipografi */
  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Ölçek */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset katmanı ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Tipografik roller ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--bordeaux-deep);
}
.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 300;
}

/* Eyebrow — küçük kılavuz etiket + imza yay */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 10px;
  /* Cupid's bow — imza dudak yayı */
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='10' viewBox='0 0 34 10'%3E%3Cpath d='M1 8 C 6 8, 9 2, 12 5 C 14 7, 15.5 3, 17 3 C 18.5 3, 20 7, 22 5 C 25 2, 28 8, 33 8' fill='none' stroke='%23B05C6E' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.eyebrow.on-dark { color: var(--champagne-soft); }
.eyebrow.on-dark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='10' viewBox='0 0 34 10'%3E%3Cpath d='M1 8 C 6 8, 9 2, 12 5 C 14 7, 15.5 3, 17 3 C 18.5 3, 20 7, 22 5 C 25 2, 28 8, 33 8' fill='none' stroke='%23D8C39A' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---------- Yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
.max-60ch { max-width: 60ch; }
.max-52ch { max-width: 52ch; }
.mx-auto { margin-inline: auto; }

/* Bölüm başlığı */
.section-head { max-width: 66ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 300;
}
.section-head p { margin-top: 1.25rem; }

/* Görsel çerçeve — bozuk stok görselde bile şık bordo→blush degrade fallback */
.media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 0%, var(--blush-deep) 0%, transparent 55%),
    linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 60%, var(--ink) 100%);
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.6s ease;
}
.media[data-ratio="portrait"] { aspect-ratio: 4 / 5; }
.media[data-ratio="landscape"] { aspect-ratio: 3 / 2; }
.media[data-ratio="square"] { aspect-ratio: 1 / 1; }
.media[data-ratio="wide"] { aspect-ratio: 16 / 9; }
img.is-broken { opacity: 0; }

/* ---------- Butonlar ---------- */
.btn {
  --bg: var(--bordeaux);
  --fg: var(--porcelain);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--bordeaux-deep); border-color: var(--bordeaux-deep); }
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost { --bg: transparent; --fg: var(--bordeaux); border-color: var(--line); }
.btn--ghost:hover { --bg: var(--bordeaux); color: var(--porcelain); border-color: var(--bordeaux); }

.btn--light { --bg: var(--porcelain); --fg: var(--bordeaux-deep); }
.btn--light:hover { --bg: #fff; color: var(--bordeaux-deep); }

.btn--outline-light { --bg: transparent; --fg: var(--porcelain); border-color: var(--line-light); }
.btn--outline-light:hover { --bg: var(--porcelain); color: var(--bordeaux-deep); border-color: var(--porcelain); }

/* Metin bağlantısı — altı yay çizgili */
.link-underline {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-deep);
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease), color 0.3s ease;
}
.link-underline:hover { gap: 0.9em; color: var(--bordeaux); }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--porcelain) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.site-header.is-stuck { border-color: var(--line-soft); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  color: var(--bordeaux-deep);
  line-height: 1;
}
.brand-name b { font-weight: 600; }
.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--rose); transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bordeaux); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: none;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; height: 1.5px; width: 24px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s ease; margin-inline: auto; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--porcelain);
    padding: 1rem var(--gutter) 2.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s ease;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  body.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta .btn { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}
.hero-copy .lead { margin-top: 1.8rem; max-width: 46ch; }
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-visual { position: relative; }
.hero-visual .media { border-radius: 8px; box-shadow: 0 40px 80px -40px rgba(61, 21, 34, 0.5); }
.hero-badge {
  position: absolute; left: -1.5rem; bottom: 2rem;
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: 6px; padding: 1rem 1.35rem;
  display: flex; align-items: center; gap: 0.9rem;
  box-shadow: 0 24px 50px -28px rgba(61,21,34,0.4);
}
.hero-badge .num { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; color: var(--bordeaux); }
.hero-badge .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.4; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-badge { left: auto; right: 1rem; }
}

/* =============================================================
   ŞERİT — istatistik / güven bandı
   ============================================================= */
.trust {
  background: var(--bordeaux-deep);
  color: var(--porcelain);
}
.trust .stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-light);
  border-block: 1px solid var(--line-light);
}
.stat { background: var(--bordeaux-deep); padding: clamp(2rem, 4vw, 3.2rem) 1.5rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1; }
.stat .n span { color: var(--champagne-soft); }
.stat .l { margin-top: 0.7rem; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,247,245,0.72); }
@media (max-width: 720px) { .trust .stats { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   EĞİTİM İNDEKSİ — editöryel liste (ana sayfa)
   ============================================================= */
.course-index { border-top: 1px solid var(--line); }
.course-row {
  display: grid; grid-template-columns: 4rem 1.3fr 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease);
  position: relative;
}
.course-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, var(--blush), transparent);
  z-index: -1; transition: width 0.5s var(--ease); opacity: 0;
}
.course-row:hover { padding-left: 1.4rem; }
.course-row:hover::before { width: 100%; opacity: 1; }
.course-row .idx { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose); }
.course-row h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 400; }
.course-row .desc { color: var(--ink-soft); font-size: 0.95rem; }
.course-row .go {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--bordeaux); flex: none;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.course-row:hover .go { background: var(--bordeaux); color: var(--porcelain); transform: rotate(-45deg); }
@media (max-width: 780px) {
  .course-row { grid-template-columns: 2.4rem 1fr auto; }
  .course-row .desc { display: none; }
}

/* =============================================================
   KART IZGARASI (eğitim kartları, farkımız, yorumlar)
   ============================================================= */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Eğitim kartı */
.course-card {
  display: flex; flex-direction: column;
  background: var(--porcelain); border: 1px solid var(--line-soft);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s ease;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(61,21,34,0.42); border-color: var(--blush-deep); }
.course-card .media { aspect-ratio: 3/2; }
.course-card:hover .media img { transform: scale(1.06); }
.course-card .body { padding: 1.6rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--rose-deep); background: var(--blush); padding: 0.35em 0.85em; border-radius: 100px;
  margin-bottom: 1rem;
}
.course-card h3 { font-size: 1.5rem; font-weight: 400; }
.course-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0.7rem 0 1.4rem; flex: 1; }
.course-card .meta { display: flex; gap: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); font-size: 0.8rem; color: var(--ink-soft); }
.course-card .meta b { color: var(--bordeaux); font-weight: 500; }
.course-card .foot { margin-top: 1.3rem; }

/* Fark / özellik kartı */
.feature {
  padding: 2rem 1.9rem; border: 1px solid var(--line-soft); border-radius: 8px;
  background: linear-gradient(180deg, var(--porcelain), var(--porcelain-2));
  transition: transform 0.5s var(--ease), border-color 0.4s ease;
}
.feature:hover { transform: translateY(-5px); border-color: var(--blush-deep); }
.feature .ico { width: 44px; height: 44px; color: var(--rose-deep); margin-bottom: 1.3rem; }
.feature h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.6rem; }
.feature p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }
.feature .n { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--champagne); display: block; margin-bottom: 1rem; }

/* =============================================================
   SPLIT — görsel + metin (akademi / eğitmen)
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media .media { border-radius: 8px; }
.split-body h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
.split-body .lead { margin-top: 1.4rem; }
.split-list { margin-top: 2rem; display: grid; gap: 1.1rem; }
.split-list li { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.98rem; }
.split-list .ck { flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--rose-deep); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split-media { order: 0; }
}

/* İmza yay ayırıcı */
.rule-lip {
  height: 14px; width: 120px; margin: 0 0 2rem;
  background: no-repeat left center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'%3E%3Cpath d='M2 10 C 30 10, 45 3, 55 6 C 58.5 7, 60 4, 60 4 C 60 4, 61.5 7, 65 6 C 75 3, 90 10, 118 10' fill='none' stroke='%23BFA06A' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
}
.rule-lip.center { margin-inline: auto; }

/* =============================================================
   EĞİTMEN
   ============================================================= */
.mentor { background: var(--blush); }
.mentor-quote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.4; color: var(--bordeaux-deep);
  margin: 1.6rem 0 0;
}
.mentor-sign { margin-top: 1.8rem; }
.mentor-sign .nm { font-family: var(--font-display); font-size: 1.25rem; color: var(--bordeaux); }
.mentor-sign .rl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); margin-top: 0.3rem; }

/* =============================================================
   YORUMLAR
   ============================================================= */
.quote-card {
  padding: 2.2rem 2rem; border: 1px solid var(--line-soft); border-radius: 8px; background: var(--porcelain);
  display: flex; flex-direction: column; gap: 1.4rem; height: 100%;
}
.quote-card .stars { color: var(--champagne); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--ink); font-weight: 300; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: 0.9rem; }
.quote-card .av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex: none; }
.quote-card .who .nm { font-weight: 500; font-size: 0.92rem; color: var(--bordeaux); }
.quote-card .who .mt { font-size: 0.78rem; color: var(--ink-soft); }

/* =============================================================
   CTA bandı
   ============================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--bordeaux-deep); color: var(--porcelain); }
.cta-band .media { position: absolute; inset: 0; opacity: 0.22; }
.cta-band .media img { object-position: center; }
.cta-inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-inner h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; }
.cta-inner p { color: rgba(251,247,245,0.82); margin: 1.4rem auto 2.4rem; max-width: 48ch; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--ink); color: rgba(251,247,245,0.72); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: clamp(3.5rem, 6vw, 5rem); }
.footer-brand .brand-name { color: var(--porcelain); }
.footer-brand p { margin: 1.3rem 0 1.6rem; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne-soft); font-weight: 500; margin-bottom: 1.3rem; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s ease; }
.footer-col a:hover, .footer-brand a:hover { color: var(--porcelain); }
.socials { display: flex; gap: 0.7rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; color: var(--porcelain); transition: background 0.35s var(--ease), transform 0.35s var(--ease); }
.socials a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line-light); padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; }
.footer-bottom a { color: rgba(251,247,245,0.72); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* =============================================================
   İÇ SAYFA BAŞLIĞI (page hero)
   ============================================================= */
.page-hero { background: var(--blush); border-bottom: 1px solid var(--line-soft); }
.page-hero .wrap { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; max-width: 18ch; }
.page-hero .lead { margin-top: 1.4rem; max-width: 54ch; }
.breadcrumb { display: flex; gap: 0.6rem; align-items: center; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--bordeaux); }
.breadcrumb span { color: var(--ink-soft); }

/* =============================================================
   S.S.S. — accordion
   ============================================================= */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.6rem 0; font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400; color: var(--bordeaux-deep);
}
.faq-q .pm { flex: none; width: 30px; height: 30px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--rose); left: 50%; top: 50%; transition: transform 0.4s var(--ease); }
.faq-q .pm::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .pm::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq-item[aria-expanded="true"] .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 1.7rem; color: var(--ink-soft); max-width: 62ch; }

/* =============================================================
   GALERİ
   ============================================================= */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.6rem, 1.5vw, 1rem); }
.gallery .media { border-radius: 6px; cursor: pointer; }
.gallery .media:hover img { transform: scale(1.07); }
.gallery .tall { grid-row: span 2; }
.gallery .tall.media { aspect-ratio: auto; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery .tall { grid-row: span 1; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(43,27,34,0.9); display: grid; place-items: center; padding: 5vw; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.8rem; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-light); background: none; color: var(--porcelain); font-size: 1.4rem; }

/* =============================================================
   İLETİŞİM
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 1.6rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.info-item .ico { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--blush); color: var(--rose-deep); display: grid; place-items: center; }
.info-item h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; margin-bottom: 0.3rem; }
.info-item p { margin: 0; color: var(--ink); font-size: 1rem; }
.info-item a:hover { color: var(--bordeaux); }

.form-card { background: var(--porcelain); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.8rem, 4vw, 2.8rem); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.55rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--porcelain-2); border: 1px solid var(--line); border-radius: 6px; padding: 0.85rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rose) 18%, transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-size: 0.9rem; color: var(--rose-deep); min-height: 1.2em; }

.map-embed { margin-top: 2.5rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }

/* =============================================================
   EĞİTİM DETAY
   ============================================================= */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 400; margin-top: 2.6rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.prose ul.ticks { display: grid; gap: 0.9rem; margin: 1.2rem 0 1.6rem; }
.prose ul.ticks li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink); }
.prose ul.ticks .ck { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--rose-deep); }
.curriculum { counter-reset: mod; margin-top: 1.4rem; }
.curriculum li { counter-increment: mod; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.curriculum li::before { content: counter(mod, decimal-leading-zero); font-family: var(--font-display); color: var(--rose); font-size: 1.1rem; }
.curriculum h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--bordeaux-deep); }
.curriculum p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

.detail-aside { position: sticky; top: 100px; }
.price-card { background: var(--porcelain); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.price-card .media { aspect-ratio: 4/3; }
.price-card .body { padding: 1.7rem; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--bordeaux); line-height: 1; }
.price-card .price small { font-family: var(--font-sans); font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
.spec-list { margin: 1.5rem 0; display: grid; gap: 0.85rem; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--line-soft); }
.spec-list li span:first-child { color: var(--ink-soft); }
.spec-list li span:last-child { color: var(--bordeaux); font-weight: 500; }
.price-card .btn { width: 100%; justify-content: center; }

/* =============================================================
   Scroll-reveal animasyon
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }
