/* Speak Spanish in DC, new site 2026. Mobile-first. */
:root {
  --brand: #0091bf;
  --brand-dark: #0078a0;
  --sun: #8ecfe8;
  --sun-soft: #e3f1f9;
  --teal: #0e7c7b;
  --teal-dark: #0a5e5d;
  --ink: #233044;
  --ink-soft: #5b6b80;
  --cream: #fbfcfe;
  --white: #ffffff;
  --line: #dfe9f2;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(35, 48, 68, 0.10);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
a { color: var(--brand-dark); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section { padding: 56px 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 254, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1120px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 46px; width: auto; }
@media (max-width: 759px) {
  .brand-logo { height: 40px; }
}
.nav-toggle {
  display: none; background: none; border: 2px solid var(--line);
  border-radius: 10px; padding: 8px 12px; font-size: 18px; cursor: pointer; color: var(--ink);
}
.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 8px 12px; border-radius: 999px;
}
.main-nav a:hover { background: var(--sun-soft); }
.nav-cta {
  background: var(--brand) !important; color: #fff !important;
  padding: 10px 20px !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 17px;
  padding: 15px 30px; border-radius: 999px; text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(0, 145, 191, 0.35); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(14, 124, 123, 0.3); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--brand); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #eef6fb 0%, #e0eff9 55%, #d2e7f4 100%);
  padding: 64px 0 56px; overflow: hidden;
}
section[id] { scroll-margin-top: 84px; }
.hero-grid { display: grid; gap: 32px; align-items: center; }
.eyebrow {
  display: inline-block; background: #fff; border: 2px solid var(--brand);
  color: var(--ink); font-weight: 700; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(38px, 6vw, 60px); letter-spacing: -0.5px; }
.hero h1 .hl { color: var(--brand); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 34em; }
.hero-photo {
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: rotate(1.5deg); border: 6px solid #fff;
}
.hero-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.hero-meta span::before { content: "✓ "; color: var(--teal); font-weight: 800; }

/* ---------- Cards / sections ---------- */
.section-title { font-size: clamp(28px, 4vw, 40px); text-align: center; }
.section-sub { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 0 auto 36px; font-size: 18px; }
.card-grid { display: grid; gap: 20px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.card h3 { font-size: 23px; margin-bottom: 8px; }
.card .price { font-family: var(--font-head); font-size: 34px; font-weight: 700; color: var(--brand); }
.card .price small { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.card ul { margin: 14px 0 20px; padding: 0; list-style: none; }
.card ul li { padding: 6px 0 6px 28px; position: relative; font-size: 16px; }
.card ul li::before { content: "✓"; position: absolute; left: 4px; color: var(--teal); font-weight: 800; }
.card.featured { border: 3px solid var(--brand); position: relative; }
.badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--ink); font-weight: 800; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 999px;
  white-space: nowrap;
}

/* ---------- After-school band ---------- */
.band {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff; border-radius: 26px; padding: 44px 32px;
  display: grid; gap: 24px; align-items: center; box-shadow: var(--shadow);
}
.band h2 { color: #fff; font-size: clamp(28px, 4vw, 38px); }
.band p { color: #e8f4f3; font-size: 18px; }
.band img { border-radius: var(--radius); border: 6px solid rgba(255,255,255,0.25); }
.btn-sun { background: var(--sun); color: var(--ink); }
.btn-sun:hover { background: #6fb9d8; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  background: #fff; border-radius: var(--radius); padding: 28px 28px 28px 92px;
  position: relative; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 26px; top: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #e3f1f9; border: 2px solid var(--brand);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--brand);
}
.step h3 { font-size: 21px; margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid { display: grid; gap: 20px; }
blockquote {
  margin: 0; background: var(--cream); border-radius: var(--radius);
  padding: 26px; border-left: 6px solid var(--brand); font-size: 16.5px;
}
blockquote footer { margin-top: 12px; font-weight: 700; color: var(--brand); font-style: normal; }
.stars { color: var(--sun); letter-spacing: 3px; font-size: 18px; margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 17px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 26px; color: var(--brand); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery img { border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 15px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 2px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 16px; background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.pay-note {
  background: var(--sun-soft); border: 2px dashed var(--sun); border-radius: 14px;
  padding: 18px 20px; font-size: 15px; margin-top: 20px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #dbe4ee; padding: 52px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; gap: 28px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: #aad9f2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 32px; padding-top: 20px; font-size: 14px; color: #93a3b8; text-align: center; }

/* ---------- Two-col prose ---------- */
.prose-grid { display: grid; gap: 32px; align-items: center; }
.prose-grid h2 { font-size: clamp(28px, 4vw, 38px); }
.check-list { list-style: none; margin: 18px 0; padding: 0; }
.check-list li { padding: 8px 0 8px 32px; position: relative; font-size: 17px; }
.check-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--teal); font-weight: 800; font-size: 19px; }

/* ---------- Tablet / desktop ---------- */
@media (min-width: 760px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .band { grid-template-columns: 1.2fr 1fr; padding: 56px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .prose-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { padding: 88px 24px 28px; }
  .step::before { left: 24px; top: 24px; }
}
@media (max-width: 759px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  section { padding: 44px 0; }
}
