/* ============================================================
   TSIKARLIS TENNIS — Visual system
   Palette drawn from the logo + clay-court photography:
   clay terracotta · deep forest green · warm ink · pale paper
   · optic tennis-ball highlight
   ============================================================ */

:root {
  /* Core palette */
  --clay:        #B5532B;
  --clay-deep:   #8A3C1C;
  --clay-soft:   #C9714A;
  --clay-tint:   #F0DBCD;
  --green:       #15492B;
  --green-mid:   #1E6B3C;
  --green-soft:  #2E7D4F;
  --ink:         #1B1611;
  --ink-soft:    #4A4239;
  --paper:       #F7F2EA;
  --paper-2:     #FCF9F3;
  --paper-warm:  #F1E8DA;
  --line:        #E4DACB;
  --ball:        #D7E84C;   /* optic tennis-ball highlight */
  --ball-deep:   #B9CB2E;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif:   "Newsreader", Georgia, serif;
  --sans:    "Hanken Grotesque", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(40, 24, 12, .06);
  --shadow:    0 18px 50px -22px rgba(60, 32, 14, .35);
  --shadow-lg: 0 40px 90px -40px rgba(60, 32, 14, .5);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px;
}
.eyebrow.on-dark { color: var(--ball); }
.eyebrow.on-dark::before { background: var(--ball); }
.eyebrow.centered { justify-content: center; }

.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 18px; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; margin-top: 18px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper-2); }
.btn-primary:hover { background: var(--green); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-ball { background: var(--ball); color: var(--ink); }
.btn-ball:hover { background: var(--ball-deep); transform: translateY(-3px); box-shadow: 0 16px 40px -16px rgba(155, 170, 30, .7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost.on-dark { color: var(--paper-2); border-color: rgba(255,255,255,.32); }
.btn-ghost.on-dark:hover { border-color: var(--paper-2); background: rgba(255,255,255,.08); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 242, 234, .82);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  letter-spacing: 0.02em; color: var(--green);
}
.nav.on-hero:not(.scrolled) .brand-name { color: var(--paper-2); }
.brand-sub {
  font-size: 9.5px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px; font-weight: 600;
}
.nav.on-hero:not(.scrolled) .brand-sub { color: rgba(255,255,255,.7); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.nav.on-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--clay); transition: width .35s var(--ease);
}
.nav.on-hero:not(.scrolled) .nav-links a::after { background: var(--ball); }
.nav-links a:hover { color: var(--ink); }
.nav.on-hero:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  padding: 11px 20px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: var(--ink); color: var(--paper-2);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.nav.on-hero:not(.scrolled) .nav-cta { background: var(--ball); color: var(--ink); }
.nav-cta:hover { transform: translateY(-2px); background: var(--clay); color: #fff; }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--paper-2); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transform: scale(1.08); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(125% 95% at 0% 100%, rgba(9,5,2,.82) 0%, rgba(9,5,2,.30) 42%, rgba(9,5,2,0) 64%),
    linear-gradient(180deg, rgba(20,12,6,.5) 0%, rgba(20,12,6,0) 24%),
    linear-gradient(6deg, rgba(12,7,3,.55) 2%, rgba(16,10,5,.2) 38%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 7vw, 92px); padding-top: 140px; }
.hero-eyebrow { color: var(--ball); }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 6.3rem); letter-spacing: -0.03em; margin-top: 22px; max-width: 16ch; text-shadow: 0 2px 30px rgba(10,5,2,.28); }
.hero h1 .ital { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero h1 .clay-word { color: var(--ball); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,.94); max-width: 52ch; margin-top: 26px; line-height: 1.55; text-shadow: 0 1px 14px rgba(8,4,1,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; margin-top: 44px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.82); }
.trust-item strong { color: #fff; font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: var(--ball); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hero-scroll .line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--ball); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* Floating ball */
.floating-ball {
  position: absolute; z-index: 2; width: 100px; height: 100px;
  top: 22%; right: 8%;
  animation: floatball 7s ease-in-out infinite;
  filter: drop-shadow(0 22px 28px rgba(110,130,10,.55)) drop-shadow(0 4px 8px rgba(0,0,0,.18));
}
.floating-ball img { width: 100%; height: 100%; display: block; }
@keyframes floatball { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-26px) rotate(14deg); } }

/* ---------- Marquee strip (stats) ---------- */
.stats-strip { background: var(--ink); color: var(--paper-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: clamp(46px, 6vw, 72px); }
.stat { position: relative; }
.stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; }
.stat .num .suffix { color: var(--ball); }
.stat .label { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.62); letter-spacing: 0.01em; }
.stat + .stat::before { content: ""; position: absolute; left: -15px; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,.12); }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.benefit {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 32px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.benefit::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--clay); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease);
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.benefit:hover::after { transform: scaleY(1); }
.benefit .b-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--clay-tint); color: var(--clay-deep); margin-bottom: 22px;
  transition: background .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.benefit:hover .b-icon { background: var(--green); color: var(--ball); transform: rotate(-6deg); }
.benefit h3 { font-size: 1.32rem; }
.benefit p { color: var(--ink-soft); font-size: 15.5px; margin-top: 12px; }
.benefit .b-index { position: absolute; top: 26px; right: 28px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--line); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-portrait { position: relative; }
.about-portrait image-slot { width: 100%; height: clamp(440px, 52vw, 600px); aspect-ratio: auto; display: block; box-shadow: var(--shadow-lg); }
.about-portrait .frame-tag {
  position: absolute; bottom: 22px; left: -18px; background: var(--ink); color: var(--paper-2);
  padding: 16px 22px; border-radius: 14px; box-shadow: var(--shadow); max-width: 200px;
}
.about-portrait .frame-tag .name { font-family: var(--display); font-weight: 700; font-size: 17px; }
.about-portrait .frame-tag .role { font-size: 12.5px; color: var(--ball); margin-top: 3px; letter-spacing: .04em; }
.about-portrait .badge {
  position: absolute; top: -22px; right: -16px; width: 96px; height: 96px; border-radius: 50%;
  background: var(--clay); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 700; line-height: 1; box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.about-portrait .badge span { font-size: 12px; }
.about-portrait .badge b { font-size: 28px; display: block; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 18px; }
.about-copy .lede { font-size: 1.2rem; color: var(--ink); margin-top: 22px; font-family: var(--serif); font-style: italic; line-height: 1.5; }
.about-copy p { color: var(--ink-soft); margin-top: 18px; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 100px;
  background: var(--paper-warm); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500;
}
.cred svg { color: var(--green-mid); }
.about-langs { display: flex; gap: 26px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-langs .lang b { font-family: var(--display); font-size: 1.05rem; }
.about-langs .lang span { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Coach cards (About) ---------- */
.coaches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.coach-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.coach-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.coach-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .7s var(--ease); }
.coach-card:hover .coach-photo img { transform: scale(1.04); }
.coach-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(247,242,234,.9); backdrop-filter: blur(8px);
  color: var(--clay-deep); font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
}
.coach-info { padding: 26px 28px 30px; }
.coach-name { font-family: var(--display); font-weight: 700; font-size: 1.55rem; margin: 0; }
.coach-specialty { font-size: 13px; color: var(--clay-deep); font-weight: 600; letter-spacing: .02em; margin: 7px 0 0; }
.coach-bio { color: var(--ink-soft); font-size: 14.5px; margin-top: 14px; line-height: 1.6; }
.team-photo { position: relative; margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; height: 360px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
.team-photo-caption {
  position: absolute; bottom: 20px; left: 24px;
  background: rgba(27,22,17,.68); backdrop-filter: blur(10px);
  color: #fff; font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 100px;
}
@media (max-width: 820px) { .coaches-grid { grid-template-columns: 1fr; } }

/* ---------- Approach ---------- */
.approach { background: var(--green); color: var(--paper-2); overflow: hidden; }
.approach .eyebrow { color: var(--ball); }
.approach .eyebrow::before { background: var(--ball); }
.approach-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
.approach-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 18px; }
.approach-head p { color: rgba(255,255,255,.74); }
.approach-body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px); margin-top: 60px; align-items: stretch; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.16); position: relative;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.step .step-no {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.3); color: var(--ball);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.step:hover .step-no { background: var(--ball); color: var(--green); border-color: var(--ball); }
.step h3 { font-size: 1.4rem; }
.step p { color: rgba(255,255,255,.72); font-size: 15.5px; margin-top: 8px; }
.approach-visuals { display: flex; flex-direction: column; gap: 14px; }
.approach-visual { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 300px; box-shadow: var(--shadow-lg); flex: 1; }
.approach-photo-extra { border-radius: var(--radius); overflow: hidden; height: 250px; box-shadow: var(--shadow); }
.approach-photo-extra img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: block; }
.approach-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.approach-visual .v-quote {
  position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.approach-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,30,18,.7), transparent 55%); }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); }
.reviews-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 30px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 14px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-sm);
}
.google-badge .g-logo { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.google-badge .g-rate { display: flex; flex-direction: column; line-height: 1.1; border-left: 1px solid var(--line); padding-left: 14px; }
.google-badge .g-rate b { font-size: 22px; font-family: var(--display); }
.google-badge .g-rate span { font-size: 12px; color: var(--ink-soft); }
.reviews-track-wrap { margin-top: 56px; position: relative; overflow: hidden; }
.reviews-track-wrap::before, .reviews-track-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--paper-2), transparent); }
.reviews-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--paper-2), transparent); }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: marquee 48s linear infinite; }
.reviews-track-wrap:hover .reviews-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review-card {
  width: 380px; flex: 0 0 auto; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card .r-stars { color: var(--ball-deep); display: flex; gap: 2px; }
.review-card .r-text { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.review-card .r-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .r-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: #fff; font-size: 16px;
}
.review-card .r-meta b { font-size: 15px; }
.review-card .r-meta span { display: block; font-size: 12.5px; color: var(--ink-soft); }
.review-card .g-mark { margin-left: auto; opacity: .85; }

/* ---------- Articles ---------- */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.article {
  display: flex; flex-direction: column; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.article:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.article .a-media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.article .a-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.article:hover .a-media img { transform: scale(1.07); }
.article .a-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(247,242,234,.92);
  backdrop-filter: blur(6px); padding: 7px 13px; border-radius: 100px; font-size: 12px; font-weight: 600;
  color: var(--clay-deep); letter-spacing: .02em;
}
.article .a-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.article .a-meta { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .03em; }
.article h3 { font-size: 1.32rem; margin-top: 12px; }
.article p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; }
.article .a-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--clay-deep); }
.article .a-link .arrow { transition: transform .4s var(--ease); }
.article:hover .a-link .arrow { transform: translateX(5px); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 18px; }
.faq-aside p { color: var(--ink-soft); margin-top: 18px; }
.faq-aside .faq-cta { margin-top: 26px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em;
}
.faq-q .ico { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: background .4s var(--ease), border-color .4s var(--ease); }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), background .4s var(--ease); }
.faq-q .ico::before { width: 13px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 13px; }
.faq-item.open .faq-q .ico { background: var(--clay); border-color: var(--clay); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #fff; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding-bottom: 26px; color: var(--ink-soft); font-size: 15.5px; max-width: 60ch; }

/* ---------- Contact ---------- */
.contact { background: var(--green); color: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); }
.contact-copy .eyebrow { color: var(--ball); }
.contact-copy .eyebrow::before { background: var(--ball); }
.contact-copy h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: 18px; color: #fff; }
.contact-copy p { color: rgba(255,255,255,.72); margin-top: 18px; max-width: 44ch; }
.contact-info { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.info-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-row .i-ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: var(--ball); flex: 0 0 auto; }
.info-row .i-txt b { font-size: 15px; font-weight: 600; }
.info-row .i-txt span { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); }
.map-wrap { margin-top: 28px; border-radius: var(--radius); overflow: hidden; position: relative; height: 220px; border: 1px solid rgba(255,255,255,.14); }
.map-wrap .map-bg { position: absolute; inset: 0; filter: saturate(.85) brightness(.9); }
.map-wrap .map-bg img { width: 100%; height: 100%; object-fit: cover; }
.map-pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-100%); z-index: 2; }
.map-pin .dot { width: 22px; height: 22px; border-radius: 50% 50% 50% 0; background: var(--clay); transform: rotate(-45deg); box-shadow: 0 6px 16px rgba(0,0,0,.4); border: 3px solid #fff; }
.map-pin .pulse { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: var(--clay); transform: translate(-50%,-50%); animation: pulse 2.4s ease-out infinite; z-index: -1; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(181,83,43,.5); } 100% { box-shadow: 0 0 0 26px rgba(181,83,43,0); } }
.map-card { position: absolute; left: 16px; bottom: 16px; z-index: 3; background: var(--paper-2); color: var(--ink); padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow); }
.map-card b { font-size: 14px; font-family: var(--display); }
.map-card span { display: block; font-size: 12px; color: var(--ink-soft); }

/* Form */
.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: #fff; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 14px 16px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ball); background: rgba(255,255,255,.07); }
.field select option { color: #1a1a1a; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #E08A6A; }
.field .err { font-size: 12px; color: #F0A98E; display: none; }
.field.invalid .err { display: block; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 15px; border-radius: 100px; font-size: 13.5px; font-weight: 500;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.82);
  transition: all .3s var(--ease);
}
.chip.active { background: var(--ball); color: var(--ink); border-color: var(--ball); font-weight: 600; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: popin .5s var(--ease); }
@keyframes popin { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--ball); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { color: #fff; font-size: 1.5rem; }
.form-success p { color: rgba(255,255,255,.7); margin-top: 10px; }

/* ---------- Kids coaching ---------- */
.kids { background: var(--paper-warm); }
.kids-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.kids-media { position: relative; }
.kids-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg); }
.kids-stat { position: absolute; bottom: -18px; right: -18px; background: var(--clay); color: #fff; border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow); }
.kids-stat b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.kids-stat span { font-size: 12px; opacity: .85; letter-spacing: .04em; margin-top: 4px; display: block; text-transform: uppercase; }
.kids-copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 18px; }
.kids-copy .lede { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); margin-top: 22px; line-height: 1.5; }
.kids-copy p { color: var(--ink-soft); margin-top: 16px; }
.kids-points { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; margin-bottom: 32px; }
.kids-point { display: flex; align-items: flex-start; gap: 16px; }
.kp-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green); color: var(--ball); display: grid; place-items: center; flex: 0 0 auto; transition: background .4s var(--ease), color .4s var(--ease); }
.kids-point:hover .kp-icon { background: var(--green-mid); color: var(--ball); }
.kids-point b { display: block; font-weight: 600; font-size: 15px; }
.kids-point span { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; display: block; }
@media (max-width: 1000px) {
  .kids-grid { grid-template-columns: 1fr; }
  .kids-stat { right: 0; bottom: -12px; }
}
@media (max-width: 720px) {
  .kids-stat { right: 0; bottom: -10px; padding: 14px 18px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--paper); padding-block: 60px 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand-name { color: var(--green); }
.footer-blurb { color: var(--ink-soft); font-size: 14.5px; margin-top: 18px; max-width: 30ch; }
.footer-col h4 { font-family: var(--sans); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.footer-col a { display: block; font-size: 14.5px; color: var(--ink); margin-top: 12px; transition: color .3s; }
.footer-col a:hover { color: var(--clay-deep); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--ink); color: var(--paper-2); transform: translateY(-3px); border-color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-ball, .reviews-track, .hero-scroll .line::after, .map-pin .pulse { animation: none !important; }
  .floating-ball { filter: none; }
  .hero-media img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .approach-head, .approach-body, .faq-grid, .contact-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
  .stat + .stat::before { display: none; }
  .faq-aside { position: static; }
  .approach-visual { min-height: 280px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: grid; }
  .benefits-grid, .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-portrait .frame-tag { left: 0; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .floating-ball { width: 68px; height: 68px; right: 6%; top: 16%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Nav phone numbers (desktop only) */
.nav-phones {
  display: flex; align-items: center; gap: 14px;
}
.nav-phones a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: currentColor;
  text-decoration: none; opacity: .72;
  transition: opacity .2s;
}
.nav-phones a:hover { opacity: 1; }
@media (max-width: 960px) { .nav-phones { display: none; } }

/* Hero phone links */
.hero-tel-item { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-tel {
  color: #fff; text-decoration: none; font-weight: 700; font-size: 14px;
  opacity: .9; transition: opacity .2s;
}
.hero-tel:hover { opacity: 1; }

/* ===================== STICKY CONTACT FAB ===================== */
.sc-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.sc-trigger {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--ball);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(21,73,43,.5), 0 2px 10px rgba(0,0,0,.22);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.sc-trigger::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(215,232,76,.18) 0%, transparent 70%);
  pointer-events: none;
}
.sc-trigger:hover { transform: scale(1.12); box-shadow: 0 16px 40px rgba(21,73,43,.6), 0 4px 14px rgba(0,0,0,.25); }

.sc-trig-icon {
  position: absolute;
  display: grid; place-items: center;
  transition: opacity .22s var(--ease), transform .3s cubic-bezier(.34,1.56,.64,1);
}
.sc-trig-close { opacity: 0; transform: rotate(-80deg) scale(.5); }
.sc-fab.open .sc-trig-open  { opacity: 0; transform: rotate(80deg) scale(.5); }
.sc-fab.open .sc-trig-close { opacity: 1; transform: rotate(0deg) scale(1); }

.sc-panel {
  background: var(--green);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 8px;
  width: 292px;
  box-shadow: 0 28px 72px rgba(0,0,0,.38), 0 8px 28px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(16px) scale(.93);
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity .28s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.34,1.56,.64,1);
}
.sc-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sc-panel-head {
  padding: 13px 14px 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0; font-family: var(--sans);
}

.sc-item {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: background .2s;
  position: relative;
}
.sc-item:hover { background: rgba(255,255,255,.1); }
.sc-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 53px; right: 12px;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.sc-item-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--ball);
  flex: 0 0 auto;
  flex-shrink: 0;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s cubic-bezier(.34,1.56,.64,1);
}
.sc-item:hover .sc-item-ico {
  background: var(--ball);
  color: var(--green);
  transform: scale(1.08);
}

.sc-item div { flex: 1; min-width: 0; }
.sc-item b { display: block; font-size: 14.5px; font-weight: 600; font-family: var(--sans); }
.sc-item span { display: block; font-size: 12px; color: rgba(255,255,255,.52); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-arrow { flex: 0 0 auto; transition: transform .2s var(--ease), opacity .2s; }
.sc-item:hover .sc-arrow { transform: translateX(4px); opacity: .75 !important; }

@media (max-width: 480px) {
  .sc-fab { bottom: 20px; right: 18px; }
  .sc-panel { width: calc(100vw - 44px); }
}
