/* ============================================================
   Minik Nota — Müzik & Ritim Atölyesi
   Orff yaklaşımı · 3-7 yaş
   ============================================================ */

:root {
  --bg: #FEF3EC;
  --surface: #FFE3D3;
  --surface-2: #FFEFE5;
  --ink: #22303A;
  --ink-soft: #4c5a64;
  --accent: #FF7A59;
  --accent-2: #16A5A0;
  --accent-3: #FFC23C;
  --accent-4: #8E7CFF;
  --line: rgba(34, 48, 58, 0.12);
  --line-strong: rgba(34, 48, 58, 0.22);
  --header-h: 76px;
  --maxw: 1400px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 44px -28px rgba(34, 48, 58, 0.45);
  --shadow-soft: 0 10px 30px -22px rgba(34, 48, 58, 0.4);
  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 {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(14px, 4vw, 48px);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), background 220ms, color 220ms, box-shadow 220ms;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px -14px rgba(255, 122, 89, 0.9);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary .arr { transition: transform 220ms; }
.btn-primary:hover .arr { 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);
}
.btn-teal {
  background: var(--accent-2);
  color: #fff;
}
.btn-teal:hover, .btn-teal:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-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(254, 243, 236, 0.92);
  backdrop-filter: saturate(1.2);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(254, 243, 236, 0.98);
  box-shadow: 0 8px 24px -16px rgba(34, 48, 58, 0.28);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(14px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
}
.brand .logo-mark {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--accent);
  border-radius: 12px 12px 14px 12px;
  color: #fff;
  transform: rotate(-6deg);
  box-shadow: 0 8px 18px -10px rgba(255, 122, 89, 0.9);
}
.brand b { color: var(--accent); }
@media (hover: hover) {
  .brand:hover .logo-mark { animation: noteWiggle 620ms cubic-bezier(.2,.7,.2,1); }
}
@keyframes noteWiggle {
  0%, 100% { transform: rotate(-6deg); }
  25% { transform: rotate(5deg) scale(1.08); }
  55% { transform: rotate(-11deg) scale(1.05); }
  80% { transform: rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .brand:hover .logo-mark { animation: none; }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}
.nav-desktop a {
  position: relative;
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 6px 2px;
  transition: color 200ms;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  border-radius: 4px;
  background: var(--accent);
  transition: right 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { right: 0; }
.nav-cta {
  background: var(--accent-2);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: #fff !important; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1.5px solid rgba(34, 48, 58, 0.16);
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  /* defined outline + lift so the toggle reads clearly even over the photographic hero */
  box-shadow: 0 8px 20px -10px rgba(34, 48, 58, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition: background 200ms, border-color 200ms, transform 200ms, box-shadow 200ms;
}
.nav-toggle:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(255, 122, 89, 0.85); }
.nav-toggle:hover span { background: #fff; }
.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34, 48, 58, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 16px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(34, 48, 58, 0.6);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 10px; }
.drawer .nav-cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: 0;
  color: #fff !important;
}
.drawer .nav-cta:hover { padding-left: 4px; }

/* ============================================================
   HERO
   ============================================================ */
main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/atolye-ic.jpg") center/cover no-repeat;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.16) translate(-2%, -1.5%); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34,48,58,.18) 0%, rgba(34,48,58,.05) 35%, rgba(34,48,58,.62) 100%),
    radial-gradient(120% 80% at 80% 10%, rgba(255,194,60,.18), transparent 60%);
}

.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 64px) clamp(14px, 4vw, 48px) clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 2;
}
.hero-badge {
  position: absolute;
  top: clamp(20px, 4vw, 44px);
  right: clamp(14px, 4vw, 48px);
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 16px 22px;
  max-width: 230px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  z-index: 3;
}
.hero-badge span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.hero-badge .star { color: var(--accent-3); }

.hero-content { max-width: 760px; color: #fff; }
.hero .eyebrow {
  color: #fff;
  background: rgba(22, 165, 160, 0.85);
  padding: 7px 16px;
  border-radius: 999px;
}
.hero .eyebrow::before { background: var(--accent-3); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 8vw, 4.5rem);
  margin: 18px 0 14px;
  text-shadow: 0 10px 30px rgba(34, 48, 58, 0.4);
  letter-spacing: -0.02em;
}
.hero h1 .swash { color: var(--accent-3); }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 540px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 4px 16px rgba(34, 48, 58, 0.45);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
}
.hero-trust li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}
.hero-trust li svg { width: 18px; height: 18px; color: var(--accent-3); }
.hero-trust ul { display: contents; }

/* floating note/star particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -40px;
  color: #fff;
  opacity: 0;
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}
.particle svg { width: 100%; height: 100%; }
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(.8); opacity: 0; }
  10%  { opacity: .9; }
  90%  { opacity: .9; }
  100% { transform: translateY(-104vh) rotate(220deg) scale(1.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media::before { animation: none; }
  .particle { display: none; }
}

/* wavy divider */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  color: var(--bg);
}
.wave svg { width: 100%; height: auto; display: block; }
.hero .wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-top: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Stats band ---------- */
.stats {
  background: var(--ink);
  color: #fff;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding-block: clamp(36px, 5vw, 56px);
}
.stat { text-align: center; }
.stat .num {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent-3);
  line-height: 1;
}
.stat .lbl { font-weight: 600; color: rgba(255,255,255,.82); margin-top: 6px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: clamp(10px, 1.4vw, 18px);
}
.gtile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gtile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gtile:hover img { transform: scale(1.06); }
.gtile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(34,48,58,.72));
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms, transform 300ms;
}
.gtile:hover figcaption { opacity: 1; transform: translateY(0); }
.gtile.t-wide { grid-column: span 3; grid-row: span 2; }
.gtile.t-tall { grid-column: span 2; grid-row: span 2; }
.gtile.t-sq   { grid-column: span 2; grid-row: span 1; }
.gtile.t-big  { grid-column: span 3; grid-row: span 2; }

/* ============================================================
   WHAT WE DO — feature cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -30px rgba(255, 122, 89, 0.6);
}
.fcard .ico {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.fcard:hover .ico { transform: rotate(-8deg) scale(1.06); }
.fcard:nth-child(2) .ico { background: #e3f6f5; color: var(--accent-2); }
.fcard:nth-child(3) .ico { background: #fff3d6; color: #d9971b; }
.fcard:nth-child(4) .ico { background: #efe9ff; color: var(--accent-4); }
.fcard .ico svg { width: 30px; height: 30px; }
.fcard h3 { font-size: 1.3rem; }
.fcard p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ============================================================
   AGE GROUPS — colorful blocks
   ============================================================ */
.ages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.age {
  border-radius: var(--radius-lg);
  padding: 30px 28px 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.age:hover { transform: translateY(-6px); }
.age.a1 { background: linear-gradient(150deg, #FF9A76, var(--accent)); }
.age.a2 { background: linear-gradient(150deg, #2ec5bf, var(--accent-2)); }
.age.a3 { background: linear-gradient(150deg, #A99BFF, var(--accent-4)); }
.age .age-tag {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
.age h3 { color: #fff; font-size: 1.5rem; margin-top: 6px; }
.age p { color: rgba(255,255,255,.92); }
.age ul { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: 7px; }
.age li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem;
}
.age li::before {
  content: "♪";
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
}
.age .blob {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  top: -50px; right: -40px;
}

/* ============================================================
   PROCESS timeline
   ============================================================ */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 880px;
}
.tstep {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding-bottom: 34px;
  position: relative;
}
.tstep:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 31px; top: 64px; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(var(--accent) 0 8px, transparent 8px 16px);
  border-radius: 4px;
}
.tstep .tnum {
  width: 64px; height: 64px;
  flex: none;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.tstep:nth-child(2) .tnum { background: var(--accent-2); }
.tstep:nth-child(3) .tnum { background: var(--accent-3); color: var(--ink); }
.tstep:nth-child(4) .tnum { background: var(--accent-4); }
.tstep:nth-child(5) .tnum { background: var(--ink); }
.tstep h3 { font-size: 1.28rem; margin-bottom: 4px; }
.tstep .when {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}
.tstep p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard.featured {
  border: 2px solid var(--accent);
  background: var(--surface-2);
}
.pcard .ptag {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--accent-2);
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.pcard h3 { font-size: 1.45rem; }
.pcard .price {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  margin: 6px 0 2px;
  font-variant-numeric: tabular-nums;
}
.pcard .price small {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.pcard .per { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.pcard ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.pcard li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.96rem;
}
.pcard li svg { width: 20px; height: 20px; margin-top: 2px; }
.pcard li.inc svg { color: var(--accent-2); }
.pcard li.exc { color: var(--ink-soft); }
.pcard li.exc svg { color: var(--line-strong); }
.pcard .btn { margin-top: auto; width: 100%; }
.price-note {
  text-align: center;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.testi .quote-mark {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 8px;
}
.testi p { color: var(--ink-soft); font-size: 0.98rem; }
.testi .who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
}
.testi .who small { display: block; color: var(--ink-soft); font-weight: 500; font-family: "Nunito", sans-serif; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 24px);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary .chev { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 24px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #ff9472);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 540px; margin-inline: auto; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-band .deco { position: absolute; opacity: .25; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl {
  font-weight: 700;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.95rem;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 15px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color 200ms, background 200ms;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.field.kvkk label { font-weight: 500; font-family: "Nunito", sans-serif; }
.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);
}

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.cc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms;
}
.cc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cc .cc-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 14px;
}
.cc .cc-ico svg { width: 24px; height: 24px; }
.cc h3 { font-size: 1.15rem; margin-bottom: 4px; }
.cc a, .cc .val {
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cc a:hover { color: var(--accent); }
.cc small { display: block; color: var(--ink-soft); margin-top: 6px; font-weight: 500; }

/* hours card grid */
.hours-grid { display: grid; gap: 6px; }
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hours-grid .row:last-child { border-bottom: 0; }
.hours-grid .row.today { color: var(--accent); font-weight: 700; }
.hours-grid .day { font-weight: 700; }

/* ============================================================
   TABLE
   ============================================================ */
.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: 12px;
}
.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 {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
table th { background: var(--surface); font-family: "Baloo 2", sans-serif; }

/* ============================================================
   DOC / legal pages
   ============================================================ */
.doc { max-width: 760px; line-height: 1.75; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.7em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.3em; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.8; }
.doc p { margin-bottom: 1.1em; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); font-weight: 700; word-break: break-word; overflow-wrap: anywhere; }
.doc a:hover { text-decoration: underline; }
.page-hero {
  background: var(--surface);
  padding-block: clamp(40px, 7vw, 84px) clamp(34px, 5vw, 60px);
  position: relative;
}
.page-hero .eyebrow { color: var(--accent-2); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-top: 10px; }
.page-hero p { color: var(--ink-soft); max-width: 600px; font-size: 1.08rem; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.member:hover { transform: translateY(-5px); }
.member img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.member .m-body { padding: 22px; }
.member h3 { font-size: 1.25rem; margin-bottom: 2px; }
.member .role { color: var(--accent-2); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.member p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* notes / activity */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.note-row time {
  font-weight: 700;
  color: var(--accent-2);
  font-family: "Baloo 2", sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
}
.note-row p { margin: 0; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding-block: clamp(44px, 6vw, 72px) 28px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand b { color: var(--accent-3); }
.site-footer p { font-size: 0.94rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-nav a { color: rgba(255,255,255,.78); font-size: 0.94rem; transition: color 200ms, padding-left 200ms; }
.footer-nav a:hover { color: var(--accent-3); padding-left: 5px; }
.foot-contact { display: grid; gap: 10px; font-size: 0.94rem; }
.foot-contact a { color: rgba(255,255,255,.85); }
.foot-contact a:hover { color: var(--accent-3); }
.footer-bottom {
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom .legal { display: inline-block; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -24px rgba(34,48,58,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  transition: background 200ms, color 200ms, transform 200ms;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-1px); }
/* Reddet gets equal visual weight to Kabul et (no dark pattern) */
.cookie-actions button[data-consent="reject"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cookie-actions button[data-consent="reject"]:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface); transform: translateY(-1px); }
@media (min-width: 720px) {
  .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; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* solid header on mobile: the translucent variant let the bright hero bleed
     through and washed out the brand + hamburger contrast */
  .site-header {
    background: rgba(254, 243, 236, 0.97);
    box-shadow: 0 6px 20px -16px rgba(34, 48, 58, 0.3);
  }
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ages-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gtile.t-wide, .gtile.t-big { grid-column: span 4; }
  .gtile.t-tall { grid-column: span 2; }
  .gtile.t-sq { grid-column: span 2; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gtile.t-wide, .gtile.t-big, .gtile.t-tall, .gtile.t-sq { grid-column: span 2; grid-row: span 1; }
  .hero-badge { display: none; }
  .fcard, .cc, .testi { padding: 20px 18px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .cookie-actions button { flex-basis: 100%; }
}

.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;
}
