/* --- Out of the Boxx theme (flyer-inspired) --- */
:root {
  --cream: #f8f6f2;
  --cream-deep: #f0ebe3;
  --ink: #1a1a22;
  --indigo: #2d2a4a;
  --muted: #4a4a5a;
  --sky: #5eb4e8;
  --sky-deep: #3a9fd4;
  --sky-soft-top: #e8f5fc;
  --sky-soft-bottom: #d4ecfa;
  --pink: #f7c4d8;
  --pink-soft: #fce4ec;
  --yellow: #f5e6a8;
  --yellow-soft: #fdf6d4;
  --orange: #e27850;
  --orange-deep: #c95d3a;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 28px;
  --blob-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --section: clamp(3rem, 7vw, 5.5rem);
  --container: 1100px;
  --shadow: 0 16px 48px rgba(45, 42, 74, 0.12);
  --shadow-soft: 0 8px 28px rgba(45, 42, 74, 0.08);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  position: relative;
  overflow-x: hidden;
}

/* Background blobs */
.page-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: var(--blob-radius);
  opacity: 0.55;
}

.blob--pink {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  background: var(--pink);
  top: -8%;
  right: -5%;
  transform: rotate(-12deg);
}

.blob--yellow {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: var(--yellow);
  bottom: 15%;
  left: -12%;
  transform: rotate(18deg);
  opacity: 0.45;
}

.blob--blue {
  width: min(70vw, 620px);
  height: min(70vw, 620px);
  background: var(--sky);
  top: 35%;
  right: -18%;
  opacity: 0.25;
  transform: rotate(8deg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  color: var(--indigo);
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--sky-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}

a:hover {
  color: var(--orange-deep);
}

.container {
  width: min(100% - var(--space) * 2, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--indigo);
  color: var(--cream);
  font-weight: 700;
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 42, 74, 0.08);
}

main {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: var(--indigo);
  line-height: 1.15;
}

.logo__small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.logo__tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.logo:hover .logo__small {
  color: var(--orange-deep);
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(45, 42, 74, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1rem var(--space) 1.25rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.35rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.nav-list a:hover {
  background: var(--yellow-soft);
  color: var(--indigo);
}

.nav-cta {
  margin-top: 0.35rem;
  color: var(--orange-deep) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 2px solid rgba(45, 42, 74, 0.12);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin-inline: auto;
  background: var(--indigo);
  border-radius: 1px;
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem 1.1rem;
  }

  .nav-cta {
    margin-top: 0;
    padding: 0.5rem 1.1rem !important;
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 999px;
  }

  .nav-cta:hover {
    background: var(--orange-deep);
    color: var(--white) !important;
  }
}

/* Hero */
.hero {
  padding: calc(var(--section) * 0.85) 0 var(--section);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem 3rem;
    align-items: start;
  }
}

.hero-headline {
  margin: 0 0 1.25rem;
  padding: 0;
  width: fit-content;
  max-width: 100%;
}

.hero-headline__brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 4vw, 3.95rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 0.3rem;
}

.hero-headline__focus {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0;
  line-height: 1.25;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 600;
  max-width: 36ch;
  margin-bottom: 0.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.hero-actions--after-list {
  margin-top: 1.35rem;
  margin-bottom: 0;
}

/* Hero services list (no card — sits on section background) */
.school-year-card {
  margin-top: 1rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: inherit;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.school-year-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
}

.school-year-card__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
}

.school-year-card__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--orange-deep);
  opacity: 0.9;
}

/* Hero photo (PNG with alpha — site background shows through) */
.hero-media {
  margin: 0;
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

@media (min-width: 900px) {
  .hero-media {
    justify-self: end;
    max-width: 480px;
  }
}

.hero-photo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(720px, 82vh);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 28px rgba(45, 42, 74, 0.12));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(226, 120, 80, 0.42);
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--indigo);
  border-color: rgba(45, 42, 74, 0.15);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  border-color: var(--sky-deep);
  color: var(--sky-deep);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: var(--section) 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    var(--pink-soft) 0%,
    var(--cream) 100%
  );
}

.section-header {
  max-width: 48ch;
  margin-bottom: 2rem;
}

.section-header--compact {
  margin-bottom: 1.35rem;
  max-width: none;
}

.section-lede {
  color: var(--muted);
  font-size: 1.0625rem;
  margin: 0;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.1fr 0.65fr;
    gap: 3rem;
  }
}

.about-accent {
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-accent__inner {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sky) 0%, var(--pink) 100%);
  border-radius: var(--blob-radius);
  opacity: 0.85;
  transform: rotate(8deg);
  box-shadow: var(--shadow-soft);
}

.about-text {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-text:last-child {
  margin-bottom: 0;
}

.split-copy .section-title + .about-text {
  margin-top: 0;
}

.checklist {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  border-bottom: 1px solid rgba(45, 42, 74, 0.08);
  font-weight: 600;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-deep);
  font-weight: 800;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.card--sky {
  background: linear-gradient(
    160deg,
    var(--sky-soft-top) 0%,
    var(--sky-soft-bottom) 100%
  );
}

.card--cream {
  background: linear-gradient(160deg, var(--yellow-soft) 0%, var(--yellow) 55%);
}

.card--blush {
  background: linear-gradient(160deg, #fff5f8 0%, var(--pink-soft) 100%);
}

.service-where {
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  border: 1px solid rgba(45, 42, 74, 0.06);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.35;
}

.service-where__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 42, 74, 0.08);
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.25rem;
}

.quotes--two {
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .quotes--two {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.quote {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 42, 74, 0.08);
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--indigo);
}

.quote footer {
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--sky-deep);
}

/* FAQ accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-details {
  background: var(--white);
  border: 1px solid rgba(45, 42, 74, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-details[open] {
  box-shadow: var(--shadow);
}

.faq-summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--indigo);
  position: relative;
  padding-right: 2.5rem;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--sky-deep);
  border-bottom: 2px solid var(--sky-deep);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-details[open] .faq-summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-answer {
  padding: 0 1.15rem 1rem;
  border-top: 1px solid rgba(45, 42, 74, 0.06);
}

.faq-answer p {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Contact */
.section-contact {
  background: linear-gradient(
    180deg,
    var(--cream-deep) 0%,
    var(--cream) 40%,
    var(--yellow-soft) 100%
  );
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-details {
  font-style: normal;
  margin-top: 1rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.contact-icon {
  font-size: 1.1rem;
  width: 1.75rem;
  text-align: center;
}

.contact-form {
  position: relative;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(45, 42, 74, 0.08);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--indigo);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  border: 2px solid rgba(45, 42, 74, 0.1);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233a9fd4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88em;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(94, 180, 232, 0.45);
  outline-offset: 0;
  border-color: var(--sky-deep);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

.form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none !important;
}

.form-status--success {
  background: #e8f8ef;
  border: 2px solid #7bc9a3;
  color: #1e5a3e;
}

.form-status--error {
  background: #fdecef;
  border: 2px solid #e8a0a8;
  color: #8c2f3a;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(45, 42, 74, 0.08);
  background: var(--indigo);
  color: var(--cream);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  color: var(--white);
}

.footer-meta {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
  max-width: 42ch;
}

.footer-top {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yellow);
}

.footer-top:hover {
  color: var(--cream);
}

.site-footer a {
  color: var(--yellow);
}

.site-footer a:hover {
  color: var(--cream);
}
