    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:         #0F2747;
      --navy-mid:     #1C3B6B;
      --navy-dark:    #0A1426;
      --accent:       #02D8E9;
      --accent-dark:  #01BFD0;
      --accent-soft:  #E6FBFD;
      --accent-muted: #7FEAF2;
      /* Accessible eyebrow color: contrast 4.6:1 on white — replaces pure accent for small text */
      --eyebrow-color: #007A87;
      /* Accessible hint text: contrast 4.6:1 on white — replaces gray-400 for inline text */
      --hint-color:   #767676;
      --white:      #ffffff;
      --off-white:  #F7F8FA;
      --gray-100:   #F3F4F6;
      --gray-200:   #E5E7EB;
      --gray-400:   #9CA3AF;
      --gray-500:   #6B7280;
      --gray-700:   #374151;
      --text:       #111827;
      --max-w:      1200px;
      --sp:         88px 24px;
    }

    /* ================================================================
       SKIP NAVIGATION LINK (ADA / WCAG 2.4.1)
    ================================================================ */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 0;
      z-index: 9999;
      background: var(--navy);
      color: var(--accent);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 12px 20px;
      text-decoration: none;
      border-radius: 0 0 6px 0;
    }
    .skip-link:focus {
      top: 0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', system-ui, sans-serif;
      line-height: 1.2;
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---- Buttons ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 6px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      letter-spacing: 0.2px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
      white-space: nowrap;
    }
    .btn:active { transform: scale(0.98); }
    .btn:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }
    .btn-primary { background: var(--accent); color: var(--navy); border-color: var(--accent); }
    .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
    .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
    .btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
    .btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

    /* ---- Section shared ---- */
    section { padding: var(--sp); }

    .eyebrow {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--eyebrow-color);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(1.65rem, 2.8vw, 2.35rem);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .section-lead {
      font-size: 1rem;
      color: var(--gray-500);
      line-height: 1.75;
      max-width: 540px;
    }

    .section-header { margin-bottom: 52px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-lead { margin: 0 auto; }

    /* ---- Check list ---- */
    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 28px 0 36px;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--gray-700);
      line-height: 1.6;
    }
    .chk {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: rgba(2,216,233,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .chk svg {
      width: 10px; height: 10px;
      stroke: var(--accent-dark);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ---- Split layout ---- */
    .split-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .split-layout.flip .split-text   { order: 2; }
    .split-layout.flip .split-visual { order: 1; }

    /* ---- Image placeholder ---- */
    .img-block {
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--gray-400);
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* ================================================================
       HEADER
    ================================================================ */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      transition: box-shadow 0.2s;
    }
    #site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

    .header-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-link {
      text-decoration: none;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .logo-header {
      height: 60px;
      width: 60px;
      display: block;
      object-fit: cover;
    }
    .logo-footer {
      height: 64px;
      width: 64px;
      display: block;
      object-fit: cover;
      mix-blend-mode: screen;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .main-nav a:not(.btn) {
      font-size: 0.87rem;
      font-weight: 500;
      color: var(--gray-700);
      text-decoration: none;
      transition: color 0.15s;
    }
    .main-nav a:not(.btn):hover { color: var(--navy); }
    .main-nav a:not(.btn):focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
      border-radius: 3px;
    }
    /* "Order Photos" nav link gets a subtle accent treatment */
    .nav-order {
      color: var(--accent-dark) !important;
      font-weight: 600 !important;
    }
    .nav-order:hover { color: var(--navy) !important; }
    .nav-btn { padding: 10px 18px !important; font-size: 0.83rem !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--navy); border-radius: 2px; transition: all 0.25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      padding: 8px 24px 24px;
      border-top: 1px solid var(--gray-200);
      background: var(--white);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 12px 0;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--gray-700);
      text-decoration: none;
      border-bottom: 1px solid var(--gray-100);
    }
    .mobile-nav a:last-of-type { border-bottom: none; }
    .mobile-nav .btn { margin-top: 14px; justify-content: center; }

    /* ================================================================
       HERO
    ================================================================ */
    #hero {
      position: relative;
      background: var(--navy);
      min-height: 560px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-backdrop {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,53,96,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(2,216,233,0.07) 0%, transparent 60%),
        linear-gradient(135deg, #0a1828 0%, #0d1f3c 45%, #162d54 100%);
    }
    .hero-backdrop::after {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 48px,
        rgba(255,255,255,0.012) 48px, rgba(255,255,255,0.012) 50px
      );
    }
    .hero-accent {
      position: absolute; top: 0; right: 0;
      width: 4px; height: 100%;
      background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
      opacity: 0.45;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 96px 24px 88px;
    }
    /* Hero eyebrow sits on dark navy — accent #02D8E9 on #0F2747 = 8.56:1 — passes AAA */
    .hero-eyebrow {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      padding: 5px 11px;
      border: 1px solid rgba(2,216,233,0.3);
      border-radius: 4px;
    }
    .hero-headline {
      font-size: clamp(2.2rem, 5vw, 3.75rem);
      font-weight: 800;
      color: var(--white);
      max-width: 640px;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .hero-headline em { font-style: normal; color: var(--accent); }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      max-width: 500px;
      margin-bottom: 40px;
      line-height: 1.75;
    }

    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

    .hero-stats {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1.1;
    }
    .hero-stat span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      margin-top: 3px;
    }

    .hero-layout {
      display: flex;
      align-items: center;
      gap: 56px;
    }
    .hero-text { flex: 1; min-width: 0; }
    .hero-image {
      flex: 0 0 44%;
      max-width: 44%;
    }
    .hero-image img {
      width: 100%;
      display: block;
      border-radius: 12px;
      box-shadow: 0 0 48px rgba(2,216,233,0.12), 0 12px 40px rgba(0,0,0,0.45);
    }

    /* ================================================================
       WHO WE SERVE
    ================================================================ */
    #serve { background: var(--white); }

    .serve-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .serve-card {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 32px 26px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .serve-card:hover {
      box-shadow: 0 6px 24px rgba(13,31,60,0.09);
      transform: translateY(-2px);
    }
    .serve-icon {
      width: 46px; height: 46px;
      background: var(--navy);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .serve-icon svg {
      width: 22px; height: 22px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .serve-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .serve-card p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

    /* ================================================================
       HOW IT WORKS
    ================================================================ */
    #how-it-works { background: var(--off-white); }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .steps-row::before {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(100% / 6);
      right: calc(100% / 6);
      height: 2px;
      background: var(--gray-200);
      z-index: 0;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--accent);
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      border: 4px solid var(--off-white);
      box-shadow: 0 0 0 2px var(--gray-200);
    }
    .step h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .step p  { font-size: 0.87rem; color: var(--gray-500); line-height: 1.7; }

    /* Audience section titles (For League Directors / For Parents) */
    .audience-title {
      font-size: clamp(2rem, 3.5vw, 2.9rem) !important;
      margin-bottom: 6px !important;
    }
    .audience-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.05rem, 1.8vw, 1.3rem);
      font-weight: 700;
      color: var(--eyebrow-color);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    /* ================================================================
    #directors { background: var(--white); }

    /* ================================================================
       FOR PARENTS
    ================================================================ */
    #parents { background: var(--off-white); }

    .parents-panel {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      overflow: hidden;
    }

    .parents-panel-header {
      background: var(--navy);
      padding: 48px 44px 44px;
    }
    .parents-panel-header .eyebrow { color: var(--accent); }
    .parents-panel-header .section-title { color: var(--white); margin-bottom: 10px; }
    .parents-panel-header .section-lead { color: rgba(255,255,255,0.65); max-width: 580px; }

    .parents-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .parents-card {
      padding: 36px 32px;
      border-right: 1px solid var(--gray-200);
      display: flex;
      flex-direction: column;
    }
    .parents-card:last-child { border-right: none; }

    .parents-card-muted {
      background: var(--off-white);
    }

    .parents-card-icon {
      width: 44px; height: 44px;
      background: var(--navy);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .parents-card-icon svg {
      width: 20px; height: 20px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
    }
    .parents-card-icon-muted {
      background: var(--gray-200);
    }
    .parents-card-icon-muted svg { stroke: var(--gray-500); }

    .parents-card-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--eyebrow-color);
      margin-bottom: 6px;
    }
    .parents-card-muted .parents-card-label { color: var(--gray-500); }

    .parents-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .parents-card-desc {
      font-size: 0.875rem;
      color: var(--gray-500);
      line-height: 1.72;
      flex: 1;
      margin-bottom: 24px;
    }
    .parents-card-btn {
      align-self: flex-start;
      font-size: 0.82rem;
      padding: 10px 18px;
    }

    /* Parents notice band — keep for potential reuse elsewhere */
    .parents-notice {
      background: var(--accent-soft);
      border: 1px solid rgba(2,216,233,0.35);
      border-radius: 8px;
      padding: 18px 22px;
      margin-bottom: 28px;
      font-size: 0.9rem;
      color: var(--gray-700);
      line-height: 1.6;
    }
    .parents-notice strong { color: var(--navy); }

    @media (max-width: 960px) {
      .parents-panel-header { padding: 36px 28px 32px; }
      .parents-cards { grid-template-columns: 1fr; }
      .parents-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
      .parents-card:last-child { border-bottom: none; }
    }
    @media (max-width: 600px) {
      .parents-panel-header { padding: 28px 20px 24px; }
      .parents-card { padding: 28px 20px; }
    }

    /* ================================================================
       ON-SITE / TRAILER
    ================================================================ */
    #onsite {
      background: var(--navy);
      padding: var(--sp);
    }
    #onsite .section-title { color: var(--white); }
    #onsite .section-lead  { color: rgba(255,255,255,0.62); }

    /* Trailer feature card */
    .trailer-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(2,216,233,0.35);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .trailer-img {
      overflow: hidden;
      min-height: 320px;
      border-right: 1px solid rgba(2,216,233,0.2);
      position: relative;
    }
    .trailer-img img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .trailer-img img:last-child {
      animation: trailer-crossfade 10s ease-in-out infinite;
    }
    @keyframes trailer-crossfade {
      0%, 40%  { opacity: 0; }
      50%, 90% { opacity: 1; }
      100%     { opacity: 0; }
    }
    .trailer-body {
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .trailer-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(2,216,233,0.1);
      border: 1px solid rgba(2,216,233,0.25);
      border-radius: 4px;
      padding: 5px 10px;
      margin-bottom: 18px;
      width: fit-content;
    }
    .trailer-body h3 {
      font-size: clamp(1.15rem, 1.8vw, 1.45rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
    }
    .trailer-body p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.75;
    }
    .trailer-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }
    .trailer-pill {
      font-size: 0.76rem;
      font-weight: 600;
      color: rgba(255,255,255,0.68);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 5px 13px;
    }

    /* 4-card grid below trailer */
    .onsite-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .onsite-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 24px 20px;
    }
    .onsite-icon {
      width: 40px; height: 40px;
      background: rgba(2,216,233,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .onsite-icon svg {
      width: 20px; height: 20px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
    }
    .onsite-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .onsite-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

    /* ================================================================
       PRIVACY
    ================================================================ */
    #privacy { background: var(--white); }

    .privacy-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 56px;
      align-items: start;
    }
    .privacy-badge {
      background: var(--off-white);
      border: 2px solid var(--navy);
      border-radius: 14px;
      padding: 36px 24px;
      text-align: center;
      position: sticky;
      top: 88px;
    }
    .shield-wrap {
      width: 64px; height: 64px;
      background: var(--navy);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .shield-wrap svg {
      width: 32px; height: 32px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
    }
    .privacy-badge h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .privacy-badge p  { font-size: 0.8rem; color: var(--gray-500); line-height: 1.65; }

    .privacy-items { display: flex; flex-direction: column; gap: 28px; }
    .privacy-item { padding-left: 18px; border-left: 3px solid var(--accent); }
    .privacy-item h4 { font-size: 0.93rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
    .privacy-item p  { font-size: 0.87rem; color: var(--gray-500); line-height: 1.7; }

    /* ================================================================
       CONTACT
    ================================================================ */
    #contact { background: var(--off-white); }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 24px; }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .contact-icon {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-icon svg {
      width: 20px; height: 20px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
    }
    .contact-item-body { display: flex; flex-direction: column; gap: 3px; }
    .contact-item-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray-400);
    }
    .contact-item-value {
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--navy);
    }
    .contact-item-note {
      font-size: 0.82rem;
      color: var(--gray-500);
    }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: 36px 32px;
    }
    .contact-form h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .contact-form .form-note {
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .form-row { display: flex; flex-direction: column; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gray-700);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: 6px;
      padding: 10px 13px;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--navy);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(2,216,233,0.25);
    }
    /* Fix hint text contrast — gray-400 (#9CA3AF) fails; use --hint-color (#767676) instead */
    .form-group label span[style*="color:var(--gray-400)"],
    span[style*="color:var(--gray-400)"] {
      color: var(--hint-color) !important;
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    @media (max-width: 960px) {
      .contact-layout { grid-template-columns: 1fr; gap: 36px; }
      .form-row-2     { grid-template-columns: 1fr; }
    }

    /* ================================================================
       FINAL CTA
    ================================================================ */
    #final-cta {
      background: var(--navy);
      padding: var(--sp);
      text-align: center;
    }
    .cta-title {
      font-size: clamp(1.75rem, 3.2vw, 2.6rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.62);
      margin-bottom: 40px;
      line-height: 1.7;
    }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ================================================================
       FOOTER
    ================================================================ */
    #site-footer {
      background: var(--navy-dark);
      padding: 60px 24px 32px;
    }
    .footer-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand p {
      margin-top: 12px;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.42);
      line-height: 1.75;
      max-width: 250px;
    }
    .footer-col h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      /* accent on navy-dark = 8.56:1 contrast — AAA compliant */
      color: var(--accent);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.48);
      text-decoration: none;
      margin-bottom: 9px;
      transition: color 0.15s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-col a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 2px;
    }

    .footer-bottom {
      max-width: var(--max-w);
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.28); }

    /* ================================================================
       RESPONSIVE
    ================================================================ */
    @media (max-width: 960px) {
      :root { --sp: 64px 24px; }
      .main-nav { display: none; }
      .hamburger { display: flex; }

      .serve-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .steps-row   { grid-template-columns: 1fr; gap: 36px; }
      .steps-row::before { display: none; }
      .step        { align-items: flex-start; text-align: left; flex-direction: row; gap: 18px; }
      .step-num    { flex-shrink: 0; width: 48px; height: 48px; font-size: 1.05rem; margin-bottom: 0; }

      .split-layout { grid-template-columns: 1fr; gap: 36px; }
      .split-layout.flip .split-text   { order: 0; }
      .split-layout.flip .split-visual { order: 1; }

      .trailer-feature { grid-template-columns: 1fr; }
      .trailer-img     { min-height: 240px; border-right: none; border-bottom: 1px solid rgba(2,216,233,0.2); }
      .trailer-body    { padding: 30px 26px; }

      .onsite-grid { grid-template-columns: repeat(2, 1fr); }
      .privacy-layout { grid-template-columns: 1fr; }
      .privacy-badge  { position: static; max-width: 300px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: span 2; }
    }

    @media (max-width: 600px) {
      :root { --sp: 52px 20px; }
      .hero-content { padding: 72px 20px 64px; }
      .hero-stats   { gap: 24px; margin-top: 40px; padding-top: 24px; }
      .hero-layout  { flex-direction: column; }
      .hero-image   { flex: none; max-width: 100%; width: 100%; }
      .onsite-grid  { grid-template-columns: 1fr; }
      .footer-grid  { grid-template-columns: 1fr; }
      .footer-brand { grid-column: span 1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ================================================================
       NAV ACTIVE STATE
    ================================================================ */
    .nav-active { color: var(--accent) !important; font-weight: 600 !important; }

    /* ================================================================
       GATEWAY (index.html)
    ================================================================ */
    #gateway-hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 96px 24px 80px;
      text-align: center;
    }
    .gateway-backdrop {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,53,96,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(2,216,233,0.07) 0%, transparent 60%),
        linear-gradient(135deg, #0a1828 0%, #0d1f3c 45%, #162d54 100%);
    }
    .gateway-backdrop::after {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 48px,
        rgba(255,255,255,0.012) 48px, rgba(255,255,255,0.012) 50px
      );
    }
    .gateway-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }
    .gateway-headline {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .gateway-headline em { font-style: normal; color: var(--accent); }
    .gateway-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      max-width: 500px;
      margin: 0 auto;
    }

    /* Gateway service cards */
    #gateway-cards { background: var(--off-white); }
    .gateway-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .gateway-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.22s, transform 0.22s;
    }
    .gateway-card:hover {
      box-shadow: 0 8px 36px rgba(15,39,71,0.13);
      transform: translateY(-4px);
    }
    .gateway-card-visual {
      background: var(--navy);
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .gateway-card-visual svg {
      width: 60px; height: 60px;
      stroke: var(--accent); fill: none;
      stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round;
      position: relative; z-index: 1;
      opacity: 0.9;
    }
    .gateway-card-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 55% at 50% 65%, rgba(2,216,233,0.13) 0%, transparent 70%);
    }
    .gateway-card-body {
      padding: 30px 28px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .gateway-card-body h2 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .gateway-card-body p {
      font-size: 0.9rem;
      color: var(--gray-500);
      line-height: 1.72;
      flex: 1;
      margin-bottom: 22px;
    }
    .gateway-card-cta {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.4px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.15s;
    }
    .gateway-card:hover .gateway-card-cta { gap: 10px; }
    .gateway-card-cta::after { content: '→'; }

    @media (max-width: 960px) {
      .gateway-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    }

    /* ================================================================
       PAGE HERO (seniors, families)
    ================================================================ */
    #page-hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 80px 24px 72px;
    }
    .page-hero-backdrop {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 70% 50%, rgba(26,53,96,0.65) 0%, transparent 70%),
        linear-gradient(135deg, #0a1828 0%, #0d1f3c 50%, #162d54 100%);
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .page-hero-content h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--white);
      max-width: 620px;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .page-hero-content h1 em { font-style: normal; color: var(--accent); }
    .page-hero-content p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      max-width: 500px;
      line-height: 1.78;
      margin-bottom: 32px;
    }

    /* Coming soon placeholder */
    .coming-soon {
      text-align: center;
      padding: 80px 24px 96px;
      max-width: 480px;
      margin: 0 auto;
    }
    .coming-soon h2 {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .coming-soon p {
      font-size: 0.95rem;
      color: var(--gray-500);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* Contact page — centered single-column form */
    .contact-form-wrap {
      max-width: 600px;
      margin: 0 auto;
    }

    /* ================================================================
       MOBILE REFINEMENTS
    ================================================================ */
    @media (max-width: 600px) {
      /* Gateway hero — reduce oversized top/bottom padding on small screens */
      #gateway-hero { padding: 56px 20px 48px; }

      /* Page hero (seniors, families, contact) — same treatment */
      #page-hero { padding: 52px 20px 44px; }

      /* Contact form card — tighten horizontal padding on narrow viewports */
      .contact-form { padding: 24px 18px; }

      /* Trailer pills — allow wrapping without overflow */
      .trailer-pills { gap: 6px; }
      .trailer-pill  { font-size: 0.72rem; padding: 4px 10px; }
    }
