/* ============================================================
   Açık Ses — Şan & Nefes Koçluğu
   Storytelling longread. Palette warm rose / olive / ink.
   ============================================================ */

:root {
  --bg: #FBF6F4;
  --surface: #F3E9E6;
  --surface-2: #EEDFDA;
  --ink: #2B1F26;
  --ink-soft: #5b4b53;
  --ink-faint: #877580;
  --accent: #C2566E;
  --accent-2: #6E7E5B;
  --line: rgba(43, 31, 38, 0.12);
  --line-strong: rgba(43, 31, 38, 0.24);
  --header-h: 76px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Mukta', system-ui, -apple-system, 'Segoe UI', sans-serif;

  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -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 {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.05vw + 13px, 18.5px);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
  color: var(--ink);
}

p { margin: 0 0 1.1em; max-width: 68ch; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

strong { font-weight: 600; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead {
  font-size: clamp(1.15rem, 1.4vw + 0.8rem, 1.5rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.italic-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw + 0.5rem, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top 180ms ease;
}
.skip-link:focus { top: 12px; color: var(--bg); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 244, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 246, 244, 0.98);
  box-shadow: 0 8px 24px -16px rgba(43, 31, 38, 0.4);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { color: var(--accent); flex: none; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.9rem);
}
.nav-desktop a {
  position: relative;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px !important;
  border-radius: 100px;
  font-weight: 600;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--bg) !important; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-2);
  box-shadow: 0 4px 14px -8px rgba(43,31,38,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.nav-toggle:hover { background: var(--surface); border-color: var(--accent); }
.nav-toggle:active { transform: scale(0.96); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 16px) 28px 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent); }
.drawer a:hover { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: auto;
  border: none;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  border-radius: 100px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   LAYOUT
   ============================================================ */
main { padding-top: var(--header-h); }

section[id], main [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

section { position: relative; }
.section {
  padding-block: clamp(64px, 9vw, 132px);
}
.section--tight { padding-block: clamp(48px, 6vw, 88px); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head h2 {
  font-size: clamp(2rem, 4vw + 0.6rem, 3.4rem);
}

.band {
  background: var(--ink);
  color: var(--surface);
}
.band h1, .band h2, .band h3, .band h4 { color: var(--surface); }
.band p { color: rgba(243, 233, 230, 0.82); }
.band .eyebrow { color: #e7a6b4; }
.band .eyebrow::before { background: #e7a6b4; }
/* readable text on the dark band */
.band .j-step p { color: rgba(243,233,230,0.76); }
.band .j-step .j-time { color: #e7a6b4; }
.band .j-step .j-dot { background: var(--surface); border-color: rgba(243,233,230,0.18); }

/* ============================================================
   WAVEFORM DIVIDER
   ============================================================ */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(40px, 7vw, 72px);
  color: var(--accent);
  opacity: 0.85;
}
.wave-divider rect { animation: waveStep 1.7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes waveStep {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .wave-divider rect { animation: none; transform: scaleY(0.7); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(40px, 7vw, 80px);
  text-align: center;
}
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-size: clamp(2.7rem, 7vw + 0.5rem, 4.5rem);
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 0.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1.15rem, 1.6vw + 0.7rem, 1.6rem);
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0.6rem auto 1.8rem;
  line-height: 1.5;
}

/* live waveform theme signature */
.hero-waveform {
  width: min(560px, 86vw);
  height: clamp(70px, 14vw, 130px);
  margin: 0.4rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1vw, 7px);
}
.hero-waveform .bar {
  flex: 1 1 auto;
  max-width: 12px;
  height: 18%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  transform-origin: center;
  animation: liveWave 1.9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes liveWave {
  0%, 100% { height: 16%; opacity: 0.55; }
  50% { height: 100%; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-waveform .bar { animation: none; height: 55%; }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }

/* full-width photo strip */
.hero-photo {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  position: relative;
  box-shadow: 0 40px 80px -50px rgba(43, 31, 38, 0.6);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,31,38,0) 40%, rgba(43,31,38,0.45));
}
.hero-photo figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 2;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--surface);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  max-width: 30ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px var(--accent);
}
.btn-primary .arrow { transition: transform 220ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); transform: translateY(-2px); }
.band .btn-ghost { color: var(--surface); border-color: rgba(243,233,230,0.4); }
.band .btn-ghost:hover { background: rgba(243,233,230,0.12); color: var(--surface); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  border-block: 1px solid var(--line);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat .label { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; }

/* ============================================================
   STORY / LONGREAD
   ============================================================ */
.story {
  max-width: 720px;
  margin-inline: auto;
}
.story p { font-size: clamp(1.05rem, 1vw + 0.85rem, 1.22rem); }
.story .dropcap::first-letter {
  font-family: var(--font-head);
  font-size: 3.6em;
  float: left;
  line-height: 0.78;
  padding: 0.06em 0.12em 0 0;
  color: var(--accent);
  font-weight: 600;
}
.pull-quote {
  margin: clamp(2rem, 5vw, 3.4rem) 0;
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--accent);
}

.figure-wide {
  margin: clamp(2.4rem, 6vw, 4rem) 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.figure-wide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.figure-wide figcaption {
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding: 0.7rem 0.2rem 0;
  font-style: italic;
}

/* ============================================================
   METHOD — vertical timeline
   ============================================================ */
.journey {
  max-width: 880px;
  margin-inline: auto;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  left: 26px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.4;
}
.j-step {
  position: relative;
  padding-left: 76px;
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
}
.j-step .j-dot {
  position: absolute;
  left: 0; top: clamp(1.4rem, 3vw, 2.2rem);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.j-step .j-dot svg { width: 24px; height: 24px; }
.j-step .j-time {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}
.j-step h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 0.35rem; }
.j-step p { color: var(--ink-soft); margin-bottom: 0; }

/* ============================================================
   STUDENTS — before/after editorial grid
   ============================================================ */
.voices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.voice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.voice-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -34px rgba(194,86,110,0.6); }
.voice-ba {
  display: flex;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.voice-ba > div { flex: 1; }
.voice-ba .tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}
.voice-ba .before { color: var(--ink-faint); }
.voice-ba .after { color: var(--accent); }
.voice-ba p { font-size: 0.95rem; margin: 0; line-height: 1.45; }
.voice-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ink);
}
.voice-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.voice-meta .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  flex: none;
}
.voice-meta .who { font-weight: 600; font-size: 0.95rem; }
.voice-meta .when { font-size: 0.82rem; color: var(--ink-faint); }

/* ============================================================
   COACH
   ============================================================ */
.coach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.coach-photo {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.coach-photo img { width: 100%; height: 100%; object-fit: cover; }
.signature {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent);
  margin-top: 1.4rem;
  transform: rotate(-3deg);
  display: inline-block;
}
.signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transform: rotate(3deg);
  margin-top: 0.3rem;
}
.coach-creds {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.coach-creds li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.coach-creds svg { width: 20px; height: 20px; color: var(--accent-2); margin-top: 3px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: stretch;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -36px rgba(43,31,38,0.5); }
.price-card.is-featured {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.price-card.is-featured h3 { color: var(--surface); }
.price-card.is-featured .price { color: #e7a6b4; }
.price-card.is-featured .price-incl li { color: rgba(243,233,230,0.85); }
.price-card.is-featured .price-incl svg { color: #e7a6b4; }
.price-card.is-featured .price-excl li { color: rgba(243,233,230,0.6); }
.price-card.is-featured .price-excl svg { color: rgba(243,233,230,0.5); }
.price-badge {
  align-self: flex-start;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: var(--bg);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.price-card .price-desc { font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 1.2rem; }
.price-card.is-featured .price-desc { color: rgba(243,233,230,0.7); }
.price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.3rem;
}
.price small { font-size: 0.9rem; font-weight: 500; color: var(--ink-faint); font-family: var(--font-body); }
.price-card .price-note { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1.4rem; }
.price-card.is-featured .price-note { color: rgba(243,233,230,0.6); }
.price-incl, .price-excl {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.55rem;
}
.price-incl li, .price-excl li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.price-incl svg { width: 18px; height: 18px; color: var(--accent-2); margin-top: 3px; }
.price-excl li { color: var(--ink-faint); }
.price-excl svg { width: 18px; height: 18px; color: var(--ink-faint); margin-top: 3px; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card.is-featured .btn-primary { background: var(--accent); color: var(--bg); }
.price-card.is-featured .btn-primary:hover { background: var(--bg); color: var(--ink); }
.price-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 1.8rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(1.1rem, 2.4vw, 1.5rem) 48px clamp(1.1rem, 2.4vw, 1.5rem) 0;
  position: relative;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 13px; height: 13px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(8px, 2vw, 16px) 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] > .answer {
  height: auto;
  padding-block-end: 26px;
}
.faq-item > .answer p { margin-bottom: 0.6em; color: var(--ink-soft); }
/* FAQ sits inside a dark band on the homepage — keep it legible */
.band .faq-item { border-bottom-color: rgba(243,233,230,0.16); }
.band .faq-item summary { color: var(--surface); }
.band .faq-item summary::after { border-color: #e7a6b4; }
.band .faq-item summary:hover { color: #e7a6b4; }
.band .faq-item > .answer p { color: rgba(243,233,230,0.74); }
/* gentle stagger as each question scrolls in */
.faq .faq-item:nth-child(2) { --i: 1; }
.faq .faq-item:nth-child(3) { --i: 2; }
.faq .faq-item:nth-child(4) { --i: 3; }
.faq .faq-item:nth-child(5) { --i: 4; }
.faq .faq-item:nth-child(6) { --i: 5; }
.faq .faq-item:nth-child(7) { --i: 6; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA / APPOINTMENT
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .container { display: flex; flex-direction: column; align-items: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.cta-band p { max-width: 50ch; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 4vw, 3rem);
  max-width: 760px;
  margin-inline: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.field { display: flex; flex-direction: column; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.field label .opt { font-weight: 400; color: var(--ink-faint); letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,86,110,0.14);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field.kvkk label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
  flex: none;
}
.field.kvkk a { text-decoration: underline; }
.form-wrap .btn { margin-top: 1.6rem; width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 1rem; text-align: center; }

@media (min-width: 700px) {
  .form-wrap .btn { width: auto; }
}

/* ============================================================
   CONTACT CHANNELS
   ============================================================ */
.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.channel:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -30px rgba(43,31,38,0.5); }
.channel .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(194,86,110,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 0.6rem;
}
.channel .ic svg { width: 24px; height: 24px; }
.channel .ch-name { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.channel a, .channel .val { font-family: var(--font-head); font-size: 1.18rem; color: var(--ink); font-weight: 500; word-break: break-word; }
.channel a:hover { color: var(--accent); }
.channel .ch-sub { font-size: 0.85rem; color: var(--ink-faint); }

/* hours mini-grid */
.hours-grid {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
  max-width: 520px;
}
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
  padding: 14px 20px;
  font-variant-numeric: tabular-nums;
}
.hours-grid .row.today { background: rgba(194,86,110,0.1); font-weight: 600; }
.hours-grid .row .day { color: var(--ink-soft); }
.hours-grid .row .time { color: var(--ink); }

/* ============================================================
   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: 10px;
}
.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 th, table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
table th { font-family: var(--font-head); font-weight: 600; background: var(--surface); }
table tr:last-child td { border-bottom: none; }

/* ============================================================
   DOC / LEGAL PAGES
   ============================================================ */
.doc { max-width: 748px; margin-inline: auto; line-height: 1.75; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.4rem; }
.doc h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.doc p, .doc li { color: var(--ink-soft); }
.doc p { max-width: none; }
.doc ul { padding-left: 1.2rem; }
.doc .updated { color: var(--ink-faint); font-size: 0.88rem; }

.page-hero {
  padding-block: clamp(48px, 8vw, 96px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; }

/* sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.sitemap-grid h3 { font-size: 1.1rem; }
.sitemap-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.sitemap-grid a { color: var(--ink-soft); }
.sitemap-grid a:hover { color: var(--accent); }

/* 404 */
.err {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.err .code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 1;
  color: var(--accent);
}

/* notes block */
.notes-list { display: grid; gap: 1rem; max-width: 640px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.note-item .date { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); white-space: nowrap; }
.note-item .txt { color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(243,233,230,0.78);
  padding-block: clamp(48px, 7vw, 80px) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.site-footer h4 { color: var(--surface); font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer .brand { color: var(--surface); margin-bottom: 1rem; }
.site-footer .brand small { color: rgba(243,233,230,0.5); }
.site-footer p { color: rgba(243,233,230,0.7); font-size: 0.94rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(243,233,230,0.78); font-size: 0.94rem; }
.footer-links a:hover { color: #e7a6b4; }
.footer-contact { display: grid; gap: 0.6rem; font-size: 0.94rem; }
.footer-contact a { color: rgba(243,233,230,0.78); word-break: break-word; }
.footer-contact a:hover { color: #e7a6b4; }
.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243,233,230,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(243,233,230,0.55);
}
.footer-bottom a { color: rgba(243,233,230,0.55); }
.footer-bottom a:hover { color: #e7a6b4; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--surface);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { color: var(--surface); font-size: 1.15rem; margin-bottom: 0.4rem; }
.cookie-banner p { color: rgba(243,233,230,0.78); font-size: 0.88rem; margin-bottom: 1rem; max-width: none; }
.cookie-banner p a { color: #e7a6b4; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid rgba(243,233,230,0.4);
  padding: 0 16px;
  transition: background 200ms ease, color 200ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: #d06a80; }
/* KVKK: "Reddet" must read as an equally prominent choice as "Kabul et" */
.cookie-actions [data-consent="reject"] { background: var(--surface); color: var(--ink); border-color: var(--surface); }
.cookie-actions [data-consent="reject"]:hover { background: var(--bg); border-color: var(--bg); }
.cookie-actions [data-consent="settings"] { background: transparent; color: rgba(243,233,230,0.7); border-color: transparent; flex: 0 1 auto; }
.cookie-actions [data-consent="settings"]:hover { color: var(--surface); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.counter[data-target] { font-variant-numeric: tabular-nums; }

/* stagger groups that don't carry an explicit --i */
.journey .j-step:nth-child(2) { --i: 1; }
.journey .j-step:nth-child(3) { --i: 2; }
.journey .j-step:nth-child(4) { --i: 3; }
.journey .j-step:nth-child(5) { --i: 4; }
.channels .channel:nth-child(2) { --i: 1; }
.channels .channel:nth-child(3) { --i: 2; }
.channels .channel:nth-child(4) { --i: 3; }
.channels .channel:nth-child(5) { --i: 4; }
.channels .channel:nth-child(6) { --i: 5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-photo { max-width: 440px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .channel .ic { width: 40px; height: 40px; }
  .channel .ic svg { width: 20px; height: 20px; }
  .j-step { padding-left: 64px; }
  .j-step .j-dot { width: 46px; height: 46px; }
  .journey::before { left: 22px; }
  .hero-photo { aspect-ratio: 4/3; border-radius: 12px; }
  .voice-ba { flex-direction: column; }
}

@media (max-width: 400px) {
  .cookie-actions [data-consent] { flex: 1 1 100%; }
}

/* long text safety */
.break { word-break: break-word; overflow-wrap: anywhere; }

.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}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
