/* Head Start K9 — Big Splash design system
   Tokens and component styles per design handoff (design_handoff_head_start_k9_website). */

:root {
  --navy: #0e3157;
  --navy-darker: #0a2440;
  --navy-card: #16406e;
  --navy-card-2: #12385f;
  --ocean: #3ba7dc;
  --blue: #2f89c9;
  --sky: #7fc9ec;
  --sun: #f5b82e;
  --sun-hover: #e5a91f;

  --text-on-white: var(--navy);
  --text-on-white-muted: #3d5a75;
  --text-on-navy: #b8cee3;
  --text-on-navy-faint: #7fa5cc;

  --border-light: #e3ecf4;
  --panel-light: #f6fafd;
  --chip-disabled-bg: #f1f5f9;
  --chip-disabled-text: #a9bccd;

  --font-head: 'Paytone One', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-card: 20px;
  --radius-pill: 999px;

  --section-pad-desktop: 56px;
  --section-pad-mobile: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-white);
  background: #fff;
  line-height: 1.55;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 44px;
}

.btn-sun {
  background: var(--sun);
  color: var(--navy);
}

.btn-sun:hover {
  background: var(--sun-hover);
  color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn-blue-fill {
  background: var(--blue);
  color: #fff;
}

.btn-blue-fill:hover {
  background: var(--navy);
  color: #fff;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- Layout helpers ---------- */

.page-section {
  padding: var(--section-pad-desktop) 48px;
}

.eyebrow-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: rgba(59, 167, 220, 0.18);
  border: 1px solid rgba(59, 167, 220, 0.5);
  color: var(--sky);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.photo-placeholder {
  background-image: repeating-linear-gradient(-45deg, var(--navy-card) 0 22px, var(--navy-card-2) 22px 44px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: var(--text-on-navy-faint);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy);
  color: #f4f8fc;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f4f8fc;
}

.nav-logo:hover {
  color: #f4f8fc;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-links a {
  color: #f4f8fc;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--sun);
}

.nav-cta {
  padding: 12px 24px;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 3px;
  background: var(--sun);
  border-radius: 2px;
  display: block;
}

.nav-toggle span:last-child {
  width: 14px;
}

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 20px;
  background: var(--navy);
}

.nav-mobile-panel a {
  color: #f4f8fc;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-mobile-panel .btn {
  margin-top: 12px;
}

/* ---------- Hero (Home) ---------- */

.hero {
  background: var(--navy);
  color: #f4f8fc;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding: 56px 48px 0;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 64px;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.hero-copy h1 .accent {
  color: var(--sun);
}

.hero-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-on-navy);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-photo {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.hero-photo .photo-placeholder {
  flex: 1;
  min-height: 420px;
  border-radius: 24px 24px 0 0;
}

.wave-divider {
  height: 56px;
  background: var(--ocean);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* ---------- What we do band ---------- */

.services-band {
  background: var(--ocean);
  color: var(--navy);
  padding: 24px 48px 72px;
}

.services-band-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.services-band h2 {
  font-family: var(--font-head);
  font-size: 36px;
  margin: 0 0 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  box-shadow: 0 10px 24px rgba(14, 49, 87, 0.15);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.service-card h3 {
  font-weight: 800;
  font-size: 19px;
  margin: 0;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-on-white-muted);
  margin: 0;
}

/* mobile row variant reused on Home mobile */
.service-row {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-row .service-icon {
  width: 38px;
  height: 38px;
  flex: none;
}

.service-row .service-row-title {
  font-weight: 800;
  font-size: 16px;
}

.service-row .service-row-sub {
  font-size: 13px;
  color: var(--text-on-white-muted);
}

/* ---------- Events band (white) ---------- */

.events-band {
  padding: 56px 48px;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.events-band h2 {
  font-family: var(--font-head);
  font-size: 36px;
  margin: 0 0 8px;
}

.events-band p {
  font-size: 16px;
  color: var(--text-on-white-muted);
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}

.events-band .btn {
  margin-left: auto;
}

/* ---------- CTA band (navy) ---------- */

.cta-band {
  background: var(--navy);
  color: #f4f8fc;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: 34px;
  max-width: 520px;
  margin: 0;
}

.cta-band .btn {
  margin-left: auto;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-darker);
  padding: 20px 48px;
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-on-navy-faint);
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--text-on-navy-faint);
}

.site-footer a:hover {
  color: #fff;
}

.footer-social {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

/* ---------- Pricing page header ---------- */

.pricing-header {
  background: var(--navy);
  color: #f4f8fc;
  padding: 48px 48px 64px;
}

.pricing-header-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pricing-header h1 {
  font-family: var(--font-head);
  font-size: 52px;
  margin: 0;
}

.pricing-header p {
  margin: 12px 0 0;
  font-size: 18px;
  color: var(--text-on-navy);
  max-width: 560px;
  line-height: 1.6;
}

.pricing-cards {
  max-width: 1440px;
  margin: -32px auto 0;
  padding: 0 48px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.price-card--featured {
  background: var(--navy);
  color: #f4f8fc;
  border: none;
  box-shadow: 0 12px 32px rgba(14, 49, 87, 0.25);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--sun);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

.price-eyebrow {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--blue);
}

.price-card--featured .price-eyebrow {
  color: var(--sky);
}

.price-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 0;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount .amount {
  font-family: var(--font-head);
  font-size: 44px;
}

.price-amount .unit {
  font-size: 15px;
  color: var(--text-on-white-muted);
}

.price-card--featured .price-amount .amount {
  color: var(--sun);
}

.price-card--featured .price-amount .unit {
  color: var(--text-on-navy);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--text-on-white-muted);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card--featured .price-features {
  color: var(--text-on-navy);
}

.price-card .btn {
  margin-top: auto;
}

/* ---------- Ocean add-ons band (Pricing page) ---------- */

.addons-band {
  background: var(--ocean);
  color: var(--navy);
  padding: 48px;
}

.addons-band-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.addon-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 0;
}

.addon-card p {
  font-size: 15px;
  color: var(--text-on-white-muted);
  line-height: 1.6;
  margin: 0;
}

.addon-price .amount {
  font-family: var(--font-head);
  font-size: 32px;
}

.addon-price .unit {
  font-size: 14px;
  color: var(--text-on-white-muted);
}

.package-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--text-on-white-muted);
}

.package-row {
  display: flex;
}

.package-row .price {
  margin-left: auto;
  font-weight: 800;
  color: var(--navy);
}

.package-row .price s {
  color: #8aa5bd;
  font-weight: 600;
  margin-left: 4px;
}

.addon-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* =========================================================
   Mobile (<= 900px), reference width 390px
   ========================================================= */

@media (max-width: 900px) {
  .page-section {
    padding: var(--section-pad-mobile);
  }

  .nav-bar {
    padding: 14px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-panel.is-open {
    display: flex;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
  }

  .nav-logo span {
    font-size: 15px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 20px 8px;
  }

  .hero-copy {
    gap: 18px;
    padding-bottom: 8px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 15px;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-photo .photo-placeholder {
    min-height: 200px;
    border-radius: 18px 18px 0 0;
  }

  .wave-divider {
    height: 32px;
    clip-path: ellipse(75% 100% at 50% 100%);
  }

  .services-band {
    padding: 12px 20px 36px;
  }

  .services-band h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .events-band {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .events-band .btn {
    margin-left: 0;
    width: 100%;
  }

  .cta-band {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
  }

  .cta-band h2 {
    font-size: 22px;
    max-width: none;
  }

  .cta-band .btn {
    margin-left: 0;
    width: 100%;
  }

  .site-footer {
    padding: 16px 20px;
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .pricing-header {
    padding: 28px 20px 48px;
  }

  .pricing-header h1 {
    font-size: 32px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
    margin-top: -24px;
    gap: 16px;
  }

  .price-card--featured {
    order: -1;
  }

  .price-card {
    padding: 24px;
  }

  .price-amount .amount {
    font-size: 36px;
  }

  .addons-band {
    padding: 20px;
  }

  .addons-band-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
