:root {
  --navy: #12395b;
  --blue: #2f6fa3;
  --light-blue: #eaf4ff;
  --yellow: #f7c948;
  --orange: #ef8b2c;
  --green: #a3e635;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #dbe7f3;
  --shadow: 0 10px 30px rgba(18, 57, 91, 0.08);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: #f7fbff;
  color: var(--text);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 28px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid #dbe7f3;
}

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 52px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.header-cta {
  background: var(--green);
  color: var(--navy);

  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 800;

  box-shadow: var(--shadow);
}

.menu-button {
  display: none;

  border: none;
  background: transparent;

  color: var(--navy);
  font-size: 30px;

  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;

  background: var(--navy);

  padding: 18px 24px;
}

.mobile-nav a {
  color: white;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.google-form-card {
  background: white;
  padding: 16px;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.google-form-card iframe {
  width: 100%;
  border: none;
  border-radius: 20px;
}

/* =========================
   HERO
========================= */

.hero {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 1180px) minmax(24px, 1fr);
  padding: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.25), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(163,230,53,.35), transparent 22%),
    linear-gradient(135deg, #2fb8ff, #075bb3 45%, #071b35);
  color: white;
  grid-template-areas: "left content right";
}
.hero > * {
  grid-column: 2;
}
.hero-content,
.hero-logo-card {
  grid-column: 2;
}
.hero::before {
  content: "";
}
.hero::after {
  content: "";
}

.hero-content {
  max-width: 620px;
}

.hero {
  position: relative;
}

.hero {
  min-height: 620px;
}

.hero-content {
  padding: 96px 0;
}

.hero-logo-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 96px;
  width: min(440px, 38vw);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 22px;

  color: white;
}

.hero-text {
  font-size: 1.15rem;
  color: #eaf6ff;

  max-width: 640px;

  margin-bottom: 32px;
}

.hero-logo-card {
  background: white;
  border-radius: var(--radius-lg);

  padding: 40px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);
}

.hero-logo-card img {
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;

  background: rgba(255, 255, 255, 0.14);
  color: white;

  padding: 9px 14px;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 800;

  margin-bottom: 18px;

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #a3e635;

  color: #071b35;


  padding: 16px 28px;

  border-radius: 999px;

  font-weight: 800;
  font-size: 1rem;

  box-shadow: var(--shadow);

  transition: transform 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
}

/* =========================
   GENERIC SECTIONS
========================= */

.section {
  max-width: var(--max-width);
  margin: 0 auto;

  padding: 90px 24px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;

  color: var(--navy);

  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.service-card {
  background: white;

  border-radius: var(--radius-lg);

  padding: 28px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 92px;
  height: 92px;

  object-fit: cover;

  border-radius: 999px;

  margin-bottom: 20px;
}

.emoji-icon {
  width: 92px;
  height: 92px;

  border-radius: 999px;

  background: var(--light-blue);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.5rem;

  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.price {
  color: var(--blue);
  font-weight: 800;

  margin-bottom: 12px;
}

.callout {
  margin-top: 14px;

  color: var(--green);
  font-weight: 700;
}

.small-button {
  margin-top: auto;

  display: inline-flex;
  justify-content: center;

  background: var(--navy);
  color: white;

  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 700;

  margin-top: 22px;
}

/* =========================
   SUBSCRIPTIONS
========================= */

.subscriptions {
  background: linear-gradient(
    180deg,
    #ffffff,
    #eef7ff
  );

  border-radius: 40px;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.subscription-grid article {
  background: white;

  padding: 28px;
  border-radius: var(--radius-lg);

  border: 1px solid var(--border);

  box-shadow: var(--shadow);
}

.subscription-grid h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

/* =========================
   ABOUT
========================= */

.boys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.boy-card {
  background: white;

  border-radius: var(--radius-lg);

  padding: 28px;

  border: 1px solid var(--border);

  text-align: center;

  box-shadow: var(--shadow);
}

.boy-card img {
  width: 130px;
  height: 130px;

  object-fit: cover;

  border-radius: 999px;

  margin: 0 auto 18px;

  border: 6px solid var(--green);
}

.boy-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

/* =========================
   SERVICE AREA
========================= */

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 40px;
  align-items: center;
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 24px;
}

.neighborhoods span {
  background: white;

  border: 1px solid var(--border);

  padding: 10px 16px;

  border-radius: 999px;

  font-weight: 700;

  color: var(--navy);
}

.map-card {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--navy)
  );

  color: white;

  border-radius: 36px;

  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 40px;
}

/* =========================
   CONTACT
========================= */

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 40px;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.1;

  margin-bottom: 18px;

  color: var(--navy);
}

.contact-copy p {
  color: var(--muted);
}

.trust-note {
  margin-top: 20px;

  font-weight: 700;
  color: var(--green);
}

.contact-form {
  background: white;

  padding: 32px;

  border-radius: 32px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;

  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;

  gap: 8px;

  font-weight: 700;

  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 14px 16px;

  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--navy);

  color: rgba(255,255,255,0.8);

  text-align: center;

  padding: 32px 24px;

  margin-top: 60px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
.hero {
    display: block;
    min-height: auto;
    padding: 48px 20px 56px;
  }

  .hero-content {
    padding: 0;
    max-width: none;
  }

  .hero-logo-card {
    position: static;
    width: 100%;
    margin-top: 32px;
  }

  .hero,
  .service-area,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .boys-grid,
  .subscription-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }
}

@media (max-width: 700px) {

  .hero {
    padding-top: 42px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .service-grid,
  .boys-grid,
  .subscription-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 20px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .header-logo {
    height: 42px;
  }
}
/* HEADER OVERRIDES */

.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #dbe7f3 !important;
}

.desktop-nav a {
  color: var(--navy);
  font-weight: 800;
  transition: 0.2s ease;
}

.desktop-nav a:hover {
 .desktop-nav a:hover {
  color: var(--green);
}
.header-cta {
  background: #a3e635;
  color: var(--navy);

  padding: 14px 24px;
  border-radius: 999px;

  font-weight: 900;

  box-shadow: 0 10px 22px rgba(18, 57, 91, 0.16);
}

.menu-button {
  color: #071b35 !important;
}