/* ==========================================================================
   EVOLUTION PICKLEBALL — STYLES
   ==========================================================================
   Brand colors:
   - Black:     #0A0A0A  (background)
   - White:     #FFFFFF  (text)
   - Pine:      #3A6B5C  (primary accent / CTAs)
   - Brass:     #C9A961  (premium accent)
   - Card BG:   #141414  (card backgrounds)
   ========================================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- NAVIGATION (sticky on every page) ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark { color: #fff; font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.nav-logo-divider { color: #3A6B5C; font-size: 14px; }
.nav-logo-name { color: #fff; font-size: 11px; letter-spacing: 3px; font-weight: 500; }
.nav-links { display: flex; gap: 36px; flex: 1; justify-content: center; }
.nav-link {
  color: rgba(255,255,255,0.6);
  font-size: 11px; letter-spacing: 2.5px;
  text-decoration: none; font-weight: 500;
  padding: 4px 0;
}
.nav-link.active { color: #fff; border-bottom: 1px solid #3A6B5C; }
.nav-link:hover { color: #fff; }
.nav-cta {
  background: #3A6B5C; color: #fff;
  padding: 12px 22px; border-radius: 4px;
  font-size: 10px; letter-spacing: 2px; font-weight: 600;
  text-decoration: none; flex-shrink: 0;
}

/* ---------- HOMEPAGE HERO (logo animation + scroll fade) ---------- */
.hero {
  height: 100vh; width: 100%;
  background: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  position: sticky; top: 0; z-index: 1;
}
.hero-logo {
  transition: opacity 0.1s linear;
  width: 90%; max-width: 720px;
  display: flex; justify-content: center;
}
.hero-logo svg { width: 100%; max-height: 540px; }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 3px;
  z-index: 3; pointer-events: none;
  animation: scrollHintFade 0.6s ease-out 2.2s forwards;
  opacity: 0;
}
@keyframes scrollHintFade { to { opacity: 1; } }

/* Logo letter animations */
.letter-e, .letter-p, .letter-b { opacity: 0; }
.letter-e { transform: translateX(-60px); }
.letter-p { transform: translateY(40px); }
.letter-b { transform: translateX(60px); }
.hairline { transform: scaleX(0); transform-origin: left center; }
.wordmark { opacity: 0; transform: translateY(6px); }
@keyframes slideInE { to { opacity: 1; transform: translateX(0); } }
@keyframes slideInP { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInB { to { opacity: 1; transform: translateX(0); } }
@keyframes sweepRight { to { transform: scaleX(1); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.letter-e { animation: slideInE 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; }
.letter-p { animation: slideInP 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards; }
.letter-b { animation: slideInB 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards; }
.hairline { animation: sweepRight 0.7s ease-out 1.05s forwards; }
.wordmark { animation: fadeUp 0.5s ease-out 1.5s forwards; }

/* ---------- SECTIONS (general) ---------- */
.section {
  background: #0A0A0A;
  padding: 80px 48px;
  position: relative; z-index: 2;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.section-dark { background: #060606; }
.section-narrow { max-width: 720px; margin: 0 auto; }
.section-1 {
  min-height: 400px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
}
.eyebrow { color: #3A6B5C; font-size: 11px; letter-spacing: 4px; margin-bottom: 20px; }
.eyebrow-brass { color: #C9A961; }
.headline { color: #fff; font-size: 42px; font-weight: 500; line-height: 1.15; max-width: 560px; margin: 0 0 24px; }
.sub { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.6; max-width: 460px; margin: 0 0 36px; }
.section-title { text-align: center; color: #fff; font-size: 36px; font-weight: 500; line-height: 1.15; margin: 0 auto 48px; max-width: 540px; }
.section-eyebrow { text-align: center; color: #3A6B5C; font-size: 11px; letter-spacing: 4px; margin-bottom: 16px; }

/* PPR cert badge */
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 0.5px solid #C9A961;
  border-radius: 100px; color: #C9A961;
  font-size: 10px; letter-spacing: 3px; margin-bottom: 24px;
}
.cert-dot { width: 5px; height: 5px; background: #C9A961; border-radius: 50%; }

/* ---------- BUTTONS ---------- */
.btn {
  background: #3A6B5C; color: #FFFFFF;
  padding: 14px 28px; border-radius: 4px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block;
}
.btn-large {
  padding: 18px 40px; border-radius: 5px;
  font-size: 14px; font-weight: 600; letter-spacing: 2.5px;
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-white {
  background: #FFFFFF; color: #0A0A0A;
  padding: 16px 32px; border-radius: 5px;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.btn-brass {
  background: #C9A961; color: #0A0A0A;
  font-weight: 700;
}

/* ---------- TWO-CARD GRID (homepage services) ---------- */
.cards-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
}
.card {
  background: #141414; padding: 32px; border-radius: 6px;
  border: 0.5px solid rgba(255,255,255,0.08); position: relative;
}
.card-featured { border-top: 2px solid #C9A961; }
.card-badge {
  position: absolute; top: 16px; right: 16px;
  color: #C9A961; font-size: 9px; letter-spacing: 2px;
  border: 0.5px solid #C9A961; padding: 4px 8px; border-radius: 2px;
}
.card-label { color: #3A6B5C; font-size: 10px; letter-spacing: 3px; margin-bottom: 12px; }
.card-title { color: #fff; font-size: 22px; font-weight: 500; margin: 0 0 12px; }
.card-text { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; margin: 0; }

/* ---------- ABOUT SECTION SPLIT ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-eyebrow { color: #3A6B5C; font-size: 11px; letter-spacing: 4px; margin-bottom: 20px; }
.about-title { color: #fff; font-size: 36px; font-weight: 500; line-height: 1.15; margin: 0 0 24px; }
.about-text { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.about-text.muted { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 32px; }
.about-actions { display: flex; gap: 12px; align-items: center; }

/* ---------- PHOTO PLACEHOLDER (replace with <img> when ready) ---------- */
.photo-placeholder {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 6px; aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-icon { width: 56px; height: 56px; opacity: 0.15; }
.photo-corner { position: absolute; top: 14px; right: 14px; width: 18px; height: 18px; border-top: 1px solid #C9A961; border-right: 1px solid #C9A961; }
.photo-corner-bl { position: absolute; bottom: 14px; right: 14px; width: 18px; height: 18px; border-bottom: 1px solid #C9A961; border-right: 1px solid #C9A961; }
.photo-label { position: absolute; bottom: 16px; left: 16px; color: rgba(255,255,255,0.25); font-size: 9px; letter-spacing: 3px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.testimonial-card {
  background: #141414; padding: 32px 28px; border-radius: 6px;
  border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
}
.quote-mark { color: #3A6B5C; font-size: 36px; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.6; margin: 0 0 24px; flex-grow: 1; }
.testimonial-author { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 16px; }
.author-name { color: #fff; font-size: 13px; font-weight: 500; margin: 0 0 4px; }
.author-meta { color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 1px; }

/* ---------- SOCIAL CARDS ---------- */
.socials-header { text-align: center; margin-bottom: 48px; }
.socials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.social-card {
  background: #141414; border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 32px 24px; text-decoration: none;
  color: #fff; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.social-card:hover { border-color: rgba(255,255,255,0.2); background: #1a1a1a; }
.social-icon-wrap { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: #0A0A0A; }
.social-platform { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 2px; margin: 0 0 6px; }
.social-handle { color: #3A6B5C; font-size: 12px; margin: 0 0 14px; }
.social-desc { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.5; margin: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center; padding: 100px 48px;
  background: linear-gradient(180deg, #0A0A0A 0%, #0F1410 100%);
  border-top: 0.5px solid rgba(58, 107, 92, 0.2);
}
.final-cta h2 { color: #fff; font-size: 44px; font-weight: 500; line-height: 1.15; margin: 0 0 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.6; max-width: 440px; margin: 0 auto 36px; }

/* ---------- PAGE HEADERS (interior pages) ---------- */
.page-header { padding: 100px 48px 80px; text-align: center; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.page-eyebrow { color: #C9A961; font-size: 11px; letter-spacing: 4px; margin-bottom: 16px; }
.page-title { color: #fff; font-size: 52px; font-weight: 500; line-height: 1.1; margin: 0 0 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.page-sub { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.6; max-width: 540px; margin: 0 auto; }

/* ---------- COACHING PAGE — pricing cards ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.price-card {
  background: #141414; border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
}
.price-card-featured { border: 1px solid #C9A961; background: linear-gradient(180deg, #1A1612 0%, #141414 100%); }
.featured-tag {
  position: absolute; top: -10px; left: 28px;
  background: #C9A961; color: #0A0A0A;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 10px; border-radius: 2px;
}
.price-label { color: #3A6B5C; font-size: 10px; letter-spacing: 3px; margin: 0 0 12px; font-weight: 600; }
.price-label-brass { color: #C9A961; }
.price-name { color: #fff; font-size: 22px; font-weight: 500; margin: 0 0 6px; }
.price-duration { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0 0 24px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-big { color: #fff; font-size: 38px; font-weight: 500; line-height: 1; }
.price-unit { color: rgba(255,255,255,0.4); font-size: 13px; }
.price-perperson { color: rgba(255,255,255,0.55); font-size: 12px; margin: 0 0 24px; letter-spacing: 0.5px; }
.price-perperson-saving { color: #C9A961; font-weight: 600; }
.price-includes-title { color: rgba(255,255,255,0.85); font-size: 11px; letter-spacing: 2px; font-weight: 600; margin: 0 0 12px; }
.price-includes { list-style: none; padding: 0; margin: 0 0 28px; }
.price-includes li {
  color: rgba(255,255,255,0.65); font-size: 13px;
  padding: 6px 0 6px 22px; position: relative; line-height: 1.5;
}
.price-includes li::before { content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 1.5px; background: #3A6B5C; }
.price-cta-wrap { margin-top: auto; }
.price-cta {
  display: block; background: #3A6B5C; color: #fff;
  text-align: center; padding: 14px; border-radius: 4px;
  font-size: 12px; letter-spacing: 2px; font-weight: 600;
  text-decoration: none;
}
.price-cta-featured { background: #C9A961; color: #0A0A0A; font-weight: 700; }

/* ---------- PROCESS STEPS (Coaching page) ---------- */
.process-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.process-step { display: flex; flex-direction: column; gap: 14px; }
.process-number { color: #3A6B5C; font-size: 11px; letter-spacing: 3px; font-weight: 600; }
.process-line { height: 1px; background: #3A6B5C; width: 32px; }
.process-title { color: #fff; font-size: 17px; font-weight: 500; margin: 0; }
.process-text { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; margin: 0; }

/* ---------- ABOUT PAGE ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; }
.about-hero-photo {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-hero-text { padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-hero-title { color: #fff; font-size: 44px; font-weight: 500; line-height: 1.1; margin: 0 0 20px; }
.about-hero-sub { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; margin: 0; }
.block-eyebrow { color: #3A6B5C; font-size: 11px; letter-spacing: 4px; margin-bottom: 18px; }
.block-title { color: #fff; font-size: 30px; font-weight: 500; line-height: 1.2; margin: 0 0 24px; }
.block-text { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin: 0 0 18px; }
.block-text:last-child { margin-bottom: 0; }
.editable { border-left: 2px solid rgba(201,169,97,0.3); padding-left: 16px; }

/* Principles cards */
.principles-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 980px; margin: 40px auto 0; }
.principle { background: #141414; border: 0.5px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 32px 28px; }
.principle-num { color: #3A6B5C; font-size: 24px; font-weight: 500; margin: 0 0 16px; }
.principle-title { color: #fff; font-size: 18px; font-weight: 500; margin: 0 0 12px; }
.principle-text { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; margin: 0; }

/* Credentials */
.creds { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.cred { text-align: center; }
.cred-big { color: #C9A961; font-size: 40px; font-weight: 500; line-height: 1; margin: 0 0 8px; }
.cred-label { color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: 2px; margin: 0; }

/* Personal section */
.personal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 900px; margin: 0 auto; }
.personal-photo {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 6px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center; position: relative;
}

/* ---------- CONTACT PAGE ---------- */
.booking-section { padding: 40px 48px 80px; }
.booking-embed {
  max-width: 760px; margin: 0 auto;
  background: #141414; border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 56px 40px; text-align: center;
}
.booking-cal-icon { width: 48px; height: 48px; margin: 0 auto 20px; opacity: 0.6; }
.booking-title { color: #fff; font-size: 22px; font-weight: 500; margin: 0 0 10px; }
.booking-text { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; max-width: 420px; margin: 0 auto 28px; }
.booking-cta {
  background: #3A6B5C; color: #fff;
  padding: 16px 36px; border-radius: 5px;
  font-size: 13px; letter-spacing: 2px; font-weight: 600;
  text-decoration: none; display: inline-block;
}
.contact-strip { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; margin: 48px auto 0; max-width: 700px; }
.contact-item { text-align: center; }
.contact-label { color: #3A6B5C; font-size: 10px; letter-spacing: 3px; margin: 0 0 8px; font-weight: 600; }
.contact-value { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; text-decoration: none; }

.area-section { padding: 80px 48px; border-top: 0.5px solid rgba(255,255,255,0.06); background: #060606; text-align: center; }
.area-title { color: #fff; font-size: 30px; font-weight: 500; margin: 0 0 20px; }
.area-text { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; max-width: 540px; margin: 0 auto 28px; }
.area-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 600px; margin: 0 auto; }
.area-tag {
  border: 0.5px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 8px 18px; color: rgba(255,255,255,0.7);
  font-size: 12px; letter-spacing: 1px;
}

.faq-section { padding: 80px 48px; border-top: 0.5px solid rgba(255,255,255,0.06); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-title { color: #fff; font-size: 32px; font-weight: 500; margin: 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid rgba(255,255,255,0.1); padding: 24px 0; }
.faq-q { color: #fff; font-size: 16px; font-weight: 500; margin: 0 0 10px; display: flex; align-items: flex-start; gap: 12px; }
.faq-q-mark { color: #C9A961; font-size: 16px; flex-shrink: 0; }
.faq-a { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin: 0 0 0 28px; }

/* ---------- CONTENT PAGE ---------- */
.featured-video { max-width: 920px; margin: 0 auto; }
.video-frame {
  background: #141414; border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.play-btn { width: 64px; height: 64px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; }
.play-tri { width: 0; height: 0; border-left: 18px solid #0A0A0A; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.featured-tag-corner {
  position: absolute; top: 16px; left: 16px;
  background: #C9A961; color: #0A0A0A;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  padding: 5px 10px; border-radius: 3px;
}
.video-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.video-title { color: #fff; font-size: 18px; font-weight: 500; margin: 0; }
.video-duration { color: rgba(255,255,255,0.4); font-size: 12px; }

.categories { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab {
  border: 0.5px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 8px 20px; color: rgba(255,255,255,0.7);
  font-size: 12px; letter-spacing: 1px; cursor: pointer;
  background: transparent;
}
.cat-tab.active { background: #3A6B5C; border-color: #3A6B5C; color: #fff; }

.video-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.vid-card { background: #141414; border: 0.5px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; }
.vid-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.vid-thumb-play { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; }
.vid-thumb-tri { width: 0; height: 0; border-left: 11px solid #0A0A0A; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.vid-cat-badge { position: absolute; top: 10px; left: 10px; background: rgba(10,10,10,0.8); color: #3A6B5C; font-size: 8px; letter-spacing: 1.5px; padding: 3px 8px; border-radius: 2px; font-weight: 600; }
.vid-info { padding: 16px; }
.vid-card-title { color: #fff; font-size: 14px; font-weight: 500; margin: 0 0 6px; line-height: 1.4; }
.vid-card-meta { color: rgba(255,255,255,0.4); font-size: 11px; }

.clips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.clip {
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, #1A1A1A, #0F0F0F);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: flex-end; padding: 14px;
  position: relative; text-decoration: none;
}
.clip-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; }
.clip-tri { width: 0; height: 0; border-left: 9px solid #0A0A0A; border-top: 6px solid transparent; border-bottom: 6px solid transparent; margin-left: 2px; }
.clip-label { color: rgba(255,255,255,0.7); font-size: 10px; line-height: 1.4; position: relative; z-index: 1; }

/* Lead magnet */
.leadmagnet {
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(135deg, #1A1612 0%, #141414 100%);
  border: 1px solid #C9A961; border-radius: 12px;
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.lm-eyebrow { color: #C9A961; font-size: 10px; letter-spacing: 3px; font-weight: 700; margin: 0 0 14px; }
.lm-title { color: #fff; font-size: 26px; font-weight: 500; line-height: 1.2; margin: 0 0 14px; }
.lm-text { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin: 0; }
.lm-form { display: flex; flex-direction: column; gap: 12px; }
.lm-input { background: #0A0A0A; border: 0.5px solid rgba(255,255,255,0.2); border-radius: 5px; padding: 14px 16px; color: #fff; font-size: 14px; font-family: inherit; }
.lm-btn { background: #C9A961; color: #0A0A0A; text-align: center; padding: 14px; border-radius: 5px; font-size: 12px; letter-spacing: 2px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; font-family: inherit; }
.lm-disclaimer { color: rgba(255,255,255,0.35); font-size: 10px; text-align: center; margin: 4px 0 0; }

.social-bar { text-align: center; padding: 70px 48px; border-top: 0.5px solid rgba(255,255,255,0.06); }
.social-bar-title { color: #fff; font-size: 24px; font-weight: 500; margin: 0 0 24px; }
.social-icons { display: flex; justify-content: center; gap: 16px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0.5px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 10px 18px; color: rgba(255,255,255,0.8);
  font-size: 12px; letter-spacing: 1px; text-decoration: none;
}

/* ---------- ONLINE PAGE ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.service-card {
  background: #141414; border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 40px 36px;
  display: flex; flex-direction: column;
}
.service-icon { width: 44px; height: 44px; margin-bottom: 24px; }
.service-label { color: #3A6B5C; font-size: 10px; letter-spacing: 3px; font-weight: 600; margin: 0 0 10px; }
.service-name { color: #fff; font-size: 24px; font-weight: 500; margin: 0 0 14px; }
.service-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin: 0 0 24px; }
.service-features { list-style: none; padding: 0; margin: 0 0 28px; }
.service-features li { color: rgba(255,255,255,0.65); font-size: 13px; padding: 7px 0 7px 22px; position: relative; line-height: 1.5; }
.service-features li::before { content: ""; position: absolute; left: 0; top: 13px; width: 12px; height: 1.5px; background: #3A6B5C; }
.service-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.service-price { color: #fff; font-size: 36px; font-weight: 500; line-height: 1; }
.service-price-unit { color: rgba(255,255,255,0.4); font-size: 13px; }
.service-cta-wrap { margin-top: auto; }
.service-cta { display: block; background: #3A6B5C; color: #fff; text-align: center; padding: 15px; border-radius: 5px; font-size: 12px; letter-spacing: 2px; font-weight: 600; text-decoration: none; }

.howvideo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.hv-step { text-align: center; }
.hv-num { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #3A6B5C; color: #3A6B5C; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; margin: 0 auto 18px; }
.hv-title { color: #fff; font-size: 16px; font-weight: 500; margin: 0 0 10px; }
.hv-text { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; margin: 0; }

.comingsoon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.cs-card { background: #0E0E0E; border: 0.5px dashed rgba(201,169,97,0.4); border-radius: 10px; padding: 36px; }
.cs-badge { display: inline-block; background: rgba(201,169,97,0.15); color: #C9A961; font-size: 9px; letter-spacing: 2px; font-weight: 700; padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.cs-name { color: #fff; font-size: 22px; font-weight: 500; margin: 0 0 12px; }
.cs-desc { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.cs-form { display: flex; gap: 10px; }
.cs-input { flex: 1; background: #0A0A0A; border: 0.5px solid rgba(255,255,255,0.2); border-radius: 5px; padding: 12px 14px; color: #fff; font-size: 13px; font-family: inherit; }
.cs-btn { background: transparent; border: 1px solid #C9A961; color: #C9A961; padding: 12px 18px; border-radius: 5px; font-size: 11px; letter-spacing: 1px; font-weight: 600; text-decoration: none; white-space: nowrap; cursor: pointer; font-family: inherit; }

/* ---------- FOOTER ---------- */
.footer { background: #060606; padding: 64px 48px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-svg { width: 140px; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; margin: 0; max-width: 280px; }
.footer-cert { display: inline-flex; align-items: center; gap: 6px; color: #C9A961; font-size: 9px; letter-spacing: 3px; margin-top: 8px; }
.footer-cert-dot { width: 4px; height: 4px; background: #C9A961; border-radius: 50%; }
.footer-col-title { color: #FFFFFF; font-size: 11px; letter-spacing: 3px; font-weight: 600; margin: 0 0 18px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-contact-line { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.6; margin: 0; }
.footer-contact-line a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; border: 0.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 0.5px solid rgba(255,255,255,0.06); }
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal-link { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-decoration: none; }


/* ============== ADDED FOR PAGES (about, contact, content, online) ============== */

/* Generic section label and CTA */
.section-label { color: #3A6B5C; font-size: 11px; letter-spacing: 4px; font-weight: 600; margin-bottom: 24px; }
.cta-large { background: #3A6B5C; color: #fff; padding: 18px 40px; border-radius: 5px; font-size: 14px; font-weight: 600; letter-spacing: 2.5px; text-decoration: none; display: inline-block; }
.cta-large:hover { background: #4A7A6A; }

/* Footer column */
.footer-col { display: flex; flex-direction: column; }
.footer-logo-text { color: #fff; font-size: 13px; letter-spacing: 2px; font-weight: 700; }

/* About page extras */
.principles-section { background: #060606; }
.personal-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 900px; margin: 0 auto; }
.personal-photo { background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%); border: 0.5px solid rgba(255,255,255,0.08); border-radius: 6px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; }
.photo-icon-lg { width: 64px; height: 64px; opacity: 0.15; }

/* Contact page extras */
.area-eyebrow, .faq-eyebrow { color: #3A6B5C; font-size: 11px; letter-spacing: 4px; margin-bottom: 16px; font-weight: 600; }
.contact-value-link { color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-value-link:hover { color: #fff; }

/* Content page */
.clips-section { background: #060606; }
.leadmagnet-section { padding: 80px 48px; }

/* Online page */
.howvideo-section { background: #060606; }

/* Calendly embed placeholder (won't be used once you embed real one, but stops it from looking broken) */
.calendly-inline-widget { min-height: 480px; }
/* ---------- RESPONSIVE: Mobile (under 768px) ---------- */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; flex-wrap: wrap; }
  .nav-links { display: none; } /* Future: replace with mobile menu */
  .section { padding: 60px 20px; }
  .headline, .page-title, .about-hero-title { font-size: 32px !important; }
  .section-title, .final-cta h2 { font-size: 28px !important; }
  .cards-2, .pricing-grid, .principles-grid, .testimonials-grid,
  .socials-grid, .video-grid, .services-grid, .comingsoon-grid,
  .clips-grid, .process-grid, .about-split, .about-hero,
  .personal, .leadmagnet, .footer-top {
    grid-template-columns: 1fr !important;
  }
  .clips-grid { grid-template-columns: 1fr 1fr !important; }
  .video-grid, .principles-grid { grid-template-columns: 1fr !important; }
  .creds { gap: 32px; }
  .about-hero-text { padding: 60px 24px; }
}
