@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400&display=swap');

:root {
  --bg: #f2efe8;
  --bg-warm: #ebe6db;
  --ink: #14110d;
  --black: #000000;
  --clay: #b5532a;
  --clay-deep: #8f3f1f;
  --sand: #c9a66b;
  --sky: #6b7f8f;
  --stone: #7c7468;
  --line: #ddd6c8;
  --card: #f8f5ee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Archivo', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0.9rem clamp(1.2rem, 4vw, 3.5rem); background: rgba(242, 239, 232, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.logo-img { height: 52px; width: auto; display: block; }
@media (max-width: 820px) { .logo-img { height: 42px; } }
.nav-links { display: flex; gap: clamp(0.9rem, 2vw, 2rem); align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; transition: color 0.2s; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--clay); }
.nav-links a.cta { background: var(--ink); color: var(--bg); padding: 0.5rem 1.1rem; border-radius: 4px; transition: background 0.2s, transform 0.2s; }
.nav-links a.cta:hover { background: var(--clay); transform: translateY(-2px); color: var(--bg); }
.lang { display: flex; gap: 0.3rem; align-items: center; font-size: 0.8rem; }
.lang a { padding: 0.2rem 0.45rem; border-radius: 3px; opacity: 0.5; text-transform: uppercase; font-weight: 700; }
.lang a.active { opacity: 1; background: var(--ink); color: var(--bg); }
.burger { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--ink); }

@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 60px 0 auto 0; flex-direction: column; background: var(--bg); padding: 1.4rem; gap: 1.1rem; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.35s ease; }
  .nav-links.open { transform: translateY(0); }
  .burger { display: block; }
}

.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; padding: clamp(2rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3.5rem); background: linear-gradient(180deg, rgba(20,17,13,0.15) 0%, rgba(20,17,13,0.7) 100%), url('assets/hero.jpg') center/cover; color: var(--bg); }
.hero-inner { max-width: 820px; position: relative; z-index: 2; }
.eyebrow { display: inline-block; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; background: var(--clay); color: var(--bg); padding: 0.4rem 0.85rem; border-radius: 3px; margin-bottom: 1.3rem; }
.hero h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero p { font-size: clamp(1rem, 1.8vw, 1.25rem); max-width: 540px; opacity: 0.95; margin-bottom: 2rem; }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.85rem 1.7rem; border-radius: 4px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; transition: transform 0.2s, background 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--clay); color: var(--bg); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-3px); }
.btn-ghost { border: 2px solid var(--bg); color: var(--bg); }
.btn-ghost:hover { background: var(--bg); color: var(--ink); transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(26px); animation: rise 0.9s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1{animation-delay:.1s} .reveal.d2{animation-delay:.25s} .reveal.d3{animation-delay:.4s} .reveal.d4{animation-delay:.55s}
@keyframes rise { to { opacity:1; transform:translateY(0); } }

section { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3.5rem); }
section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .eyebrow { background: var(--ink); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.3rem); color: var(--ink); margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; color: var(--stone); }

.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.benefit { background: var(--card); border-radius: 8px; overflow: hidden; border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.8rem 2.2rem; }
.benefit:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -22px rgba(20,17,13,0.4); }
.benefit-num { width: 48px; height: 48px; background: var(--clay); color: var(--bg); border-radius: 50%; display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 1.3rem; }
.benefit-body h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.6rem; }
.benefit-body p { color: var(--stone); font-size: 0.96rem; }

.band { background: var(--ink); color: var(--bg); text-align: center; }
.band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.band p { max-width: 560px; margin: 0 auto 2rem; opacity: 0.85; }

.clubs { display: grid; gap: 3.5rem; }
.club-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.club-row.flip .club-text { order: 2; }
@media (max-width: 820px) { .club-row, .club-row.flip { grid-template-columns: 1fr; } .club-row.flip .club-text { order: 0; } }
.club-photo { width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: contain; border-radius: 50%; margin: 0 auto; display: block; }
.club-divider { width: 100%; height: clamp(160px, 28vw, 300px); background-color: var(--sand); background-size: cover; background-position: center; background-attachment: fixed; }
@media (max-width: 820px) { .club-divider { background-attachment: scroll; } }
.club-text { text-align: center; }
.club-text .age { display:inline-block; background: var(--clay); color: var(--bg); padding: 0.3rem 0.85rem; border-radius: 3px; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; text-transform: uppercase; }
.club-text h3 { font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--ink); margin-bottom: 0.9rem; }
.club-text p { font-size: 0.98rem; color: var(--stone); margin-bottom: 0.8rem; }

/* PRIVATE COACHING */
.coaching-banner { width: 100%; height: clamp(260px, 38vw, 460px); background-size: cover; background-position: center 68%; }
.coaching-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; margin-bottom: 3rem; }
.coaching-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 2rem 1.8rem; text-align: center; }
.coaching-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.7rem; }
.coaching-card p { color: var(--stone); font-size: 0.97rem; }
.coaching-cta { background: var(--bg-warm); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.8rem,4vw,2.6rem); text-align: center; }.coaching-cta h3 { font-size: clamp(1.6rem,3.5vw,2.2rem); color: var(--ink); margin-bottom: 0.7rem; }
.coaching-cta p { color: var(--stone); max-width: 540px; margin: 0 auto 1.6rem; }

/* MISSION */
.mission { background: var(--bg-warm); color: var(--ink); text-align: center; }
.mission p { font-size: clamp(1.15rem, 2.4vw, 1.6rem); max-width: 820px; margin: 0 auto; font-family: 'Fraunces', serif; font-weight: 400; line-height: 1.5; color: var(--ink); }
.mission .eyebrow { background: var(--clay); color: var(--bg); margin-bottom: 1.6rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { width: 100%; max-width: 520px; border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; }
.prose p { margin-bottom: 1.1rem; color: var(--ink); font-size: 1.05rem; text-align: center; }

.form-wrap { max-width: 680px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.6rem, 5vw, 3rem); box-shadow: 0 20px 50px -32px rgba(20,17,13,0.4); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.9rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 1rem; background: var(--bg); color: var(--ink); transition: border 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }
.form-note { font-size: 0.88rem; color: var(--stone); margin-top: 1rem; text-align: center; }
.success { background: var(--clay); color: var(--bg); padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.3rem; font-weight: 600; display: none; }

footer { background: var(--ink); color: var(--bg); padding: 3rem clamp(1.2rem, 4vw, 3.5rem) 2rem; }
.foot-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.8rem; margin-bottom: 2rem; }
.foot-logo { height: 46px; }
.foot-groups { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 5rem; align-items: flex-start; }
.foot-group { text-align: center; }
.foot-group .links-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.3rem; }
.foot-group h4 { font-family: 'Archivo'; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--sand); }
.foot-group a { opacity: 0.82; font-size: 0.93rem; font-weight: 600; }
.foot-group a:hover { opacity: 1; color: var(--sand); }
.foot-base { border-top: 1px solid rgba(242,239,232,0.07); padding-top: 1.5rem; font-size: 0.83rem; opacity: 0.55; text-align: center; }

/* MODAL / INTAKE FORM */
.open-modal-wrap { text-align: center; }
.modal-overlay { position: fixed; inset: 0; background: rgba(20,17,13,0.66); backdrop-filter: blur(4px); z-index: 1000; display: none; align-items: flex-start; justify-content: center; padding: 2.5rem 1rem; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 14px; max-width: 720px; width: 100%; padding: clamp(1.5rem, 4vw, 2.8rem); position: relative; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6); animation: pop 0.35s cubic-bezier(.2,.8,.2,1); }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 1rem; right: 1.1rem; background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--stone); transition: color 0.2s; }
.modal-close:hover { color: var(--clay); }
.modal h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--ink); margin-bottom: 0.3rem; padding-right: 2rem; }
.modal .sub { color: var(--stone); margin-bottom: 1.8rem; font-size: 0.98rem; }
.fieldset-label { font-family: 'Archivo'; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin: 1.8rem 0 0.9rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--line); }
.fieldset-label:first-of-type { margin-top: 0; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.8rem; }
.checkbox-row input { width: auto; margin-top: 0.35rem; flex-shrink: 0; }
.checkbox-row label { font-weight: 400; font-size: 0.95rem; }
.modal .form-note { margin-top: 1.2rem; }
.spin { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(242,239,232,0.4); border-top-color: var(--bg); border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: -3px; margin-right: 0.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
body.modal-locked { overflow: hidden; }

/* ===== MOBILE REFINEMENTS ===== */
@media (max-width: 560px) {
  section { padding: 3rem 1.2rem; }
  .hero { min-height: 80vh; padding: 2.5rem 1.2rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero p { font-size: 1rem; }
  .btn-row { width: 100%; }
  .btn { width: 100%; text-align: center; }
  .section-head { margin-bottom: 2.2rem; }
  .section-head h2 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .mission p { font-size: 1.15rem; }
  .about-grid { gap: 1.8rem; }
  .about-photo { max-width: 100%; margin: 0 auto; }
  .club-photo { max-width: 300px; }
  .foot-grid { gap: 1.6rem; }
  footer .col { max-width: 100%; }
  .modal { padding: 1.4rem 1.1rem; }
  .modal-overlay { padding: 1.2rem 0.6rem; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .logo-img { height: 36px; }
}

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; max-width: 900px; margin: 0 auto 3rem; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 2.2rem 2rem; text-align: left; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--clay); border-width: 2px; }
.price-badge { position: absolute; top: -12px; left: 2rem; background: var(--clay); color: var(--bg); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; }
.price-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; }
.price-amount { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--clay); line-height: 1; margin: 0.6rem 0 0.3rem; }
.price-amount span { font-family: 'Archivo'; font-size: 0.95rem; color: var(--stone); font-weight: 600; }
.price-card ul { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.price-card li { color: var(--ink); font-size: 0.96rem; padding: 0.5rem 0 0.5rem 1.6rem; position: relative; border-top: 1px solid var(--line); }
.price-card li:first-child { border-top: none; }
.price-card li::before { content: '→'; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.price-note { font-size: 0.9rem; color: var(--stone); margin-top: 0.9rem; }

/* CREDENTIALS */
.credentials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 900px; margin: 0 auto 3rem; }
.cred { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 0.9rem; flex: 1 1 240px; max-width: 360px; }
.cred-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--clay); color: var(--bg); border-radius: 50%; display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 1.1rem; }
.cred span { font-size: 0.92rem; color: var(--ink); font-weight: 600; line-height: 1.35; }
.cred-badge-slot { font-size: 0.78rem; color: var(--stone); font-style: italic; }
