/* =========================================================================
   ANTALYA BAYINDIR FUTBOL OKULU — stylesheet
   Plain CSS, mobile-first. Breakpoints mirror the original design's JS
   matchMedia logic:
     base  = below 600px
     mid   = min-width: 600px  (also true at >=900px)
     wide  = min-width: 900px
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS — every colour, radius and font used anywhere below.
   Colour names encode their exact hex pair (e.g. --grey-8a = #8A8A8A) so
   values can never silently drift or get "rounded" during maintenance.
   ------------------------------------------------------------------------- */
:root {
  /* Brand */
  --accent: #FACF00;
  --accent-hover: #FFE033;

  /* Absolute black / white */
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Dark surface ramp (page background back through card surfaces) */
  --grey-0a: #0A0A0A; /* shell background, ink text on yellow */
  --grey-0d: #0D0D0D; /* stats strip background */
  --grey-11: #111111; /* info / value / faq / coach card surfaces */
  --grey-12: #121212; /* hero secondary button surface */
  --grey-13: #131313; /* age-group card + form input surface */
  --grey-16: #161616; /* sticky call button surface */

  /* Hairlines */
  --grey-1a: #1A1A1A; /* shell border, footer divider, coach photo bg */
  --grey-1f: #1F1F1F; /* header border, stats border, footer border-top */
  --grey-20: #202020; /* card borders, saha divider */
  --grey-24: #242424; /* age-group card border, photo-card border */
  --grey-2a: #2A2A2A; /* form input border */
  --grey-33: #333333; /* outline button borders */
  --grey-3a: #3A3A3A; /* coach photo dashed border */

  /* Text greys, darkest to lightest */
  --grey-4a: #4A4A4A; /* disabled "Geri" label */
  --grey-5a: #5A5A5A; /* placeholders, copyright, coach photo label */
  --grey-6a: #6A6A6A; /* saha note */
  --grey-7a: #7A7A7A; /* footer sub-label, step counter, legal notes */
  --grey-8a: #8A8A8A; /* header sub-label, stat labels, saha row label */
  --grey-9a: #9A9A9A; /* section subtitles, footer contact base */
  --grey-a0: #A0A0A0; /* FAQ answers */
  --grey-a8: #A8A8A8; /* value-card / declaration copy */
  --grey-b4: #B4B4B4; /* success screen paragraph */
  --grey-b8: #B8B8B8; /* form field labels */
  --grey-c0: #C0C0C0; /* about paragraphs, reset button label */
  --grey-c8: #C8C8C8; /* hero lead paragraph */
  --grey-e8: #E8E8E8; /* radio/option text, age-card year suffix */
  --grey-f0: #F0F0F0; /* saha row value, declaration checkbox label */
  --grey-f5: #F5F5F5; /* base body text colour */

  /* Radii */
  --radius-xs: 2px;    /* season badge, pitch frame */
  --radius-sm: 3px;    /* pitch location badge, coach photo tile */
  --radius-md: 4px;    /* buttons, inputs, cards (most common) */
  --radius-pill: 40px; /* "Mevki" checkbox pills */
  --radius-round: 50%; /* icon roundels, pitch centre circle */

  /* Fonts (with real fallback stacks) */
  --font-display: 'Teko', 'Oswald', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-black);
  color: var(--grey-f5);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

button { font-family: inherit; }

input, select, textarea { font-family: var(--font-body); }

fieldset { border: none; margin: 0; padding: 0; min-width: 0; }

::placeholder { color: var(--grey-5a); opacity: 1; }

h1, h2, h3, p { margin: 0; }

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link: hidden until focused */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--accent);
  color: var(--grey-0a);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 100;
  transition: top 150ms ease;
}
.skip-link:focus { top: 8px; }

/* Accessible focus rings -----------------------------------------------
   Inputs follow the source's own focus treatment (border turns accent
   yellow, no separate outline). Everything else (links/buttons/tabs)
   gets a two-tone ring (white + dark halo) so it stays visible whether
   it sits on the black page, a dark card, or the yellow CTA band. */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.55);
  border-radius: var(--radius-md);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
}

/* -------------------------------------------------------------------------
   3. PAGE SHELL — the phone-width column on small screens, full width
   from 600px up (individual sections then constrain their own max-width).
   ------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: 460px;
  background: var(--grey-0a);
  position: relative;
  overflow-x: clip;
  border-left: 1px solid var(--grey-1a);
  border-right: 1px solid var(--grey-1a);
}
@media (min-width: 600px) {
  .shell { max-width: none; border-left: none; border-right: none; }
}

/* -------------------------------------------------------------------------
   4. HEADER
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-1f);
}

.header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .header-wrap { max-width: 780px; }
}
@media (min-width: 900px) {
  .header-wrap {
    flex-wrap: nowrap;
    gap: 36px;
    max-width: 1160px;
    padding: 12px 40px;
  }
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}
@media (min-width: 600px) {
  .logo-block { padding: 12px 28px; }
}
@media (min-width: 900px) {
  .logo-block { gap: 12px; padding: 0; }
}

.logo-block img { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; background: transparent; }

.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--grey-8a);
  text-transform: uppercase;
}

.tabs-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--grey-1a);
}
@media (min-width: 900px) {
  .tabs-wrap {
    width: auto;
    display: flex;
    gap: 30px;
    margin-left: auto;
    border-top: none;
  }
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--grey-8a);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 900px) {
  .tab { padding: 10px 2px; }
}
.tab:hover { color: var(--accent); }
.tab[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.header-cta {
  display: none;
}
@media (min-width: 900px) {
  .header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--grey-0a);
    height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .header-cta:hover { background: var(--accent-hover); }
}

/* -------------------------------------------------------------------------
   5. SHARED BUTTON / LINK STYLES
   ------------------------------------------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

/* Solid yellow buttons (WhatsApp CTAs, "Kayıt formunu doldur", wizard Next) */
.btn-accent {
  background: var(--accent);
  color: var(--grey-0a);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-accent:hover { background: var(--accent-hover); }

.btn-full { width: 100%; }

/* Outline buttons on dark card surfaces, e.g. "Yol tarifi al" */
.btn-outline {
  background: transparent;
  border: 1px solid var(--grey-33);
  color: var(--color-white);
  font-weight: 600;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Hero's two secondary buttons: same outline treatment, own surface tint */
.btn-hero-secondary {
  background: var(--grey-12);
  border: 1px solid var(--grey-33);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  height: 50px;
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* -------------------------------------------------------------------------
   6. SCREENS (routed sections) — only one is visible; [hidden] handles it
   ------------------------------------------------------------------------- */
.screen { display: block; }

/* Reusable section wrapper + heading pattern used across all screens */
.sec {
  max-width: none;
  margin: 0;
  padding: 30px 18px 0;
}
@media (min-width: 600px) {
  .sec { max-width: 780px; margin: 0 auto; padding: 52px 28px 0; }
}
@media (min-width: 900px) {
  .sec { max-width: 1160px; padding: 64px 40px 0; }
}

.sec-heading { display: flex; align-items: center; gap: 10px; }
.sec-heading__bar { width: 4px; height: 22px; background: var(--accent); }

.h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}
@media (min-width: 600px) { .h2 { font-size: 40px; } }
@media (min-width: 900px) { .h2 { font-size: 46px; } }

.sec-sub { margin: 8px 0 18px; font-size: 14px; color: var(--grey-9a); }

/* =========================================================================
   HOME SCREEN
   ========================================================================= */

/* --- Hero ---------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 28px 18px 26px;
}
@media (min-width: 600px) { .hero-section { padding: 44px 28px 44px; } }
@media (min-width: 900px) { .hero-section { padding: 0; } }

.hero-photo {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 110px;
  background-color: var(--grey-0a);
  background-image: url('../band-players.png');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
@media (min-width: 600px) { .hero-photo { height: 150px; } }
@media (min-width: 900px) { .hero-photo { display: none; } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 80% at 15% 5%, rgba(250, 207, 0, 0.10) 0%, rgba(0, 0, 0, 0) 62%);
}

.hero-grid {
  position: relative;
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 600px) { .hero-grid { max-width: 780px; } }
@media (min-width: 900px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    max-width: 1160px;
    padding: 76px 40px 84px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--grey-0a);
  padding: 5px 11px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.88;
  font-weight: 700;
  margin: 16px 0 0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--color-white);
}
@media (min-width: 600px) { .hero-title { font-size: 76px; line-height: 0.95; } }
@media (min-width: 900px) { .hero-title { font-size: 96px; line-height: 0.95; } }
.hero-title span { display: block; }
.hero-title__accent { color: var(--accent); }

.hero-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-c8);
  max-width: 330px;
  text-wrap: pretty;
}
@media (min-width: 600px) { .hero-lead { font-size: 18px; max-width: 430px; } }
@media (min-width: 900px) { .hero-lead { font-size: 19px; max-width: 470px; } }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
@media (min-width: 600px) {
  .hero-btns { display: grid; grid-template-columns: 250px 300px; gap: 12px; margin-top: 30px; }
}

.btn-whatsapp-hero { height: 54px; font-size: 16px; }

.hero-btns-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.hero-art { display: none; }
@media (min-width: 900px) { .hero-art { display: flex; justify-content: center; } }
.hero-art img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 24px 70px rgba(250, 207, 0, 0.16));
  background: transparent;
}

/* --- Stats strip ----------------------------------------------------------- */
.stats-strip {
  border-top: 1px solid var(--grey-1f);
  border-bottom: 1px solid var(--grey-1f);
  background: var(--grey-0d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  margin: 0 auto;
}
@media (min-width: 600px) { .stats-grid { max-width: 780px; } }
@media (min-width: 900px) { .stats-grid { max-width: 1160px; } }

.stat-cell {
  padding: 14px 6px;
  text-align: center;
  border-right: 1px solid var(--grey-1f);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--grey-8a);
  text-transform: uppercase;
  margin-top: 3px;
}

/* --- Age group cards ("Yaş Grupları") -------------------------------------- */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 600px) {
  .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}

.age-card {
  display: flex;
  align-items: stretch;
  background: var(--grey-13);
  border: 1px solid var(--grey-24);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.age-card:hover { border-color: var(--accent); }
.age-card__tag {
  width: 84px;
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--grey-0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.age-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
}
.age-card__year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.age-card__label { font-size: 15px; font-weight: 500; color: var(--grey-e8); }

/* --- "Velilere Sözümüz" value cards ----------------------------------------- */
.card-grid2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .card-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
}

.value-card {
  display: flex;
  gap: 14px;
  background: var(--grey-11);
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-md);
  padding: 16px;
}
.value-card__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: var(--radius-round);
  background: rgba(250, 207, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-white);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.value-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey-a8);
  text-wrap: pretty;
}

/* --- Photo band -------------------------------------------------------------- */
.photo-card {
  margin: 30px 18px 0;
  max-width: none;
  position: relative;
  border: 1px solid var(--grey-24);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-0d);
}
@media (min-width: 600px) { .photo-card { margin: 52px auto 0; max-width: 780px; } }
@media (min-width: 900px) { .photo-card { margin: 64px auto 0; max-width: 1160px; } }

.photo-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  background: var(--grey-0d);
}
@media (min-width: 600px) { .photo-img { height: 180px; } }
@media (min-width: 900px) { .photo-img { height: 200px; } }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.92) 100%);
}
.photo-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
}

/* --- "Sahamız" venue card ------------------------------------------------------ */
.saha-card {
  background: var(--grey-11);
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
}
@media (min-width: 600px) { .saha-card { margin-top: 22px; } }
@media (min-width: 900px) { .saha-card { display: grid; grid-template-columns: 1.15fr 1fr; } }

.pitch {
  position: relative;
  height: 150px;
  min-height: auto;
  background-color: #0E1A0E;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 28px, rgba(255, 255, 255, 0) 28px 56px);
}
@media (min-width: 600px) { .pitch { height: 200px; } }
@media (min-width: 900px) { .pitch { height: auto; min-height: 280px; } }

.pitch__frame {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xs);
}
.pitch__half-line {
  position: absolute;
  top: 18px; bottom: 18px; left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.pitch__circle {
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-round);
}
.pitch__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--grey-0a);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.saha-info { padding: 16px; }
.saha-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--color-white);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.saha-sub { margin: 6px 0 0; font-size: 14px; color: var(--grey-9a); }
.saha-divider { height: 1px; background: var(--grey-20); margin: 14px 0; }
.saha-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.saha-row__label { color: var(--grey-8a); }
.saha-row__value { color: var(--grey-f0); font-weight: 600; text-align: right; }

.btn-directions { margin-top: 14px; height: 46px; font-size: 14px; }
.saha-note { margin: 10px 2px 0; font-size: 12px; color: var(--grey-6a); }

/* --- Yellow CTA band ----------------------------------------------------------- */
.cta-band {
  margin: 30px 0 0;
  padding: 26px 18px 30px;
  background: var(--accent);
  color: var(--grey-0a);
}
@media (min-width: 600px) { .cta-band { margin: 52px 0 0; padding: 48px 28px 52px; } }
@media (min-width: 900px) { .cta-band { margin: 72px 0 0; padding: 60px 40px 64px; } }

.cta-inner {}
@media (min-width: 600px) { .cta-inner { max-width: 780px; margin: 0 auto; } }
@media (min-width: 900px) { .cta-inner { max-width: 1160px; } }

.cta-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.cta-text {
  margin: 8px 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-1a);
  max-width: 320px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 600px) { .cta-btns { flex-direction: row; gap: 12px; margin-top: 6px; } }

.btn-cta-dark {
  background: var(--grey-0a);
  color: var(--accent);
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-cta-dark:hover { background: var(--grey-1a); }

.btn-cta-outline {
  border: 2px solid var(--grey-0a);
  color: var(--grey-0a);
  height: 54px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
}
.btn-cta-outline:hover { background: rgba(10, 10, 10, 0.08); color: var(--grey-0a); }

/* =========================================================================
   ABOUT SCREEN ("Okulumuz")
   ========================================================================= */
.about-crest { width: 96px; height: 96px; object-fit: contain; display: block; background: transparent; }

.about-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.92;
  font-weight: 700;
  margin: 14px 0 0;
  text-transform: uppercase;
  color: var(--color-white);
}
.about-title span { color: var(--accent); }

.about-copy {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-c0);
  text-wrap: pretty;
}
.about-copy + .about-copy { margin-top: 12px; }

/* Fixed-margin quote block: literal in the source at every breakpoint */
.about-quote {
  margin: 24px 18px 0;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--grey-11);
}
.about-quote__text {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  color: var(--color-white);
}
.about-quote__tag {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.coach-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--grey-11);
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-md);
  padding: 14px;
}
.coach-photo {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: var(--grey-1a);
  border: 1px dashed var(--grey-3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-5a);
  text-align: center;
  line-height: 1.3;
}
.coach-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}
.coach-role { margin: 5px 0 0; font-size: 13px; color: var(--grey-9a); }

.faq-card {
  background: var(--grey-11);
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-md);
  padding: 15px;
}
.faq-q { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: var(--color-white); }
.faq-a { margin: 0; font-size: 14px; line-height: 1.55; color: var(--grey-a0); }

.about-cta-wrap { margin: 26px 18px 30px; }

/* =========================================================================
   FORM SCREEN ("Kayıt Ol")
   ========================================================================= */
#screen-form {
  --form-surface: #FFFFFF;
  --form-ink: #171717;
  --form-placeholder: #626262;
  --form-border: #858585;
  --form-error: #FF9B9B;
  --form-error-border: #B42318;
  color-scheme: dark;
}

/* Keep the mobile contact bar from covering registration fields. */
.shell:has(#screen-form:not([hidden])) > .sticky-bar { display: none; }

/* --- Success state ------------------------------------------------------------ */
.success-wrap { padding: 60px 22px 40px; text-align: center; }
.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: var(--radius-round);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin: 18px 0 0;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.95;
}
.success-text {
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-b4);
  max-width: 300px;
}
.btn-whatsapp-success { margin-top: 24px; height: 52px; font-size: 15px; letter-spacing: 0.03em; }
.btn-reset {
  margin-top: 10px;
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1px solid var(--grey-33);
  border-radius: var(--radius-md);
  color: var(--grey-c0);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn-reset:hover { border-color: var(--accent); color: var(--accent); }

/* --- Wizard head + progress ----------------------------------------------------- */
.form-head {
  max-width: none;
  margin: 0;
  padding: 22px 18px 0;
}
@media (min-width: 600px) { .form-head { max-width: 780px; margin: 0 auto; padding: 48px 28px 0; } }
@media (min-width: 900px) { .form-head { padding: 56px 40px 0; } }

.form-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.95;
}
.form-title span { color: var(--accent); }
.form-subtitle { margin: 10px 0 0; font-size: 16px; line-height: 1.5; color: var(--grey-c8); }

.progress-wrap {
  position: sticky;
  top: 108px;
  z-index: 30;
  background: rgba(10, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 14px 18px 12px;
  margin-top: 16px;
  border-bottom: 1px solid var(--grey-1f);
}
@media (min-width: 600px) { .progress-wrap { padding: 16px 28px 14px; margin-top: 24px; } }
@media (min-width: 900px) { .progress-wrap { top: 69px; padding: 16px 40px 14px; } }

.progress-inner {}
@media (min-width: 600px) { .progress-inner { max-width: 700px; margin: 0 auto; } }

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.progress-step-label { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }
.progress-step-count { font-size: 14px; font-weight: 600; color: var(--grey-c8); white-space: nowrap; }
.progress-track { height: 6px; background: var(--grey-4a); border-radius: var(--radius-md); overflow: hidden; }
.progress-fill {
  width: 20%;
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-xs);
  transition: width 260ms ease;
}

/* --- Wizard body / fields --------------------------------------------------------- */
.form-body {
  max-width: none;
  margin: 0;
  padding: 20px 18px 0;
}
@media (min-width: 600px) { .form-body { max-width: 780px; margin: 0 auto; padding: 28px 28px 0; } }
@media (min-width: 900px) { .form-body { padding: 30px 40px 0; } }

.form-step { display: flex; flex-direction: column; gap: 22px; }

.field { display: flex; flex-direction: column; min-width: 0; }
.field > label:not(.option-pill):not(.pill-checkbox),
.field legend {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-f5);
  margin-bottom: 8px;
  padding: 0;
}
.field-row2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }

.field input[type="text"],
.field input[type="date"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  height: 54px;
  min-width: 0;
  color-scheme: light;
  background: var(--form-surface);
  border: 2px solid var(--form-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  color: var(--form-ink);
  font-size: 16px;
}
.field select { padding: 0 12px; }
.field input[type="date"] { padding: 0 12px; font-size: 15px; }
.field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  font-size: 16px;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--form-placeholder); }

#screen-form input,
#screen-form select,
#screen-form textarea { scroll-margin-block: 210px 100px; }

#screen-form input:focus-visible,
#screen-form select:focus-visible,
#screen-form textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

#screen-form [aria-invalid="true"] { border-color: var(--form-error-border); }
#screen-form .declare-check:has([aria-invalid="true"]) {
  outline: 2px solid var(--form-error);
  outline-offset: 5px;
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--form-error);
}
.field-error:empty { display: none; }

/* Radio / checkbox option rows (2 or 3 across) */
.option-row { display: grid; gap: 10px; }
.option-row--2 { grid-template-columns: 1fr 1fr; }
.option-row--3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }

.option-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 8px;
  background: var(--grey-13);
  border: 1px solid var(--form-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--grey-e8);
  cursor: pointer;
  text-align: center;
}
.option-row--3 .option-pill { font-size: 14px; gap: 6px; }
.option-pill:hover { border-color: var(--accent); }
.option-pill input[type="radio"],
.option-pill input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

/* "Mevki" multi-select pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  background: var(--grey-13);
  border: 1px solid var(--form-border);
  border-radius: var(--radius-pill);
  min-height: 46px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-e8);
  cursor: pointer;
}
.pill-checkbox:hover { border-color: var(--accent); }
.pill-checkbox input { accent-color: var(--accent); width: 18px; height: 18px; margin: 0; flex: 0 0 auto; }

.option-pill:has(input:checked),
.pill-checkbox:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--form-ink);
  color-scheme: light;
}
.option-pill input:checked,
.pill-checkbox input:checked { accent-color: var(--form-ink); }
.option-pill:has(input:focus-visible),
.pill-checkbox:has(input:focus-visible) {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}
#screen-form .option-pill input:focus-visible,
#screen-form .pill-checkbox input:focus-visible { outline: none; }

.form-note { margin: 0; font-size: 14px; line-height: 1.6; color: var(--grey-c8); }

/* Step 5 declaration cards */
.declare-card {
  background: var(--grey-11);
  border: 1px solid var(--form-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.declare-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.declare-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-e8);
  text-wrap: pretty;
}
.declare-card__text--tight { margin: 0 0 12px; }

.declare-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--grey-f0);
  cursor: pointer;
  line-height: 1.4;
}
.declare-check input {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.declare-signoff-note { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--grey-c8); }

/* --- Wizard nav ------------------------------------------------------------------ */
.form-nav {
  max-width: none;
  margin: 0;
  display: flex;
  gap: 10px;
  padding: 22px 18px 26px;
}
@media (min-width: 600px) { .form-nav { max-width: 780px; margin: 0 auto; gap: 12px; padding: 28px 28px 90px; } }
@media (min-width: 900px) { .form-nav { padding: 30px 40px 64px; } }

.btn-back {
  width: 104px;
  flex: 0 0 auto;
  height: 54px;
  background: transparent;
  border: 1px solid var(--form-border);
  border-radius: var(--radius-md);
  color: var(--grey-f5);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn-back:hover { border-color: var(--accent); color: var(--accent); }
.btn-back:disabled {
  background: var(--grey-1f);
  border-color: var(--grey-3a);
  color: var(--grey-9a);
  cursor: not-allowed;
}
.btn-back:disabled:hover { border-color: var(--grey-3a); color: var(--grey-9a); }

.btn-next {
  flex: 1;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =========================================================================
   FOOTER + STICKY MOBILE ACTION BAR
   ========================================================================= */
.site-footer {
  border-top: 1px solid var(--grey-1f);
  padding: 26px 18px 100px;
  background: var(--color-black);
}
@media (min-width: 600px) { .site-footer { padding: 40px 28px 110px; } }
@media (min-width: 900px) { .site-footer { padding: 48px 40px 56px; } }

.footer-inner {}
@media (min-width: 600px) { .footer-inner { max-width: 780px; margin: 0 auto; } }
@media (min-width: 900px) { .footer-inner { max-width: 1160px; } }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; background: transparent; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--grey-7a);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--grey-9a);
}
.footer-contact a { color: var(--grey-e8); }
.footer-contact a:hover { color: var(--accent); }

.footer-divider { height: 1px; background: var(--grey-1a); margin: 18px 0 14px; }
.footer-copyright { margin: 0; font-size: 11px; color: var(--grey-5a); }

.sticky-bar {
  position: sticky;
  bottom: 0;
  z-index: 45;
  padding: 10px 14px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 40%, #000000 100%);
  display: flex;
  gap: 10px;
}
@media (min-width: 900px) { .sticky-bar { display: none; } }

.sticky-wa {
  flex: 1;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.sticky-call {
  width: 52px;
  flex: 0 0 auto;
  background: var(--grey-16);
  border: 1px solid var(--grey-33);
  color: var(--accent);
  height: 52px;
}
.sticky-call:hover { border-color: var(--accent); }

/* =========================================================================
   RESPONSIVE IMAGE FALLBACKS
   Every <img> gets width/height + a dark background so a missing file
   (logo-crest.png / band-players.png ship separately) never collapses
   its box or shifts layout.
   ========================================================================= */
img { background: var(--grey-1a); }

.logo-block img,
.hero-art img,
.about-crest,
.footer-brand img { background: transparent; }
