:root {
  interpolate-size: allow-keywords;

  --bg: #F7F3ED;
  --surface: #FFFFFF;
  --surface-2: #EDE8E0;
  --ink: #2C2420;
  --ink-soft: #6B5D52;
  --accent: #8B5E3C;
  --accent-2: #3A6B4F;
  --line: rgba(139,94,60,0.25);
  --line-strong: rgba(139,94,60,0.5);

  --ff-heading: 'Lora', 'Palatino Linotype', Palatino, Georgia, serif;
  --ff-body: 'Nunito Sans', 'Trebuchet MS', Tahoma, sans-serif;
  --tracking: -0.005em;

  --container: 1180px;
  --pad: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  --radius: 10px;
  --radius-lg: 16px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: var(--tracking);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  -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; }
a:hover { color: var(--accent-2); }
a:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
button:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { max-width: 68ch; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; z-index: 10000;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   HEADER (sticky-with-morph)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(247,243,237,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}
.scrolled .header-inner { height: 60px; }
.scrolled .nav-toggle { background: var(--surface); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}
.logo:hover { color: var(--accent); }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  letter-spacing: 0.015em;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,.84,.44,1), left 320ms cubic-bezier(.16,.84,.44,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; left: 0; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
  transition: background 240ms, color 240ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,94,60,0.25);
}
.nav-desktop .nav-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px; height: 48px;
  background: var(--surface); border: 2px solid var(--accent); border-radius: 8px; cursor: pointer;
  z-index: 1100;
  position: relative;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: rgba(139,94,60,0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.18), 0 2px 8px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--accent); }
.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; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE DRAWER (outside header)
   ============================================================ */
.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) var(--pad) var(--pad);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer nav a {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.16,.84,.44,1), color 240ms, transform 240ms cubic-bezier(.16,.84,.44,1);
}
.drawer nav a:hover,
.drawer nav a.is-active {
  background: var(--surface-2);
  color: var(--accent);
  transform: translateX(6px);
}
.drawer nav .nav-cta-mobile {
  margin-top: 16px;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
}
.drawer nav .nav-cta-mobile:hover {
  background: var(--accent);
  color: var(--surface);
}

.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-visible {
  opacity: 1; pointer-events: auto;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
main { padding-top: var(--header-h); }

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.divider-line {
  display: block;
  width: 80px; height: 1px;
  background: var(--accent);
  margin: 0 auto;
  border: none;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: -40px;
  z-index: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  background: url('/assets/images/antrenman-1.jpg') center 20%/cover no-repeat;
  animation: heroZoom 8s ease-out forwards;
}
@media (max-width: 768px) {
  .hero-bg { background-position: center 30%; }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(175deg, rgba(44,36,32,0.22) 0%, rgba(44,36,32,0.78) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(60px, 12vw, 100px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 480px) {
  .hero-content { padding-bottom: 32px; }
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.hero h1 {
  color: #FFFFFF;
  max-width: 14ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center; gap: 10px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background 240ms, color 240ms, transform 200ms, box-shadow 200ms;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139,94,60,0.4);
  animation: none;
}
.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139,94,60,0.2);
  transition-duration: 80ms;
}
.hero-cta svg { width: 18px; height: 18px; transition: transform 320ms cubic-bezier(.34,1.56,.64,1); }

/* Signature SVG */
.hero-signature {
  position: absolute;
  bottom: clamp(120px, 16vw, 200px);
  right: clamp(24px, 8vw, 120px);
  width: clamp(160px, 22vw, 280px);
  height: auto;
  z-index: 2;
  opacity: 0.85;
}
.sig-path {
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.sig-path.is-drawn {
  animation: drawSig 2.4s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes drawSig {
  to { stroke-dashoffset: 0; }
}

/* Trust strip under hero */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   STATS STRIP (dark band)
   ============================================================ */
.stats-band {
  background: var(--ink);
  color: var(--surface);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}
.stat-item { padding: 8px 0; }
.stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num .stat-suffix {
  font-size: 0.6em;
  color: rgba(255,255,255,0.5);
}
.stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   EDITORIAL / STORYTELLING SECTIONS
   ============================================================ */
.editorial-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.82;
  color: var(--ink-soft);
}
.editorial-text p + p { margin-top: 1.4em; }

.section-eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-intro {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ============================================================
   TIMELINE (#yolculuk)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 7px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  z-index: 1;
}
.timeline-dot.active {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.timeline-year {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-body {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 56ch;
}

/* Field line decoration on timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  right: -20px; top: 8px;
  width: 40px; height: 40px;
  border: 2px dashed var(--line);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 600ms;
}
.timeline-item.is-in::after { opacity: 0.4; }

/* ============================================================
   METHOD (#metod) — asymmetric split
   ============================================================ */
.metod-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 768px) {
  .metod-grid { grid-template-columns: 1fr; }
}
.metod-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.metod-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.metod-img-wrap:hover img { transform: scale(1.04); }
.metod-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,107,79,0.12), transparent);
  pointer-events: none;
}
.metod-text h2 { margin-bottom: 20px; }
.metod-text p {
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 1.2em;
}

/* ============================================================
   PROCESS (#surec) — vertical steps with football icons
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-bottom: none; }
.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 300ms, background 300ms, transform 300ms;
}
.process-step:hover .step-icon {
  border-color: var(--accent);
  background: rgba(139,94,60,0.06);
  transform: scale(1.08);
}
.step-icon svg { width: 24px; height: 24px; color: var(--accent); }
.step-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================================
   PRICING (#paketler)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139,94,60,0.12);
}
.price-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.price-card.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 12px;
}
.price-name {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.price-amount {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.price-period {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-list {
  list-style: none;
  margin-bottom: 24px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-list li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-2);
}
.price-list li.excluded svg { color: var(--line-strong); }
.price-list li.excluded { opacity: 0.55; text-decoration: line-through; }
.price-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   TESTIMONIALS (#sesler) — editorial quote blocks
   ============================================================ */
.testimonials-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-item {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--accent);
}
.testimonial-quote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 16px;
}
.testimonial-cite {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.testimonial-detail {
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}

/* ============================================================
   FAQ (#sss) — pure CSS accordion
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms, padding-left 240ms cubic-bezier(.16,.84,.44,1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); padding-left: 6px; }
.faq-item summary:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.faq-item summary .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}
.faq-item > .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);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   JOIN / FORM (#katil)
   ============================================================ */
.join-section {
  background: var(--surface);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 768px) {
  .join-grid { grid-template-columns: 1fr; }
}

.form-wrap { width: 100%; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.field-kvkk span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 200ms, box-shadow 200ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(139,94,60,0.35);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139,94,60,0.2);
  transition-duration: 80ms;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: 2px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms, box-shadow 200ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,94,60,0.12);
}
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: none;
  transition-duration: 80ms;
}
button.btn-primary { width: 100%; }
@media (min-width: 640px) { button.btn-primary { width: auto; } }

/* ============================================================
   NEWS / NOTES STRIP
   ============================================================ */
.notes-band {
  background: var(--surface-2);
  padding: 40px 0;
}
.notes-heading {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.notes-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.notes-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.notes-date {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: clamp(48px, 8vw, 80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-mark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}
.footer-brand .logo-text { color: var(--surface); }
.footer-brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 30ch;
}

.footer-col h4 {
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 240ms cubic-bezier(.16,.84,.44,1), transform 240ms cubic-bezier(.16,.84,.44,1);
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 300ms cubic-bezier(.16,.84,.44,1);
}
.footer-col a:hover {
  color: var(--surface);
  transform: translateX(4px);
}
.footer-col a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--surface); }
.footer-legal { word-break: break-word; overflow-wrap: anywhere; }

/* ============================================================
   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);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(.16,.84,.44,1), opacity 300ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-text a { text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid var(--line);
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
}
.cookie-buttons button:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}
.cookie-buttons .cookie-accept {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-buttons .cookie-accept:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-buttons .cookie-reject {
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 600;
  border-color: var(--line-strong);
}
.cookie-buttons .cookie-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink);
}
.cookie-buttons .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-buttons .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
}

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 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-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}
td { font-variant-numeric: tabular-nums; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms cubic-bezier(.16,.84,.44,1),
              transform 720ms cubic-bezier(.16,.84,.44,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 110ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   NICHE ANIMATIONS — FOOTBALL THEMED
   ============================================================ */

/* 1. Ball bounce on stat hover */
@keyframes ballBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  45% { transform: translateY(0); }
  60% { transform: translateY(-5px); }
  75% { transform: translateY(0); }
  85% { transform: translateY(-2px); }
}
.stat-item {
  transition: transform 300ms cubic-bezier(.16,.84,.44,1);
}
.stat-item:hover {
  transform: scale(1.04);
}
.stat-item:hover .stat-num {
  animation: ballBounce 700ms cubic-bezier(.16,.84,.44,1);
}
.stat-item:hover .stat-label {
  color: rgba(255,255,255,0.85);
  transition: color 300ms;
}

/* 2. Pitch line drawing */
@keyframes pitchLineDraw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
.pitch-deco {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.pitch-deco.is-in {
  animation: pitchLineDraw 1.6s cubic-bezier(.16,.84,.44,1) forwards;
}

/* 3. Goal net shimmer on section headers */
@keyframes netShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.section-heading.has-shimmer {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 40%,
    var(--accent) 50%,
    var(--ink) 60%,
    var(--ink) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-heading.has-shimmer.is-in {
  animation: netShimmer 3s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce) {
  .section-heading.has-shimmer {
    background: none;
    -webkit-text-fill-color: var(--ink);
  }
}

/* 4. Training cone stagger on process steps */
.process-step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.16,.84,.44,1),
              transform 600ms cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.process-step.is-in {
  opacity: 1;
  transform: none;
}

/* 5. Whistle pulse on CTA — replaced by fieldPulse in enhanced section */
@media (prefers-reduced-motion: reduce) {
  .hero-cta { animation: none !important; }
}

/* 6. Grass stripe shimmer on dividers */
@keyframes grassStripe {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.divider-line::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  animation: grassStripe 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .divider-line::after { animation: none; opacity: 0; }
}

/* 7. Testimonial entrance with left-slide */
.testimonial-item {
  transition: border-color 300ms;
}
.testimonial-item:hover {
  border-left-color: var(--accent-2);
}

/* 8. Price card hover glow */
.price-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139,94,60,0.08), rgba(58,107,79,0.08));
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
  z-index: -1;
}
.price-card:hover::after { opacity: 1; }

/* 9. Timeline dot pulse on hover */
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 6px rgba(139,94,60,0.15);
  transition: box-shadow 300ms;
}

/* 10. Contact card icon spin */
@keyframes iconPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12) rotate(4deg); }
  100% { transform: scale(1.08); }
}
.contact-card:hover .contact-card-icon {
  animation: iconPop 400ms cubic-bezier(.16,.84,.44,1) forwards;
}

/* Reduced motion overrides for new animations */
@media (prefers-reduced-motion: reduce) {
  .stat-item:hover { transform: none; }
  .stat-item:hover .stat-num { animation: none; }
  .testimonial-item:hover { border-left-color: var(--accent-2); }
  .price-card:hover { transform: none; }
  .timeline-item:hover .timeline-dot { box-shadow: none; }
  .contact-card:hover .contact-card-icon { animation: none; transform: scale(1.08); }
  .process-step { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   CAPACITY / AVAILABILITY BADGE
   ============================================================ */
.capacity-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(58,107,79,0.08);
  border: 1px solid rgba(58,107,79,0.2);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 16px;
}
.capacity-dot {
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: capacityPulse 2s ease-in-out infinite;
}
@keyframes capacityPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .capacity-dot { animation: none; }
}

/* ============================================================
   CONTACT PAGE — PREMIUM CARDS
   ============================================================ */
.contact-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 8vw, 80px);
  text-align: center;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(139,94,60,0.1);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(139,94,60,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 240ms, transform 240ms;
}
.contact-card:hover .contact-card-icon {
  background: rgba(139,94,60,0.14);
  transform: scale(1.08);
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-card-value {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms;
}
.contact-card-value a:hover { color: var(--accent); }
.contact-card-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Hours mini-grid */
.hours-grid {
  display: grid;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--ink); }
.hours-row .time { color: var(--ink-soft); }
.hours-row.today { color: var(--accent-2); }
.hours-row.today .day { color: var(--accent-2); font-weight: 700; }
.hours-row.today .time { color: var(--accent-2); font-weight: 600; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: clamp(100px, 14vw, 160px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.page-hero .section-eyebrow { text-align: center; }
.page-hero h1 { text-align: center; margin: 0 auto 16px; max-width: 18ch; }
.page-hero p {
  text-align: center;
  margin: 0 auto;
  max-width: 52ch;
  color: var(--ink-soft);
}

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h2::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 48px; height: 2px;
  background: var(--accent);
}
.legal-content h2:first-child::before { display: none; }
.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.78;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 18px 24px;
  color: var(--ink-soft);
}
.legal-content li {
  margin-bottom: 8px;
  line-height: 1.65;
  padding-left: 4px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad);
}
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p {
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 42ch;
}

/* 404 */
.not-found-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad);
}
.not-found-code {
  font-family: var(--ff-heading);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
}

/* ============================================================
   ABOUT PAGE — TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,94,60,0.1);
}
.team-photo {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info {
  padding: 20px;
}
.team-name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sitemap-section h3 { margin-bottom: 12px; }
.sitemap-section a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-signature { display: none; }
}

@media (max-width: 768px) {
  .metod-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .timeline { padding-left: 28px; }
  .timeline::before { left: 5px; }
  .timeline-dot { left: -28px; width: 12px; height: 12px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .step-icon { width: 42px; height: 42px; }
  .step-icon svg { width: 20px; height: 20px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.7rem; padding: 4px 10px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px 16px 20px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons button { width: 100%; min-height: 48px; font-size: 0.88rem; }
  
}

@media (max-width: 1023px) {
  .site-header {
    background: rgba(247,243,237,0.95);
  }
  .site-header.scrolled {
    background: rgba(247,243,237,0.98);
  }
}


@media (max-width: 360px) {
  h1 { font-size: 1.8rem; }
  .price-amount { font-size: 1.8rem; }
}

/* ============================================================
   ENHANCED FOOTBALL-THEMED ANIMATIONS & MICRO-EFFECTS
   ============================================================ */

/* Stagger-reveal with smoother cubic-bezier */
.reveal {
  will-change: opacity, transform;
}

/* Hero CTA arrow kick effect */
.hero-cta:hover svg {
  transform: translateX(6px);
}
.hero-cta:active svg {
  transform: translateX(2px);
  transition-duration: 100ms;
}

/* Whistle CTA pulse enhanced for football theme */
@keyframes fieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,107,79,0.3); }
  50% { box-shadow: 0 0 0 14px rgba(58,107,79,0); }
}
.hero-cta {
  animation: fieldPulse 3s cubic-bezier(.4,0,.6,1) infinite 2.5s;
}

/* Timeline entrance with field-line sweep */
.timeline-item {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 640ms cubic-bezier(.16,.84,.44,1),
              transform 640ms cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--i, 0) * 140ms);
}
.timeline-item.is-in {
  opacity: 1;
  transform: none;
}

/* Timeline dot kick-in */
.timeline-dot {
  transition: box-shadow 400ms cubic-bezier(.16,.84,.44,1),
              transform 400ms cubic-bezier(.34,1.56,.64,1);
}
.timeline-item.is-in .timeline-dot {
  animation: dotKick 500ms cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: calc(var(--i, 0) * 140ms + 200ms);
}
@keyframes dotKick {
  0% { transform: scale(0.4); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Price card featured border shimmer */
@keyframes borderShimmer {
  0% { border-color: var(--accent); }
  50% { border-color: var(--accent-2); }
  100% { border-color: var(--accent); }
}
.price-card.featured {
  animation: borderShimmer 4s ease-in-out infinite;
}

/* Stats number hover — green glow (grass) */
.stat-item:hover .stat-num {
  text-shadow: 0 0 24px rgba(58,107,79,0.3);
}

/* Testimonial hover — accent border widening */
.testimonial-item {
  transition: border-color 300ms, border-left-width 300ms cubic-bezier(.16,.84,.44,1), padding-left 300ms cubic-bezier(.16,.84,.44,1);
}
.testimonial-item:hover {
  border-left-width: 5px;
  padding-left: 26px;
  border-left-color: var(--accent-2);
}

/* FAQ item open — accent color shift */
.faq-item[open] summary {
  color: var(--accent-2);
}
.faq-item[open] {
  background: rgba(58,107,79,0.03);
  border-radius: 8px;
  margin: 0 -8px;
  padding: 0 8px;
}

/* Contact card hover — subtle grass glow */
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,107,79,0.05), rgba(139,94,60,0.05));
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}
.contact-card { position: relative; overflow: hidden; }
.contact-card:hover::after { opacity: 1; }

/* Team card hover — photo slight zoom with green overlay */
.team-card:hover .team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58,107,79,0.12) 100%);
  pointer-events: none;
}
.team-photo { position: relative; }

/* Divider line enhanced — longer sweep */
.divider-line {
  transition: width 600ms cubic-bezier(.16,.84,.44,1);
}

/* Capacity badge pulse enhanced */
.capacity-badge {
  transition: background 300ms, transform 300ms;
}
.capacity-badge:hover {
  background: rgba(58,107,79,0.12);
  transform: translateY(-1px);
}

/* Notes list item hover */
.notes-list li {
  transition: transform 240ms cubic-bezier(.16,.84,.44,1), color 240ms;
  padding: 6px 0;
  border-radius: 4px;
}
.notes-list li:hover {
  transform: translateX(4px);
  color: var(--ink);
}

/* btn-primary hover enhanced — field-line shadow */
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 10px 28px rgba(58,107,79,0.25), 0 4px 12px rgba(139,94,60,0.15);
}

/* btn-ghost hover — accent underline hint */
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,.84,.44,1), left 320ms cubic-bezier(.16,.84,.44,1);
}
.btn-ghost { position: relative; }
.btn-ghost:hover::after {
  width: 40%;
  left: 30%;
}

/* Metod image hover — gentle parallax tilt */
.metod-img-wrap img {
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.metod-img-wrap:hover img {
  transform: scale(1.03) translateY(-4px);
}

/* Section heading entrance enhanced */
.section-heading {
  transition: opacity 600ms cubic-bezier(.16,.84,.44,1),
              transform 600ms cubic-bezier(.16,.84,.44,1);
}

/* Reduced-motion overrides for new animations */
@media (prefers-reduced-motion: reduce) {
  .hero-cta { animation: none !important; }
  .hero-cta svg { transition: none; }
  .timeline-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  .timeline-item.is-in .timeline-dot { animation: none; }
  .price-card.featured { animation: none; }
  .stat-item:hover .stat-num { text-shadow: none; }
  .testimonial-item:hover { border-left-width: 3px; padding-left: 28px; }
  .faq-item[open] { background: none; }
  .contact-card:hover::after { opacity: 0; }
  .capacity-badge:hover { transform: none; }
  .notes-list li:hover { transform: none; }
  .metod-img-wrap:hover img { transform: none; }
  .btn-ghost:hover::after { width: 0; }
  .reveal { will-change: auto; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none; }
  main { padding-top: 0; }
  .reveal { opacity: 1; transform: none; }
  body { background: #fff; color: #000; }
}

.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}
