:root {
  --green: #2a3d34;
  --dark-green: #101714;
  --yellow: #d3dfd8;
  --red: #8c9a92;
  --white: #ffffff;
  --text: #121816;
  --bg: #edf1ee;
  --muted: #485750;
  --card-border: rgba(255, 255, 255, 0.48);
  --accent: #b8ff3b;
  --accent-ink: #0f120c;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 0% -20%, #f7faf8 0%, transparent 28%),
    radial-gradient(circle at 100% 0%, #f0f4f2 0%, transparent 28%),
    var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(rgba(14, 22, 18, 0.1) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  opacity: 0.35;
}

main {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(14, 24, 19, 0.52);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  position: relative;
  width: 82px;
  height: 82px;
  transform: translateY(-4px);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  display: block;
}

.brand-text h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #dde7e1;
}

.subtitle.tr {
  color: #c9d6cf;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.main-nav a:hover {
  color: #f3fff5;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  min-height: 78vh;
  background-image:
    linear-gradient(110deg, rgba(12, 19, 16, 0.86), rgba(46, 57, 51, 0.52)),
    url('assets/65a27075-d026-43c0-9ebe-2828dae40968.JPG');
  background-size: cover;
  background-position: center;
  display: grid;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, #f5fbf7);
}

.hero-overlay {
  width: 100%;
  background-image:
    radial-gradient(circle at 20% 82%, rgba(242, 194, 48, 0.45), transparent 40%),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 40%);
}

.hero-content {
  min-height: 78vh;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  color: var(--white);
  max-width: 700px;
}

.hero-kicker {
  margin: 0;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.hero h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: #e5f3ea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cta-btn {
  display: inline-block;
  width: fit-content;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  background: #ccff68;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(184, 255, 59, 0.35);
}

.cta-btn.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.highlights-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(90px, auto);
  gap: 1rem;
}

.highlight-card {
  border-radius: 22px;
  padding: 1.2rem 1.25rem;
  color: #16211c;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 18px 40px rgba(10, 24, 17, 0.14);
}

.highlight-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.highlight-card:nth-child(2) {
  grid-column: span 5;
}

.highlight-card:nth-child(3) {
  grid-column: span 5;
}

.highlight-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.55px;
  color: #222f29;
}

.highlight-copy {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.section {
  padding: 6.8rem 0;
  position: relative;
}

.section h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.grid-two {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-copy,
.location-copy {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.7rem;
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 16px 36px rgba(10, 24, 17, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-copy:hover,
.location-copy:hover,
.schedule-card:hover,
.coach-card:hover,
.contact-form:hover,
.alt-photo:hover,
.pitch-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(10, 24, 17, 0.12);
}

.about-copy p,
.location-copy p {
  color: var(--muted);
}

.feature-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: #2a5e44;
  font-weight: 600;
}

.feature-list li {
  margin: 0.34rem 0;
}

.alt-photo,
.pitch-photo {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  min-height: 220px;
  padding: 1rem;
  display: grid;
  align-content: start;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 16px 36px rgba(10, 24, 17, 0.1);
}

.photo-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
}

.photo-card span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.schedule-section {
  background: linear-gradient(to bottom, rgba(237, 243, 239, 0.7) 0%, rgba(247, 250, 248, 0.78) 100%);
}

.schedule-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.schedule-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 1.35rem;
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 16px 36px rgba(10, 24, 17, 0.1);
}

.schedule-card h4 {
  margin: 0 0 0.5rem;
  color: #a71818;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-size: 0.95rem;
}

.big {
  margin: 0.3rem 0;
  font-weight: 700;
  color: #203347;
}

.badge {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

.kit-preview {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-top: 0.85rem;
  border-radius: 12px;
  border: 1px solid #d5e9dc;
}

.session-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.map-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(10, 24, 17, 0.1);
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.coach-contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.2rem;
}

.coach-card,
.contact-form {
  background: rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  border: 1px solid var(--card-border);
  padding: 1.4rem;
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 16px 36px rgba(10, 24, 17, 0.1);
}

.profile-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.coach-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.coach-card a {
  color: #126b41;
  text-decoration: none;
  font-weight: 700;
}

.contact-quick-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.quick-btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.quick-btn.whatsapp {
  background: #25d366;
  color: #09110d;
}

.quick-btn.email {
  background: var(--accent);
  color: var(--accent-ink);
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddfd4;
  border-radius: 11px;
  padding: 0.72rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(25, 135, 84, 0.15);
  border-color: #3a9d6a;
}

.method-picker {
  margin: 0;
  padding: 0;
  border: 0;
}

.method-picker legend {
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.method-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.method-options input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 20, 0.15);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.method-options input[type='radio']:checked + label {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: rgba(0, 0, 0, 0.12);
}

.contact-form button {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form button:hover {
  background: #ccff68;
  filter: none;
}

.sponsor-section {
  background: linear-gradient(to bottom, rgba(242, 246, 244, 0.76), rgba(234, 239, 236, 0.8));
}

.gallery-section {
  background: linear-gradient(to bottom, rgba(247, 250, 248, 0.82), rgba(236, 242, 238, 0.9));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 35px rgba(10, 24, 17, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  min-height: 460px;
}

.sponsor-block {
  margin-top: 0.8rem;
  width: fit-content;
  background: transparent;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  padding: 0;
  display: inline-block;
  box-shadow: none;
}

.sponsor-logo {
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
}

.site-footer {
  background: linear-gradient(120deg, #121816, #0c110f);
  color: var(--white);
  padding: 2rem 0 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.site-footer a {
  color: #ffe59e;
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-weight: 700;
}

.copyright {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 940px) {
  .hero,
  .hero-content {
    min-height: 70vh;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .highlights-grid,
  .grid-two,
  .schedule-grid,
  .contact-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .highlights-strip {
    margin-top: 1.4rem;
  }

  .highlight-card:nth-child(1),
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .gallery-item.tall img {
    min-height: 220px;
  }

  .socials {
    justify-content: flex-start;
  }
}
