/* ===================================================
   Yeşilsaha Futbol Akademisi — Styles
   =================================================== */

:root {
  --bg: #F0F7EC;
  --surface: #FFFFFF;
  --surface-2: #E8F0E4;
  --surface-3: #D6E8CF;
  --ink: #1B2D1A;
  --ink-soft: #3A5438;
  --ink-muted: #5E7A5B;
  --accent: #34A853;
  --accent-hover: #2D9249;
  --accent-2: #FF6D00;
  --accent-2-hover: #E56200;
  --line: rgba(27,45,26,0.12);
  --line-strong: rgba(27,45,26,0.25);
  --header-h: 76px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(27,45,26,0.07);
  --shadow-md: 0 6px 20px rgba(27,45,26,0.10);
  --shadow-lg: 0 12px 36px rgba(27,45,26,0.13);
  --shadow-accent: 0 8px 24px rgba(52,168,83,0.18);
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Rubik', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms ease; }
a:hover { color: var(--accent-hover); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 8px 8px;
  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;
}

/* ============================================================
   HEADER (sticky-with-morph)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(240, 247, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(240,247,236,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.logo span { white-space: nowrap; }

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 240ms, color 240ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px; height: 46px;
  background: rgba(27,45,26,0.13); border: 2px solid rgba(27,45,26,0.22);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  transition: background 240ms, border-color 240ms, box-shadow 240ms;
  box-shadow: 0 1px 4px rgba(27,45,26,0.08);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(52,168,83,0.15);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(52,168,83,0.15);
}
@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 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.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);
}

/* ============================================================
   DRAWER (mobile menu — outside header)
   ============================================================ */
.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;
  padding: 14px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  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: block;
  text-align: center;
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff; }

/* ============================================================
   MAIN offset for fixed header
   ============================================================ */
main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 200ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,109,0,0.22);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27,45,26,0.08);
}

.btn-accent-2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-2);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 200ms;
}
.btn-accent-2:hover, .btn-accent-2:focus-visible {
  background: var(--accent-2-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 80px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: repeating-linear-gradient(
    90deg,
    rgba(52,168,83,0.06) 0px,
    rgba(52,168,83,0.06) 60px,
    rgba(52,168,83,0.03) 60px,
    rgba(52,168,83,0.03) 120px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,168,83,0.12);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow svg { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 .accent-word { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-trust .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-trust .badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Scoreboard stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; gap: 12px; max-width: 300px; }
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.stat-card.scoreboard {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(52,168,83,0.05), rgba(52,168,83,0.02));
  position: relative;
  overflow: hidden;
}
.stat-card.scoreboard::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 36px; height: 36px;
  background: var(--accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card.scoreboard .stat-number { color: var(--accent-2); }
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Football ambient float */
.hero-ball {
  position: absolute;
  width: 60px; height: 60px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-ball--1 { top: 15%; left: 8%; animation: ballFloat 10s ease-in-out infinite; }
.hero-ball--2 { bottom: 20%; right: 6%; animation: ballFloat 12s ease-in-out infinite 2s; }
.hero-ball--3 { top: 40%; right: 15%; animation: ballFloat 9s ease-in-out infinite 4s; }

@keyframes ballFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(90deg); }
  50% { transform: translateY(8px) rotate(180deg); }
  75% { transform: translateY(-12px) rotate(270deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ball { animation: none !important; }
}

/* ============================================================
   GRASS DIVIDER
   ============================================================ */
.grass-divider {
  height: 48px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 48'%3E%3Cpath d='M2 48 L5 20 L8 48' fill='%2334A853' opacity='0.15'/%3E%3Cpath d='M14 48 L17 14 L20 48' fill='%2334A853' opacity='0.12'/%3E%3Cpath d='M26 48 L28 22 L30 48' fill='%2334A853' opacity='0.10'/%3E%3Cpath d='M36 48 L39 8 L42 48' fill='%2334A853' opacity='0.14'/%3E%3Cpath d='M50 48 L53 18 L56 48' fill='%2334A853' opacity='0.11'/%3E%3Cpath d='M62 48 L64 26 L66 48' fill='%2334A853' opacity='0.13'/%3E%3Cpath d='M74 48 L77 12 L80 48' fill='%2334A853' opacity='0.10'/%3E%3Cpath d='M88 48 L91 20 L94 48' fill='%2334A853' opacity='0.15'/%3E%3Cpath d='M102 48 L104 16 L106 48' fill='%2334A853' opacity='0.12'/%3E%3Cpath d='M112 48 L115 24 L118 48' fill='%2334A853' opacity='0.09'/%3E%3C/svg%3E")
    repeat-x bottom;
  background-size: 120px 48px;
  pointer-events: none;
}
.grass-divider--animated {
  animation: grassSwayEnhanced 8s ease-in-out infinite;
}
@keyframes grassSway {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(-1); }
}
@media (prefers-reduced-motion: reduce) {
  .grass-divider--animated { animation: none !important; }
}

/* ============================================================
   PITCH STRIPE BACKGROUND
   ============================================================ */
.pitch-bg {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(52,168,83,0.035) 0px,
      rgba(52,168,83,0.035) 80px,
      rgba(52,168,83,0.015) 80px,
      rgba(52,168,83,0.015) 160px
    );
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow svg { width: 18px; height: 18px; }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 580px;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 40px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.text-center { text-align: center; }

/* ============================================================
   PROGRAMS — 4-column catalog grid
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .programs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.program-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;
  position: relative;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}

.program-card__header {
  padding: 24px 22px 18px;
  position: relative;
}
.program-card__age {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.program-card--midi .program-card__age { background: #2196F3; }
.program-card--yildiz .program-card__age { background: var(--accent-2); }
.program-card--elit .program-card__age { background: #9C27B0; }

.program-card__name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.program-card__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.program-card__body {
  padding: 0 22px 22px;
}
.program-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.program-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.program-card__features li:last-child { border-bottom: none; }
.program-card__features li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.program-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.program-card__price .amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--ink);
}
.program-card__price .period {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.program-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.program-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   PROCESS — vertical timeline
   ============================================================ */
.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.process-step {
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }

.process-step__dot {
  position: absolute;
  left: -48px; top: 2px;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--accent);
  z-index: 2;
}

.process-step__time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.process-step__title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 640px) {
  .process-timeline { padding-left: 42px; }
  .process-step__dot { left: -42px; width: 32px; height: 32px; font-size: 0.78rem; }
  .process-step__title { font-size: 1.05rem; }
  .process-step__desc { font-size: 0.88rem; line-height: 1.65; }
  .process-step { padding-bottom: 32px; }
}

/* ============================================================
   COACHES — 3-col grid
   ============================================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .coaches-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.coach-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;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.coach-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--surface-2);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 600ms;
}
.coach-card:hover .coach-card__photo {
  transform: scale(1.04);
  filter: brightness(1.03);
}
.coach-card { overflow: hidden; }

.coach-card__body { padding: 20px; }

.coach-card__name {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.coach-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.coach-card__license {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(52,168,83,0.08);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.coach-card__bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   FACILITIES — mosaic gallery
   ============================================================ */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}
.mosaic-grid .tile { border-radius: var(--radius); overflow: hidden; position: relative; }
.mosaic-grid .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.mosaic-grid .tile:hover img { transform: scale(1.04); }
.mosaic-grid .tile--wide { grid-column: span 2; }
.mosaic-grid .tile--tall { grid-row: span 2; }

.mosaic-grid .tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(27,45,26,0.7));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms, transform 360ms;
}
.mosaic-grid .tile:hover .tile-overlay {
  opacity: 1; transform: translateY(0);
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }
  .mosaic-grid .tile--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic-grid .tile { height: 220px; }
  .mosaic-grid .tile--wide { grid-column: span 1; }
  .mosaic-grid .tile-overlay { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   REGISTRATION — form + calendar
   ============================================================ */
.kayit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .kayit-layout { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--surface);
  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(52,168,83,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 22px; height: 22px;
  min-width: 22px; min-height: 22px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}
.field-check label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 0;
  cursor: pointer;
}

.form-card .btn-primary { width: 100%; justify-content: center; }

/* Season calendar */
.calendar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.calendar-card h3 { font-size: 1.3rem; margin-bottom: 20px; }

.season-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.season-item:last-child { border-bottom: none; }

.season-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(52,168,83,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.season-item__icon svg { width: 20px; height: 20px; }

.season-item__body { flex: 1; min-width: 0; }
.season-item__title { font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.season-item__date { font-size: 0.82rem; color: var(--ink-muted); }

/* ============================================================
   TESTIMONIALS — editorial grid (NOT carousel)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonials-grid .testimonial:first-child {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:first-child { grid-row: auto; }
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__quote-icon {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}
.testimonial__quote-icon svg { width: 28px; height: 28px; }

.testimonial__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial__meta {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 2vw, 18px) clamp(18px, 3vw, 28px);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { display: none; content: ''; }

.faq-item > summary:hover { color: var(--accent); }

.faq-item > summary .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-muted);
}
.faq-item[open] > summary .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

.faq-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   NEWS / UPDATES
   ============================================================ */
.news-list { max-width: 820px; }

.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.news-item:last-child { border-bottom: none; }

.news-item__date {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.news-item__day {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
}
.news-item__month {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.news-item__body { min-width: 0; }
.news-item__title { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.news-item__excerpt { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   DARK BAND (hero-band for contrast)
   ============================================================ */
.dark-band {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0;
}
.dark-band .section-eyebrow { color: var(--accent); }
.dark-band .section-title { color: var(--surface); }
.dark-band .section-sub { color: rgba(255,255,255,0.7); }
.dark-band .process-step__desc { color: rgba(255,255,255,0.65); }
.dark-band .process-step__title { color: var(--surface); }
.dark-band .process-step__dot { border-color: var(--accent); color: var(--accent); background: var(--ink); }
.dark-band .process-timeline::before { background: linear-gradient(to bottom, var(--accent), var(--accent-2)); }

/* ============================================================
   FOOTER
   ============================================================ */
.cookie-dismissed .site-footer {
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 32px;
  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 { color: #fff; margin-bottom: 14px; }
.footer-brand .logo svg path { fill: #fff; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 240ms, color 240ms;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 240ms;
}
.footer-col a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 720ms cubic-bezier(.16,1,.3,1),
              transform 720ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   FOOTBALL-SPECIFIC ANIMATIONS
   ============================================================ */

/* 1. Goal net pattern on card hover */
.program-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px, var(--accent) 4px,
    transparent 4px, transparent 12px
  );
  opacity: 0;
  transition: opacity 300ms;
}
.program-card:hover::after { opacity: 1; }

/* 2. Pitch field line draw on section load */
@keyframes fieldLineDraw {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

/* 3. Whistle pulse on CTA */
@keyframes whistlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.btn-primary:hover svg {
  animation: whistlePulse 600ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover svg { animation: none !important; }
}

/* 4. Score flash on counter complete */
@keyframes scoreFlash {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 18px rgba(255,109,0,0.5); }
  100% { text-shadow: none; }
}
.stat-number.counted {
  animation: scoreFlash 800ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .stat-number.counted { animation: none !important; }
}

/* 5. Net mesh reveal on testimonial hover */
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background:
    repeating-linear-gradient(45deg, var(--accent) 0, var(--accent) 1px, transparent 1px, transparent 8px),
    repeating-linear-gradient(-45deg, var(--accent) 0, var(--accent) 1px, transparent 1px, transparent 8px);
  opacity: 0;
  border-radius: 0 var(--radius-lg) 0 0;
  transition: opacity 360ms;
  pointer-events: none;
}
.testimonial { position: relative; overflow: hidden; }
.testimonial:hover::before { opacity: 0.06; }

/* 6. Ball kick burst on CTA click */
@keyframes kickBurst {
  0% { box-shadow: 0 0 0 0 rgba(52,168,83,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(52,168,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,168,83,0); }
}
.btn-primary:active {
  animation: kickBurst 400ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:active { animation: none !important; }
}

/* 7. Turf shimmer on stat cards */
@keyframes turfShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.stat-card:hover {
  background-image: linear-gradient(110deg, transparent 30%, rgba(52,168,83,0.06) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: turfShimmer 1.5s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .stat-card:hover { animation: none !important; background-image: none !important; }
}

/* 8. Smooth stagger variants */
.reveal[style*="--i:0"] { transition-delay: 0ms; }
.reveal[style*="--i:1"] { transition-delay: 90ms; }
.reveal[style*="--i:2"] { transition-delay: 170ms; }
.reveal[style*="--i:3"] { transition-delay: 240ms; }
.reveal[style*="--i:4"] { transition-delay: 310ms; }
.reveal[style*="--i:5"] { transition-delay: 380ms; }
.reveal[style*="--i:6"] { transition-delay: 440ms; }
.reveal[style*="--i:7"] { transition-delay: 500ms; }

/* 9. Enhanced card hovers — subtle lift + border glow */
.program-card:hover {
  border-color: rgba(52,168,83,0.3);
}
.coach-card:hover {
  border-color: rgba(52,168,83,0.2);
}
.channel-card:hover {
  border-color: rgba(52,168,83,0.25);
}
.faq-item:hover {
  border-color: rgba(52,168,83,0.2);
  box-shadow: var(--shadow-sm);
}

/* 10. Goal-line dash on news items */
.news-item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
.news-item:hover {
  background: rgba(52,168,83,0.03);
  transform: translateX(4px);
}

/* 11. Grass divider enhanced sway */
@keyframes grassSwayEnhanced {
  0%, 100% { transform: scaleX(1) translateX(0); }
  25% { transform: scaleX(1.01) translateX(2px); }
  50% { transform: scaleX(-1) translateX(0); }
  75% { transform: scaleX(-1.01) translateX(-2px); }
}

/* ============================================================
   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: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 200ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-btn-accept:hover { background: var(--accent-hover); color: #fff; }
.cookie-btn-reject {
  background: var(--surface-2);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  font-weight: 600;
}
.cookie-btn-reject:hover { background: var(--surface-3); border-color: var(--ink-soft); color: var(--ink); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid var(--line);
  font-weight: 500;
}
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }

@media (max-width: 480px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 16px 18px; }
  .cookie-banner__title { font-size: 0.95rem; margin-bottom: 6px; }
  .cookie-banner__text { font-size: 0.8rem; margin-bottom: 12px; }
  .cookie-banner__actions { flex-direction: row; flex-wrap: wrap; }
  .cookie-banner__actions button { flex: 1; min-width: 0; width: auto; padding: 10px 12px; font-size: 0.82rem; }
}

/* ============================================================
   CONTACT PAGE — card grid layout
   ============================================================ */
.contact-hero {
  padding: clamp(32px, 6vw, 64px) 0 0;
  background: var(--bg);
}
.contact-hero + section {
  padding-top: clamp(24px, 4vw, 40px);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(52,168,83,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  transition: background 240ms, transform 240ms;
}
.channel-card:hover .channel-card__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}
.channel-card__icon svg { width: 22px; height: 22px; }

.channel-card__label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.channel-card__value {
  font-weight: 600;
  font-size: 1rem;
  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__hint {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Hours mini-card-grid */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.hours-day {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.hours-day__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours-day__time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.hours-day.today { border: 2px solid var(--accent); background: rgba(52,168,83,0.06); }

/* Contact form 2-col */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}
.contact-form-grid .field-full { grid-column: 1 / -1; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: clamp(32px, 6vw, 64px) 0;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
}
.about-hero .section-sub {
  margin-bottom: 24px;
}

.about-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
}
.about-story__text h2 { margin-bottom: 16px; }
.about-story__text p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-story__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(52,168,83,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 0;
}
.policy-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.policy-content .policy-date {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.policy-content h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  padding: 20px 24px 12px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(52,168,83,0.04), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  margin-left: -24px;
  margin-right: -24px;
}
@media (max-width: 640px) {
  .policy-content h2 { margin-left: -16px; margin-right: -16px; padding-left: 20px; }
}
.policy-content h2:first-of-type {
  margin-top: 0;
}
.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.policy-content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.policy-content li { margin-bottom: 6px; }
.policy-content ul li, .policy-content ol li {
  padding: 5px 0;
}
.policy-content ul li::marker {
  color: var(--accent);
}
.policy-content ul, .policy-content ol {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 16px 38px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.thankyou-box {
  max-width: 520px;
}
.thankyou-box .icon-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(52,168,83,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thankyou-box .icon-circle svg { width: 36px; height: 36px; }
.thankyou-box h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.thankyou-box p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-box .error-code {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
  margin-bottom: 8px;
}
.error-box h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.error-box p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.sitemap-group h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-group ul { list-style: none; padding: 0; }
.sitemap-group li { margin-bottom: 8px; }
.sitemap-group a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 240ms, padding-left 240ms;
}
.sitemap-group a:hover { color: var(--accent); padding-left: 6px; }

/* ============================================================
   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 {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  background: var(--surface-2);
  font-family: 'Nunito', sans-serif;
}

/* ============================================================
   SMOOTH SCROLL OFFSET
   ============================================================ */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ============================================================
   ENHANCED VALUE CARD HOVER
   ============================================================ */
.value-card:hover .value-card__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
  transition: background 300ms, color 300ms, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.value-card__icon {
  transition: background 300ms, color 300ms, transform 400ms cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   FOOTBALL PITCH-LINE PULSE ON DARK BAND
   ============================================================ */
@keyframes pitchLinePulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.12; }
}
.dark-band {
  position: relative;
  overflow: hidden;
}
.dark-band::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 160px; height: 160px;
  border: 2px solid rgba(52,168,83,0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pitchLinePulse 6s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .dark-band::after { animation: none !important; }
  .coach-card:hover .coach-card__photo { transform: none !important; }
  .about-story__img:hover img { transform: none !important; }
  .value-card:hover .value-card__icon { transform: none !important; }
  .testimonial:hover .testimonial__quote-icon { transform: none !important; }
  .channel-card::after { transition: none !important; }
  .news-item:hover .news-item__date { transform: none !important; }
  .footer-social a:hover { transform: none !important; }
  .stat-card.scoreboard:hover { box-shadow: var(--shadow-accent) !important; }
}

/* ============================================================
   SEASON ITEM HOVER
   ============================================================ */
.season-item {
  transition: background 240ms, padding-left 240ms;
  border-radius: 8px;
  padding-left: 4px;
  padding-right: 4px;
}
.season-item:hover {
  background: rgba(52,168,83,0.04);
  padding-left: 10px;
}

/* ============================================================
   TESTIMONIAL CARD SUBTLE ENTRANCE
   ============================================================ */
.testimonial__quote-icon {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), opacity 300ms;
}
.testimonial:hover .testimonial__quote-icon {
  transform: scale(1.1) rotate(-4deg);
  opacity: 0.5;
}

/* ============================================================
   FORM FIELD FOCUS ENHANCEMENTS
   ============================================================ */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,168,83,0.12), 0 2px 8px rgba(52,168,83,0.06);
}

/* ============================================================
   NEWS ITEM ENHANCED HOVER
   ============================================================ */
.news-item__date {
  transition: background 240ms, transform 240ms;
}
.news-item:hover .news-item__date {
  background: rgba(52,168,83,0.12);
  transform: scale(1.04);
}

/* ============================================================
   FAQ OPEN STATE ACCENT
   ============================================================ */
.faq-item[open] {
  border-color: rgba(52,168,83,0.3);
  box-shadow: 0 2px 12px rgba(52,168,83,0.06);
}

/* ============================================================
   FOOTER SOCIAL HOVER LIFT
   ============================================================ */
.footer-social a {
  transition: background 240ms, color 240ms, transform 240ms;
}
.footer-social a:hover {
  transform: translateY(-2px);
}

/* ============================================================
   HERO STAT CARD SCOREBOARD GLOW
   ============================================================ */
.stat-card.scoreboard:hover {
  box-shadow: 0 8px 28px rgba(52,168,83,0.22), 0 0 0 1px rgba(52,168,83,0.15);
}

/* ============================================================
   CONTACT PAGE CHANNEL CARD FOOTBALL ACCENT LINE
   ============================================================ */
.channel-card {
  position: relative;
  overflow: hidden;
}
.channel-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.channel-card:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   ABOUT STORY IMAGE HOVER
   ============================================================ */
.about-story__img img {
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.about-story__img:hover img {
  transform: scale(1.03);
}

/* ============================================================
   ENHANCED FOOTBALL MICRO-ANIMATIONS
   ============================================================ */

/* Program card hover: turf underfoot glow */
.program-card {
  transition: transform 360ms cubic-bezier(.16,1,.3,1), box-shadow 360ms, border-color 360ms;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(52,168,83,0.16), 0 0 0 1px rgba(52,168,83,0.12);
}

/* Coach card photo: slow Ken Burns drift on hover */
.coach-card__photo {
  transition: transform 1200ms cubic-bezier(.16,1,.3,1), filter 800ms;
}
.coach-card:hover .coach-card__photo {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.05) saturate(1.08);
}

/* Stat card: scoreboard electric glow */
.stat-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.stat-card:hover {
  transform: translateY(-5px) scale(1.01);
}

/* Testimonial: subtle float up */
.testimonial {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}

/* FAQ item: smooth expand with accent pulse */
.faq-item {
  transition: border-color 360ms, box-shadow 360ms;
}

/* CTA buttons: football kick feel */
.btn-primary {
  transition:
    background 240ms,
    color 240ms,
    transform 280ms cubic-bezier(.16,1,.3,1),
    box-shadow 280ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,109,0,0.24);
}

/* Ghost button: pitch-line draw-in */
.btn-ghost {
  transition:
    background 240ms,
    color 240ms,
    border-color 360ms cubic-bezier(.16,1,.3,1),
    transform 280ms cubic-bezier(.16,1,.3,1),
    box-shadow 280ms;
}

/* Season calendar items: match-day slide in */
.season-item {
  transition: background 280ms cubic-bezier(.16,1,.3,1), padding-left 280ms cubic-bezier(.16,1,.3,1), transform 280ms;
}
.season-item:hover {
  transform: translateX(2px);
}

/* News items: whistle moment */
.news-item {
  transition: transform 320ms cubic-bezier(.16,1,.3,1), background 280ms;
}

/* Channel card hover: deeper interaction */
.channel-card {
  transition: transform 360ms cubic-bezier(.16,1,.3,1), box-shadow 360ms, border-color 360ms;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(27,45,26,0.10);
}

/* Value card: trophy lift */
.value-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(52,168,83,0.12);
}

/* Footer social icons: ball bounce */
.footer-social a {
  transition: background 240ms, color 240ms, transform 320ms cubic-bezier(.16,1,.3,1);
}
.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
}

/* Drawer link hover: entering the pitch */
.drawer a {
  transition: color 240ms, padding-left 300ms cubic-bezier(.16,1,.3,1), background 240ms;
}
.drawer a:hover {
  background: rgba(52,168,83,0.04);
}

/* Hero eyebrow: subtle pulse to draw attention */
@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(52,168,83,0); }
}
.hero-eyebrow {
  animation: eyebrowPulse 3s ease-in-out infinite 1.5s;
}

/* Process dots: pulse when visible */
@keyframes processDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(52,168,83,0); }
}
.process-step.is-in .process-step__dot {
  animation: processDotPulse 2.5s ease-in-out 1;
}

/* Cookie banner entrance: smoother spring */
.cookie-banner {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), opacity 300ms;
}

/* ============================================================
   REDUCED MOTION — disable all enhanced animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow { animation: none !important; }
  .process-step.is-in .process-step__dot { animation: none !important; }
  .program-card,
  .coach-card__photo,
  .stat-card,
  .testimonial,
  .faq-item,
  .btn-primary,
  .btn-ghost,
  .season-item,
  .news-item,
  .channel-card,
  .value-card,
  .footer-social a,
  .drawer a,
  .cookie-banner { transition: none !important; }
  .program-card:hover,
  .coach-card:hover .coach-card__photo,
  .stat-card:hover,
  .testimonial:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .value-card:hover,
  .channel-card:hover,
  .footer-social a:hover,
  .season-item:hover,
  .news-item:hover { transform: none !important; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .cookie-banner, .drawer, .drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; background: #fff; }
}

.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}

/* overflow guard */
.hero, .hero__inner, .hero__bg, .hero-bg { overflow: hidden; }
html, body { overflow-x: hidden; }

/* yesilsaha-footer-bg-fix */
.site-footer {
  background: #0F2D1A !important;
  color: #fff !important;
  padding: 64px 0 24px !important;
}
.site-footer .footer-col h4, .site-footer .footer-brand .logo, .site-footer h4 { color:#fff !important; }
.site-footer .footer-col a, .site-footer .footer-brand p, .site-footer .footer-contact-item, .site-footer p { color: rgba(255,255,255,0.78) !important; }
.site-footer .footer-col a:hover { color: var(--accent, #34A853) !important; }

/* 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;
}

