:root {
  --red: #ef1b22;
  --red-dark: #c81018;
  --ink: #111111;
  --ink-2: #222222;
  --paper: #ffffff;
  --soft: #f3f2ef;
  --line: #dad8d3;
  --muted: #66625d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #111;
  padding: .7rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: .5rem; top: .5rem; }

.sticky-shell {
  position: sticky;
  top: 0;
  z-index: 70;
}
.announcement-bar {
  background: var(--red);
  color: white;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .82rem;
  font-weight: 800;
}
.announcement-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding: 9px 20px;
}
.announcement-bar strong {
  background: white;
  color: var(--red-dark);
  padding: 5px 10px;
  border-radius: 3px;
  font-size: .72rem;
  white-space: nowrap;
}
.announcement-mobile { display: none; }
[id] { scroll-margin-top: 138px; }

.site-header {
  position: relative;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(16,16,16,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.brand { width: 185px; display: block; }
.brand img { width: 100%; filter: none; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { color: white; text-decoration: none; font-weight: 700; font-size: .91rem; letter-spacing: .01em; }
.site-nav a:hover { color: var(--red); }
.nav-cta { border: 1px solid var(--red); padding: 10px 15px; }
.menu-toggle { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  background: var(--ink);
  color: white;
}
.hero-copy {
  padding: 110px clamp(30px, 6vw, 90px) 90px max(30px, calc((100vw - var(--max)) / 2));
  align-self: center;
}
.hero-image {
  min-height: 690px;
  background-image: linear-gradient(90deg, #111 0%, rgba(17,17,17,.22) 20%, rgba(17,17,17,0) 45%), url('assets/hero.webp');
  background-size: cover;
  background-position: 38% center;
}
.eyebrow {
  margin: 0 0 15px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.hero h1, .section-heading h2, .feature-copy h2, .about-copy h2, .contact-copy h2 {
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0;
}
.hero h1 { font-size: clamp(3rem, 5vw, 5.35rem); max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-lede { max-width: 720px; color: #d2d2d2; font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin: 28px 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border: 1px solid #777; color: #fff; background: transparent; }
.button-dark { background: var(--ink); color: white; }
.cred-strip { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 42px; }
.cred-strip span { border: 1px solid #4a4a4a; color: #d4d4d4; font-size: .78rem; padding: 7px 9px; }

.section { padding: 105px 28px; }
.section-heading { max-width: var(--max); margin: 0 auto 54px; }
.section-heading.compact { max-width: 780px; text-align: center; }
.section-heading h2, .feature-copy h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 4vw, 4.35rem); }
.section-heading > p:last-child { max-width: 780px; color: var(--muted); font-size: 1.1rem; margin-top: 18px; }
.section-heading.compact > p:last-child { margin-left: auto; margin-right: auto; }
.service-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 250px; }
.service-number { font-size: .72rem; letter-spacing: .12em; color: var(--red); font-weight: 900; }
.service-card h3 { font-size: 1.35rem; margin: 42px 0 8px; }
.service-card p { margin: 0; color: var(--muted); }

.feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.feature-image { min-height: 620px; background-size: cover; background-position: center; }
.coaching-image { background-image: url('assets/coaching.webp'); background-position: 50% 40%; }
.proshop-image { background-image: url('assets/proshop.webp'); background-position: 50% 50%; }
.feature-copy { padding: clamp(60px, 8vw, 110px); display: flex; flex-direction: column; justify-content: center; background: var(--soft); }
.feature-copy p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.07rem; }
.text-link { display: inline-block; margin-top: 15px; color: var(--ink); font-weight: 900; text-decoration: none; }
.text-link:hover { color: var(--red); }
.feature-proshop { background: var(--ink); color: white; }
.feature-proshop .feature-copy { background: var(--ink); }
.dark-copy p:not(.eyebrow) { color: #bbb; }

.rates-section { background: #faf9f7; }
.rate-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rate-card { position: relative; background: white; border: 1px solid var(--line); padding: 32px; min-height: 260px; }
.featured-rate { border: 2px solid var(--red); }
.rate-badge { position: absolute; top: 0; right: 0; margin: 0; padding: 6px 9px; color: white; background: var(--red); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.rate-time { font-weight: 900; margin: 0 0 18px; }
.rate-price { font-size: 4.2rem; line-height: 1; font-weight: 950; letter-spacing: -.06em; margin: 0 0 24px; }
.rate-price span { font-size: 1.5rem; vertical-align: top; position: relative; top: 7px; margin-right: 3px; }
.rate-card > p:last-child { color: var(--muted); margin: 0; }
.session-info { max-width: var(--max); margin: 28px auto 0; border-top: 1px solid var(--line); padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; color: var(--muted); font-size: .93rem; }
.session-info p { margin: 0; }

.clinic-section { background: white; }
.clinic-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 34px; align-items: stretch; }
.clinic-poster { background: radial-gradient(circle at 72% 20%, #2c2c2c 0, #161616 36%, #0d0d0d 72%); color: white; overflow: hidden; min-height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.clinic-poster::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0 56%, rgba(239,27,34,.16) 56% 58%, transparent 58% 62%, rgba(239,27,34,.08) 62% 64%, transparent 64%); pointer-events: none; }
.clinic-poster-inner { position: relative; z-index: 1; padding: 58px 46px; width: 100%; }
.clinic-poster-kicker { margin: 0; color: var(--red); font-size: 2rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: .03em; }
.clinic-poster h3 { margin: 4px 0 8px; font-size: clamp(3.5rem, 6vw, 6rem); line-height: .84; letter-spacing: -.06em; text-transform: uppercase; }
.clinic-poster-location { display: inline-block; margin: 12px 0 20px; background: var(--red); padding: 7px 12px; font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.clinic-poster-tagline { margin: 0; color: #ddd; font-size: .95rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.clinic-poster-date { margin-top: 42px; border-top: 1px solid #555; border-bottom: 1px solid #555; padding: 18px 0; font-size: 1.55rem; font-weight: 900; color: white; }
.clinic-poster-coaches { margin: 20px 0 0; color: #aaa; font-size: .9rem; line-height: 1.5; }
.clinic-card { background: #f7f6f3; border: 1px solid var(--line); padding: 38px; }
.clinic-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.clinic-meta div { background: white; border: 1px solid var(--line); padding: 16px 18px; display: flex; flex-direction: column; gap: 5px; min-height: 105px; }
.clinic-meta span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.clinic-meta strong { font-size: 1.08rem; line-height: 1.25; }
.clinic-meta em { font-style: normal; color: var(--muted); font-size: .9rem; }
.clinic-copy-block { margin-top: 28px; }
.clinic-copy-block h3 { margin: 0 0 12px; font-size: 1.25rem; }
.clinic-list, .coach-list { margin: 0; padding-left: 20px; color: var(--muted); }
.clinic-list li + li, .coach-list li + li { margin-top: 8px; }
.coach-list strong { display: block; color: var(--ink); }
.coach-list span { display: block; }
.clinic-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.clinic-note { margin: 16px 0 0; color: var(--muted); font-size: .9rem; }

.about-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 690px; }
.about-photo { background-image: linear-gradient(0deg, rgba(0,0,0,.10), rgba(0,0,0,.10)), url('assets/about.webp'); background-size: cover; background-position: 53% center; min-height: 690px; }
.about-copy { padding: clamp(65px, 8vw, 115px); align-self: center; }
.about-copy > p:not(.eyebrow) { color: var(--muted); max-width: 720px; }
.about-intro { font-size: 1.18rem; color: var(--ink) !important; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 28px; }
.stat-row div { display: flex; flex-direction: column; }
.stat-row strong { font-size: 2rem; letter-spacing: -.04em; }
.stat-row span { color: var(--muted); font-size: .82rem; }

.latest-section { background: var(--soft); }
.facebook-wrap { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 500px 1fr; gap: 55px; align-items: center; }
.facebook-wrap iframe { width: 100%; max-width: 500px; background: white; }
.latest-copy h3 { font-size: 2rem; line-height: 1.12; letter-spacing: -.03em; margin: 0 0 18px; }
.latest-copy p { color: var(--muted); }
.latest-copy .button { margin-top: 18px; }
.latest-copy .text-link { display: block; margin-top: 18px; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; max-width: var(--max); margin: 0 auto; padding: 110px 28px 130px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; max-width: 540px; }
.direct-contact { display: grid; gap: 11px; margin: 34px 0; }
.direct-contact a { text-decoration: none; font-weight: 800; }
.direct-contact span { display: inline-block; width: 62px; color: var(--red); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
address { font-style: normal; color: var(--muted); }
.lesson-form { background: #f7f6f3; padding: 38px; }
.lesson-form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 800; margin-bottom: 19px; }
.lesson-form input, .lesson-form textarea { width: 100%; border: 1px solid #c9c7c0; background: white; padding: 13px 14px; font: inherit; color: var(--ink); border-radius: 0; }
.lesson-form input:focus, .lesson-form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; }
.form-note { color: var(--muted); font-size: .78rem; text-align: center; margin: 10px 0 0; }
.hidden { display: none !important; }

.site-footer { background: #0d0d0d; color: #aaa; padding: 65px max(28px, calc((100vw - var(--max)) / 2)); text-align: center; }
.site-footer img { width: 190px; margin: 0 auto 16px; }
.site-footer p { margin: 10px 0; }
.footer-links { display: flex; justify-content: center; gap: 22px; margin: 20px 0; }
.footer-links a { color: white; text-decoration: none; font-weight: 800; }
.copyright { font-size: .78rem; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .announcement-bar { min-height: 38px; font-size: .75rem; }
  .announcement-bar a { padding: 7px 14px; gap: 10px; }
  .announcement-desktop { display: none; }
  .announcement-mobile { display: inline; }
  [id] { scroll-margin-top: 124px; }
  .site-header { height: 72px; padding: 0 20px; }
  .brand { width: 150px; }
  .menu-toggle { display: block; background: transparent; color: white; border: 1px solid #555; padding: 8px 10px; font-weight: 800; }
  .site-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #111; padding: 12px 20px 22px; border-bottom: 1px solid #333; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .nav-cta { border: 0; color: var(--red) !important; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { order: 2; padding: 62px 26px 72px; }
  .hero-image { order: 1; min-height: 56vw; background-image: linear-gradient(0deg, #111 0%, rgba(17,17,17,0) 38%), url('assets/hero.webp'); background-position: 38% 45%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .about-section { grid-template-columns: 1fr; }
  .feature-image, .about-photo { min-height: 70vw; }
  .feature-proshop .feature-copy { order: 2; }
  .feature-proshop .feature-image { order: 1; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .session-info { grid-template-columns: 1fr; gap: 10px; }
  .facebook-wrap { grid-template-columns: 1fr; max-width: 650px; }
  .clinic-grid { grid-template-columns: 1fr; max-width: 760px; }
  .clinic-poster { min-height: 460px; max-height: none; }
  .clinic-poster-inner { padding: 50px 38px; }
  .clinic-card { padding: 28px; }
  .facebook-wrap iframe { margin: 0 auto; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 58px; }
  .section { padding: 78px 20px; }
  .hero h1 { font-size: 3rem; }
  .hero-image { min-height: 82vw; }
  .hero-copy { padding: 48px 20px 70px; }
  .cred-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; padding: 28px; }
  .feature-copy, .about-copy { padding: 68px 22px; }
  .rate-grid { grid-template-columns: 1fr; }
  .announcement-bar strong { background: transparent; color: white; padding: 0; font-size: .7rem; }
  .clinic-meta { grid-template-columns: 1fr; }
  .about-photo, .feature-image { min-height: 95vw; }
  .stat-row { grid-template-columns: 1fr; }
  .contact-section { padding: 80px 20px 100px; gap: 45px; }
  .lesson-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1.45fr; box-shadow: 0 -3px 16px rgba(0,0,0,.18); }
  .mobile-cta a { text-align: center; text-decoration: none; font-weight: 900; padding: 17px 8px; background: #1d1d1d; color: white; font-size: .85rem; }
  .mobile-cta a:last-child { background: var(--red); }
}
