/* ===== DERINLIK YOGA — Editorial Magazine Stylesheet ===== */

/* --- Reset & Base --- */
:root {
  interpolate-size: allow-keywords;
  --bg: #0F1923;
  --surface: #F5F0E8;
  --surface-2: rgba(201,169,110,0.07);
  --ink: #F0EDE6;
  --ink-soft: rgba(240,237,230,0.6);
  --accent: #C9A96E;
  --accent-2: #8B7355;
  --line: rgba(240,237,230,0.15);
  --line-strong: rgba(240,237,230,0.3);
  --header-h: 76px;
  --container: 1080px;
  --radius: 4px;
  --font-heading: 'Playfair Display', 'Georgia', 'Palatino', serif;
  --font-body: 'Source Serif 4', 'Source Serif Pro', 'Georgia', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -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(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection { background: var(--accent); color: var(--bg); }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 200ms;
}
.skip-link:focus {
  top: 12px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

/* Drop-cap with breathing animation */
.drop-cap {
  float: left;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.78;
  margin: 0.06em 0.14em 0 0;
  color: var(--accent);
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .drop-cap { animation: none; }
}

/* Gold divider lines */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}

/* Blockquote */
blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: clamp(1rem, 3vw, 2rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main {
  padding-top: var(--header-h);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* Two-column editorial */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- Header (sticky morph) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(15, 25, 35, 0.88);
  display: flex;
  align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}

.site-header.scrolled {
  background: rgba(15, 25, 35, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  display: inline-block;
  padding: 8px 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 240ms, color 240ms, transform 200ms;
}

.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 240ms, background 240ms;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(201,169,110,0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(-50%) translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* --- Drawer Close Button --- */
.page-light.page-light
/* --- Mobile Drawer (outside header) --- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  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);
  z-index: 1050;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) clamp(24px, 5vw, 40px) 32px;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}

.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 12px;
}

.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: none;
  transition: background 240ms, color 240ms;
}

.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg);
  padding-left: 0;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 200ms, box-shadow 240ms;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201,169,110,0.3);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms;
  text-decoration: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--bg);
  border-color: var(--surface);
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 15vw, 10rem) clamp(24px, 5vw, 64px) clamp(4rem, 10vw, 8rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0;
}

.hero > img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 72vh;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Decorative breath line in hero */
.breath-line {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 2rem;
  animation: breathLine 6s ease-in-out infinite;
}

@keyframes breathLine {
  0%, 100% { width: 80px; opacity: 0.5; }
  50% { width: 160px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .breath-line { animation: none; width: 120px; opacity: 0.75; }
}

/* --- Stats Band --- */
.stats-band {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* --- Felsefe Section --- */
.felsefe {
  background: var(--bg);
}

.felsefe-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.felsefe .section-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 clamp(16px, 4vw, 32px);
}

.felsefe .two-col p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Disiplinler Section --- */
.disiplinler-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.disiplin-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
  position: relative;
  overflow: hidden;
}

.disiplin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(201,169,110,0.15);
  border-color: var(--accent);
}

.disiplin-card .card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.2rem;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}

.disiplin-card:hover .card-icon {
  transform: scale(1.08);
}

.disiplin-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.disiplin-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .disiplinler-grid { grid-template-columns: 1fr; }
  .disiplin-card .card-icon { width: 36px; height: 36px; }
}

/* --- Süreç (Process) Section --- */
.surec {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surec-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.surec-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}

.surec-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.surec-step:last-child { padding-bottom: 0; }

.surec-step::before {
  content: attr(data-step);
  position: absolute;
  left: 6px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--accent);
  line-height: 30px;
  text-align: center;
  transition: background 240ms, color 240ms;
}

.surec-step .step-time {
  font-size: 0.72rem;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.surec-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.surec-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Eğitmen Section --- */
.egitmen {
  background: var(--bg);
}

.egitmen-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.egitmen-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(201,169,110,0.08);
}

.egitmen-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.egitmen-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.3;
  pointer-events: none;
}

.egitmen-bio h2 {
  margin-bottom: 0.3rem;
}

.egitmen-bio .egitmen-role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.egitmen-bio p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .egitmen-layout {
    grid-template-columns: 1fr;
  }
  .egitmen-portrait {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Paketler (Pricing) Section --- */
.paketler {
  border-top: 1px solid var(--line);
}

.paketler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.paket-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.2rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}

.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(201,169,110,0.15);
  border-color: var(--accent);
}

.paket-card.featured {
  border-color: var(--accent);
  background: rgba(201,169,110,0.06);
  position: relative;
}

.paket-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.paket-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.paket-price {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.paket-price-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.paket-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.paket-card ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  padding-left: 20px;
  position: relative;
}

.paket-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.paket-card ul li.excluded {
  color: rgba(240,237,230,0.35);
  text-decoration: line-through;
}

.paket-card ul li.excluded::before {
  background: rgba(240,237,230,0.2);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .paketler-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* --- Takvim (Schedule) Section --- */
.takvim {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.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: 680px;
  width: 100%;
}

:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}

.schedule-table {
  border-collapse: collapse;
  font-size: 0.85rem;
}

.schedule-table th {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(201,169,110,0.06);
  white-space: nowrap;
}

.schedule-table td {
  text-align: center;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.schedule-table td.time-col {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--accent-2);
  text-align: right;
  padding-right: 14px;
  white-space: nowrap;
}

.schedule-table td:not(:empty):not(.time-col) {
  color: var(--ink);
}

.schedule-table tbody tr:hover td {
  background: rgba(201,169,110,0.04);
}

/* --- Referanslar (Testimonials) Section --- */
.referanslar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.referanslar-grid .ref-card:first-child {
  grid-column: 1 / -1;
}

.ref-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: border-color 280ms;
}

.ref-card:hover { border-color: var(--accent); }

.ref-card .ref-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.ref-card .ref-author {
  font-size: 0.8rem;
  color: var(--accent);
}

.ref-card .ref-detail {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .referanslar-grid {
    grid-template-columns: 1fr;
  }
  .referanslar-grid .ref-card:first-child {
    grid-column: 1;
  }
}

/* --- SSS (FAQ) Section --- */
.sss-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2vw, 22px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink);
  transition: color 240ms, background-size 400ms cubic-bezier(.2,.7,.2,1);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary:hover { color: var(--accent); }

.faq-item summary .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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 {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* --- İletişim Section --- */
.iletisim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}

.contact-row:hover {
  transform: translateX(4px);
}

.contact-row:hover .contact-icon {
  color: var(--accent);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
  flex-shrink: 0;
}

.contact-row:hover .contact-icon {
  transform: scale(1.08);
}

.contact-label {
  font-size: 0.72rem;
  color: var(--accent-2);
  letter-spacing: 0.08em;
  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); }
.contact-value a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .iletisim-layout { grid-template-columns: 1fr; }
}

.contact-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-cta-wrap p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 420px;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(245,240,232,0.05);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group select {
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg);
  color: var(--ink);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.kvkk-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.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;
  flex-shrink: 0;
}

.kvkk-field label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

.kvkk-field a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(6rem, 10vw, 8rem);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand .logo {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: var(--radius);
  max-width: 280px;
  opacity: 0.85;
  transition: opacity 280ms;
}
.footer-brand img:hover { opacity: 1; }

.footer-col h4 {
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms, transform 200ms;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--bg);
  border-radius: 8px;
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 300ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(15,25,35,0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-banner a { color: var(--accent-2); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  border: none;
}

.cookie-btn-accept {
  background: var(--bg);
  color: var(--ink);
}
.cookie-btn-accept:hover { background: var(--accent-2); color: var(--surface); }

.cookie-btn-reject {
  background: rgba(15,25,35,0.08);
  color: var(--bg);
  border: 1.5px solid rgba(15,25,35,0.5) !important;
  font-weight: 600;
}
.cookie-btn-reject:hover { background: rgba(15,25,35,0.18); color: var(--bg); }

.cookie-btn-settings {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(15,25,35,0.25) !important;
}
.cookie-btn-settings:hover { background: rgba(15,25,35,0.08); color: var(--bg); }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}
.page-light .scroll-progress { background: var(--accent-2); }

/* --- Reveal / Motion --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.16,.84,.44,1),
              transform 600ms cubic-bezier(.16,.84,.44,1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal.stagger {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@keyframes cssRevealFallback {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
html.js .reveal:not(.is-in) {
  animation: cssRevealFallback 600ms cubic-bezier(.16,.84,.44,1) both;
}
html.js .reveal.stagger:not(.is-in) {
  animation: cssRevealFallback 600ms cubic-bezier(.16,.84,.44,1) both;
  animation-delay: calc(var(--i, 0) * 90ms);
}
html.js .reveal.is-in {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

html.no-js .reveal { opacity: 1; transform: none; }

/* --- Niche Animations: Yoga --- */

/* 1. Lotus bloom on card icons */
@keyframes lotusBloom {
  0% { transform: scale(0.92) rotate(-3deg); opacity: 0.7; }
  50% { transform: scale(1.02) rotate(1deg); opacity: 1; }
  100% { transform: scale(0.92) rotate(-3deg); opacity: 0.7; }
}

.lotus-anim {
  animation: lotusBloom 8s ease-in-out infinite;
}

/* 2. Incense smoke rising */
@keyframes incenseRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scaleX(1.2); opacity: 0.15; }
  100% { transform: translateY(-40px) scaleX(0.8); opacity: 0; }
}

.incense-smoke {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to top, var(--accent), transparent);
  border-radius: 50%;
  animation: incenseRise 5s ease-in-out infinite;
  pointer-events: none;
}

/* 3. Chakra dot glow */
@keyframes chakraGlow {
  0%, 100% { box-shadow: 0 0 4px rgba(201,169,110,0.2); }
  50% { box-shadow: 0 0 16px rgba(201,169,110,0.5); }
}

.chakra-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: chakraGlow 4s ease-in-out infinite;
  vertical-align: middle;
  margin: 0 4px;
}

/* 4. Breath rhythm background pulse on hero */
@keyframes heroBreathBg {
  0%, 100% { background-size: 100% 100%; }
  50% { background-size: 105% 105%; }
}

/* 5. Om vibration on header logo */
@keyframes omVibrate {
  0%, 100% { letter-spacing: -0.02em; }
  50% { letter-spacing: 0.02em; }
}

.logo-breathe {
  animation: omVibrate 10s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lotus-anim,
  .incense-smoke,
  .chakra-dot,
  .logo-breathe { animation: none; }
  .incense-smoke { opacity: 0; }
  .chakra-dot { box-shadow: none; }
}

/* --- Parallax sub-layer --- */
.parallax-layer {
  will-change: transform;
  transition: transform 80ms linear;
}

/* --- Counter-up --- */
.counter-num {
  font-variant-numeric: tabular-nums;
}

/* --- Utility / Light-page override --- */
.page-light {
  background: var(--surface);
  color: var(--bg);
}

.page-light h1,
.page-light h2,
.page-light h3,
.page-light h4 { color: var(--bg); }

.page-light p { color: rgba(15,25,35,0.7); }

.page-light .site-header { background: rgba(245,240,232,0.92); }
.page-light .site-header.scrolled { background: rgba(245,240,232,0.98); }
.page-light .logo { color: var(--bg); }
.page-light .logo:hover { color: var(--accent-2); }
.page-light .nav-desktop a { color: rgba(15,25,35,0.6); }
.page-light .nav-desktop a:hover { color: var(--bg); }
.page-light .nav-desktop a.is-active { color: var(--accent-2); }
.page-light .nav-desktop .nav-cta { color: var(--bg); background: var(--accent-2); }
.page-light .nav-desktop .nav-cta:hover { color: var(--surface); background: var(--bg); }
.page-light .nav-toggle span { background: var(--bg); }
.page-light .nav-toggle { border-color: rgba(15,25,35,0.25); }
.page-light .nav-toggle:hover,
.page-light .nav-toggle:focus-visible { border-color: var(--accent-2); background: rgba(139,115,85,0.08); }
.page-light .drawer { background: var(--surface); }
.page-light .drawer a { color: rgba(15,25,35,0.6); border-bottom-color: rgba(15,25,35,0.1); }
.page-light .drawer a:hover { color: var(--accent-2); }
.page-light .drawer .drawer-cta { color: var(--bg); background: var(--accent-2); border-bottom-color: transparent; }
.page-light .drawer .drawer-cta:hover { color: var(--surface); background: var(--bg); }
.page-light .gold-rule { background: linear-gradient(90deg, transparent, var(--accent-2), transparent); }
.page-light blockquote { border-left-color: var(--accent-2); color: var(--bg); }
.page-light .site-footer { background: var(--bg); color: var(--ink); border-top-color: var(--line); }
.page-light .site-footer h4 { color: var(--ink); }
.page-light .site-footer p { color: var(--ink-soft); }
.page-light .site-footer a { color: var(--ink-soft); }
.page-light .site-footer a:hover { color: var(--accent); }
.page-light .footer-bottom { color: var(--ink-soft); }
.page-light .skip-link { color: var(--surface); }

.page-light .form-group input,
.page-light .form-group select,
.page-light .form-group textarea {
  background: rgba(15,25,35,0.04);
  border-color: rgba(15,25,35,0.18);
  color: var(--bg);
}

.page-light .form-group input:focus,
.page-light .form-group select:focus,
.page-light .form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(139,115,85,0.15);
}

.page-light .kvkk-field label { color: rgba(15,25,35,0.65); }
.page-light .contact-icon { color: rgba(15,25,35,0.45); }
.page-light .contact-row:hover .contact-icon { color: var(--accent-2); }
.page-light .contact-label { color: var(--accent-2); }
.page-light .contact-value { color: var(--bg); }
.page-light .contact-value a { color: var(--bg); }
.page-light .contact-value a:hover { color: var(--accent-2); }
.page-light .contact-row { border-bottom-color: rgba(15,25,35,0.1); }

/* Prose for policy pages */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.prose h3 { margin-top: 1.8rem; margin-bottom: 0.8rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.prose p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.75; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; font-size: 0.93rem; line-height: 1.65; }
.prose strong { font-weight: 600; }

.page-light .prose h2,
.page-light .prose h3 { color: var(--bg); }
.page-light .prose p,
.page-light .prose li { color: rgba(15,25,35,0.7); }

/* --- Thank-you page --- */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.thankyou-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 404 page --- */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content .error-code {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -0.2em;
}

.error-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.error-content p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* --- Sitemap page --- */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list a {
  font-size: 1rem;
  color: inherit;
  transition: color 200ms;
}
.sitemap-list a:hover { color: var(--accent); }

.page-light .sitemap-list a { color: var(--bg); }
.page-light .sitemap-list a:hover { color: var(--accent-2); }

/* --- iletisim page hero --- */
.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  max-width: 520px;
  margin: 0 auto;
}

/* --- Cancellation table --- */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.cancel-tier {
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}

.cancel-tier .tier-period {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.cancel-tier .tier-result {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .cancel-tiers { grid-template-columns: 1fr; }
}

/* iptal page overrides */
.page-light .cancel-tier {
  background: rgba(15,25,35,0.03);
  border-color: rgba(15,25,35,0.12);
}
.page-light .cancel-tier .tier-period { color: var(--accent-2); }
.page-light .cancel-tier .tier-result { color: rgba(15,25,35,0.65); }

/* --- Responsive --- */
@media (max-width: 1280px) {
  :root { --container: 960px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
}

@media (max-width: 768px) {
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero > img { max-height: 50vh; margin: 0 auto; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .breath-line { margin: 0 auto 2rem; }
  .hero-cta-wrap,
  .hero-trust { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero { padding: clamp(5rem, 12vw, 7rem) 16px clamp(3rem, 8vw, 5rem); }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); }
}

@media (max-width: 430px) {
  body { font-size: 0.95rem; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.2rem; }
  .cookie-banner { left: 8px; right: 8px; padding: 16px; }
  .cookie-buttons { flex-direction: column; }
}

/* --- Prose table (light pages) --- */
.page-light .prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}
.page-light .prose th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid rgba(15,25,35,0.15);
  font-weight: 600;
  color: var(--bg);
  font-size: 0.82rem;
}
.page-light .prose td {
  padding: 8px 14px;
  border-bottom: 1px solid rgba(15,25,35,0.08);
  color: rgba(15,25,35,0.7);
}

.page-light .table-scroll {
  border-color: rgba(15,25,35,0.12);
}

/* --- Enhanced yoga-themed micro-interactions --- */
.disiplin-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.disiplin-card:hover::before { opacity: 1; }

.faq-item:not([open]) summary:hover .faq-icon {
  transform: scale(1.15);
}

@keyframes meditationPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,110,0.06); }
}

.paket-card.featured {
  animation: meditationPulse 6s ease-in-out infinite;
}

.ref-card {
  transition: border-color 280ms, transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(201,169,110,0.1);
}

.surec-step {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.surec-step:hover {
  transform: translateX(6px);
}
.surec-step:hover::before {
  background: var(--accent);
  color: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  .paket-card.featured { animation: none; }
  .ref-card:hover { transform: none; }
  .disiplin-card::before { display: none; }
  .surec-step:hover { transform: none; }
}

/* --- Enhanced golden-hour warmth on hover --- */
.hero > img {
  transition: filter 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
}
.hero > img:hover {
  filter: brightness(1.06) saturate(1.1);
  transform: scale(1.015);
}

.egitmen-portrait img {
  transition: filter 500ms cubic-bezier(.4,0,.2,1), transform 500ms cubic-bezier(.4,0,.2,1);
}
.egitmen-portrait:hover img {
  filter: brightness(1.05) saturate(1.08);
  transform: scale(1.02);
}

/* Warm golden glow on featured pricing card */
.paket-card.featured:hover {
  box-shadow: 0 20px 48px -12px rgba(201,169,110,0.22);
}

/* Subtle golden underline sweep on FAQ hover */
.faq-item summary {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.faq-item summary:hover {
  background-size: 100% 1px;
}

/* Stagger reveal with gentle scale for discipline cards */
.disiplin-card {
  transition: transform 400ms cubic-bezier(.16,.84,.44,1), box-shadow 400ms, border-color 300ms;
}

/* Contact row golden glow on hover */
.contact-row {
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-row:hover {
  background: rgba(201,169,110,0.04);
  border-radius: var(--radius);
}

/* Testimonial cards warm lift */
.ref-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 20% 0%, rgba(201,169,110,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}
.ref-card {
  position: relative;
  overflow: hidden;
}
.ref-card:hover::before { opacity: 1; }

/* Footer link hover with golden accent slide */
.footer-col a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color 240ms, transform 200ms, background-size 300ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover {
  background-size: 100% 1px;
}

@media (prefers-reduced-motion: reduce) {
  .hero > img:hover,
  .egitmen-portrait:hover img { filter: none; transform: none; }
  .faq-item summary { background-image: none; }
  .footer-col a { background-image: none; }
  .ref-card::before { display: none; }
}

/* --- Print --- */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
