/* ============================================================
   SAHADA AKADEMİ — Editorial Football Academy
   Palette: bg=#0B1D3A surface=#132B52 ink=#E8E4DC accent=#D4A843 accent-2=#8CA4C8
   ============================================================ */

:root {
  interpolate-size: allow-keywords;
  --bg: #0B1D3A;
  --surface: #132B52;
  --surface-2: #1A3668;
  --ink: #E8E4DC;
  --ink-soft: #B8B4AC;
  --accent: #D4A843;
  --accent-2: #8CA4C8;
  --line: rgba(212,168,67,0.18);
  --line-strong: rgba(212,168,67,0.35);
  --header-h: 72px;
  --radius: 8px;
  --container: 1080px;
  --font-heading: 'Playfair Display', 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-weight: 600; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ---- Focus ring ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(3.2rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 0.5em; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

/* ---- Drop cap ---- */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 4.6em;
  line-height: 0.78;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  margin: 0.06em 0.14em 0 0;
  padding-top: 0.08em;
}

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Main spacing ---- */
main { padding-top: var(--header-h); }
section { padding: clamp(3rem, 8vw, 6rem) 0; }

/* ---- Gold rule divider ---- */
.gold-rule {
  width: 80px; height: 1px;
  background: var(--accent);
  border: none;
  margin: 2rem 0;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ---- Corner frame motif ---- */
.corner-frame {
  position: relative;
}
.corner-frame::before,
.corner-frame::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--accent);
  border-style: solid;
  pointer-events: none;
  opacity: 0.45;
}
.corner-frame::before {
  top: -6px; left: -6px;
  border-width: 2px 0 0 2px;
}
.corner-frame::after {
  bottom: -6px; right: -6px;
  border-width: 0 2px 2px 0;
}

/* ---- Field-line pattern (decorative) ---- */
.field-line-divider {
  display: block; width: 100%; height: 60px;
  position: relative; overflow: hidden;
  margin: 0 auto;
}
.field-line-divider svg {
  width: 100%; height: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(11, 29, 58, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(11,29,58,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto; width: 100%;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo {
  font-family: var(--font-heading);
  font-weight: 700; font-style: italic;
  font-size: 1.25rem; color: var(--ink);
  text-decoration: none; white-space: nowrap;
  letter-spacing: -0.01em;
}
.header__logo span { color: var(--accent); }

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center; gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 300ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 220ms;
  box-shadow: 0 0 4px rgba(232,228,220,0.25);
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1; pointer-events: auto;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ============================================================
   HERO — type-only-massive
   ============================================================ */
.hero {
  min-height: 80vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute; inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, var(--accent) 59px, var(--accent) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, var(--accent) 59px, var(--accent) 60px);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11,29,58,0.6) 0%,
    rgba(11,29,58,0.3) 40%,
    rgba(11,29,58,0.5) 70%,
    rgba(11,29,58,0.85) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(3.6rem, 10vw, 4.5rem);
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 0;
}
.hero h1 .line {
  display: block;
  animation: heroLineIn 700ms cubic-bezier(.2,.7,.2,1) backwards;
}
.hero h1 .line:nth-child(2) { animation-delay: 160ms; }
.hero h1 .line:nth-child(3) { animation-delay: 320ms; }

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.hero__cta-row {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero .gold-rule { margin: 2rem 0 1.6rem; width: 120px; }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.7;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 2rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.hero__badge svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .line { opacity: 1; transform: none; animation: none; }
}
html.no-js .hero h1 .line { opacity: 1; transform: none; animation: none; }

/* ============================================================
   STATS — flip counter
   ============================================================ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  text-align: center;
}
.stat-card {
  padding: 20px 8px;
}
.stat-card__number {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  overflow: hidden;
}
.stat-card__number .digit {
  display: inline-block;
  transition: transform 80ms;
}
.stat-card__number .suffix {
  font-size: 0.6em;
  color: var(--accent);
  margin-left: 2px;
}
.stat-card__number .separator {
  font-size: 0.8em;
  color: var(--accent);
  opacity: 0.5;
}
.stat-card__label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* digit flip animation */
@keyframes digitFlipIn {
  0% { transform: rotateX(-90deg); opacity: 0; }
  100% { transform: rotateX(0); opacity: 1; }
}
.stat-card__number .digit.is-flipping {
  animation: digitFlipIn 180ms cubic-bezier(.4,0,.2,1) forwards;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  position: relative;
}
.manifesto__text {
  max-width: 72ch;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.85;
  color: var(--ink);
}
.manifesto__text p + p { margin-top: 1.4em; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 { margin-bottom: 0.3em; }
.section-head p {
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 1.02rem;
}

/* ============================================================
   EGITMENLER (Coaches)
   ============================================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.coach-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,168,67,0.2), 0 0 0 1px var(--line-strong);
  border-color: var(--line-strong);
}
.coach-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.coach-card__photo svg {
  width: 36px; height: 36px;
  stroke: var(--accent-2);
  fill: none;
}
.coach-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 4px;
}
.coach-card__title {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.coach-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   YAŞ GRUPLARI (Age groups)
   ============================================================ */
.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 768px) {
  .age-groups-grid { grid-template-columns: 1fr; }
}
.age-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.age-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,168,67,0.2);
}
.age-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transition: height 300ms, box-shadow 300ms;
}
.age-card:hover::before {
  height: 4px;
  box-shadow: 0 2px 12px rgba(212,168,67,0.4);
}
.age-card__range {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.age-card__subtitle {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 16px;
}
.age-card__desc {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.age-card__includes {
  margin-bottom: 20px;
}
.age-card__includes li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.age-card__includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
.age-card__excludes {
  margin-bottom: 20px;
}
.age-card__excludes li {
  font-size: 0.84rem;
  color: var(--ink-soft);
  opacity: 0.7;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.age-card__excludes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
  opacity: 0.5;
}
.age-card__price {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.age-card__price-note {
  font-size: 0.76rem;
  color: var(--ink-soft);
  opacity: 0.7;
}
.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   TAKVIM (Calendar 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: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border-bottom: 2px solid var(--line-strong);
}
td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(212,168,67,0.04); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step__marker {
  position: absolute;
  left: -48px; top: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  z-index: 1;
}
.process-step__time {
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.process-step h4 {
  font-style: normal;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.testimonial-card:first-child {
  grid-column: 1 / -1;
}
.testimonial-card__text {
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
}
details {
  border-bottom: 1px solid var(--line);
}
details summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  padding: 18px 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }
details summary::after {
  content: '+';
  font-family: 'Courier New', Consolas, monospace;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details[open] summary {
  color: var(--accent);
}
details > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
details[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 64ch;
}
@media (prefers-reduced-motion: reduce) {
  details > .faq-body { transition: none; }
}

/* ============================================================
   KAYIT FORM
   ============================================================ */
.kayit-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 680px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-grid .field--full { grid-column: 1 / -1; }

.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.94rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft); opacity: 0.4;
}

/* Checkbox */
.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);
}
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--checkbox label {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

/* Honeypot */
.hp-field {
  position: absolute; left: -9999px; opacity: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(212,168,67,0.3);
}
.btn-primary::after {
  content: '\2192';
  transition: transform 240ms;
}
.btn-primary:hover::after {
  transform: translateX(4px);
}

/* Whistle pulse on CTA hover */
@keyframes whistlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(212,168,67,0); }
}
.btn-primary:hover {
  animation: whistlePulse 900ms cubic-bezier(.22,.61,.36,1);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700; font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--accent); }
.footer__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 36ch;
}
.footer__heading {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer__links a:hover {
  color: var(--ink);
  padding-left: 4px;
}
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a {
  color: var(--ink-soft);
}
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.7;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer__legal a { color: var(--ink-soft); }
.footer__legal a:hover { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--ink);
}
.cookie-banner__text {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a { text-decoration: underline; }
.cookie-banner__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1; min-width: 100px;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: background 240ms, color 240ms;
  border: 1px solid var(--line-strong);
}
.cookie-banner__actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__actions .cookie-accept:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cookie-banner__actions .cookie-reject {
  background: rgba(232,228,220,0.12);
  color: var(--ink);
  border-color: var(--ink);
  font-weight: 700;
}
.cookie-banner__actions .cookie-reject:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cookie-banner__actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-banner__actions .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(.22,.61,.36,1), transform 750ms cubic-bezier(.22,.61,.36,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 120ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   THEME ANIMATIONS — Football niche
   ============================================================ */

/* 1. Ball spin — decorative rotating football near stats */
@keyframes ballSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ball-icon {
  animation: ballSpin 12s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ball-icon { animation: none; }
}

/* 2. Goal-net mesh pattern on surface sections */
.net-pattern {
  position: relative;
}
.net-pattern::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    linear-gradient(45deg, var(--accent) 1px, transparent 1px),
    linear-gradient(-45deg, var(--accent) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* 3. Corner-flag wave */
@keyframes cornerFlag {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.corner-flag-anim {
  animation: cornerFlag 4s ease-in-out infinite;
  transform-origin: bottom center;
}
@media (prefers-reduced-motion: reduce) {
  .corner-flag-anim { animation: none; }
}

/* 4. Stadium glow on accent elements */
@keyframes stadiumGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(212,168,67,0.2)); }
  50% { filter: drop-shadow(0 0 12px rgba(212,168,67,0.4)); }
}
.stadium-glow {
  animation: stadiumGlow 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .stadium-glow { animation: none; }
}

/* 5. Pitch-stripe background subtle */
.pitch-stripes {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(140,164,200,0.03) 48px,
    rgba(140,164,200,0.03) 96px
  );
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height: 240px;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 20px);
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--surface);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(212,168,67,0.15);
}
.channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.channel-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
  fill: none;
}
.channel-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.channel-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-card__value a {
  color: var(--ink);
  transition: color 240ms;
}
.channel-card__value a:hover { color: var(--accent); }
.channel-card__sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
  opacity: 0.7;
}

/* Hours mini-cards */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.hour-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
}
.hour-day__name {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 2px;
}
.hour-day__time {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.hour-day--today {
  border-color: var(--accent);
  background: rgba(212,168,67,0.06);
}
.hour-day--closed {
  opacity: 0.45;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { max-width: 72ch; }
.about-story p { margin-bottom: 1.2em; font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 2.5em; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.8em; font-size: 1.15rem; color: var(--accent); }
.legal-content p { margin-bottom: 1em; font-size: 0.94rem; line-height: 1.8; color: var(--ink-soft); }
.legal-content ul, .legal-content ol {
  padding-left: 24px; margin-bottom: 1em;
}
.legal-content li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
}
.thankyou h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.thankyou p { color: var(--ink-soft); max-width: 42ch; margin-bottom: 2rem; }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
}
.error-page__code {
  font-family: 'Courier New', Consolas, monospace;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.error-page h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-list a {
  display: block;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }

/* ============================================================
   NEWS / NOTES BLOCK
   ============================================================ */
.notes-list { max-width: 600px; }
.note-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.note-item__date {
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.note-item__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ============================================================
   SMOOTH SCROLL offset
   ============================================================ */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none; }
  main { padding-top: 0; }
  body { background: #fff; color: #111; }
  .reveal { opacity: 1; transform: none; }
  a { color: #111; text-decoration: underline; }
}

/* ============================================================
   SECTION IMAGES
   ============================================================ */
.manifesto__img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.35);
}
.section-thumb {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.3);
}
.section-visual {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.3);
}

/* ============================================================
   ENHANCED HOVER & MICRO-INTERACTIONS
   ============================================================ */

/* Coach cards — golden glow on hover */
.coach-card:hover .coach-card__photo {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(212,168,67,0.2);
}
.coach-card__photo {
  transition: border-color 300ms, box-shadow 300ms;
}

/* Testimonial cards — subtle lift & glow */
.testimonial-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -12px rgba(212,168,67,0.15);
}

/* Channel cards — icon glow on hover */
.channel-card:hover .channel-card__icon {
  background: rgba(212,168,67,0.18);
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}
.channel-card__icon {
  transition: background 300ms, box-shadow 300ms;
}

/* Team cards — border accent on hover */
.team-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -12px rgba(212,168,67,0.15);
  border-color: var(--line-strong);
}

/* Stat card — number pulse on hover */
.stat-card {
  transition: transform 200ms;
}
.stat-card:hover {
  transform: scale(1.04);
}
.stat-card:hover .stat-card__number {
  text-shadow: 0 0 18px rgba(212,168,67,0.35);
}
.stat-card__number {
  transition: text-shadow 300ms;
}

/* FAQ summary hover */
details summary:hover {
  color: var(--accent);
}

/* Process step marker — pulse glow */
.process-step__marker {
  transition: box-shadow 300ms, background 300ms, color 300ms;
}
.process-step:hover .process-step__marker {
  box-shadow: 0 0 14px rgba(212,168,67,0.3);
  background: var(--accent);
  color: var(--bg);
}

/* Note items hover */
.note-item {
  transition: padding-left 240ms, border-color 240ms;
}
.note-item:hover {
  padding-left: 8px;
  border-bottom-color: var(--line-strong);
}

/* Hour day hover */
.hour-day {
  transition: border-color 200ms, transform 200ms;
}
.hour-day:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Footer link icons subtle glow */
.footer__contact-item:hover svg {
  filter: drop-shadow(0 0 6px rgba(212,168,67,0.4));
}
.footer__contact-item svg {
  transition: filter 300ms;
}

/* Stadium floodlight glow on section eyebrows */
.section-head .eyebrow {
  transition: text-shadow 300ms;
}
.section-head:hover .eyebrow {
  text-shadow: 0 0 12px rgba(212,168,67,0.3);
}

/* Gold rule shimmer */
@keyframes goldShimmer {
  0% { background-position: -80px 0; }
  100% { background-position: 80px 0; }
}
.gold-rule {
  background: linear-gradient(90deg, var(--accent) 0%, rgba(232,228,220,0.6) 50%, var(--accent) 100%);
  background-size: 160px 1px;
  animation: goldShimmer 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gold-rule { animation: none; background: var(--accent); }
}

/* Btn ripple effect */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.btn-primary:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .coach-card, .age-card, .testimonial-card, .team-card, .stat-card,
  .channel-card, .hour-day, .note-item, .process-step__marker {
    transition: none !important;
  }
  .coach-card:hover, .age-card:hover, .testimonial-card:hover,
  .team-card:hover, .stat-card:hover { transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .age-groups-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .coaches-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero__badges { flex-direction: column; }
  .process-timeline { padding-left: 40px; }
  .process-step__marker { left: -40px; width: 32px; height: 32px; font-size: 0.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field--full { grid-column: 1; }
  .channels-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card__number { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero__badge { font-size: 0.76rem; padding: 6px 12px; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 2.4rem; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   MOBILE TABLE FIX — prevent text clipping
   ============================================================ */
@media (max-width: 640px) {
  .table-scroll > table { min-width: 420px; }
  .table-scroll { position: relative; }
  .table-scroll::after {
    content: '← →';
    position: absolute;
    bottom: -20px; right: 0;
    font-size: 0.7rem;
    color: var(--ink-soft);
    opacity: 0.5;
    letter-spacing: 0.1em;
  }
  td, th { padding: 10px 12px; font-size: 0.84rem; }
}

/* ============================================================
   COOKIE BANNER — mobile safe spacing
   ============================================================ */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 8px; left: 8px; right: 8px;
    padding: 16px 18px;
  }
  .cookie-banner__actions { gap: 6px; }
  .cookie-banner__actions button { min-width: 80px; padding: 10px 12px; }
}

/* ============================================================
   ENHANCED FOOTBALL MICRO-ANIMATIONS
   ============================================================ */

/* Floodlight sweep on hero load */
@keyframes floodlightSweep {
  0% { opacity: 0; transform: translateX(-30px) scale(0.97); }
  100% { opacity: 1; transform: none; }
}
.hero__content .eyebrow {
  animation: floodlightSweep 600ms cubic-bezier(.22,.61,.36,1) 80ms backwards;
}
.hero .gold-rule {
  animation: floodlightSweep 500ms cubic-bezier(.22,.61,.36,1) 400ms backwards, goldShimmer 3s ease-in-out 1s infinite;
}
.hero__sub {
  animation: floodlightSweep 600ms cubic-bezier(.22,.61,.36,1) 500ms backwards;
}
.hero__badges {
  animation: floodlightSweep 600ms cubic-bezier(.22,.61,.36,1) 620ms backwards;
}
.hero__cta-row {
  animation: floodlightSweep 600ms cubic-bezier(.22,.61,.36,1) 740ms backwards;
}

/* Whistle glow pulse on primary buttons — gentle idle glow */
.hero .btn-primary {
  box-shadow: 0 4px 20px -4px rgba(212,168,67,0.25);
}

/* Coach card — shirt number reveal */
.coach-card::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 300ms, border-color 300ms;
}
.coach-card { position: relative; overflow: hidden; }
.coach-card:hover::after {
  opacity: 0.3;
  border-color: var(--accent);
}

/* Age card — top bar expand on hover */
.age-card::before {
  transition: height 400ms cubic-bezier(.22,.61,.36,1), box-shadow 400ms;
}
.age-card:hover::before {
  height: 5px;
  box-shadow: 0 4px 20px rgba(212,168,67,0.5);
}

/* Stat counter — stadium scoreboard feel */
.stat-card__number {
  text-shadow: 0 0 8px rgba(212,168,67,0.15);
}
.stat-card:hover .stat-card__number {
  text-shadow: 0 0 24px rgba(212,168,67,0.45), 0 0 48px rgba(212,168,67,0.15);
}

/* Process timeline — line glow */
.process-timeline::before {
  background: linear-gradient(180deg, var(--accent) 0%, var(--line-strong) 30%, var(--line-strong) 70%, var(--accent) 100%);
  opacity: 0.6;
}

/* Testimonial quote mark glow */
.testimonial-card:hover::before {
  opacity: 0.45;
  text-shadow: 0 0 12px rgba(212,168,67,0.3);
}
.testimonial-card::before {
  transition: opacity 300ms, text-shadow 300ms;
}

/* FAQ accordion — smoother open */
details summary {
  transition: color 240ms, padding-left 240ms;
}
details summary:hover {
  padding-left: 6px;
}
details[open] summary {
  padding-left: 6px;
}

/* Nav link underline — turf stripe effect */
.nav-desktop a::after {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(212,168,67,0.5));
  transition: width 350ms cubic-bezier(.22,.61,.36,1);
}

/* Footer links — smooth slide-in */
.footer__links a {
  transition: color 240ms, padding-left 300ms cubic-bezier(.22,.61,.36,1);
}

/* Hero badge shimmer */
@keyframes badgeShimmer {
  0% { border-color: var(--line-strong); }
  50% { border-color: rgba(212,168,67,0.5); }
  100% { border-color: var(--line-strong); }
}
.hero__badge {
  animation: badgeShimmer 5s ease-in-out infinite;
  animation-delay: calc(var(--badge-i, 0) * 1.2s);
}
.hero__badge:nth-child(1) { --badge-i: 0; }
.hero__badge:nth-child(2) { --badge-i: 1; }
.hero__badge:nth-child(3) { --badge-i: 2; }

/* Section transitions — diagonal field line */
section + section { position: relative; }

/* Gold rule glow */
.gold-rule {
  box-shadow: 0 0 8px rgba(212,168,67,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero__content .eyebrow,
  .hero .gold-rule,
  .hero__sub,
  .hero__badges,
  .hero__cta-row { animation: none !important; opacity: 1; transform: none; }
  .hero__badge { animation: none !important; }
  .btn-primary:hover { animation: none !important; }
  .process-step__marker { transition: none; }
}
html.no-js .hero__content .eyebrow,
html.no-js .hero .gold-rule,
html.no-js .hero__sub,
html.no-js .hero__badges,
html.no-js .hero__cta-row { animation: none; opacity: 1; transform: none; }
html.no-js .hero__badge { animation: none; }

/* ============================================================
   LEGAL PAGE — better vertical rhythm
   ============================================================ */
.legal-content h2 {
  padding-top: 1em;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* ============================================================
   DRAWER LINKS — active state emphasis
   ============================================================ */
.drawer a.is-active {
  color: var(--accent);
  font-weight: 600;
}

.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}

/* footer-contrast-guard */
.site-footer, footer, .footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.site-footer::before, footer::before, .footer::before {
  content:"";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 2px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 2px;
}

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* honeypot-hide */
.form-honeypot, input[name="web_site"], input[name="honeypot"], input[name="hp_url"], input[name="trap"], input[aria-hidden="true"][tabindex="-1"] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* 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;
}

