/*
Theme Name: North Star Driving Academy
Theme URI: https://northstardrivingacademy.com
Author: North Star Driving Academy
Description: Custom production theme for North Star Driving Academy — converted from the Claude Design Home template, hand-coded for performance, accessibility, and SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: north-star-driving-academy
*/

/* ===========================================================
   Design Tokens
   =========================================================== */
:root {
  /* Type */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Cabin', sans-serif;

  /* Color */
  --color-orange: #FE6E02;
  --color-orange-hover: #E15F00;
  --color-orange-050: #FFF1E6;
  --color-charcoal: #1E1E1E;
  --color-text-strong: #1E1E1E;
  --color-text-body: #444;
  --color-text-muted: #696969;
  --color-text-subtle: #8E8E8E;
  --color-surface-page: #FFFFFF;
  --color-surface-subtle: #EDEDED;
  --color-border-subtle: #EDEDED;
  --color-border-strong: #B4B4B4;
  --color-success: #1E8E4F;

  /* Radius */
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 40px;
}

/* ===========================================================
   Reset & base
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-surface-page);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-strong);
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }

.text-accent { color: var(--color-orange); }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-orange);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-charcoal);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 1000;
  font-family: var(--font-heading);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Focus visibility (brand-tinted, additive — no visual change unless keyboard-focused) */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background .14s ease;
}
.btn-sm { font-size: 15px; padding: 12px 22px; }

.btn-primary {
  color: #fff;
  background: var(--color-orange);
  box-shadow: 0 8px 20px rgba(254, 110, 2, .30);
}
.btn-primary:hover { background: var(--color-orange-hover); }

.btn-secondary {
  color: var(--color-charcoal);
  background: #fff;
  border: 1.5px solid var(--color-border-strong);
}
.btn-secondary:hover { background: var(--color-surface-subtle); }

.btn-outline-light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
  padding: 15px 24px;
}

.btn-outline-orange {
  color: var(--color-orange);
  background: #fff;
  border: 1.5px solid var(--color-orange);
  transition: background .14s ease, color .14s ease;
}
.btn-outline-orange:hover { background: var(--color-orange); color: #fff; }

.btn-full { width: 100%; justify-content: center; }

/* ===========================================================
   Site header
   =========================================================== */
.site-header {
  background: var(--color-surface-page);
  border-bottom: 1px solid var(--color-border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-text-strong);
  white-space: nowrap;
}
.logo span { font-size: 11px; font-weight: 600; color: var(--color-text-muted); letter-spacing: .04em; }

.site-nav .nav-list { display: flex; gap: 32px; }
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-body);
  padding: 8px 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"], .site-nav .current-menu-item > a { color: var(--color-orange); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-cta { font-size: 15px; padding: 12px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-charcoal);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; overflow: hidden; }

.hero-bg {
  position: absolute;
  top: -25%;
  right: -6%;
  width: 48%;
  height: 150%;
  background: linear-gradient(135deg, var(--color-orange-050), transparent 70%);
  transform: skewX(-12deg);
}

.hero-inner {
  position: relative;
  padding: 76px var(--container-pad) 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-title { font-size: 60px; line-height: 1; margin-bottom: 20px; }
.hero-lead { font-size: 19px; color: var(--color-text-muted); max-width: 440px; margin-bottom: 30px; line-height: 1.55; }

.hero-actions { display: flex; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }

.hero-trust-line { font-size: 14px; color: var(--color-text-muted); margin-bottom: 28px; }

.hero-stats { display: flex; }
.stat { padding-right: 32px; }
.stat + .stat { padding-left: 32px; border-left: 1px solid var(--color-border-subtle); }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 32px; }
.stat-label { font-size: 13px; color: var(--color-text-muted); }

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(30, 30, 30, .14);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================================
   Mosaic band
   =========================================================== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  background: #fff;
}

.mosaic-tile { overflow: hidden; transition: transform .3s ease; }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic:hover .mosaic-tile { transform: scale(1.02); }

.mosaic-link {
  background: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.mosaic-link-icon {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaic-link-icon .icon { color: #fff; width: 20px; height: 20px; }
.mosaic-link-text { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: #fff; line-height: 1.25; }

/* ===========================================================
   Cards (shared by features & news)
   =========================================================== */
.card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(30, 30, 30, .1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(30, 30, 30, .16); }

/* ===========================================================
   Section heads
   =========================================================== */
.section-head { margin-bottom: 44px; }
.section-head-center { text-align: center; }
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.section-title { font-size: 40px; }
.section-subtitle { font-size: 17px; color: var(--color-text-muted); margin-top: 12px; }
.section-head-center .section-subtitle { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===========================================================
   Features
   =========================================================== */
.features { background: var(--color-surface-subtle); }
.features .container { padding: 76px var(--container-pad); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features-grid-4 { grid-template-columns: repeat(2, 1fr); }

.feature-card { padding: 30px; }
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--color-orange-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon .icon { width: 24px; height: 24px; color: var(--color-orange); }
.feature-emoji { font-size: 24px; line-height: 1; }
.feature-title { font-size: 21px; margin-bottom: 8px; }
.feature-body { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* ===========================================================
   News teaser
   =========================================================== */
.news { background: #fff; }
.news .container { padding: 76px var(--container-pad); }
.news .section-title { font-size: 38px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.news-card { display: flex; flex-direction: column; overflow: hidden; }
.news-card-image { height: 190px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: 12px; color: var(--color-text-subtle); margin-bottom: 8px; }
.news-title { font-size: 19px; line-height: 1.25; margin-bottom: 16px; flex: 1; }
.news-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-orange); }

/* ===========================================================
   CTA band
   =========================================================== */
.cta { position: relative; overflow: hidden; background: var(--color-charcoal); }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(254, 110, 2, .20), transparent 55%); }
.cta-inner {
  position: relative;
  padding: 72px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-content { max-width: 620px; }
.cta-title { font-size: 40px; line-height: 1.08; color: #fff; }
.cta-text { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, .75); margin-top: 14px; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-actions-wrap { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-contact-lines { display: flex; flex-direction: column; gap: 8px; }
.cta-contact-lines p { font-size: 14px; color: rgba(255, 255, 255, .75); }
.cta-contact-lines a { color: #fff; }
.cta-contact-lines a:hover { color: var(--color-orange); }

/* ===========================================================
   Trust strip
   =========================================================== */
.trust-strip { background: var(--color-surface-subtle); }
.trust-strip .container { padding: 60px var(--container-pad); }
.trust-strip .section-head { margin-bottom: 36px; }
.trust-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.trust-item-icon { font-size: 30px; line-height: 1; }
.trust-item-label { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-text-strong); }

/* ===========================================================
   Programs
   =========================================================== */
.programs { background: #fff; }
.programs .container { padding: 76px var(--container-pad); }
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.program-card { padding: 36px; display: flex; flex-direction: column; align-items: flex-start; }
.program-card .feature-icon { width: 56px; height: 56px; }
.program-card .feature-emoji { font-size: 28px; }
.program-card .feature-title { font-size: 22px; }
.program-card .feature-body { margin-bottom: 22px; }
.program-card-btn { margin-top: auto; }

/* ===========================================================
   Site footer
   =========================================================== */
.site-footer { background: var(--color-charcoal); color: rgba(255, 255, 255, .7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px var(--container-pad) 40px;
}
.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-logo span { color: rgba(255, 255, 255, .55); }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 320px; }

.footer-heading { font-size: 15px; color: #fff; margin-bottom: 18px; }
.footer-nav ul, .footer-contact p { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-contact a { font-size: 14px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-orange); }
.footer-contact p { font-size: 14px; margin-bottom: 12px; }
.footer-contact p.footer-location { flex-direction: row; align-items: center; gap: 8px; }
.footer-location .icon { color: var(--color-orange); flex-shrink: 0; }
.footer-service-area { color: rgba(255, 255, 255, .55); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px var(--container-pad);
  font-size: 13px;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--color-orange); }
.footer-closing-tagline { margin-top: 16px; color: rgba(255, 255, 255, .45); text-align: center; }

/* ===========================================================
   Generic page fallback (Services / Contact use this until
   their own sections are converted from your content)
   =========================================================== */
.basic-page-wrap { padding: 60px var(--container-pad); }
.basic-page-title { margin-bottom: 24px; }
.entry-content { line-height: 1.7; }
.entry-content > * + * { margin-top: 1em; }

/* ===========================================================
   About page
   =========================================================== */
.page-hero { background: var(--color-surface-subtle); }
.page-hero .container { padding: 76px var(--container-pad) 56px; text-align: center; }
.page-hero-title { font-size: 48px; }
.page-hero-subtitle { font-size: 19px; color: var(--color-text-muted); max-width: 680px; margin: 18px auto 0; line-height: 1.6; }

.about-image-slot .container { padding: 0 var(--container-pad) 76px; }
.image-placeholder {
  aspect-ratio: 21 / 8;
  background: var(--color-surface-subtle);
  border: 2px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder-label { font-family: var(--font-heading); font-weight: 700; color: var(--color-text-muted); }

.about-story { background: #fff; }
.about-story-inner { padding: 0 var(--container-pad) 76px; max-width: 760px; margin: 0 auto; text-align: center; }
.about-story-inner .section-title { margin-bottom: 8px; }
.about-story-inner p { color: var(--color-text-muted); font-size: 17px; line-height: 1.75; margin-top: 18px; text-align: left; }

.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.values-grid > .feature-card { flex: 0 1 calc((100% - 48px) / 3); }

.promise-band { background: var(--color-orange); }
.promise-inner { padding: 64px var(--container-pad); text-align: center; max-width: 800px; margin: 0 auto; }
.promise-title { color: #fff; font-size: 40px; margin-bottom: 20px; }
.promise-quote { color: #fff; font-size: 23px; font-style: italic; line-height: 1.55; font-family: var(--font-heading); font-weight: 600; margin: 0; }

.comparison { background: #fff; }
.comparison .container { padding: 76px var(--container-pad); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.comparison-col { padding: 32px; border-radius: var(--radius-lg); }
.comparison-col-them { background: var(--color-surface-subtle); border: 1px solid var(--color-border-subtle); }
.comparison-col-us { background: var(--color-orange-050); border: 2px solid var(--color-orange); box-shadow: 0 8px 20px rgba(254, 110, 2, .15); }
.comparison-heading { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: 16px; }
.comparison-col-us .comparison-heading { color: var(--color-orange); }
.comparison-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(30, 30, 30, .08); font-size: 16px; color: var(--color-text-body); }
.comparison-list li:last-child { border-bottom: none; }
.comparison-list li::before { content: '\2013'; color: var(--color-text-subtle); font-weight: 700; flex-shrink: 0; }
.comparison-col-us .comparison-list li { font-weight: 600; color: var(--color-text-strong); }
.comparison-col-us .comparison-list li::before { content: '\2713'; color: var(--color-orange); }

.closing-statement { background: var(--color-charcoal); }
.closing-statement .container { padding: 48px var(--container-pad); text-align: center; }
.closing-statement-text { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin: 0; }

/* ===========================================================
   Book Online page
   =========================================================== */
.book-online-widget { background: #fff; }
.book-online-widget .container { padding: 0 var(--container-pad) 76px; max-width: 720px; }
.book-online-widget-frame { min-height: 80px; }
.book-online-phone-note { text-align: center; font-size: 14px; color: var(--color-text-muted); margin-top: 32px; }
.book-online-phone-note a { color: var(--color-orange); font-weight: 600; }

/* ===========================================================
   Services page — hero
   =========================================================== */
.services-hero { background: var(--color-surface-subtle); }
.services-hero .container { padding: 64px var(--container-pad); text-align: center; }
.services-hero-title { font-size: 44px; }
.services-hero-subtitle { font-size: 18px; color: var(--color-text-muted); max-width: 560px; margin: 16px auto 0; line-height: 1.6; }

.badge-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-orange-050);
  border: 1px solid var(--color-orange);
  color: var(--color-orange-hover);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
}

/* ===========================================================
   Services page — pricing grid
   =========================================================== */
.pricing { background: #fff; }
.pricing .container { padding: 64px var(--container-pad); }
.pricing-subtitle { max-width: 620px; }

.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; }
.pricing-card { display: block; position: relative; text-align: center; padding: 22px 12px; cursor: pointer; }
.pricing-card:hover { border-color: var(--color-orange); }
.pricing-card-label { font-size: 14px; color: var(--color-text-muted); }
.pricing-card-price { font-family: var(--font-heading); font-weight: 800; font-size: 27px; color: var(--color-text-strong); margin-top: 6px; }
.pricing-card-rate { font-size: 11.5px; color: var(--color-text-subtle); margin-top: 4px; }

.pricing-card.pricing-card-featured { border: 2px solid var(--color-orange); background: var(--color-orange-050); }
.pricing-card-featured .pricing-card-price { color: var(--color-orange); }

.booking-hint { text-align: center; font-size: 13.5px; color: var(--color-text-muted); margin-top: 20px; }
.pricing-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10.5px;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.pricing-tip {
  background: var(--color-orange-050);
  border-left: 4px solid var(--color-orange);
  border-radius: 10px;
  padding: 14px 18px;
  max-width: 720px;
  margin: 32px auto 0;
  color: var(--color-orange-hover);
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================================================
   Services page — shared band + label
   =========================================================== */
.services-band { background: #fff; }
.services-band-warm { background: var(--color-surface-subtle); }
.services-band .container { padding: 64px var(--container-pad); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 8px;
}

/* ===========================================================
   Services page — Road Test Add-Ons
   =========================================================== */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.addon-grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
.addon-card { display: block; text-align: left; cursor: pointer; }
.addon-card:hover { border-color: var(--color-orange); }
.addon-price { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: var(--color-orange); margin-top: 14px; }
.addon-price-context { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--color-text-muted); }
.addon-book-btn { display: inline-flex; margin-top: 18px; font-size: 14px; padding: 11px 20px; }

/* ===========================================================
   Services page — Teen requirements + comparison
   =========================================================== */
.requirements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.requirement-card {
  background: var(--color-surface-subtle);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.requirement-label { font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-orange); margin-bottom: 8px; }
.requirement-title { font-size: 16px; margin-bottom: 6px; }
.requirement-body { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.5; }

.teen-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.teen-card { position: relative; padding: 32px; text-align: left; }
.teen-card-label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-muted); margin-bottom: 8px; }
.teen-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-text-strong); margin-bottom: 12px; }
.teen-card-price { font-family: var(--font-heading); font-weight: 800; font-size: 38px; color: var(--color-text-strong); }
.teen-card-price-accent { color: var(--color-orange); }
.teen-card-price-context { font-size: 13px; color: var(--color-text-muted); margin-bottom: 20px; }

.teen-card-premium { border: 2px solid var(--color-orange); box-shadow: 0 10px 26px rgba(254, 110, 2, .18); }
.teen-card-premium .teen-card-label { color: var(--color-orange); }

.checklist { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-body); line-height: 1.4; }
.check-icon { flex-shrink: 0; font-weight: 700; }
.check-yes .check-icon { color: var(--color-orange); }
.check-no { color: var(--color-text-subtle); }
.check-no .check-icon { color: var(--color-text-subtle); }

.value-callout {
  background: var(--color-orange-050);
  color: var(--color-orange-hover);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 8px 0 16px;
}

.card-footnote { font-size: 13px; color: var(--color-text-muted); padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--color-border-subtle); }
.card-arrow-note { font-size: 13.5px; color: var(--color-text-muted); margin-top: 12px; }

/* ===========================================================
   Services page — Adult requirements + pricing table
   =========================================================== */
.adult-requirements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.adult-requirements-grid .card { padding: 28px; text-align: left; }

.comparison-table-head { margin-top: 56px; margin-bottom: 24px; }
.comparison-table-title { font-size: 26px; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table th, .comparison-table td { padding: 14px 18px; border: 1px solid var(--color-border-subtle); font-size: 14px; text-align: left; }
.comparison-table th { background: var(--color-surface-subtle); font-family: var(--font-heading); font-weight: 700; color: var(--color-text-strong); }

/* ===========================================================
   Services page — closing CTA
   =========================================================== */
.cta-inner-stack { flex-direction: column; align-items: center; text-align: center; }
.cta-inner-stack .cta-content { max-width: 620px; }
.cta-inner-stack .cta-actions { justify-content: center; }
.cta-small-note { font-size: 13px; color: rgba(255, 255, 255, .55); line-height: 1.7; margin-top: 28px; max-width: 560px; }

/* ===========================================================
   Book Your Lesson — booking wizard
   =========================================================== */
.byl-trust-row { margin-top: 32px; }

.byl-wizard { padding: 48px var(--container-pad) 96px; }
.byl-wizard-inner { max-width: 900px; margin: 0 auto; }

/* Step indicator */
.byl-steps { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.byl-step { display: flex; align-items: center; gap: 8px; }
.byl-step-circle {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  background: var(--color-surface-subtle); color: var(--color-text-subtle);
  border: 1px solid var(--color-border-strong);
}
.byl-step.is-current .byl-step-circle,
.byl-step.is-done .byl-step-circle { border: none; color: #fff; }
.byl-step.is-current .byl-step-circle { background: var(--color-orange); }
.byl-step.is-done .byl-step-circle { background: var(--color-success); }
.byl-step-circle .icon { width: 14px; height: 14px; }
.byl-step-label { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--color-text-subtle); }
.byl-step.is-current .byl-step-label { color: var(--color-text-strong); }
.byl-step-connector { width: 28px; height: 1px; background: var(--color-border-subtle); margin: 0 2px; }

.byl-panel { padding-top: 40px; }
.byl-panel[hidden] { display: none; }

.byl-panel-title { font-size: 22px; margin-bottom: 20px; }

.byl-back-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.byl-back-btn {
  background: none; border: none; cursor: pointer; display: flex; align-items: center;
  color: var(--color-text-muted); padding: 4px; border-radius: 6px;
}
.byl-back-btn:hover { color: var(--color-orange); }

/* Category tabs */
.byl-cat-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.byl-cat-tab {
  cursor: pointer; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--color-border-strong); background: #fff;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--color-text-body);
}
.byl-cat-tab .icon { width: 16px; height: 16px; }
.byl-cat-tab.is-active { border-color: transparent; background: var(--color-charcoal); color: #fff; }

/* Service cards */
.byl-service-list { display: flex; flex-direction: column; gap: 16px; }
.byl-service {
  cursor: pointer; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
  border-width: 1px; border-color: var(--color-border-strong);
}
.byl-service:hover { box-shadow: 0 10px 24px rgba(30, 30, 30, .12); }
.byl-service.is-selected { border: 2px solid var(--color-orange); box-shadow: 0 10px 24px rgba(254, 110, 2, .18); }
.byl-service:focus-visible { outline: 3px solid var(--color-orange); outline-offset: 2px; }

.byl-service-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-orange-050);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.byl-service-icon .icon { width: 22px; height: 22px; color: var(--color-orange); }
.byl-service.is-selected .byl-service-icon { background: var(--color-orange); }
.byl-service.is-selected .byl-service-icon .icon { color: #fff; }

.byl-service-main { flex: 1; min-width: 0; }
.byl-service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.byl-service-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.byl-service-name { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--color-text-strong); }

.byl-badge {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 3px 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: .02em;
}
.byl-badge-brand { background: var(--color-orange-050); color: var(--color-orange-hover); border: 1px solid var(--color-orange); }
.byl-badge-success { background: #E8F8EE; color: var(--color-success); border: 1px solid var(--color-success); }

.byl-service-radio {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--color-border-strong);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: transparent;
}
.byl-service-radio .icon { width: 14px; height: 14px; color: #fff; }
.byl-service.is-selected .byl-service-radio { border: none; background: var(--color-orange); }

.byl-service-desc { font-size: 14px; color: var(--color-text-muted); margin: 6px 0 4px; max-width: 620px; line-height: 1.6; }
.byl-service-toggle {
  background: none; border: none; padding: 0; margin: 0 0 10px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--color-orange);
}

.byl-service-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.byl-service-price { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--color-text-strong); }
.byl-service-rate { font-size: 13px; color: var(--color-text-subtle); }
.byl-service-save { font-size: 13px; font-weight: 700; color: var(--color-success); }

.byl-continue-row { display: flex; justify-content: flex-end; margin-top: 28px; }

/* Persistent order summary (steps 2-4) */
.byl-summary-bar {
  position: sticky; bottom: 0; z-index: 20; margin: 32px -24px -96px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border-subtle);
  padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.byl-summary-service { display: flex; align-items: center; gap: 10px; min-width: 0; }
.byl-summary-service-icon { width: 34px; height: 34px; border-radius: var(--radius-md); background: var(--color-orange-050); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.byl-summary-service-icon .icon { width: 16px; height: 16px; color: var(--color-orange); }
.byl-summary-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-text-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.byl-summary-when { font-size: 12.5px; color: var(--color-text-muted); }
.byl-summary-price { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--color-orange); white-space: nowrap; }

/* Day / time pickers */
.byl-selected-service-card { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border-subtle); margin-bottom: 20px; }
.byl-section-label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--color-text-strong); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }

.byl-day-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 28px; }
.byl-day {
  cursor: pointer; text-align: center; padding: 14px 6px; border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong); background: #fff;
}
.byl-day:hover { border-color: var(--color-orange); }
.byl-day.is-selected { border: 2px solid var(--color-orange); background: var(--color-orange-050); }
.byl-day:focus-visible { outline: 3px solid var(--color-orange); outline-offset: 2px; }
.byl-day-weekday { font-family: var(--font-heading); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--color-text-subtle); }
.byl-day.is-selected .byl-day-weekday { color: var(--color-orange); }
.byl-day-date { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--color-text-strong); margin-top: 4px; }
.byl-day.is-selected .byl-day-date { color: var(--color-orange); }

.byl-time-group { margin-bottom: 20px; }
.byl-time-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.byl-time-pill {
  cursor: pointer; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--color-border-strong);
  background: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-text-strong);
}
.byl-time-pill:hover:not(:disabled) { border-color: var(--color-orange); }
.byl-time-pill.is-selected { border: 2px solid var(--color-orange); background: var(--color-orange); color: #fff; }
.byl-time-pill:focus-visible { outline: 3px solid var(--color-orange); outline-offset: 2px; }
.byl-time-pill:disabled, .byl-time-pill.is-unavailable {
  cursor: not-allowed; color: var(--color-text-subtle); background: var(--color-surface-subtle);
  border-color: var(--color-border-subtle); text-decoration: line-through;
}

/* Contact form */
.byl-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.byl-field-grid .byl-field-full { grid-column: 1 / -1; }
.byl-field { display: flex; flex-direction: column; gap: 6px; }
.byl-field label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--color-text-strong); }
.byl-field .byl-optional { font-weight: 500; color: var(--color-text-subtle); text-transform: none; letter-spacing: 0; }
.byl-field input, .byl-field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--color-text-strong);
  padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid var(--color-border-strong);
  background: #fff; width: 100%;
}
.byl-field input:focus, .byl-field textarea:focus { outline: 3px solid var(--color-orange); outline-offset: 1px; border-color: var(--color-orange); }
.byl-field textarea { resize: vertical; min-height: 80px; }
.byl-field.has-error input, .byl-field.has-error textarea { border-color: #D64545; }
.byl-field-error { font-size: 12.5px; color: #D64545; min-height: 15px; }

/* Review / pay */
.byl-review-card { padding: 24px; }
.byl-review-row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--color-border-subtle); }
.byl-review-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.byl-review-label { font-size: 14px; color: var(--color-text-muted); }
.byl-review-value { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-text-strong); text-align: right; }
.byl-review-total .byl-review-value { font-size: 20px; color: var(--color-orange); }
.byl-review-note { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin-top: 18px; }

/* Redirect / success panel */
.byl-success { text-align: center; padding: 40px 0; }
.byl-success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: #E8F8EE;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.byl-success-icon .icon { width: 34px; height: 34px; color: var(--color-success); }
.byl-success-title { font-size: 26px; margin-bottom: 10px; }
.byl-success-body { font-size: 15px; color: var(--color-text-muted); margin: 0 0 6px; line-height: 1.6; }
.byl-success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 24px 0 32px; }
.byl-bring-card { text-align: left; padding: 22px 24px; margin-top: 8px; }
.byl-bring-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.byl-bring-list { display: flex; flex-direction: column; gap: 8px; }
.byl-bring-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-body); }
.byl-bring-item .icon { width: 16px; height: 16px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .hero-title { font-size: 44px; }

  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic-link { grid-column: span 2; }

  .features-grid, .features-grid-4, .programs-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid > .feature-card { flex: 1 1 100%; }
  .comparison-grid { grid-template-columns: 1fr; }

  .trust-row { gap: 36px; }

  .addon-grid, .addon-grid-2 { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: repeat(2, 1fr); }
  .teen-compare-grid { grid-template-columns: 1fr; }
  .adult-requirements-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; padding: 48px var(--container-pad) 32px; }
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .page-hero-title { font-size: 34px; }
  .promise-quote { font-size: 19px; }
  .services-hero-title { font-size: 30px; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface-page);
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 12px var(--container-pad) 20px;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav-list { flex-direction: column; gap: 4px; }
  .site-nav a { display: block; padding: 12px 0; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .section-title { font-size: 30px; }
  .cta-title { font-size: 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  .byl-wizard { padding: 36px var(--container-pad) 96px; }
  .byl-day-grid { grid-template-columns: repeat(3, 1fr); overflow-x: visible; }
  .byl-field-grid { grid-template-columns: 1fr; }
  .byl-service { flex-direction: column; }
  .byl-service-top { width: 100%; }
  .byl-continue-row .btn, .byl-continue-row { width: 100%; }
  .byl-continue-row { justify-content: stretch; }
  .byl-continue-row > * { width: 100%; justify-content: center; }
  .byl-summary-bar { flex-direction: column; align-items: flex-start; gap: 6px; margin: 32px calc(var(--container-pad) * -1) -96px; }
}

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .byl-cat-tab span { display: none; }
  .byl-cat-tab { padding: 10px 14px; }
}

/* North Star logo image (added 2026-07-15, replacing the text-only logo) */
.logo { display: flex; align-items: center; }
.site-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
}
.footer-logo-img {
  height: 44px;
  max-width: 240px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .site-logo-img { height: 32px; max-width: 170px; }
  .footer-logo-img { height: 36px; max-width: 190px; }
}
@media (max-width: 560px) {
  .site-logo-img { height: 28px; max-width: 150px; }
}