/* AimX Precision Club */

:root {
  --navy: #1a2a5c;
  --navy-dark: #12203f;
  --navy-deep: #0e1a33;
  --red: #d32027;
  --red-dark: #a91920;
  --red-bright: #ff5a60;
  --gold: #f6c445;
  --green: #4c9e45;
  --orange: #e87722;
  --purple: #7a3f98;
  --ink: #222733;
  --muted: #4a5164;
  --paper: #ffffff;
  --paper-soft: #f4f6fa;
  --heading: "Oswald", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3 {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  color: var(--navy);
}

h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; letter-spacing: 0.02em; }

.center { text-align: center; }
.red { color: var(--red); }
.navy { color: var(--navy); }
.blue { color: var(--navy); }

.kicker {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 15px;
  margin: 0 0 14px;
}
.kicker-red { color: var(--red); }
.kicker-navy { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(211, 32, 39, 0.4); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 14px 32px rgba(211, 32, 39, 0.5); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.55); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e7ebf2;
  box-shadow: 0 1px 12px rgba(18, 32, 63, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo { height: 44px; width: auto; border-radius: 8px; }

.nav-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-title em { color: var(--red); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  text-decoration: none;
  color: var(--navy);
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-arrows.jpg") center 38% / cover no-repeat;
  opacity: 0.5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(18, 32, 63, 0.94) 0%, rgba(26, 42, 92, 0.86) 52%, rgba(211, 32, 39, 0.5) 135%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 92px 0 104px;
}

.hero-logo-card {
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  margin-bottom: 34px;
}
.hero-logo-card img { width: 150px; height: auto; border-radius: 10px; }

.hero-eyebrow {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 22px;
}

.hero-headline {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  margin: 0 0 24px;
}
.hero-headline span { display: block; }
.hero-headline .line-red { color: var(--red-bright); }

.hero-intro {
  max-width: 600px;
  margin: 0 auto 38px;
  font-size: 20px;
  line-height: 1.55;
  color: #dbe2f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.lessons { padding: 96px 0; }

.lessons-intro {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 460px;
}

.split-photo img {
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(18, 32, 63, 0.26);
}

/* Target-style bullet list */
.target-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.target-list li {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 600;
}
.target-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0 26%, #fff 27% 54%, var(--red) 55%);
  box-shadow: 0 0 0 2px var(--red);
}

.lesson-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.lesson-price {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 16px;
}
.lesson-price strong {
  color: var(--red);
  font-weight: 700;
  font-size: 22px;
}

/* Perfect For */
.perfect-for {
  background: var(--paper-soft);
  padding: 80px 0;
}

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

.card {
  background: #fff;
  border-radius: 14px;
  border-top: 5px solid;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(18, 32, 63, 0.1);
}
.card-green { border-color: var(--green); }
.card-orange { border-color: var(--orange); }
.card-purple { border-color: var(--purple); }

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.card-icon svg { width: 100%; height: 100%; }
.card-green .card-icon { color: var(--green); }
.card-orange .card-icon { color: var(--orange); }
.card-purple .card-icon { color: var(--purple); }

.card h3 { margin: 0 0 10px; }
.card p { margin: 0; color: var(--muted); font-size: 17px; }

.cards-tagline {
  font-size: clamp(27px, 3.5vw, 38px);
  margin: 40px 0 0;
}

/* Coach */
.coach { padding: 96px 0; }

.coach .split { gap: clamp(48px, 7vw, 104px); }

.coach-photos {
  position: relative;
  margin: 0 0 34px;
}
.coach-portrait {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(18, 32, 63, 0.24);
}
.coach-roster {
  position: absolute;
  bottom: -34px;
  right: -40px;
  width: 40%;
  border-radius: 12px;
  border: 5px solid #fff;
  box-shadow: 0 16px 34px rgba(18, 32, 63, 0.3);
}

.coach-blurb { font-size: 19px; color: var(--muted); max-width: 480px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
}
.check-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.check-list strong { color: var(--navy); }

/* Gallery */
.gallery {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  padding: 96px 0;
}
.gallery::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(246, 196, 69, 0.12);
  pointer-events: none;
}
.gallery .container { position: relative; }
.gallery .kicker-navy { color: var(--gold); }
.gallery h2 { color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* FAQ */
.faq {
  background: var(--paper-soft);
  padding: 96px 0;
}

.faq-list {
  max-width: 820px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(18, 32, 63, 0.07);
  padding: 4px 26px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary h3 {
  margin: 0;
  font-size: 18px;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  color: var(--red);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}
.faq-list details a { color: var(--red); font-weight: 600; }

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 100px 0;
}
.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), inset 0 0 0 90px rgba(211, 32, 39, 0.08);
  pointer-events: none;
}
.contact .container { position: relative; }
.contact h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); }

.contact-banner {
  font-family: var(--heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(16px, 2.4vw, 22px);
  color: #fff;
  margin: 0 0 18px;
}
.contact-banner .red { color: var(--red-bright); }
.contact-banner .navy { color: #fff; }

.contact-sub { font-size: 20px; color: #c7d0e4; margin: 0 0 28px; }

.contact-phone { margin: 0 0 30px; }
.contact-phone a {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 54px);
  letter-spacing: 0.01em;
  color: var(--gold);
  text-decoration: none;
}
.contact-phone a:hover { color: #fff; }

.contact-area {
  margin: 36px auto 0;
  max-width: 560px;
  font-size: 16px;
  color: #9fabc8;
}
.contact-area strong { color: #dbe2f0; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #c6cede;
  padding: 44px 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 14px;
  border-radius: 10px;
}
.footer-name {
  font-family: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  color: #fff;
  margin: 0 0 6px;
}
.footer-copy { font-size: 14px; margin: 0; color: #8593b0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  padding: 0.4em 0.6em;
  opacity: 0.85;
}
.lightbox button:hover { opacity: 1; }
.lightbox-close { top: 0.5rem; right: 0.8rem; font-size: 2.6rem; }
.lightbox-prev { left: 0.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.4rem; top: 50%; transform: translateY(-50%); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-photo { order: -1; }
  .split-photo img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }
  .coach-photos { margin-bottom: 0; }
  .coach-portrait { max-height: 320px; object-fit: cover; }
  .coach-roster {
    position: static;
    width: 100%;
    max-width: 340px;
    margin: 16px auto 0;
    border: none;
  }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(18, 32, 63, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid #f0f3f8; }
  .nav-links a { display: block; padding: 15px 24px; }
  .nav-cta { border-radius: 0; }

  .hero-content { padding: 64px 0 72px; }
  .hero-logo-card img { width: 120px; }
  .lessons, .perfect-for, .coach, .gallery, .faq, .contact { padding: 64px 0; }
}
