:root {
  --bg: #F5F0E8;
  --surface: #FFFDF8;
  --surface-2: #EDE8DD;
  --ink: #3D2B1F;
  --ink-soft: #6B5D52;
  --accent: #C07830;
  --accent-2: #5E7A54;
  --line: rgba(61,43,31,0.15);
  --line-strong: rgba(61,43,31,0.3);
  --header-h: 80px;
  --container-pad: clamp(16px, 4vw, 32px);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

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(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 10000;
  font-size: 0.85rem;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Main */
main { padding-top: var(--header-h); }
main section[id], #form { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(245,240,232,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,.84,.44,1), left 320ms cubic-bezier(.16,.84,.44,1);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; left: 0; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.84rem;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); transform: translateY(-2px); }
.nav-desktop .nav-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; color: var(--surface); }

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px -2px rgba(61,43,31,0.12);
  transition: border-color 240ms, background 240ms, box-shadow 240ms;
}
.nav-toggle:hover {
  border-color: var(--accent);
  background: rgba(192,120,48,0.08);
  box-shadow: 0 0 0 3px rgba(192,120,48,0.15), 0 2px 8px -2px rgba(61,43,31,0.12);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
  left: 10px;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 20px; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ========== DRAWER ========== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 320ms;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer a {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.16,.84,.44,1), transform 240ms cubic-bezier(.16,.84,.44,1), background 240ms;
  border-radius: 6px;
  margin: 0 -12px;
}
.drawer a:hover {
  color: var(--accent);
  transform: translateX(6px);
  background: rgba(192,120,48,0.04);
}
.drawer a:active { background: rgba(192,120,48,0.08); }
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  text-align: center;
  width: 100%;
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); }

/* ========== HERO (split-asymmetric) ========== */
.hero {
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(2rem, 6vh, 4rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text { z-index: 2; }
.hero-text .eyebrow { margin-bottom: 1rem; }
.hero-text h1 { margin-bottom: 1.2rem; }
.hero-text .hero-sub {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-photo {
  position: relative;
}
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: 0 0 80px 0;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.1s linear, box-shadow 600ms cubic-bezier(.16,.84,.44,1);
  box-shadow: 0 20px 60px -20px rgba(61,43,31,0.15);
}
.hero-photo:hover .hero-photo-placeholder {
  box-shadow: 0 24px 70px -20px rgba(192,120,48,0.2);
}
.hero-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(192,120,48,0.08) 100%);
  z-index: 2;
}
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust strip */
.trust-strip {
  display: flex;
  gap: 18px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 40px;
  border: 1px solid var(--line);
}
.trust-badge svg { width: 16px; height: 16px; stroke: var(--accent-2); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(192,120,48,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none;
  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(--accent);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  position: relative;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-divider svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 600ms cubic-bezier(.16,.84,.44,1), transform 600ms cubic-bezier(.16,.84,.44,1);
}
.section-divider:hover svg {
  opacity: 0.85;
  transform: scale(1.15) rotate(8deg);
}

/* ========== #hikaye ========== */
.hikaye-content {
  max-width: 720px;
  margin: 0 auto;
}
.hikaye-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}
.hikaye-content p:first-of-type::first-letter {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.4rem;
  float: left;
  line-height: 1;
  margin: 4px 12px 0 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========== #felsefe ========== */
.felsefe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.felsefe-block {
  position: relative;
}
.felsefe-block .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.felsefe-block .photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16,.84,.44,1);
}
.felsefe-block .photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(192,120,48,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
  z-index: 1;
}
.felsefe-block:hover .photo-placeholder img {
  transform: scale(1.04);
}
.felsefe-block:hover .photo-placeholder::after { opacity: 1; }
.felsefe-block h3 {
  margin-bottom: 0.8rem;
  transition: color 300ms;
}
.felsefe-block:hover h3 { color: var(--accent); }
.felsefe-block p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .felsefe-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ========== #dersler (vertical timeline) ========== */
.dersler-list {
  max-width: 720px;
  margin: 2rem auto 0;
  position: relative;
}
.dersler-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--line);
}

.ders-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 2.5rem;
}
.ders-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2.5px solid var(--accent);
  z-index: 2;
}
.ders-item h4 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.ders-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.ders-item .ders-meta {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ========== #ogrenciler (testimonials) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 780px;
  margin: 2rem auto 0;
}

.testimonial-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(192,120,48,0.18);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Libre Baskerville', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  display: block;
}
.testimonial-card cite span {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.82rem;
  display: block;
  margin-top: 2px;
}

/* ========== #paketler ========== */
.paketler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 2rem;
}

.paket-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
  position: relative;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(192,120,48,0.2);
}
.paket-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px -8px rgba(192,120,48,0.15);
}
.paket-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.paket-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.paket-card .paket-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.paket-card .paket-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}
.paket-card .paket-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.paket-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}
.paket-card ul li {
  font-size: 0.85rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}
.paket-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.paket-card ul li.excluded::before { background: var(--line-strong); }
.paket-card ul li.excluded { opacity: 0.6; text-decoration: line-through; }

.paket-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
}

@media (max-width: 768px) {
  .paketler-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ========== #ilkadim (CTA + form) ========== */
.ilkadim-section {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.ilkadim-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(192,120,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.ilkadim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.ilkadim-section h2 { color: var(--surface); margin-bottom: 1rem; }
.ilkadim-text h2 { color: var(--surface); margin-bottom: 1rem; }
.ilkadim-text p { color: rgba(255,253,248,0.75); font-size: 1rem; line-height: 1.7; max-width: 420px; }

@media (max-width: 768px) {
  .ilkadim-grid { grid-template-columns: 1fr; }
}

/* ========== FORM ========== */
.form-card {
  background: var(--surface);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 6px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,120,48,0.12);
}
.form-card textarea { resize: vertical; min-height: 100px; }
.form-card select { cursor: pointer; }

.kvkk-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);
  cursor: pointer;
}

.kvkk-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 18px;
}
.kvkk-field a { color: var(--accent); text-decoration: underline; }

.form-card button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--surface);
  border: none;
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms, transform 180ms;
}
.form-card button[type="submit"]:hover { background: var(--ink); color: var(--surface); transform: translateY(-2px); }
.form-card button[type="submit"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; color: var(--surface); }

/* ========== STATS COUNTER ========== */
.stats-row {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: left;
}
.stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ========== PROCESS ========== */
.process-list {
  max-width: 680px;
  margin: 2rem auto 0;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2rem;
  border-left: 1.5px solid var(--line);
  margin-left: 20px;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -15px;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
  font-weight: 700;
}
.process-step h4 { margin-bottom: 0.3rem; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.process-step .time-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  transition: color 240ms, background 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 280ms cubic-bezier(.16,.84,.44,1), color 240ms;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-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] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ========== NEWS BLOCK ========== */
.news-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.news-block h4 {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.news-entry {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.85rem;
}
.news-date {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  font-size: 0.78rem;
}
.news-text { color: var(--ink-soft); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,253,248,0.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand .logo { color: var(--surface); display: inline-block; margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 320px; }
.footer-brand .footer-est {
  margin-top: 1rem;
  font-size: 0.78rem;
  opacity: 0.6;
}

.footer-col h4 {
  color: var(--surface);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,253,248,0.65);
  padding: 5px 0;
  transition: color 240ms, transform 200ms;
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,253,248,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.76rem;
  margin: 0;
  opacity: 0.5;
}
.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a { font-size: 0.76rem; color: rgba(255,253,248,0.5); }
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========== 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: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.18), 0 2px 8px -2px rgba(0,0,0,0.08);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(.16,.84,.44,1), opacity 300ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h4 { font-size: 0.92rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: 'Lora', serif;
  transition: background 200ms, color 200ms, border-color 200ms;
  min-height: 44px;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--accent); }
.cookie-btn.accept {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  font-size: 0.84rem;
  padding: 10px 22px;
}
.cookie-btn.accept:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.cookie-btn[data-consent="reject"] {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}
.cookie-btn[data-consent="reject"]:hover { border-color: var(--ink); color: var(--surface); background: var(--ink); }

@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 14px 14px 0 0;
    padding: 18px 18px 20px;
    max-width: 100%;
  }
  .cookie-banner .cookie-actions { gap: 8px; }
  .cookie-banner .cookie-btn { flex: 1; min-width: 0; text-align: center; min-height: 46px; font-size: 0.84rem; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,.84,.44,1), transform 700ms cubic-bezier(.16,.84,.44,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 120ms);
}

.felsefe-block.reveal {
  transform: translateY(40px) scale(0.97);
  transition: opacity 800ms cubic-bezier(.16,.84,.44,1), transform 800ms cubic-bezier(.16,.84,.44,1);
}
.felsefe-block.reveal.is-in { transform: none; }

.testimonial-card.reveal {
  transform: translateY(36px) rotate(-0.5deg);
  transition: opacity 750ms cubic-bezier(.16,.84,.44,1), transform 750ms cubic-bezier(.16,.84,.44,1);
}
.testimonial-card.reveal.is-in { transform: none; }

.paket-card.reveal {
  transform: translateY(44px) scale(0.96);
  transition: opacity 800ms cubic-bezier(.16,.84,.44,1), transform 800ms cubic-bezier(.16,.84,.44,1);
}
.paket-card.reveal.is-in { transform: none; }

.ders-item.reveal {
  transform: translateX(-20px) translateY(16px);
  transition: opacity 650ms cubic-bezier(.16,.84,.44,1), transform 650ms cubic-bezier(.16,.84,.44,1);
}
.ders-item.reveal.is-in { transform: none; }

.process-step.reveal {
  transform: translateX(-16px) translateY(12px);
  transition: opacity 650ms cubic-bezier(.16,.84,.44,1), transform 650ms cubic-bezier(.16,.84,.44,1);
}
.process-step.reveal.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .felsefe-block.reveal,
  .testimonial-card.reveal,
  .paket-card.reveal,
  .ders-item.reveal,
  .process-step.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ========== NICHE ANIMATIONS — makeup/beauty ========== */

/* 1. Brush stroke draw animation */
.brush-stroke-decor {
  position: fixed;
  right: 20px;
  top: 15vh;
  width: 3px;
  height: 70vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}
.brush-stroke-decor path {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 0.1s linear;
}

/* 2. Powder puff float in hero */
@keyframes powder-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.15; }
  25% { transform: translateY(-12px) rotate(2deg) scale(1.1); opacity: 0.22; }
  50% { transform: translateY(-22px) rotate(5deg) scale(0.95); opacity: 0.25; }
  75% { transform: translateY(-8px) rotate(-2deg) scale(1.05); opacity: 0.18; }
}
.powder-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, var(--accent) 40%, rgba(192,120,48,0.3));
  border-radius: 50%;
  animation: powder-float 10s ease-in-out infinite;
  opacity: 0.15;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(192,120,48,0.15);
}
.powder-particle:nth-child(2) { animation-delay: -3s; animation-duration: 13s; width: 7px; height: 7px; }
.powder-particle:nth-child(3) { animation-delay: -6s; animation-duration: 9s; width: 4px; height: 4px; }
.powder-particle:nth-child(4) { animation-delay: -2s; animation-duration: 15s; width: 6px; height: 6px; }

@media (prefers-reduced-motion: reduce) {
  .powder-particle { animation: none; opacity: 0.1; }
  .brush-stroke-decor path { stroke-dashoffset: 0; transition: none; }
}

/* 3. Mirror shimmer on card hover — beauty studio light sweep */
@keyframes mirror-shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(250%) skewX(-12deg); opacity: 0; }
}
.shimmer-hover {
  position: relative;
  overflow: hidden;
}
.shimmer-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,253,248,0.2), rgba(192,120,48,0.06), rgba(255,253,248,0.2), transparent);
  transform: translateX(-100%) skewX(-12deg);
  pointer-events: none;
  transition: none;
}
.shimmer-hover:hover::after {
  animation: mirror-shimmer 800ms cubic-bezier(.16,.84,.44,1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .shimmer-hover::after { display: none; }
}

/* 4. Lipstick/brush icon rotation on hover */
.icon-hover-rotate { transition: transform 360ms cubic-bezier(.2,.7,.2,1); }
.ders-item:hover .icon-hover-rotate { transform: rotate(12deg) scale(1.08); }

/* 5. Palette swatch stagger */
@keyframes palette-reveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.palette-swatch {
  display: inline-block;
  width: 32px;
  height: 6px;
  border-radius: 3px;
  transform-origin: left;
}
.reveal.is-in .palette-swatch {
  animation: palette-reveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* ========== CAPACITY BADGE ========== */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94,122,84,0.08);
  border: 1px solid rgba(94,122,84,0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 500;
  margin-top: 1.5rem;
}
.capacity-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .capacity-dot { animation: none; }
}

/* ========== CONTACT PAGE ========== */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.16,.84,.44,1), background 240ms, box-shadow 240ms;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
  box-shadow: 0 2px 12px -4px rgba(192,120,48,0.12);
}
.contact-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink-soft);
  transition: stroke 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-row:hover svg {
  stroke: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink); text-decoration: none; }
.contact-value a:hover { color: var(--accent); }

/* Hours table */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.88rem;
}
.hours-day { font-weight: 600; color: var(--ink); }
.hours-time { color: var(--ink-soft); }

/* ========== 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: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.table-scroll th, .table-scroll td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ========== THANK YOU PAGE ========== */
.thankyou-section {
  text-align: center;
  padding: clamp(4rem, 12vh, 8rem) 0;
}
.thankyou-section h1 { margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.thankyou-section p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2rem; }

/* ========== LEGAL PAGES ========== */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.legal-content h1 { margin-bottom: 0.5rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.legal-content .legal-updated { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.8rem; margin-bottom: 0.6rem; }
.legal-content p, .legal-content li { font-size: 0.92rem; line-height: 1.72; color: var(--ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 6px; }

/* ========== 404 PAGE ========== */
.error-section {
  text-align: center;
  padding: clamp(5rem, 15vh, 10rem) 0;
}
.error-section h1 {
  font-size: clamp(4rem, 10vw, 4.5rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.error-section h2 { margin-bottom: 1rem; }
.error-section p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ========== SITEMAP PAGE ========== */
.sitemap-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  padding: 0;
}
.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.sitemap-list a { font-size: 0.95rem; }

@media (max-width: 640px) { .sitemap-list { columns: 1; } }

/* ========== ENHANCED HOVER & THEME EFFECTS ========== */

/* Warm glow on CTA buttons */
.btn-primary {
  position: relative;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(192,120,48,0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.16,.84,.44,1);
  pointer-events: none;
}
.btn-primary:hover::before { opacity: 1; }

/* FAQ item enhanced hover */
.faq-item summary:hover { background: rgba(192,120,48,0.04); }
.faq-item summary:hover::after { color: var(--ink); }

/* Ders timeline dot glow on hover */
.ders-item.reveal.is-in {
  transition: opacity 650ms cubic-bezier(.16,.84,.44,1), transform 300ms cubic-bezier(.16,.84,.44,1);
}
.ders-item:hover { transform: translateX(4px); }
.ders-item::before {
  transition: box-shadow 360ms cubic-bezier(.16,.84,.44,1), transform 360ms;
}
.ders-item:hover::before {
  box-shadow: 0 0 0 6px rgba(192,120,48,0.12);
  transform: scale(1.15);
}

/* Process step hover */
.process-step.reveal.is-in {
  transition: opacity 650ms cubic-bezier(.16,.84,.44,1), transform 300ms cubic-bezier(.16,.84,.44,1);
}
.process-step:hover { transform: translateX(4px); }
.process-step::before {
  transition: box-shadow 360ms cubic-bezier(.16,.84,.44,1), transform 300ms;
}
.process-step:hover::before {
  box-shadow: 0 0 0 6px rgba(192,120,48,0.15);
  transform: scale(1.1);
}

/* Testimonial card warm accent on hover */
.testimonial-card.reveal.is-in {
  transition: transform 360ms cubic-bezier(.16,.84,.44,1), box-shadow 360ms, border-color 360ms, opacity 750ms;
}
.testimonial-card:hover {
  border-color: rgba(192,120,48,0.3);
}

/* Paket card enhanced hover */
.paket-card.reveal.is-in {
  transition: transform 360ms cubic-bezier(.16,.84,.44,1), box-shadow 360ms, border-color 360ms, opacity 800ms;
}
.paket-card:hover {
  border-color: rgba(192,120,48,0.3);
}
.paket-card .btn-primary,
.paket-card .btn-ghost {
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 200ms, box-shadow 300ms;
}

/* Hero photo soft warm vignette */
.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(192,120,48,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-photo:hover .hero-photo-placeholder::before { opacity: 1; }

/* Capacity badge warm pulse */
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94,122,84,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(94,122,84,0); }
}
.capacity-badge {
  transition: transform 300ms cubic-bezier(.16,.84,.44,1);
}
.capacity-badge:hover { transform: translateY(-2px); }

/* Stats number warm accent reveal */
.stat-num {
  transition: transform 300ms cubic-bezier(.16,.84,.44,1);
}
.stat-item:hover .stat-num { transform: scale(1.05); }

/* Trust badge hover */
.trust-badge {
  transition: transform 240ms cubic-bezier(.16,.84,.44,1), border-color 240ms, box-shadow 240ms;
}
.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(192,120,48,0.3);
  box-shadow: 0 4px 12px -4px rgba(192,120,48,0.12);
}

/* News entry hover */
.news-entry {
  transition: transform 200ms cubic-bezier(.16,.84,.44,1), background 200ms;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}
.news-entry:hover {
  transform: translateX(4px);
  background: rgba(192,120,48,0.03);
}

/* Warm ambient glow on ilkadim CTA section */
.ilkadim-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192,120,48,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Logo subtle hover */
.logo {
  transition: opacity 240ms;
}
.logo:hover { opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { display: none; }
  .hero-photo-placeholder::before { display: none; }
  .ders-item:hover,
  .process-step:hover,
  .news-entry:hover,
  .footer-col a:hover,
  .trust-badge:hover,
  .capacity-badge:hover { transform: none; }
  .ders-item:hover::before,
  .process-step:hover::before { box-shadow: none; transform: none; }
  .stat-item:hover .stat-num { transform: none; }
  .section-divider:hover svg { transform: none; }
  .felsefe-block:hover h3 { color: var(--ink); }
  .felsefe-block .photo-placeholder::after { display: none; }
}

/* ========== ENHANCED STAGGER & BEAUTY MICRO-EFFECTS ========== */

/* Warm glow pulse on featured pricing card */
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 4px 20px -8px rgba(192,120,48,0.15); }
  50% { box-shadow: 0 4px 28px -6px rgba(192,120,48,0.28); }
}
.paket-card.featured {
  animation: featured-glow 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .paket-card.featured { animation: none; }
}

/* Soft brush stroke underline on heading hover */
.hikaye-content h2,
.felsefe-block h3,
.paket-card h3 {
  background-image: linear-gradient(120deg, rgba(192,120,48,0.15) 0%, rgba(192,120,48,0.25) 100%);
  background-repeat: no-repeat;
  background-size: 0% 40%;
  background-position: 0 88%;
  transition: background-size 500ms cubic-bezier(.16,.84,.44,1), color 300ms;
}
.felsefe-block:hover h3,
.paket-card:hover h3 {
  background-size: 100% 40%;
}

/* Drawer links stagger animation */
.drawer.is-open a {
  animation: drawer-slide 400ms cubic-bezier(.16,.84,.44,1) both;
}
.drawer.is-open a:nth-child(1) { animation-delay: 80ms; }
.drawer.is-open a:nth-child(2) { animation-delay: 130ms; }
.drawer.is-open a:nth-child(3) { animation-delay: 180ms; }
.drawer.is-open a:nth-child(4) { animation-delay: 230ms; }
.drawer.is-open a:nth-child(5) { animation-delay: 280ms; }
.drawer.is-open a:nth-child(6) { animation-delay: 330ms; }
.drawer.is-open a:nth-child(7) { animation-delay: 380ms; }

@keyframes drawer-slide {
  from { transform: translateX(24px); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .drawer.is-open a { animation: none; }
}

/* Contact row soft warm glow on focus */
.contact-row:focus-within {
  background: rgba(192,120,48,0.04);
  box-shadow: 0 0 0 3px rgba(192,120,48,0.1);
}

/* Section divider icon gentle opacity pulse */
@keyframes divider-breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.7; }
}
.section-divider svg {
  animation: divider-breathe 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .section-divider svg { animation: none; }
}

/* Testimonial card quote mark warm glow on hover */
.testimonial-card:hover::before {
  opacity: 0.45;
  color: var(--accent);
  transition: opacity 400ms, color 400ms;
}

/* Form inputs — warm focus glow */
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  box-shadow: 0 0 0 3px rgba(192,120,48,0.12), 0 2px 8px -4px rgba(192,120,48,0.15);
}

/* Footer links — subtle warm underline grow on hover */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 300ms cubic-bezier(.16,.84,.44,1);
}
.footer-col a:hover::after {
  width: 100%;
}

/* ========== PRINT ========== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .brush-stroke-decor { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
