/* =========================================================
   Mavi Nefes — Kaş Serbest Dalış · editorial-magazine
   ========================================================= */

:root {
  --bg: #F4F1EA;
  --surface: #FFFFFF;
  --surface-2: #ECE7DC;
  --ink: #1A1B1F;
  --ink-soft: #4A4C54;
  --ink-faint: #82858f;
  --accent: #0B4F6C;
  --accent-2: #E2603F;
  --line: rgba(26, 27, 31, 0.14);
  --line-strong: rgba(26, 27, 31, 0.30);
  --deep-0: #0e3a4f;
  --deep-1: #0a2c3d;
  --deep-2: #061a26;

  --maxw: 1180px;
  --pad: clamp(16px, 5vw, 72px);
  --header-h: 76px;

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 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: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.012em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-2); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-variant: small-caps;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow.alt { color: var(--accent-2); }

.section-no {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}

/* hand-drawn wave underline */
.wave-underline {
  position: relative;
  display: inline;
}
.wave-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.28em;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 C 14 1, 26 1, 38 6 S 62 11, 74 6 S 98 1, 118 6' fill='none' stroke='%23E2603F' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: 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(244, 241, 234, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand .brand-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
  transform: translateY(-1px);
}
.brand small {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: #fff !important;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 16px -12px rgba(6, 26, 38, 0.5);
  transition: background 200ms ease, border-color 200ms ease, transform 160ms ease, box-shadow 200ms ease;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 10px 22px -14px rgba(11, 79, 108, 0.6);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 24px; 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(--deep-1);
  color: #eef3f5;
  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) + 20px) 32px 32px;
  box-shadow: -24px 0 60px -30px rgba(0,0,0,.6);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: #eef3f5;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 26px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 200ms ease, padding-left 200ms ease;
}
.drawer a:hover { color: var(--accent-2); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 22px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: var(--accent-2);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px;
}
.drawer .drawer-cta:hover { color: #fff; padding-left: 0; }
.drawer-meta {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(238,243,245,0.7);
  letter-spacing: 0.02em;
}
.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; }

/* mobile: swap desktop nav for hamburger + drawer */
@media (max-width: 920px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .header-inner { padding-left: 16px; padding-right: 16px; }
}

/* =========================================================
   Depth gauge — side strip (THEME EFFECT)
   ========================================================= */
.depth-strip {
  position: fixed;
  top: 0; left: 0;
  width: 5px;
  height: 100vh;
  z-index: 1060;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,79,108,0.12), rgba(6,26,38,0.25));
}
.depth-strip .depth-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent), var(--deep-2));
}
.depth-readout {
  position: fixed;
  left: 12px;
  bottom: 18px;
  z-index: 1060;
  pointer-events: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(244,241,234,0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.depth-readout .dnum { font-size: 15px; color: var(--ink); }
.depth-readout .dlabel { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-faint); }
@media (max-width: 640px) {
  .depth-readout { left: 10px; bottom: 12px; padding: 4px 9px; }
}

/* =========================================================
   Layout helpers
   ========================================================= */
main { padding-top: var(--header-h); }

.section {
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head .sh-no {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  padding-top: 6px;
}
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(11,79,108,0.7);
}
.btn-primary .arw { transition: transform 220ms ease; }
.btn-primary:hover .arw { 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);
  border-color: var(--ink);
}
.btn-accent {
  background: var(--accent-2);
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   Hero — type-only-massive
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 7vw, 80px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(11,79,108,0.10), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero h1 {
  font-size: clamp(2.9rem, 9.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0.1em 0 0.5em;
  max-width: 14ch;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
}
.hero h1.is-revealed .line > span {
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.hero h1.is-revealed .line:nth-child(2) > span { transition-delay: 110ms; }
.hero h1.is-revealed .line:nth-child(3) > span { transition-delay: 220ms; }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-trust .ht {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-trust .ht svg { color: var(--accent); flex: none; }

.hero-photo {
  position: relative;
  justify-self: end;
  width: min(360px, 80%);
  margin-top: 8px;
}
.hero-photo .frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 80px -40px rgba(6,26,38,0.6);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowzoom 16s ease-in-out infinite alternate;
}
@keyframes slowzoom { to { transform: scale(1.12); } }
.hero-photo figcaption {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 12px;
  text-align: right;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.5fr 0.9fr;
    align-items: end;
  }
  .hero-photo { margin-top: 0; align-self: end; }
}

/* ambient bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bubbles span {
  position: absolute;
  bottom: -40px;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85), rgba(11,79,108,0.18));
  border: 1px solid rgba(11,79,108,0.16);
  border-radius: 50%;
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.55; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-92vh) translateX(var(--wob, 14px)); opacity: 0; }
}
.hero > .container { position: relative; z-index: 1; }

/* =========================================================
   Manifesto
   ========================================================= */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-body {
  max-width: 58ch;
}
.manifesto p.lead {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 4.6vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin-bottom: 0.7em;
}
@media (max-width: 760px) {
  .manifesto-body { max-width: none; }
  .manifesto p.lead { max-width: none; }
}
.manifesto .dropcap::first-letter {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 4.2em;
  float: left;
  line-height: 0.74;
  padding: 0.06em 0.12em 0 0;
  color: var(--accent-2);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.manifesto-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fig {
  border-left: 2px solid var(--accent-2);
  padding-left: 16px;
}
.fig .fnum {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fig .flabel {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}
@media (min-width: 860px) {
  .manifesto-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

/* =========================================================
   Yöntem — quotes + breath pacer
   ========================================================= */
.yontem { background: var(--bg); }
.quote-block {
  position: relative;
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--line);
}
.quote-block:last-of-type { border-bottom: 1px solid var(--line); }
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.quote-block cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.quote-block .q-no {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
}

.breath-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, var(--deep-0), var(--deep-2));
  border-radius: 8px;
  color: #e9f1f4;
  overflow: hidden;
}
.breath-row h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}
.breath-row p { color: rgba(233,241,244,0.82); max-width: 42ch; }
.breath-pacer {
  justify-self: center;
  width: 180px; height: 180px;
  display: grid;
  place-items: center;
  position: relative;
}
.breath-pacer .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(226,96,63,0.5);
  background: radial-gradient(circle, rgba(226,96,63,0.16), transparent 70%);
  animation: breathe 10s ease-in-out infinite;
}
.breath-pacer .ring.r2 { animation-delay: -3.3s; border-color: rgba(255,255,255,0.22); }
.breath-pacer .core {
  position: relative;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 15px;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.7); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; }
}
@media (min-width: 760px) {
  .breath-row { grid-template-columns: 1fr auto; }
}

/* =========================================================
   Kademe — course levels list
   ========================================================= */
.kademe { background: var(--surface); border-block: 1px solid var(--line); }
.level {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.level:first-of-type { border-top: 0; }
.level-head { display: flex; align-items: baseline; gap: 16px; }
.level-head .lv-no {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--accent-2);
  line-height: 0.9;
}
.level h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0;
}
.level .lv-meta {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.level p { color: var(--ink-soft); max-width: 58ch; margin: 0; }
.level-incl {
  list-style: none;
  padding: 0; margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.level-incl li {
  font-size: 12.5px;
  color: var(--accent);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 5px 12px;
}
.level-price {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.level-price small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
@media (min-width: 880px) {
  .level {
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
  }
  .level-head { flex-direction: column; gap: 4px; min-width: 200px; }
  .level-body { min-width: 0; }
  .level-price { text-align: right; }
}

.price-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
}

/* feature icon cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(30px, 5vw, 52px);
}
@media (min-width: 680px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  min-width: 0;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -28px rgba(11,79,108,0.55);
  border-color: var(--line-strong);
}
.feature .ic {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(11,79,108,0.10);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature h4 { font-size: 1.2rem; margin-bottom: 0.35em; overflow-wrap: break-word; word-break: keep-all; }
.feature p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* =========================================================
   Eğitmen — single profile
   ========================================================= */
.egitmen { background: var(--bg); }
.egitmen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.egitmen-photo {
  position: relative;
  max-width: 420px;
}
.egitmen-photo .frame {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 36px 70px -40px rgba(6,26,38,0.6);
}
.egitmen-photo img { width: 100%; height: 100%; object-fit: cover; }
.egitmen-photo .badge {
  position: absolute;
  left: -14px; bottom: 22px;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 16px 30px -18px rgba(0,0,0,0.5);
}
.egitmen h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.egitmen .role {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2em;
}
.egitmen .cred {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.egitmen .cred li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.egitmen .cred svg { color: var(--accent-2); margin-top: 3px; }
@media (min-width: 880px) {
  .egitmen-grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* =========================================================
   Kayıt — form
   ========================================================= */
.kayit {
  background: linear-gradient(165deg, var(--deep-0), var(--deep-2));
  color: #e9f1f4;
}
.kayit .section-head h2 { color: #fff; }
.kayit .eyebrow { color: var(--accent-2); }
.kayit .section-head .sh-no { color: rgba(255,255,255,0.6); }
.kayit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 56px);
}
.kayit-info p { color: rgba(233,241,244,0.85); max-width: 42ch; }
.kayit-info .channels {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.kayit-info .channels li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.kayit-info .channels svg { color: var(--accent-2); margin-top: 2px; }
.kayit-info .channels a, .kayit-info .channels span { color: #fff; }
.kayit-info .channels small {
  display: block;
  color: rgba(233,241,244,0.6);
  font-size: 12px;
}

.form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: 12px;
  padding: clamp(22px, 3.4vw, 38px);
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.7);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span.lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field.kvkk label { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.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);
}
.form-card button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-card .form-foot {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 14px 0 0;
}
@media (min-width: 940px) {
  .kayit-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--surface); border-block: 1px solid var(--line); }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(4px, 1vw, 12px);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.faq-item summary .pm::before,
.faq-item summary .pm::after {
  content: "";
  position: absolute;
  background: var(--accent-2);
  border-radius: 2px;
  left: 50%; top: 50%;
}
.faq-item summary .pm::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item summary .pm::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 280ms ease; }
.faq-item[open] summary .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(4px, 1vw, 12px);
  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: 24px;
}
.faq-item > .answer p { color: var(--ink-soft); margin: 0 0 0.8em; max-width: 70ch; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--deep-2);
  color: rgba(233,241,244,0.8);
  padding-block: clamp(48px, 7vw, 80px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(233,241,244,0.62); max-width: 38ch; font-size: 14px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233,241,244,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col span { color: rgba(233,241,244,0.82); font-size: 14px; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(233,241,244,0.5);
}
.footer-bottom a { color: rgba(233,241,244,0.65); }

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
  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 h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.cookie-banner p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  padding: 11px 16px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.cookie-actions [data-consent="reject"] { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-style: dashed; }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  padding-block: clamp(44px, 7vw, 88px) clamp(30px, 4vw, 52px);
  background:
    radial-gradient(100% 80% at 90% -20%, rgba(11,79,108,0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 6.5vw, 4.5rem); max-width: 16ch; }
.page-hero p { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 52ch; }

/* prose for legal/about */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 1.6em; }
.prose h3 { font-size: clamp(1.25rem, 2.6vw, 1.5rem); margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated {
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
  margin-bottom: 2em;
}

/* =========================================================
   Contact cards
   ========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.c-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  min-width: 0;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.c-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -28px rgba(11,79,108,0.5);
  border-color: var(--line-strong);
}
.c-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(11,79,108,0.10);
  color: var(--accent);
  margin-bottom: 16px;
  transition: transform 240ms ease, background 240ms ease;
}
.c-card:hover .ic { transform: scale(1.08); background: rgba(226,96,63,0.14); color: var(--accent-2); }
.c-card h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.c-card a, .c-card .val { font-size: 15px; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; font-weight: 500; }
.c-card a:hover { color: var(--accent-2); }
.c-card small { display: block; color: var(--ink-faint); font-size: 12.5px; margin-top: 6px; }

/* hours mini-grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 520px;
}
.hours-grid .hrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.hours-grid .hrow.today { border-color: var(--accent); background: rgba(11,79,108,0.06); }
.hours-grid .hrow .day { font-weight: 600; color: var(--ink); }
.hours-grid .hrow .time { color: var(--ink-soft); }

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -28px rgba(11,79,108,0.5);
  border-color: var(--line-strong);
}
@media (prefers-reduced-motion: reduce) { .testi { transition: none; } }
.testi .stars { color: var(--accent-2); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi p { font-size: 15px; color: var(--ink-soft); font-style: italic; }
.testi .who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.testi .who strong { display: block; color: var(--ink); font-style: normal; }
.testi .who span { color: var(--ink-faint); }

/* notes / activity */
.notes-list { display: grid; gap: 16px; max-width: 640px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.note-item time { font-size: 12.5px; color: var(--accent-2); font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
.note-item p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.member:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -30px rgba(11,79,108,0.5); }
.member .m-photo { aspect-ratio: 4 / 4; overflow: hidden; }
.member .m-photo img { width: 100%; height: 100%; object-fit: cover; }
.member .m-body { padding: 20px 22px 24px; }
.member h3 { font-size: 1.35rem; margin-bottom: 0.1em; }
.member .m-role { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 0.8em; }
.member p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* tables */
.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: 8px;
}
.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: 14px;
}
table th { background: var(--surface-2); font-weight: 600; color: var(--ink); }
table td { color: var(--ink-soft); }

/* sitemap */
.sitemap-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 680px) { .sitemap-cols { grid-template-columns: repeat(2, 1fr); } }
.sitemap-cols h2 { font-size: 1.3rem; }
.sitemap-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sitemap-cols a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.nf-wrap { text-align: center; padding-block: clamp(60px, 12vw, 140px); }
.nf-wrap .big {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--accent);
  line-height: 0.9;
}
.nf-wrap p { color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }

/* thank you */
.ty-wrap { text-align: center; padding-block: clamp(60px, 11vw, 130px); max-width: 620px; margin-inline: auto; }
.ty-wrap .check {
  width: 78px; height: 78px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(11,79,108,0.12);
  color: var(--accent);
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .line > span { transform: none !important; }
  .hero-photo img { animation: none !important; }
  .breath-pacer .ring { animation: none !important; }
  .bubbles { display: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero h1 .line > span { transform: none; }
html.no-js .bubbles { display: none; }

/* CTA band (replaces on-page forms) */
.cta-band .cta-lead {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  color: #fff;
  max-width: 22ch;
  margin-bottom: 0.5em;
}
.cta-band p { color: rgba(233,241,244,0.85); max-width: 46ch; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.cta-band .btn-ghost:hover, .cta-band .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: #fff;
}

/* utility */
.lead-text { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; }
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

.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}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}
