:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --text: #24324a;
  --muted: #5d6b86;
  --primary: #ff7fb0;
  --primary-dark: #f05f96;
  --accent: #67d5c3;
  --accent-2: #ffd166;
  --line: #dfe7f5;
  --shadow: 0 18px 45px rgba(36, 50, 74, 0.09);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 223, 211, 0.65);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.logo,
h1,
h2,
h3 {
  font-family: "Fredoka", sans-serif;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(103, 213, 195, 0.24), transparent 30%),
    radial-gradient(circle at right center, rgba(255, 127, 176, 0.22), transparent 32%),
    radial-gradient(circle at bottom center, rgba(255, 209, 102, 0.18), transparent 28%);
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--primary);
  color: white;
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
}

.button.music-button {
  background: var(--accent);
  color: white;
  border: none;
}

.button.music-button:hover {
  background: #49bda9;
}

.button.full {
  width: 100%;
}

.highlights,
.feature-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.card,
.info-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 2rem;
}

.trust-bar {
  padding: 1rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-items div {
  background: linear-gradient(135deg, #ffffff 0%, #fff4fb 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  padding: 0.9rem 1rem;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--surface-soft);
}

.enroll-banner {
  padding: 2rem 0 0;
}

.enroll-row {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.enroll-row .section-label,
.enroll-row p,
.enroll-row h2 {
  color: white;
  margin-bottom: 0.6rem;
}

.enroll-row .button.primary {
  background: white;
  color: var(--primary-dark);
  white-space: nowrap;
}

.center {
  text-align: center;
}

.cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.cards.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  padding: 1.6rem;
}

.info-card.credential h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info-card.credential p {
  margin: 0;
}

.info-card.testimonial {
  font-style: italic;
  display: flex;
  flex-direction: column;
}
.info-card.testimonial p {
  flex-grow: 1;
}
.info-card.testimonial footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}

.va-license {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.va-license a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

.contact-section {
  background: linear-gradient(180deg, rgba(110, 197, 184, 0.12), rgba(255, 143, 90, 0.08));
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
}

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

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .cards.three-up,
  .cards.two-up,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .enroll-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
