/* ============================================
   FERRANTE HOOPS — STYLES
   ============================================
   Sections (search to jump):
   1. ROOT / VARIABLES
   2. RESET & BASE
   3. PROMO BANNER
   4. NAV
   5. HERO
   6. SHARED SECTION STYLES
   7. ABOUT
   8. TESTIMONIALS
   9. SERVICES / PRICING
   10. SERVICE AREA
   11. FORM
   12. FOOTER
   13. ANIMATIONS
   14. RESPONSIVE / MOBILE
   ============================================ */


/* ---------- 1. ROOT / VARIABLES ---------- */
:root {
  --ink: #0A0A0A;
  --ash: #161616;
  --smoke: #1F1F1F;
  --sky: #A8D5E5;
  --sky-deep: #7BB8CC;
  --paper: #FAFAFA;
  --line: rgba(255, 255, 255, 0.08);
}


/* ---------- 2. RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}


/* ---------- 3. PROMO BANNER ---------- */
.promo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sky);
  color: var(--ink);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promo-banner span { display: inline-block; }
.promo-banner .dot { margin: 0 10px; opacity: 0.5; }


/* ---------- 4. NAV ---------- */
nav {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sky);
  background: transparent;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-phone:hover {
  background: var(--sky);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav-phone svg {
  display: block;
}

.nav-cta {
  background: var(--sky);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: white;
  transform: translateY(-1px);
}


/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168, 213, 229, 0.08), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(168, 213, 229, 0.05), transparent 50%),
    var(--ink);
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.66 0 0 0 0 0.83 0 0 0 0 0.9 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Decorative court-line circles */
.court-line {
  position: absolute;
  border: 1px solid var(--sky);
  opacity: 0.15;
  pointer-events: none;
}
.court-line-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -300px;
  right: -150px;
}
.court-line-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.hero-eyebrow {
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sky);
  vertical-align: middle;
  margin-right: 16px;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 140px);
  max-width: 1100px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}
.hero h1 .sky { color: var(--sky); }

.hero-sub {
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(250, 250, 250, 0.75);
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
  background: var(--sky);
  color: var(--ink);
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 213, 229, 0.25);
}
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.phone-link {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--sky);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.phone-link:hover { color: var(--sky); }


/* ---------- 6. SHARED SECTION STYLES ---------- */
section {
  padding: 120px 5vw;
  position: relative;
}

.eyebrow {
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sky);
  vertical-align: middle;
  margin-right: 16px;
}

.section-title {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 1000px;
  margin-bottom: 40px;
}


/* ---------- 7. ABOUT ---------- */
.about {
  background: var(--ash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--smoke), var(--ink));
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.about-photo:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 213, 229, 0.15);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo:hover img {
  transform: scale(1.02);
}

.about-photo-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--ink);
  padding: 20px 24px;
  border-left: 3px solid var(--sky);
  z-index: 2;
}
.about-photo-stat .big {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--sky);
  line-height: 1;
}
.about-photo-stat .small {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin-top: 6px;
}

.about-text p {
  color: rgba(250, 250, 250, 0.75);
  margin-bottom: 20px;
  font-size: 16px;
}
.about-text strong {
  color: var(--paper);
  font-weight: 700;
}

/* ---------- 8. TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--sky);
  color: var(--ink);
}
.testimonials-section .eyebrow { color: var(--ink); }
.testimonials-section .eyebrow::before { background: var(--ink); }
.testimonials-section .section-title { color: var(--ink); }
.testimonials-body {
  font-size: 17px;
  max-width: 720px;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 40px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-card .quote-mark {
  font-family: 'Anton', sans-serif;
  font-size: 96px;
  color: var(--sky);
  line-height: 0.7;
  margin-bottom: 8px;
  opacity: 0.8;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.88);
  margin: 0 0 28px;
  font-weight: 400;
  flex: 1;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-card .t-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}
.testimonial-card .t-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
}


/* ---------- 9. SERVICES / PRICING ---------- */
.services { background: var(--ink); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.price-card {
  background: var(--ash);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
}
.price-card.featured { border-color: var(--sky); }
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--sky);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 2px;
}

.price-title {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--paper);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-tag .num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: var(--sky);
  line-height: 1;
}
.price-tag .per {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.first-session {
  font-size: 13px;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.group-tiers {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--ink);
  border-radius: 2px;
  font-size: 13px;
}
.group-tiers div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: rgba(250, 250, 250, 0.7);
}
.group-tiers div span:last-child {
  color: var(--sky);
  font-weight: 700;
}

.price-desc {
  font-size: 14px;
  color: rgba(250, 250, 250, 0.65);
  line-height: 1.55;
}


/* ---------- 10. SERVICE AREA ---------- */
.area {
  background: var(--ash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.area-map {
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-frame {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.5) contrast(1.05) brightness(0.95);
  pointer-events: none;
}

/* Service-radius overlay */
.map-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px dashed var(--sky);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 213, 229, 0.18) 0%, rgba(168, 213, 229, 0.08) 60%, rgba(168, 213, 229, 0) 100%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(168, 213, 229, 0.08), 0 0 40px rgba(168, 213, 229, 0.15) inset;
}
.map-radius::before {
  content: '';
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(168, 213, 229, 0.35);
  border-radius: 50%;
}
.map-radius-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 0 4px rgba(168, 213, 229, 0.25), 0 0 0 8px rgba(168, 213, 229, 0.12);
}

.map-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-left: 3px solid var(--sky);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
}
.map-badge .map-pin {
  color: var(--sky);
  font-size: 10px;
}

.area-text p {
  color: rgba(250, 250, 250, 0.75);
  margin-bottom: 24px;
  font-size: 16px;
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 24px 0;
}
.town {
  font-size: 14px;
  color: var(--paper);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.town::before {
  content: '●';
  color: var(--sky);
  margin-right: 10px;
  font-size: 8px;
  vertical-align: middle;
}


/* ---------- 11. FORM ---------- */
.form-section {
  background: var(--ink);
  text-align: center;
}
.form-section .eyebrow,
.form-section .section-title { text-align: left; }

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 8px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  background: var(--ash);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sky);
}
textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-row { margin-top: 16px; }
.submit-btn {
  width: 100%;
  background: var(--sky);
  color: var(--ink);
  border: none;
  padding: 20px;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.form-alt {
  text-align: center;
  margin-top: 32px;
  color: rgba(250, 250, 250, 0.6);
  font-size: 14px;
}
.form-alt a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 700;
}

.success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: var(--ash);
  border: 1px solid var(--sky);
  border-radius: 4px;
}
.success.show { display: block; }
.success h3 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--sky);
  margin-bottom: 12px;
  text-transform: uppercase;
}


/* ---------- 12. FOOTER ---------- */
footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 48px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
  margin-bottom: 14px;
  font-weight: 700;
}
.foot-col a, .foot-col p {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}
.foot-col a:hover { color: var(--sky); }

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}


/* ---------- 13. ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---------- 14. RESPONSIVE / MOBILE ---------- */
@media (max-width: 900px) {
  .promo-banner {
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
  .promo-banner .promo-prefix,
  .promo-banner .promo-prefix-dot {
    display: none;
  }
  .promo-banner .dot {
    margin: 0 8px;
  }

  nav {
    padding: 16px 5vw;
    top: 30px;
  }
  .nav-cta { display: none; }

  .about, .area {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 5vw;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  section { padding: 80px 5vw; }

  .hero {
    padding: 120px 5vw 60px;
    min-height: auto;
  }

  .form-row { grid-template-columns: 1fr; }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
