:root {
  --bg: #FDF6F0;
  --surface: #FFFFFF;
  --surface-2: #F7F0E8;
  --ink: #2D2A26;
  --ink-soft: #6B6560;
  --accent: #B84233;
  --accent-2: #5B7C6B;
  --line: rgba(184,66,51,0.18);
  --line-strong: rgba(184,66,51,0.38);
  --header-h: 72px;
  --container: 1180px;
  --text-col: 720px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

html, body { margin: 0; overflow-x: hidden; max-width: 100vw; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Lora', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link {
  position: fixed; top: -100px; left: 16px;
  background: var(--ink); color: var(--surface); padding: 8px 16px;
  z-index: 10000; border-radius: 4px; font-size: 14px;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
.container--narrow { max-width: var(--text-col); }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(253,246,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(45,42,38,0.18);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}
.scrolled .header__inner { height: 60px; }

.logo {
  font-family: 'Lora', serif;
  font-weight: 600; font-size: 1.15rem;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.logo span { color: var(--accent); }
.logo:hover { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
  }
  .nav-desktop a {
    font-size: 0.9rem; color: var(--ink); text-decoration: none;
    padding: 6px 0; position: relative; font-weight: 500;
    transition: color 240ms;
  }
  .nav-desktop a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop a:hover { color: var(--accent); }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop .nav-cta {
    background: var(--accent); color: var(--surface);
    padding: 10px 22px; border-radius: 6px;
    font-weight: 600; font-size: 0.85rem;
    transition: background 240ms, transform 180ms, color 240ms;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--ink); color: var(--surface);
    transform: translateY(-2px);
  }
  .nav-desktop .nav-cta.is-active { color: var(--surface); }
}

/* ── Nav toggle ── */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; width: 48px; height: 48px;
  background: rgba(45,42,38,0.06); border: 1px solid rgba(45,42,38,0.08);
  border-radius: 8px; cursor: pointer;
  z-index: 1100; position: relative;
  padding: 10px;
  transition: background 200ms;
}
.nav-toggle:hover,
.nav-toggle:active { background: rgba(45,42,38,0.12); }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ── Mobile Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 320ms;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 0ms;
}

.drawer nav { display: flex; flex-direction: column; gap: 0; }
.drawer a {
  display: block; padding: 16px 0;
  font-size: 1.1rem; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
  text-decoration: none;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent); padding-left: 8px;
}
.drawer .nav-cta-mobile {
  display: inline-block; margin-top: 24px;
  background: var(--accent); color: var(--surface);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; text-align: center;
  border-bottom: none;
  transition: background 240ms, color 240ms;
}
.drawer .nav-cta-mobile:hover {
  background: var(--ink); color: var(--surface);
  padding-left: 28px;
}

/* ── Main ── */
main { padding-top: var(--header-h); }

/* ── Sections ── */
section { padding: clamp(48px, 8vw, 96px) 0; }

.section-eyebrow {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 12px;
}

.divider-terracotta {
  width: 80px; height: 1px;
  background: var(--accent);
  margin: 32px 0;
  border: none;
}

.signature-motif { width: 120px; height: 36px; margin: 18px 0; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero-kizlar-sahada.jpg') center/cover no-repeat;
  animation: heroZoom 8s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45,42,38,0.72) 0%,
    rgba(45,42,38,0.45) 50%,
    rgba(45,42,38,0.68) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--text-col); margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) clamp(16px, 4vw, 32px) clamp(60px, 8vw, 100px);
  color: var(--surface);
}
.hero__eyebrow {
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7; color: rgba(255,255,255,0.88);
  max-width: 560px; margin-bottom: 28px;
}

.hero__quote-wrap {
  margin: 32px 0 36px;
  padding: 0;
}
.hero__quote {
  font-family: 'Lora', serif;
  font-style: italic; font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.92);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent);
  width: 0;
  animation: typewriter 2.8s steps(38) 0.8s forwards, blinkCaret 0.75s step-end infinite 0.8s;
}
@keyframes typewriter { to { width: 100%; } }
@keyframes blinkCaret {
  from, to { border-color: rgba(255,255,255,0.8); }
  50% { border-color: transparent; }
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
  backdrop-filter: blur(2px);
}
.trust-badge svg { width: 14px; height: 14px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--surface);
  padding: 14px 32px; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background 240ms, transform 180ms, box-shadow 240ms, color 240ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(184,66,51,0.3);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary--white {
  background: var(--surface); color: var(--accent);
}
.btn-primary--white:hover, .btn-primary--white:focus-visible {
  background: #fff; color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.2);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 13px 30px; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--line-strong); cursor: pointer;
  transition: background 240ms, transform 180ms, color 240ms, border-color 240ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ── Kick flash on CTA active ── */
@keyframes kickFlash {
  0% { box-shadow: 0 0 0 0 rgba(184,66,51,0.4); }
  100% { box-shadow: 0 0 0 18px rgba(184,66,51,0); }
}
.btn-primary:active { animation: kickFlash 400ms ease-out; }

/* ── Stats ── */
.stats {
  background: var(--ink); color: var(--surface);
  padding: clamp(40px, 6vw, 64px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat__number {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; color: var(--surface);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ── Hikaye (Storytelling) ── */
.hikaye { background: var(--bg); }
.hikaye__content {
  max-width: var(--text-col); margin: 0 auto;
}
.hikaye__content p {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  margin-bottom: 28px; line-height: 1.8;
  color: var(--ink-soft);
}
.hikaye__content p:first-of-type::first-letter {
  font-family: 'Lora', serif;
  font-size: 3.6em; float: left;
  line-height: 0.8; margin: 4px 12px 0 0;
  color: var(--accent); font-weight: 600;
}
.hikaye__image-wrap {
  max-width: clamp(600px, 80%, 900px);
  margin: 40px auto;
  border-radius: 8px; overflow: hidden;
  position: relative;
}
.hikaye__image-wrap img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}

/* ── Felsefe ── */
.felsefe { background: var(--surface); }
.felsefe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: var(--container);
}
.felsefe__col h3 {
  margin-bottom: 16px;
  color: var(--accent);
}
.felsefe__col p {
  color: var(--ink-soft); line-height: 1.8;
  margin-bottom: 18px;
}
.felsefe__icon {
  width: 48px; height: 48px;
  background: rgba(184,66,51,0.08);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.felsefe__icon svg { width: 24px; height: 24px; color: var(--accent); }
@media (max-width: 768px) {
  .felsefe__grid { grid-template-columns: 1fr; }
}

/* ── Yaş Grupları ── */
.yas-band {
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
.yas-band:last-child { border-bottom: none; }
.yas-band--1 { background: rgba(91,124,107,0.06); }
.yas-band--2 { background: rgba(184,66,51,0.04); }
.yas-band--3 { background: rgba(91,124,107,0.1); }

.yas-band__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px); align-items: start;
}
.yas-band__icon {
  width: 64px; height: 64px;
  background: var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.yas-band__icon svg { width: 28px; height: 28px; color: var(--accent-2); }
.yas-band__text h3 { margin-bottom: 8px; }
.yas-band__text p { color: var(--ink-soft); line-height: 1.7; max-width: 580px; }
.yas-band__tag {
  display: inline-block;
  background: var(--accent-2); color: var(--surface);
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 10px; letter-spacing: 0.04em;
}

/* ── Testimonials ── */
.testimonials { background: var(--surface); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(184,66,51,0.12);
}
.testimonial-card::before {
  content: '\201C'; position: absolute;
  top: 16px; left: 24px;
  font-family: 'Lora', serif;
  font-size: 4rem; line-height: 1;
  color: rgba(184,66,51,0.12);
}
.testimonial-card p {
  color: var(--ink-soft); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 18px;
  position: relative; z-index: 1;
  padding-top: 28px;
}
.testimonial-card__author {
  font-weight: 600; color: var(--ink);
  font-size: 0.88rem;
}
.testimonial-card__meta {
  font-size: 0.78rem; color: var(--ink-soft);
  margin-top: 4px;
}

/* ── Process ── */
.process { background: var(--bg); }
.process__timeline {
  max-width: var(--text-col); margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.process__timeline::before {
  content: ''; position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.process__step {
  position: relative; margin-bottom: 40px;
  padding-bottom: 8px;
}
.process__step:last-child { margin-bottom: 0; }
.process__dot {
  position: absolute; left: -48px; top: 4px;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.process__dot svg { width: 16px; height: 16px; color: var(--accent); }
.process__time {
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.process__step h4 { margin-bottom: 6px; }
.process__step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ── Pricing ── */
.pricing { background: var(--surface); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 12px; padding: clamp(28px, 3vw, 36px);
  background: var(--bg);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(184,66,51,0.14);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--surface);
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: var(--surface);
  padding: 4px 40px; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(45deg);
}
.pricing-card__name {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.2rem; margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: 0.85rem; color: var(--ink-soft);
  margin-bottom: 18px;
}
.pricing-card__price {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600; color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card__price small {
  font-size: 0.42em; font-weight: 400;
  color: var(--ink-soft); vertical-align: baseline;
}
.pricing-card__period {
  font-size: 0.8rem; color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-card__list {
  list-style: none; margin-bottom: 24px;
}
.pricing-card__list li {
  padding: 6px 0; font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--ink-soft);
}
.pricing-card__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.pricing-card__list li.excluded { opacity: 0.5; }
.pricing-card__list li.excluded svg { color: var(--ink-soft); }
.pricing-card__list li:not(.excluded) svg { color: var(--accent-2); }

.pricing__disclaimer {
  text-align: center; font-size: 0.8rem;
  color: var(--ink-soft); margin-top: 28px;
  font-style: italic;
}

/* ── Net mesh pattern on pricing hover ── */
@keyframes netReveal {
  from { opacity: 0; }
  to { opacity: 0.04; }
}
.pricing-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 18px, var(--accent) 18px, var(--accent) 19px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 18px, var(--accent) 18px, var(--accent) 19px
  );
  opacity: 0; pointer-events: none;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover::after { opacity: 0.04; }

/* ── Cancellation ── */
.cancel-tiers {
  max-width: var(--text-col); margin: 20px auto 0;
}
.cancel-tier {
  display: grid; grid-template-columns: auto 1fr;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cancel-tier:last-child { border-bottom: none; }
.cancel-tier__days {
  font-weight: 700; color: var(--accent);
  font-size: 0.9rem; white-space: nowrap;
  min-width: 120px;
}
.cancel-tier__desc { color: var(--ink-soft); font-size: 0.9rem; }

/* ── Takvim ── */
.takvim { background: var(--bg); }

.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
th {
  background: var(--ink); color: var(--surface);
  padding: 12px 16px; text-align: left;
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(184,66,51,0.03); }

/* ── FAQ ── */
.faq { background: var(--surface); }
.faq__list {
  max-width: var(--text-col); margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 20px 0;
  font-family: 'Lora', serif;
  font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem;
  color: var(--accent); font-weight: 300;
  flex-shrink: 0; transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-item > .answer {
  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] > .answer {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}
.faq-item .answer p {
  color: var(--ink-soft); line-height: 1.75;
  font-size: 0.92rem;
}

/* ── Form ── */
.katilim { background: var(--bg); }
.katilim__inner {
  max-width: var(--text-col); margin: 0 auto;
}
.katilim__intro {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--ink-soft); line-height: 1.75;
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field { position: relative; }
.field label {
  display: block; font-size: 0.85rem;
  font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px; font-size: 0.95rem;
  font-family: inherit; 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(184,66,51,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.field--checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.field--checkbox label {
  font-size: 0.85rem; font-weight: 400;
  color: var(--ink-soft); margin-bottom: 0;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}
@media (max-width: 640px) {
  .form-submit .btn-primary { width: 100%; justify-content: center; }
}

/* ── Atölye Notları (news/activity) ── */
.news {
  background: var(--surface-2);
  padding: clamp(32px, 5vw, 48px) 0;
}
.news__list {
  max-width: var(--text-col); margin: 0 auto;
}
.news__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr;
  gap: 16px; align-items: start;
}
.news__date {
  font-size: 0.78rem; color: var(--accent);
  font-weight: 600; white-space: nowrap;
  min-width: 100px;
}
.news__text { color: var(--ink-soft); font-size: 0.92rem; }

/* ── Footer ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer__brand { max-width: 300px; }
.footer__brand .logo { color: var(--surface); margin-bottom: 16px; }
.footer__brand .logo span { color: var(--accent); }
.footer__brand p {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer__col h4 {
  color: var(--surface); font-size: 0.9rem;
  margin-bottom: 16px; font-family: 'Lora', serif;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 240ms;
}
.footer__col a:hover { color: var(--surface); }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  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.6);
}
.footer__contact-item a:hover { color: var(--surface); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── 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: 12px; padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.18);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

.cookie-banner h4 {
  font-size: 0.95rem; margin-bottom: 8px;
  font-family: 'Lora', serif;
}
.cookie-banner p {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-btns button {
  padding: 10px 20px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink);
  min-height: 44px;
  transition: background 200ms, color 200ms;
}
.cookie-btns button[data-consent="accept"] {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent);
}
.cookie-btns button[data-consent="accept"]:hover {
  background: var(--ink); color: var(--surface);
  border-color: var(--ink);
}
.cookie-btns button[data-consent="reject"]:hover {
  background: var(--surface-2); color: var(--ink);
}
.cookie-btns button[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink);
}

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px) translateX(var(--reveal-x, 0px));
  transition: opacity 600ms cubic-bezier(.22,.68,0,1.1),
              transform 700ms cubic-bezier(.22,.68,0,1.1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Grass sway ambient animation ── */
@keyframes grassSway {
  0%, 100% { transform: skewX(0deg) scaleY(1); }
  25% { transform: skewX(1.5deg) scaleY(1.02); }
  75% { transform: skewX(-1deg) scaleY(0.98); }
}
.hero__grass {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--accent-2), transparent);
  opacity: 0.25;
  animation: grassSway 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__grass { animation: none; }
}

/* ── Ball roll decoration between sections ── */
@keyframes ballRoll {
  0% { transform: translateX(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(80px) rotate(720deg); opacity: 0; }
}
.ball-divider {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  padding: 12px 0;
}
.ball-divider__line {
  flex: 1; height: 1px;
  background: var(--line);
}
.ball-divider__ball {
  width: 18px; height: 18px;
}
.ball-divider__ball.is-in {
  animation: ballRoll 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .ball-divider__ball { animation: none !important; opacity: 1; }
}

/* ── Whistle pulse on stat numbers ── */
@keyframes whistlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.stat__number.is-in {
  animation: whistlePulse 600ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .stat__number.is-in { animation: none; }
}

/* ── Goal-frame quote block ── */
.quote-block {
  max-width: var(--text-col); margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border: 2px solid var(--accent);
  border-radius: 4px;
  position: relative; text-align: center;
  background: var(--surface);
}
.quote-block::before,
.quote-block::after {
  content: ''; position: absolute;
  width: 20px; height: 100%;
  border: 2px solid var(--accent);
  top: -6px;
}
.quote-block::before { left: -6px; border-right: none; }
.quote-block::after { right: -6px; border-left: none; }
.quote-block blockquote {
  font-family: 'Lora', serif;
  font-style: italic; font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.5; color: var(--ink);
}
.quote-block cite {
  display: block; margin-top: 16px;
  font-size: 0.88rem; font-style: normal;
  color: var(--ink-soft);
}

/* ── Contact Cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px; padding: 24px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(184,66,51,0.12);
}
.contact-card__icon {
  width: 48px; height: 48px;
  background: rgba(184,66,51,0.08);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 240ms;
}
.contact-card:hover .contact-card__icon {
  background: rgba(184,66,51,0.14);
}
.contact-card__icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-card h4 {
  font-size: 0.92rem; margin-bottom: 6px;
}
.contact-card a, .contact-card p {
  font-size: 0.88rem; color: var(--ink-soft);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .sub-note {
  font-size: 0.78rem; color: var(--ink-soft);
  margin-top: 6px; opacity: 0.7;
}

/* ── Hours mini-grid ── */
.hours-grid {
  display: grid; gap: 0;
}
.hours-row {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.88rem; font-variant-numeric: tabular-nums;
  align-items: center;
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { font-weight: 600; color: var(--ink); }
.hours-row__time { color: var(--ink-soft); }
.hours-row.is-today { background: rgba(184,66,51,0.06); border-radius: 4px; padding-left: 8px; padding-right: 8px; }

/* ── Page hero (sub-pages) ── */
.page-hero {
  background: var(--ink); color: var(--surface);
  padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  min-height: 240px; display: flex; align-items: center;
}
.page-hero h1 { color: var(--surface); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px; margin: 0 auto;
}
.page-hero .section-eyebrow { color: var(--accent); }

/* ── Legal pages ── */
.legal-content {
  max-width: var(--text-col); margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 32px);
}
.legal-content h2 {
  margin: 40px 0 16px; font-size: 1.4rem;
  color: var(--ink);
}
.legal-content h3 {
  margin: 28px 0 12px; font-size: 1.1rem;
}
.legal-content p {
  margin-bottom: 16px; color: var(--ink-soft);
  line-height: 1.8; font-size: 0.92rem;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 20px 24px;
  color: var(--ink-soft); font-size: 0.92rem;
}
.legal-content li { margin-bottom: 8px; line-height: 1.7; }

/* ── Thank you ── */
.thank-you {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 32px);
}
.thank-you h1 { margin-bottom: 16px; }
.thank-you p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }

/* ── 404 ── */
.page-404 {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 32px);
}
.page-404 h1 {
  font-size: clamp(4rem, 12vw, 4.5rem);
  color: var(--accent); opacity: 0.3;
}
.page-404 h2 { margin-bottom: 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ── Sitemap ── */
.sitemap-list { list-style: none; max-width: var(--text-col); margin: 0 auto; }
.sitemap-list li {
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.sitemap-list li a { display: flex; justify-content: space-between; align-items: center; }
.sitemap-list li a::after {
  content: '\2192'; color: var(--accent);
}

/* ── Team cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(184,66,51,0.12);
}
.team-card__photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; background: var(--surface-2);
}
.team-card__info { padding: 20px; }
.team-card__name {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: 1.05rem; margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600; margin-bottom: 10px;
}
.team-card__bio {
  font-size: 0.85rem; color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Print ── */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Cookie: equalise Reddet vs Kabul Et ── */
.cookie-btns button[data-consent="reject"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-btns button[data-consent="reject"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line-strong);
}

/* ── Turf-line hover accent on cards ── */
.contact-card,
.testimonial-card,
.team-card,
.pricing-card { position: relative; overflow: hidden; }

.contact-card::after,
.testimonial-card::after,
.team-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  transform-origin: left;
}
.contact-card:hover::after,
.testimonial-card:hover::after,
.team-card:hover::after { transform: scaleX(1); }

/* ── Ball-arrow bounce on CTA hover ── */
@keyframes arrowKick {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(5px); }
  60%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
.btn-primary:hover svg,
.btn-ghost:hover svg {
  animation: arrowKick 500ms cubic-bezier(.22,.68,0,1.1);
}

/* ── FAQ: turf highlight on open ── */
.faq-item[open] summary {
  color: var(--accent);
}
.faq-item summary {
  transition: color 240ms, background 240ms;
  border-radius: 4px;
  padding-left: 8px; padding-right: 8px;
  margin-left: -8px; margin-right: -8px;
}
.faq-item summary:hover {
  background: rgba(91,124,107,0.04);
}

/* ── Process step hover ── */
.process__step {
  transition: padding-left 240ms;
}
.process__step:hover {
  padding-left: 6px;
}
.process__step:hover .process__dot {
  background: var(--accent);
  border-color: var(--accent);
}
.process__step:hover .process__dot svg { color: var(--surface); }
.process__dot {
  transition: background 240ms, border-color 240ms;
}
.process__dot svg { transition: color 240ms; }

/* ── Quote-block hover ── */
.quote-block {
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.quote-block:hover {
  border-color: var(--accent-2);
  box-shadow: 0 8px 28px -8px rgba(91,124,107,0.12);
}
.quote-block::before,
.quote-block::after {
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.quote-block:hover::before,
.quote-block:hover::after {
  border-color: var(--accent-2);
}

/* ── Stronger focus-visible for buttons ── */
button:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(184,66,51,0.12);
}

/* ── Stagger reveal: alternate-direction slide ── */
.testimonials__grid > :nth-child(odd).reveal { --reveal-x: -16px; }
.testimonials__grid > :nth-child(even).reveal { --reveal-x: 16px; }
.felsefe__grid > :nth-child(odd).reveal { --reveal-x: -16px; }
.felsefe__grid > :nth-child(even).reveal { --reveal-x: 16px; }
.pricing__grid > :nth-child(1).reveal { --reveal-x: -12px; }
.pricing__grid > :nth-child(3).reveal { --reveal-x: 12px; }

/* ── Yas-band hover ── */
.yas-band {
  transition: background 240ms;
}
.yas-band:hover {
  background: rgba(184,66,51,0.05);
}
.yas-band__icon {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.yas-band:hover .yas-band__icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ── Contact-card icon pulse ── */
.contact-card__icon {
  transition: background 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1);
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.1);
  background: rgba(184,66,51,0.16);
}

/* ── Stats number glow on hover ── */
.stats__grid > div {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.stats__grid > div:hover {
  transform: translateY(-4px);
}
.stats__grid > div:hover .stat__number {
  text-shadow: 0 0 24px rgba(184,66,51,0.3);
}
.stat__number { transition: text-shadow 240ms cubic-bezier(.2,.7,.2,1); }

/* ── News item hover ── */
.news__item {
  transition: background 200ms, padding-left 200ms;
  border-radius: 4px;
}
.news__item:hover {
  background: rgba(184,66,51,0.03);
  padding-left: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  section { padding: clamp(40px, 6vw, 64px) 0; }
  .hero {
    min-height: 70vh;
    align-items: flex-end;
  }
  .hero__content {
    padding-top: clamp(48px, 6vw, 72px);
    padding-bottom: clamp(36px, 5vw, 56px);
  }
  .hero__quote { white-space: normal; animation: none; border-right: none; width: auto; opacity: 1; }
}
@media (max-width: 640px) {
  .felsefe__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .yas-band__inner { grid-template-columns: 1fr; }
  .yas-band__icon { width: 48px; height: 48px; }
  .yas-band__icon svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }
  .form-grid { grid-template-columns: 1fr; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns button { width: 100%; }
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner p { margin-bottom: 12px; font-size: 0.78rem; }
}
@media (max-width: 360px) {
  h1 { font-size: 1.8rem; }
  .pricing-card { padding: 20px; }
  .testimonial-card { padding: 20px; }
}

/* ── Legal page visual hierarchy ── */
.legal-content h2 {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  margin-top: 48px;
}
.legal-content h2:first-of-type {
  margin-top: 32px;
}
.legal-content h3 {
  padding-left: 12px;
  border-left: 2px solid var(--line-strong);
}

/* ── Team card placeholder polish ── */
.team-card__photo[style*="display:flex"] {
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(184,66,51,0.06) 100%) !important;
}

/* ── Process timeline mobile ── */
@media (max-width: 480px) {
  .process__timeline { padding-left: 40px; }
  .process__step { margin-bottom: 32px; }
  .process__dot { left: -40px; width: 32px; height: 32px; }
  .process__dot svg { width: 14px; height: 14px; }
  .process__timeline::before { left: 14px; }
}

/* ── Cookie banner mobile compact ── */
@media (max-width: 480px) {
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 14px 16px; border-radius: 10px; }
  .cookie-banner h4 { font-size: 0.88rem; margin-bottom: 6px; }
  .cookie-banner p { font-size: 0.75rem; margin-bottom: 10px; line-height: 1.5; }
  .cookie-btns button { padding: 10px 16px; font-size: 0.8rem; min-height: 44px; }
}

/* ── Football-themed stadium spotlight on hero ── */
@keyframes spotlightSweep {
  0% { opacity: 0; transform: translateX(-40%) rotate(-15deg); }
  20% { opacity: 0.08; }
  80% { opacity: 0.08; }
  100% { opacity: 0; transform: translateX(40%) rotate(-15deg); }
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.12) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.12) 55%,
    transparent 70%
  );
  opacity: 0;
  animation: spotlightSweep 6s ease-in-out 2s forwards;
  pointer-events: none;
}

/* ── Pitch-stripe pattern on yas-band hover ── */
.yas-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 48px,
    rgba(91,124,107,0.03) 48px, rgba(91,124,107,0.03) 96px
  );
  opacity: 0;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.yas-band { position: relative; }
.yas-band:hover::before { opacity: 1; }

/* ── Process dot pulse on hover ── */
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(184,66,51,0.3); }
  70% { box-shadow: 0 0 0 10px rgba(184,66,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,66,51,0); }
}
.process__step:hover .process__dot {
  animation: dotPulse 800ms ease-out;
}

/* ── Testimonial warm glow on hover ── */
.testimonial-card:hover {
  box-shadow: 0 12px 32px -8px rgba(184,66,51,0.12), 0 0 48px -16px rgba(184,66,51,0.06);
}

/* ── Stat counter scale-up on reveal ── */
@keyframes statReveal {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}
.stats__grid > div.reveal.is-in {
  animation: statReveal 600ms cubic-bezier(.22,.68,0,1.1) both;
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* ── Pricing card featured glow ── */
.pricing-card--featured {
  box-shadow: 0 4px 24px -8px rgba(184,66,51,0.1);
}
.pricing-card--featured:hover {
  box-shadow: 0 16px 40px -12px rgba(184,66,51,0.2), 0 0 60px -24px rgba(184,66,51,0.08);
}

/* ── Nav link hover underline sweep direction ── */
.nav-desktop a:nth-child(even)::after {
  transform-origin: left;
}
.nav-desktop a:nth-child(even):hover::after {
  transform-origin: right;
}

/* ── FAQ item open: left accent bar ── */
.faq-item[open] {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-left: -19px;
  border-bottom-color: transparent;
}

/* ── Grass sway: improved natural timing ── */
@keyframes grassSway {
  0%, 100% { transform: skewX(0deg) scaleY(1); }
  20% { transform: skewX(1deg) scaleY(1.01); }
  50% { transform: skewX(-0.5deg) scaleY(1.02); }
  80% { transform: skewX(1.2deg) scaleY(0.99); }
}

/* ── Ball divider: enhanced roll ── */
@keyframes ballRoll {
  0% { transform: translateX(-30px) rotate(0deg); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translateX(10px) rotate(360deg); }
  85% { opacity: 1; }
  100% { transform: translateX(50px) rotate(720deg); opacity: 0; }
}

/* ── News date badge style ── */
.news__date {
  background: rgba(184,66,51,0.06);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ── Reduced-motion: disable all new animations ── */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover svg,
  .btn-ghost:hover svg { animation: none; }
  .contact-card::after,
  .testimonial-card::after,
  .team-card::after { transition: none; }
  .process__step,
  .process__dot,
  .yas-band__icon,
  .contact-card__icon,
  .stats__grid > div,
  .stat__number,
  .quote-block,
  .quote-block::before,
  .quote-block::after,
  .faq-item summary,
  .news__item,
  .yas-band { transition: none; }
  .hero__bg::after { animation: none; }
  .yas-band::before { display: none; }
  .process__step:hover .process__dot { animation: none; }
  .stats__grid > div.reveal.is-in { animation: none; }
}

.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}
