@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1F3A5F;
  --teal: #2F7F7F;
  --gold: #C9A24A;
  --white: #FFFFFF;
  --charcoal: #2B2B2B;
  --light-bg: #f7f9fb;
  --muted: #666;
  --border: rgba(31,58,95,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  background: rgba(31,58,95,0.97); backdrop-filter: blur(8px);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-book { background: var(--teal) !important; color: var(--white) !important; padding: 0.45rem 1.1rem; border-radius: 4px; }
.nav-book:hover { background: #267070 !important; color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.9rem; padding: 0.85rem 2rem; border-radius: 4px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #267070; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8912f; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #edf0f4; }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 2rem; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.03em; line-height: 1.05; color: var(--navy); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* CARDS */
.card { background: var(--white); border-radius: 10px; padding: 2rem 1.75rem; border: 1px solid var(--border); }
.card-teal { border-left: 3px solid var(--teal); }
.card-gold { border-left: 3px solid var(--gold); }
.card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }

/* HERO - HOMEPAGE */
.hero-home {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 7rem 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(47,127,127,0.1); pointer-events: none;
}
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.hero-home h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1; letter-spacing: 0.02em; color: var(--white); margin-bottom: 1.25rem; }
.hero-home h1 em { font-style: normal; color: var(--teal); display: block; }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 2rem; }
.hero-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.session-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 0.6rem; }
.session-row .sname { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.session-row .sprice { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
.hero-card .btn { display: block; text-align: center; margin-top: 1.5rem; }

/* HERO - INTERIOR PAGES */
.hero-interior {
  background: var(--navy); padding: 8rem 2rem 5rem;
  text-align: center;
}
.hero-interior h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.03em; color: var(--white); margin-bottom: 1rem; }
.hero-interior p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 2rem; line-height: 1.75; }

/* WHO IT HELPS - audience chips */
.audience-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.audience-chip { background: var(--light-bg); border: 1px solid var(--border); border-radius: 30px; padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 500; color: var(--navy); }

/* WHAT TO EXPECT - steps */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; color: var(--teal); opacity: 0.4; min-width: 2.5rem; }
.step h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; line-height: 1.65; color: var(--muted); }

/* MEET KEVIN */
.kevin-card { background: var(--navy); border-radius: 12px; padding: 3rem; color: var(--white); display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }
.kevin-avatar { width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.kevin-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.25rem; }
.kevin-title { font-size: 0.85rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.kevin-bio { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.kevin-creds { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cred-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 0.35rem 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: var(--light-bg); border-radius: 10px; padding: 2rem; border-left: 3px solid var(--teal); }
.testimonial-placeholder { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.testimonial-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; line-height: 1.65; color: var(--charcoal); margin-bottom: 1rem; }
.testimonial-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.3rem 0; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.3rem; font-size: 0.92rem; line-height: 1.75; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

/* CTA BANNER */
.cta-banner { background: var(--teal); padding: 5rem 2rem; text-align: center; }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.03em; color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-banner .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* SERVICE GRID */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.service-link-card { background: var(--light-bg); border-radius: 10px; padding: 1.75rem; text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; display: block; }
.service-link-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.service-link-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-link-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.service-link-card p { font-size: 0.82rem; line-height: 1.5; color: var(--muted); }

/* PRICING STRIP */
.pricing-strip { background: var(--navy); padding: 4rem 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; max-width: 900px; margin: 2rem auto 0; }
.price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.75rem 1.5rem; text-align: center; }
.price-card.highlight { border-color: var(--gold); background: rgba(201,162,74,0.08); }
.price-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 3px 8px; border-radius: 3px; display: inline-block; margin-bottom: 0.75rem; }
.price-dur { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; }
.price-amt { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: var(--white); line-height: 1; }
.price-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; }

/* FOOTER */
footer { background: var(--charcoal); padding: 3rem 2.5rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.4); }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* INTERIOR PAGE CONTENT */
.prose { max-width: 760px; }
.prose p { font-size: 0.97rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.25rem; }
.prose h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.03em; color: var(--navy); margin: 2rem 0 0.75rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul li { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--light-bg); border-left: 4px solid var(--teal); border-radius: 0 8px 8px 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.highlight-box p { font-size: 0.92rem; line-height: 1.7; color: var(--charcoal); margin: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .kevin-card { grid-template-columns: 1fr; text-align: center; }
  .kevin-creds { justify-content: center; }
}
@media (max-width: 768px) {
  .hero-home { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; }
  .hero-home .hero-card { display: none; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 2rem; }
  .nav-toggle { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Logo image */
.nav-logo-img { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img img { display: block; }
.footer-logo-img { margin-bottom: 0.5rem; }

/* Membership section responsive */
@media (max-width: 680px) {
  #memberships .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  #memberships .container > div[style*="display:flex;align-items:center;justify-content:space-between"] {
    flex-direction: column !important;
    text-align: center;
  }
}

/* Pricing section responsive - mobile stacking */
@media (max-width: 700px) {
  #memberships [style*="grid-template-columns:repeat(3,1fr)"],
  #memberships [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 500px) {
  #memberships [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
