/* ===================================================================
   Gregory Vetter — Youth Performance Coaching
   Dark, cinematic, editorial. EB Garamond + Poppins.
   Palette pulled from gregoryvetter.com
   =================================================================== */

:root {
  --black: #0b0b0b;
  --ink-900: #0e0e0e;
  --ink-850: #161616;
  --ink-800: #1c1c1c;
  --ink-700: #272727;
  --ink-600: #3e3e3e;
  --line: rgba(246, 246, 246, 0.12);
  --line-soft: rgba(246, 246, 246, 0.07);
  --cream: #f6f6f6;
  --cream-dim: #cfccc7;
  --muted: #9a9893;
  --muted-dark: #6f6d69;
  --accent: #1ed892;       /* exact brand green, sampled from gregoryvetter.com */
  --accent-hover: #44e8a8;

  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff;
  padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ===== Type primitives ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 4px;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.2px; }
em { font-style: italic; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-primary { background: var(--accent); color: #07201e; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-line:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 82px;
}
.brand { text-decoration: none; color: var(--cream); display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 1rem;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--accent); }
.nav-cta {
  color: var(--cream) !important;
  border: 1px solid var(--line);
  padding: 11px 22px;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #07201e !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--cream); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(90% 120% at 78% 0%, #1a1a1a 0%, var(--ink-900) 55%, var(--black) 100%);
  padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 26px;
  color: var(--cream);
}
.hero-copy h1 em { color: var(--accent); }
.lead {
  font-size: 1.12rem;
  color: var(--cream-dim);
  max-width: 50ch;
  margin: 0 0 34px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted);
}
.hero-meta li { position: relative; }
.hero-meta li + li::before {
  content: ""; position: absolute; left: -15px; top: 50%;
  width: 3px; height: 3px; background: var(--accent); border-radius: 50%;
  transform: translateY(-50%);
}
.hero-figure { margin: 0; position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.02);
  border: 1px solid var(--line);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,11,0.55) 100%);
  pointer-events: none;
}
.hero-figure figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 1;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--cream-dim);
}

/* ===== Creed band ===== */
.creed {
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(52px, 7vw, 88px) 0;
  text-align: center;
}
.creed-line {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--cream);
}
.creed-line span { display: inline-block; }
.creed-line span:nth-child(2) { color: var(--accent); }
.creed-sub {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--muted); margin: 0;
}

/* ===== Sections ===== */
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-band { background: var(--ink-850); }
.section-head { max-width: 760px; margin: 0 0 64px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--cream);
}
.section-head h2 em { color: var(--accent); }
.section-sub { font-size: 1.08rem; color: var(--muted); margin: 0; font-weight: 300; }

/* ===== Pillars ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar {
  padding: 44px 36px 48px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}
.pillar:nth-child(3n) { border-right: none; }
.pillar:hover { background: var(--ink-850); }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--accent);
  letter-spacing: 1px;
}
.pillar h3 { font-size: 1.7rem; margin: 16px 0 14px; color: var(--cream); }
.pillar > p { color: var(--muted); margin: 0 0 24px; font-size: 0.98rem; }
.rules { list-style: none; padding: 0; margin: 0; }
.rules li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.rules li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}

/* ===== Steps ===== */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 38px 40px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.step:nth-child(2n) { border-right: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem; line-height: 1; color: var(--ink-600);
  flex: none; min-width: 56px;
  transition: color 0.3s ease;
}
.step:hover .step-num { color: var(--accent); }
.step h3 { font-size: 1.4rem; margin: 0 0 8px; color: var(--cream); }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ===== Ages ===== */
.ages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.age {
  padding: 40px 34px 44px;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
}
.age:hover { transform: translateY(-6px); background: var(--ink-800); }
.age-range {
  font-family: var(--font-sans);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent); margin: 0 0 18px;
}
.age h3 { font-size: 1.6rem; margin: 0 0 12px; color: var(--cream); }
.age p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ===== Coach ===== */
.section-coach { background: var(--black); }
.coach-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 78px); align-items: center; }
.coach-figure { margin: 0; position: relative; }
.coach-figure::before {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--line); transform: translate(16px, 16px);
  pointer-events: none;
}
.coach-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  position: relative;
  filter: contrast(1.03);
}
.coach-copy h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 0 0 20px; color: var(--cream); }
.coach-lead { font-size: 1.18rem; color: var(--cream-dim); margin: 0 0 18px; font-weight: 300; }
.coach-copy p { color: var(--muted); }
.coach-copy em { color: var(--cream-dim); }
.coach-points { list-style: none; padding: 0; margin: 26px 0 34px; }
.coach-points li {
  position: relative; padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--cream-dim); font-size: 0.95rem;
}
.coach-points li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ===== Quotes ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.quote {
  margin: 0; padding: 38px 32px;
  background: var(--ink-850); border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 3.4rem; line-height: 1;
  color: var(--accent);
  display: block; margin-bottom: 10px;
}
.quote blockquote {
  margin: 0 0 22px; font-family: var(--font-serif);
  font-size: 1.28rem; line-height: 1.45; color: var(--cream);
  font-style: italic;
}
.quote figcaption {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted);
}
.disclaimer { color: var(--muted-dark); font-size: 0.82rem; margin: 0; max-width: 72ch; }

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.4rem; color: var(--cream);
  padding: 26px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-sans); font-weight: 300;
  font-size: 1.7rem; color: var(--accent);
  transition: transform 0.25s ease; flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 28px; color: var(--muted); max-width: 64ch; }

/* ===== Contact ===== */
.section-contact { background: var(--ink-850); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 64px); align-items: center; }
.cta-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 18px; color: var(--cream); }
.cta-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 46ch; font-weight: 300; }
.cta-points { list-style: none; padding: 0; margin: 26px 0; }
.cta-points li {
  position: relative; padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--cream-dim); font-size: 0.95rem;
}
.cta-points li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.cta-direct { color: var(--muted); font-size: 0.92rem; }
.cta-direct a { color: var(--accent); text-decoration: none; }
.cta-direct a:hover { text-decoration: underline; }

.cta-form {
  background: var(--ink-900);
  border: 1px solid var(--line);
  padding: 38px 34px;
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans); font-weight: 300; font-size: 0.98rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--ink-850);
  color: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dark); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--ink-800);
}
.field select { color: var(--cream); }
.field select option { background: var(--ink-800); }
.field textarea { resize: vertical; }
.form-note { margin: 16px 0 0; font-size: 0.86rem; text-align: center; min-height: 1.2em; letter-spacing: 0.5px; }
.form-note.ok { color: #7ec98f; }
.form-note.err { color: var(--accent); }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: var(--muted); padding: 64px 0 32px; border-top: 1px solid var(--line-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand-name { font-size: 1.05rem; color: var(--cream); display: block; }
.footer-brand p { margin: 10px 0 0; font-size: 0.9rem; }
.creed-mini {
  font-family: var(--font-serif) !important; font-style: italic;
  color: var(--accent) !important; font-size: 1rem !important; margin-top: 14px !important;
}
.footer-nav { display: grid; gap: 12px; align-content: start; }
.footer-nav a {
  text-decoration: none; color: var(--muted);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact a { color: var(--cream-dim); text-decoration: none; font-size: 0.92rem; }
.footer-contact a:hover { color: var(--accent); }
.footer-fine { font-size: 0.82rem; margin-top: 10px; color: var(--muted-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; font-size: 0.76rem; color: var(--muted-dark);
}
.footer-bottom p { margin: 0; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .main-nav {
    position: fixed; inset: 82px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-900); border-bottom: 1px solid var(--line);
    padding: 8px 28px 26px;
    transform: translateY(-130%); transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-top: 14px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-figure { max-width: 460px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(n) { border-right: none; }
  .ages { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; gap: 40px; }
  .coach-figure { order: -1; max-width: 440px; }
  .quotes { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .creed-line span { display: block; }
}
