:root {
  --ink: #17211c;
  --muted: #59645d;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #17643c;
  --green-dark: #0d472a;
  --yellow: #d8ee35;
  --red: #d94b37;
  --line: #dce1da;
  --shadow: 0 16px 36px rgba(14, 39, 25, 0.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 760px; font-family: Georgia, serif; font-size: clamp(2.6rem, 7vw, 5.8rem); font-weight: 500; }
h2 { font-family: Georgia, serif; font-size: clamp(2rem, 4.2vw, 3.55rem); font-weight: 500; }
h3 { font-size: 1.12rem; }
p { margin: 0; }
.lead { max-width: 700px; color: var(--muted); font-size: 1.12rem; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%;
  font-size: .75rem;
}
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a { color: #354139; font-size: .92rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 20px; border: 2px solid var(--ink); border-radius: 4px;
  background: var(--yellow); color: var(--ink); font-weight: 850; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s, box-shadow .15s;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button.dark { color: white; background: var(--green); border-color: var(--green-dark); box-shadow: 4px 4px 0 var(--green-dark); }
.button.ghost { color: white; background: transparent; border-color: rgba(255,255,255,.75); box-shadow: none; }
.phone-icon { font-size: 1.05em; }
.menu-button {
  display: none; position: relative; margin-left: auto; width: 44px; height: 44px;
  border: 1px solid var(--line); background: white;
}
.menu-button::before, .menu-button::after {
  content: ""; position: absolute; left: 12px; width: 18px; height: 2px;
  background: var(--ink); transition: transform .15s, top .15s;
}
.menu-button::before { top: 16px; box-shadow: 0 5px 0 var(--ink); }
.menu-button::after { top: 26px; }
.menu-button.is-open::before { top: 21px; transform: rotate(45deg); box-shadow: none; }
.menu-button.is-open::after { top: 21px; transform: rotate(-45deg); }
.hero {
  min-height: min(720px, calc(100svh - 72px));
  display: flex; align-items: center;
  color: white; background:
    linear-gradient(90deg, rgba(8,24,15,.9) 0%, rgba(8,24,15,.62) 43%, rgba(8,24,15,.05) 74%),
    url("/assets/vancouver-pickleball-lesson.webp") center/cover no-repeat;
}
.hero-content { padding: 72px 0 88px; }
.hero .eyebrow { color: var(--yellow); }
.hero p { max-width: 600px; margin-top: 22px; color: rgba(255,255,255,.9); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; color: rgba(255,255,255,.86); font-size: .9rem; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--yellow); }
.proof-strip { background: var(--ink); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--yellow); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.proof-item span { color: #c9d0cb; font-size: .85rem; }
.section { padding: 92px 0; }
.section.soft { background: var(--paper); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.lesson-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.lesson {
  position: relative; min-height: 310px; padding: 32px 26px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start;
}
.lesson:last-child { border-right: 0; }
.lesson-number { margin-bottom: auto; color: var(--red); font: 600 2.5rem Georgia, serif; }
.lesson h3 { margin: 24px 0 10px; font-size: 1.35rem; }
.lesson p { color: var(--muted); }
.text-link { margin-top: 20px; color: var(--green); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 75px; align-items: start; }
.feature-list { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-size: .8rem; }
.feature p { margin-top: 4px; color: var(--muted); font-size: .95rem; }
.quote {
  padding: 38px; background: var(--green); color: white; border-left: 8px solid var(--yellow); border-radius: 4px;
  box-shadow: var(--shadow);
}
.quote blockquote { margin: 0; font: 500 clamp(1.45rem, 3vw, 2.25rem)/1.25 Georgia, serif; }
.quote footer { margin-top: 24px; color: #d5e7db; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide { min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; background: white; }
.guide .tag { width: fit-content; padding: 4px 8px; color: var(--green-dark); background: #e3f0e7; font-size: .75rem; font-weight: 800; }
.guide h3 { margin: 25px 0 12px; font-size: 1.3rem; }
.guide p { color: var(--muted); font-size: .94rem; }
.guide .text-link { margin-top: auto; padding-top: 20px; }
.faq { max-width: 820px; margin: 36px auto 0; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 23px 42px 23px 0; font-weight: 800; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--green); font-size: 1.7rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { padding: 0 42px 23px 0; color: var(--muted); }
.cta-band { padding: 64px 0; background: var(--yellow); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 680px; font-size: clamp(2rem, 4vw, 3.4rem); }
.site-footer { padding: 50px 0 100px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.footer-grid p, .footer-grid a { color: #bdc7c0; font-size: .9rem; }
.footer-grid a { display: block; margin-top: 10px; text-decoration: none; }
.footer-title { margin-bottom: 15px; color: white; font-weight: 850; }
.legal { margin-top: 38px; padding-top: 24px; border-top: 1px solid #39443d; color: #8e9a92; font-size: .78rem; }
.page-hero { padding: 88px 0 72px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 880px; color: var(--ink); font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero .lead { margin-top: 22px; }
.breadcrumbs { margin-bottom: 26px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--green); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; align-items: start; }
.article h2 { margin: 52px 0 16px; font-size: 2rem; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 30px 0 10px; }
.article p, .article li { color: #465149; }
.article p + p { margin-top: 16px; }
.article ul, .article ol { padding-left: 22px; }
.article li + li { margin-top: 8px; }
.rule-figure { margin: 26px 0 38px; }
.rule-figure img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 6px; background: var(--paper);
}
.rule-figure figcaption {
  padding: 12px 0 0; color: var(--muted); font-size: .84rem;
  border-bottom: 1px solid var(--line); padding-bottom: 15px;
}
.rule-callout {
  margin: 22px 0 30px; padding: 20px 22px;
  background: #edf5ef; border-left: 4px solid var(--green);
}
.rule-callout strong { display: block; margin-bottom: 5px; color: var(--green-dark); }
.rule-callout p { font-size: .93rem; }
.side-cta { position: sticky; top: 100px; padding: 28px; color: white; background: var(--green); border-radius: 6px; }
.side-cta h2 { font: 500 1.8rem/1.15 Georgia, serif; }
.side-cta p { margin: 14px 0 22px; color: #d4e6da; font-size: .92rem; }
.side-cta .button { width: 100%; }
.step-list { margin-top: 28px; counter-reset: steps; }
.step { position: relative; padding: 0 0 28px 62px; border-left: 1px solid var(--line); margin-left: 20px; }
.step:last-child { border-left-color: transparent; }
.step::before {
  counter-increment: steps; content: counter(steps); position: absolute; left: -21px; top: -5px;
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 900;
}
.mobile-call { display: none; }

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 64px; }
  .nav .button { display: none; }
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 64px; padding: 18px 20px 24px;
    align-items: stretch; flex-direction: column; background: white; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 690px; align-items: end; background-position: 61% center; }
  .hero::before { content: ""; position: absolute; inset: 64px 0 0; background: linear-gradient(0deg, rgba(8,24,15,.96) 0%, rgba(8,24,15,.55) 60%, rgba(8,24,15,.12)); }
  .hero-content { position: relative; z-index: 1; padding: 170px 0 44px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.2rem); }
  .proof-grid, .lesson-grid, .guide-grid, .split, .section-head, .content-layout, .footer-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 68px 0; }
  .section-head { gap: 20px; }
  .lesson { min-height: 250px; padding-inline: 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .lesson-number { margin-bottom: 40px; }
  .split { gap: 44px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .content-layout { gap: 44px; }
  .side-cta { position: static; }
  .footer-grid { gap: 34px; }
  .mobile-call {
    position: fixed; z-index: 100; left: 12px; right: 12px; bottom: 12px;
    min-height: 54px; display: flex; box-shadow: 0 8px 24px rgba(0,0,0,.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
