:root {
  --bg: #f7f9e7;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #29311c;
  --muted: #536032;
  --brand: #aecb1b;
  --brand-strong: #c6e13a;
  --brand-dark: #7e9413;
  --accent: #a81d84;
  --line: rgba(126, 148, 19, 0.18);
  --shadow: 0 18px 44px rgba(84, 106, 16, 0.14);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(174, 203, 27, 0.44), transparent 25rem),
    radial-gradient(circle at top right, rgba(198, 225, 58, 0.34), transparent 23rem),
    linear-gradient(180deg, #fcfff1 0%, var(--bg) 100%);
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; border-radius: 20px; }
.container { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px); background: rgba(248, 252, 224, 0.92); border-bottom: 1px solid rgba(174, 203, 27, 0.42); }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand img { height: 56px; width: auto; border-radius: 0; }
.site-nav { display: flex; gap: 1.2rem; align-items: center; }
.site-nav a { font-weight: 800; color: var(--text); }
.site-nav a:hover { color: var(--brand-dark); }
.nav-toggle { display: none; }
.breadcrumbs-wrap { border-bottom: 1px solid var(--line); background: rgba(251, 255, 233, 0.78); }
.breadcrumbs { display: flex; gap: 0.65rem; flex-wrap: wrap; padding: 0.9rem 0; font-size: 0.92rem; color: var(--muted); }
.flash-wrap { padding-top: 1rem; }
.flash { padding: 1rem 1.2rem; border-radius: 16px; font-weight: 700; box-shadow: var(--shadow); }
.flash-success { background: linear-gradient(135deg, rgba(174, 203, 27, 0.24), rgba(255,255,255,0.9)); border: 1px solid rgba(174, 203, 27, 0.5); }
.hero, .subhero { padding: 4.5rem 0 3rem; }
.hero-grid, .content-grid, .article-layout, .contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: start; }
.hero-card, .side-card, .intro-card, .card, .profile-card, .faq-item { background: var(--surface); border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow); }
.hero-card, .side-card, .intro-card, .card, .profile-card { border-radius: var(--radius); overflow: hidden; }
.hero-card { padding: 1rem; transform: rotate(-2deg); border: 2px solid rgba(174, 203, 27, 0.42); }
.eyebrow { display: inline-flex; margin-bottom: 0.8rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: rgba(174, 203, 27, 0.2); color: var(--brand-dark); text-transform: uppercase; font-weight: 900; letter-spacing: 0.08em; font-size: 0.72rem; }
h1, h2, h3 { line-height: 1.05; margin: 0 0 1rem; font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); }
.hero h1 { max-width: 12ch; }
.subhero h1 { max-width: none; }
.subhero .lead { max-width: 72ch; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.13rem; line-height: 1.75; color: var(--muted); max-width: 60ch; }
.lead.compact { font-size: 1rem; max-width: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 1.4rem; border-radius: 999px; font-weight: 900; }
.btn-primary { background: linear-gradient(135deg, var(--brand-strong), var(--brand)); color: #223006; box-shadow: 0 10px 24px rgba(174, 203, 27, 0.34); }
.btn-secondary { background: rgba(168, 29, 132, 0.12); color: var(--accent); }
.btn-full { width: 100%; border: 0; cursor: pointer; }
.stats { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stats li { padding: 1rem; border-radius: 18px; background: rgba(255,255,255,0.72); border: 1px solid rgba(174, 203, 27, 0.26); }
.stats strong { display: block; font-size: 1.4rem; color: var(--brand-dark); }
.section { padding: 1rem 0 4rem; }
.section-tint { background: linear-gradient(180deg, rgba(174,203,27,0.12), rgba(198,225,58,0.05)); }
.section-head { margin-bottom: 2rem; max-width: 56rem; }
.card-grid { display: grid; gap: 1.4rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .profile-card { padding: 1.2rem; }
.profile-card img, .card-article img, .partner-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; margin-bottom: 1rem; }
.status, .meta-line { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; font-weight: 700; }
.content, .card-body { font-size: 1.02rem; line-height: 1.8; }
.content-grid > :only-child, .article-layout > :only-child { grid-column: 1 / -1; max-width: 72ch; }
.content > *:first-child { margin-top: 0; }
.content ul, .content ol { padding-left: 1.2rem; }
.intro-card { padding: 1.8rem; }
.faq-list { display: grid; gap: 1rem; }
.faq-item { padding: 1.1rem 1.2rem; border-radius: 20px; }
.faq-item summary { cursor: pointer; font-weight: 800; }
.faq-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
}

.faq-quick-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(126, 148, 19, 0.2);
  color: #32400f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.faq-inline-links {
  margin: 0.9rem 0 0;
}

.faq-inline-links a {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--accent);
}
.contact-copy-card, .contact-form-card { padding: 1.5rem; }
.location-list { display: grid; gap: 1rem; margin-top: 2rem; }
.location-item { padding-top: 1rem; border-top: 1px solid rgba(174, 203, 27, 0.22); }
.contact-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.form-row { display: grid; gap: 0.45rem; }
.form-row label { font-weight: 800; color: var(--text); }
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(174, 203, 27, 0.32);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(252, 255, 241, 0.92);
  color: var(--text);
  font: inherit;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid rgba(174, 203, 27, 0.42);
  border-color: var(--brand);
}
.form-error { color: #a02020; font-size: 0.9rem; }
.site-footer { padding: 3rem 0; background: #2f351f; color: #fff; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 980px) {
  .hero-grid, .content-grid, .article-layout, .contact-layout, .footer-grid, .card-grid.three, .card-grid.four, .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; border: 0; background: rgba(174,203,27,0.22); color: var(--brand-dark); border-radius: 999px; padding: 0.7rem 1rem; font-weight: 900; }
  .site-nav { display: none; position: absolute; top: 84px; left: 1rem; right: 1rem; padding: 1rem; background: #fff; border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .site-nav.is-open { display: flex; }
  .hero-grid, .content-grid, .article-layout, .contact-layout, .footer-grid, .card-grid.three, .card-grid.four, .stats { grid-template-columns: 1fr; }
  .hero, .subhero { padding-top: 3rem; }
  h1 { max-width: none; }
}

.footer-grid-strong {
  align-items: start;
}

.footer-grid-strong h2 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.footer-grid-strong p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.footer-locations {
  display: grid;
  gap: 0.75rem;
}

.footer-location-link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-location-link:hover {
  transform: translateY(-1px);
  background: rgba(174, 203, 27, 0.14);
  border-color: rgba(174, 203, 27, 0.3);
}

.footer-location-link strong,
.footer-location-link span {
  display: block;
}

.footer-location-link strong {
  margin-bottom: 0.2rem;
  color: #fff;
}

.footer-location-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-meta a:hover {
  color: rgba(255, 255, 255, 0.86);
}



.teacher-section-head {
  max-width: 62rem;
}

.teacher-lead-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
}

.teacher-lead-card img {
  aspect-ratio: 4 / 4;
  object-fit: cover;
  width: 100%;
  margin-bottom: 0;
}

.teacher-archive-link-wrap {
  margin-top: 2rem;
}

.teacher-archive-link {
  min-width: 18rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-chip-new {
  color: #432805;
  background: linear-gradient(135deg, #ffe89a, #ffd25a);
  box-shadow: 0 10px 24px rgba(255, 210, 90, 0.28);
}

.status-chip-new::before {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #ff8a00;
  box-shadow: 0 0 0 0.25rem rgba(255, 138, 0, 0.16);
}

.status-chip-archived {
  color: #5a1717;
  background: rgba(160, 32, 32, 0.12);
  border: 1px solid rgba(160, 32, 32, 0.22);
}

.archive-notice {
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(160, 32, 32, 0.08);
  border: 1px solid rgba(160, 32, 32, 0.16);
}

.archive-notice strong {
  display: block;
  margin-bottom: 0.45rem;
}

.archive-notice p {
  margin: 0;
  color: var(--muted);
}

.archived-profile-card {
  position: relative;
}

.archived-profile-card::after {
  content: 'Archiwum';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 53, 31, 0.78);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .teacher-lead-card {
    grid-template-columns: 1fr;
  }

  .teacher-archive-link {
    width: 100%;
    min-width: 0;
  }
}

.contact-links-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(174, 203, 27, 0.14), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(174, 203, 27, 0.24);
}

.contact-links-card h2 {
  margin-bottom: 1rem;
}

.contact-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(174, 203, 27, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 48, 10, 0.14);
  border-color: rgba(174, 203, 27, 0.38);
  background: rgba(255, 255, 255, 0.95);
}

.contact-link-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(104, 129, 0, 0.22);
}

.contact-link-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.contact-link-label {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

.contact-layout-single {
  grid-template-columns: 1fr;
}

.contact-layout-single .contact-copy-card {
  max-width: 100%;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 232, 0.9));
}

.contact-copy-card > p {
  max-width: 76ch;
  color: #485931;
}

.contact-form-showcase {
  margin-top: 2.2rem;
}

.contact-form-showcase-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(174, 203, 27, 0.18), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(126, 148, 19, 0.2);
  box-shadow: var(--shadow);
}

.contact-form-copy {
  padding: 2rem 2.1rem;
}

.contact-form-copy h2 {
  margin-bottom: 0.9rem;
}

.contact-form-copy .lead {
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.contact-form-modern {
  margin-top: 0;
  gap: 0.85rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form-modern .form-row label {
  font-size: 0.88rem;
}

.contact-form-modern .form-row input,
.contact-form-modern .form-row textarea {
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 0.92rem 1rem;
  box-shadow: inset 0 0 0 1px rgba(126, 148, 19, 0.14);
}

.contact-form-modern .form-row input:focus,
.contact-form-modern .form-row textarea:focus {
  outline: 2px solid rgba(126, 148, 19, 0.32);
  box-shadow: inset 0 0 0 1px rgba(126, 148, 19, 0.26);
}

.contact-form-submit {
  margin-top: 0.35rem;
  border-radius: 14px;
  padding-block: 1rem;
  font-size: 1.02rem;
}

.contact-form-note {
  margin: 0.75rem 0 0;
  color: #6b794d;
  font-size: 0.8rem;
}

.location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-item {
  margin: 0;
  padding: 1.1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(126, 148, 19, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.location-item h2 {
  font-size: 1.2rem;
}

.location-item a {
  display: inline-flex;
  align-items: center;
  margin-top: 0.1rem;
  font-weight: 800;
}

.contact-form-visual {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.68), transparent 18rem),
    linear-gradient(140deg, rgba(174, 203, 27, 0.34), rgba(168, 29, 132, 0.16));
}

.contact-form-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.contact-form-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(198, 225, 58, 0.28), rgba(168, 29, 132, 0.1));
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-icon svg {
  width: 1rem;
  height: 1rem;
}

.location-item h2 {
  margin-bottom: 0.5rem;
}

.location-item p {
  margin: 0 0 0.75rem;
}

.map-card {
  padding: 1rem;
}

.locations-map {
  min-height: 440px;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid rgba(174, 203, 27, 0.24);
  background: linear-gradient(180deg, rgba(174, 203, 27, 0.18), rgba(255, 255, 255, 0.94));
}

.map-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.map-pin-icon {
  background: transparent;
  border: 0;
}

.map-pin-icon span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-dark));
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(84, 106, 16, 0.26);
}

.map-pin-icon span::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 760px) {
  .locations-map {
    min-height: 320px;
  }

  .contact-layout-single .contact-copy-card {
    padding: 1.35rem;
  }

  .contact-links-list,
  .location-list {
    grid-template-columns: 1fr;
  }

  .contact-form-showcase-shell {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    padding: 1.35rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-visual {
    min-height: 240px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(174, 203, 27, 0.22);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.gallery-card figcaption {
  padding: 0.95rem 1rem 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.subhero-camp {
  position: relative;
  overflow: hidden;
}

.subhero-camp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.58), transparent 20rem),
    linear-gradient(135deg, rgba(174, 203, 27, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.subhero-camp .container {
  position: relative;
}

.camp-summary-section {
  padding-top: 0;
}

.camp-summary-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: stretch;
}

.camp-summary-copy,
.camp-summary-visual,
.camp-content-card,
.camp-pillar-card {
  padding: 1.6rem;
}

.camp-summary-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.camp-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.camp-fact-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(174, 203, 27, 0.12);
  border: 1px solid rgba(174, 203, 27, 0.2);
}

.camp-fact-card strong,
.camp-fact-card span {
  display: block;
}

.camp-fact-card strong {
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1rem;
}

.camp-fact-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.camp-summary-visual {
  display: grid;
  gap: 0;
  padding: 0;
}

.camp-summary-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}

.camp-visual-note {
  padding: 1.2rem 1.3rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 207, 0.92));
  border-top: 1px solid rgba(174, 203, 27, 0.16);
}

.camp-visual-note strong,
.camp-visual-note span {
  display: block;
}

.camp-visual-note strong {
  margin-bottom: 0.3rem;
}

.camp-visual-note span {
  color: var(--muted);
  line-height: 1.6;
}

.camp-section-head {
  max-width: 48rem;
}

.camp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.camp-pillar-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(174, 203, 27, 0.18);
  box-shadow: var(--shadow);
}

.camp-pillar-card p {
  margin: 0;
  color: var(--muted);
}

.camp-content-section {
  padding-top: 0.6rem;
}

.camp-content-grid {
  grid-template-columns: minmax(0, 1fr);
}

.camp-content-card {
  max-width: 100%;
}

.camp-content-card h2 {
  margin-top: 2rem;
}

.gallery-grid-camp {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card-camp {
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card-camp:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(84, 106, 16, 0.2);
}

.gallery-card-camp figcaption {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 227, 0.92));
}

@media (max-width: 980px) {
  .camp-summary-grid,
  .camp-pillars-grid,
  .gallery-grid-camp {
    grid-template-columns: 1fr 1fr;
  }

  .camp-summary-visual {
    min-height: 100%;
  }
}

@media (max-width: 760px) {
  .camp-summary-grid,
  .camp-facts-grid,
  .camp-pillars-grid,
  .gallery-grid-camp {
    grid-template-columns: 1fr;
  }

  .camp-summary-copy,
  .camp-summary-visual,
  .camp-content-card,
  .camp-pillar-card {
    padding: 1.25rem;
  }

  .camp-summary-visual img {
    aspect-ratio: 4 / 3;
  }
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.2rem 0.15rem;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 0.22rem;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after {
  background: rgba(174, 203, 27, 0.9);
}

.site-nav-link-cta {
  margin-left: 0.4rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
  box-shadow: 0 10px 24px rgba(174, 203, 27, 0.24);
}

.site-nav-link-cta::after {
  display: none;
}

.site-nav-link-cta:hover,
.site-nav-link-cta.is-active {
  color: #223006;
  background: linear-gradient(135deg, #d7ef5f, var(--brand));
}

@media (max-width: 760px) {
  .site-nav-link {
    width: 100%;
    min-height: 0;
    padding: 0.2rem 0;
  }

  .site-nav-link::after {
    display: none;
  }

  .site-nav-link-cta {
    margin-left: 0;
    margin-top: 0.4rem;
    justify-content: center;
  }
}

.local-reach-card {
  padding: 1.8rem;
}

.local-reach-head {
  margin-bottom: 1.4rem;
}

.local-reach-content {
  max-width: 64rem;
  color: var(--muted);
}

.local-reach-content p {
  margin: 0 0 1rem;
}

.local-reach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.local-reach-list li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.12);
  border: 1px solid rgba(174, 203, 27, 0.18);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.footer-service-area {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.94rem;
}

.home-hero {
  padding: 5.4rem 0 4rem;
}

.home-hero-grid {
  gap: 2.8rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 38rem;
}

.home-hero .lead {
  max-width: 34rem;
}

.home-hero-card {
  padding: 0;
  transform: rotate(-1.25deg);
}

.home-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  border-radius: 0;
}

.home-hero-caption {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245, 250, 220, 0.94));
}

.home-hero-caption strong {
  font-size: 1.02rem;
}

.home-hero-caption span {
  color: var(--muted);
}

.home-stats {
  margin-top: 2.25rem;
}

.home-section-spacious {
  padding: 2rem 0 5rem;
}

.home-intro-card {
  max-width: 66rem;
  padding: 2rem 2.2rem;
  line-height: 1.9;
}

.home-panel-wrap {
  max-width: 72rem;
}

.home-section-head {
  margin-bottom: 2.4rem;
  max-width: 42rem;
}

.home-teacher-grid,
.home-article-grid {
  gap: 1.6rem;
}

.home-teacher-card,
.home-article-card,
.faq-list .faq-item {
  background: rgba(255, 255, 255, 0.94);
}

.home-teacher-card,
.home-article-card {
  padding: 0;
  overflow: hidden;
}

.home-teacher-card p,
.home-article-card p {
  margin-bottom: 0;
}

.home-teacher-card img,
.home-article-card img {
  margin: 0;
  border-radius: 0;
}

.home-teacher-card-link > div,
.home-article-card .card-body {
  padding: 1.2rem 1.25rem 1.3rem;
}

.home-teacher-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.home-teacher-card-link:hover {
  color: inherit;
}

.home-section-cta {
  margin-top: 1.6rem;
}

.home-article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-reach-card {
  max-width: 72rem;
  padding: 2rem 2.1rem;
}

.local-reach-list {
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.faq-list {
  max-width: 72rem;
}

.faq-item {
  padding: 1.3rem 1.4rem;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .home-article-grid {
    grid-template-columns: 1fr;
  }

  .home-panel-wrap,
  .local-reach-card,
  .faq-list {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 3.2rem 0 2.4rem;
  }

  .home-section-spacious {
    padding: 1.2rem 0 3.6rem;
  }

  .home-intro-card,
  .local-reach-card {
    padding: 1.4rem;
  }
}

.subhero-levels {
  position: relative;
  overflow: hidden;
}

.subhero-levels::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.52), transparent 18rem),
    linear-gradient(135deg, rgba(174, 203, 27, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.subhero-levels .container {
  position: relative;
}

.levels-summary-section {
  padding-top: 0.4rem;
}

.levels-section-head {
  max-width: 46rem;
}

.levels-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.levels-stage-card {
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(174, 203, 27, 0.18);
  box-shadow: var(--shadow);
}

.levels-stage-card-accent {
  background: linear-gradient(180deg, rgba(215, 239, 95, 0.42), rgba(255, 255, 255, 0.96));
}

.levels-stage-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.16);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.levels-stage-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.levels-stage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.levels-content-section {
  padding-top: 1rem;
}

.levels-content-grid {
  grid-template-columns: minmax(0, 1fr);
}

.levels-content-card {
  max-width: 76rem;
  padding: 2rem 2.1rem;
}

.levels-content-card > *:first-child {
  margin-top: 0;
}

.levels-content-card h2 {
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(174, 203, 27, 0.18);
}

.levels-content-card h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.levels-content-card h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--brand-dark);
}

.levels-content-card ul {
  margin: 0 0 1.4rem;
  padding: 1.1rem 1.2rem 1.1rem 2.2rem;
  border-radius: 22px;
  background: rgba(174, 203, 27, 0.08);
  border: 1px solid rgba(174, 203, 27, 0.16);
}

.levels-content-card p {
  max-width: 68rem;
}

.levels-rich-shell {
  display: grid;
  gap: 1rem;
}

.levels-rich-lead {
  margin: 0 0 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(174, 203, 27, 0.1);
  border: 1px solid rgba(126, 148, 19, 0.18);
  color: #4a5a31;
}

.levels-rich-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 148, 19, 0.2);
  box-shadow: var(--shadow);
}

.levels-rich-item summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem 1.05rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 230, 0.9));
}

.levels-rich-item summary::-webkit-details-marker {
  display: none;
}

.levels-rich-summary-title {
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.levels-rich-summary-title::after {
  content: '+';
  margin-left: 0.55rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.2);
  color: #42540e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.levels-rich-item[open] .levels-rich-summary-title::after {
  content: '−';
}

.levels-rich-summary-meta {
  color: #6b784d;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.levels-rich-body {
  padding: 1rem 1.1rem 1.2rem;
}

.levels-rich-body h3 {
  margin-top: 1rem;
  margin-bottom: 0.55rem;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.levels-rich-body h3:first-child {
  margin-top: 0;
}

.levels-rich-body p {
  margin: 0 0 0.9rem;
}

.levels-rich-body ul {
  margin: 0 0 0.8rem;
  padding: 0.95rem 1rem 0.95rem 2rem;
  border-radius: 16px;
  background: rgba(174, 203, 27, 0.08);
  border: 1px solid rgba(174, 203, 27, 0.16);
}

.levels-rich-body li + li {
  margin-top: 0.35rem;
}

.levels-rich-cta {
  margin: 0.25rem 0 0;
}

.levels-rich-cta a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(168, 29, 132, 0.12);
  color: var(--accent);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .levels-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .levels-stage-grid {
    grid-template-columns: 1fr;
  }

  .levels-content-card {
    padding: 1.4rem;
  }

  .levels-rich-item summary,
  .levels-rich-body {
    padding-inline: 0.95rem;
  }
}

.home-band {
  position: relative;
}

.home-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-band > .container {
  position: relative;
}

.home-band-intro::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34) 22%, rgba(245, 248, 230, 0.92) 100%);
}

.home-band-teachers::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.7), transparent 18rem),
    linear-gradient(180deg, rgba(241, 246, 214, 0.72), rgba(255, 255, 255, 0));
}

.home-band-articles::before {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.52), transparent 18rem),
    linear-gradient(180deg, rgba(174, 203, 27, 0.12), rgba(198, 225, 58, 0.06));
}

.home-band-reach::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 252, 238, 0.88), transparent 18rem),
    linear-gradient(180deg, rgba(255, 248, 225, 0.46), rgba(255, 255, 255, 0));
}

.home-band-faq::before {
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.7), transparent 16rem),
    linear-gradient(180deg, rgba(243, 247, 221, 0.86), rgba(255, 255, 255, 0));
}

.home-band-teachers .home-panel-wrap,
.home-band-articles .home-panel-wrap,
.home-band-faq .home-panel-wrap {
  padding-top: 0.2rem;
}

.home-band-articles .home-article-card {
  background: rgba(255, 255, 255, 0.96);
}

.home-band-faq .faq-item {
  border: 1px solid rgba(174, 203, 27, 0.14);
  background: rgba(255, 255, 255, 0.96);
}


.subhero-gallery {
  position: relative;
  overflow: hidden;
}

.subhero-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.52), transparent 18rem),
    linear-gradient(135deg, rgba(174, 203, 27, 0.2), rgba(255, 248, 228, 0.26));
  pointer-events: none;
}

.subhero-gallery .container {
  position: relative;
}

.gallery-story-section,
.gallery-content-section {
  padding-top: 0;
}

.gallery-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: stretch;
}

.gallery-story-copy,
.gallery-story-visual,
.gallery-content-card {
  padding: 1.6rem;
}

.gallery-story-copy p {
  color: var(--muted);
  line-height: 1.78;
}

.gallery-story-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.gallery-story-point {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(174, 203, 27, 0.1);
  border: 1px solid rgba(174, 203, 27, 0.16);
}

.gallery-story-point strong,
.gallery-story-point span {
  display: block;
}

.gallery-story-point strong {
  margin-bottom: 0.25rem;
}

.gallery-story-point span {
  color: var(--muted);
  line-height: 1.55;
}

.gallery-story-visual {
  padding: 0;
  overflow: hidden;
}

.gallery-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.gallery-content-grid {
  grid-template-columns: minmax(0, 1fr);
}

.gallery-content-card {
  max-width: 100%;
}

.gallery-content-card p:last-child {
  margin-bottom: 0;
}

.gallery-display-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 234, 0.92), rgba(255, 255, 255, 0.98));
}

.gallery-section-head {
  max-width: 50rem;
}

.gallery-grid-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-group + .gallery-group {
  margin-top: 2.35rem;
}

.gallery-group-head {
  margin-bottom: 1rem;
}

.gallery-group-head h3 {
  margin-bottom: 0.45rem;
}

.gallery-group-head .lead {
  margin: 0;
}

.gallery-card-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-card-gallery {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card-gallery:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(84, 106, 16, 0.18);
}

.gallery-card-gallery img {
  aspect-ratio: 1 / 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(22, 29, 5, 0.82);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
}

.gallery-lightbox-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(88vh - 3.5rem);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-figure figcaption {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

body.has-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .gallery-grid-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .gallery-story-grid,
  .gallery-grid-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .gallery-story-grid,
  .gallery-grid-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-story-copy,
  .gallery-content-card {
    padding: 1.25rem;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox-figure img {
    border-radius: 18px;
  }
}


.home-band-testimonials::before {
  background: linear-gradient(180deg, rgba(248, 244, 229, 0.92), rgba(255, 255, 255, 0.96));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.45rem;
}

.testimonial-quote {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonial-author {
  margin: 0;
  font-weight: 800;
}

.testimonial-meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.error-subhero {
  position: relative;
  overflow: hidden;
}

.error-subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.56), transparent 18rem),
    linear-gradient(135deg, rgba(174, 203, 27, 0.16), rgba(255, 241, 207, 0.38));
  pointer-events: none;
}

.error-subhero .container {
  position: relative;
}

.error-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: stretch;
}

.error-card,
.error-tips {
  padding: 1.6rem;
}

.error-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 222, 0.94));
}

.error-code {
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 1;
  font-weight: 900;
  color: var(--brand-dark);
}

.error-letters {
  display: flex;
  gap: 0.55rem;
  margin: 0.8rem 0 1rem;
}

.error-letters span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: rgba(174, 203, 27, 0.18);
  border: 1px solid rgba(174, 203, 27, 0.24);
  font-weight: 900;
  color: var(--brand-dark);
  transform: rotate(-4deg);
}

.error-letters span:nth-child(2n) {
  transform: rotate(6deg);
}

.error-section {
  padding-top: 0;
}

.error-tip-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .testimonial-grid,
  .error-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .testimonial-grid,
  .error-hero-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .error-card,
  .error-tips {
    padding: 1.25rem;
  }
}


:root {
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(252, 255, 242, 0.86);
  --brand-soft: rgba(174, 203, 27, 0.14);
  --accent-soft: rgba(168, 29, 132, 0.14);
  --shadow-strong: 0 26px 64px rgba(84, 106, 16, 0.18);
}

body {
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.site-header {
  background: rgba(250, 252, 234, 0.9);
  box-shadow: 0 16px 40px rgba(84, 106, 16, 0.08);
}

.header-utility {
  border-bottom: 1px solid rgba(126, 148, 19, 0.14);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(174, 203, 27, 0.08));
}

.header-utility-inner,
.header-utility-links,
.social-links,
.brand,
.brand-copy {
  display: flex;
  align-items: center;
}

.header-utility-inner,
.header-utility-links {
  justify-content: space-between;
  gap: 1rem;
}

.header-utility-links {
  flex-wrap: wrap;
}

.header-utility-inner {
  min-height: 3rem;
}

.header-utility-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-utility-link {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

.social-links {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(126, 148, 19, 0.18);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(126, 148, 19, 0.32);
  box-shadow: 0 16px 32px rgba(84, 106, 16, 0.12);
}

.social-link-icon,
.home-social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  color: #fff;
  flex-shrink: 0;
}

.social-link-icon svg,
.home-social-link-icon svg {
  width: 1rem;
  height: 1rem;
}

.social-link-facebook .social-link-icon,
.home-social-link[href*="facebook"] .home-social-link-icon {
  background: linear-gradient(135deg, #1877f2, #0f57bf);
}

.social-link-instagram .social-link-icon,
.home-social-link[href*="instagram"] .home-social-link-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.social-link-tiktok .social-link-icon,
.home-social-link[href*="tiktok"] .home-social-link-icon {
  background: linear-gradient(135deg, #101820, #25f4ee 52%, #fe2c55);
}

.social-links-compact .social-link {
  padding: 0.42rem 0.58rem;
}

.social-links-compact .social-link span:last-child {
  display: none;
}

.social-links-footer {
  margin-top: 1.1rem;
}

.brand {
  gap: 0.95rem;
}

.brand-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar {
  min-height: 92px;
  gap: 1.5rem;
}

.site-nav {
  gap: 1.1rem;
  justify-content: flex-end;
}

.site-nav-link {
  min-height: 3rem;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.hero-card,
.side-card,
.intro-card,
.card,
.profile-card,
.faq-item,
.contact-link-item,
.footer-location-link {
  border: 1px solid rgba(126, 148, 19, 0.14);
}

.hero-card,
.side-card,
.intro-card,
.card,
.profile-card {
  box-shadow: var(--shadow-strong);
}

.btn {
  gap: 0.45rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 4.8rem;
}

.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.82), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(198, 225, 58, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(174, 203, 27, 0.12), rgba(255, 248, 231, 0.42));
}

.home-hero::after {
  inset: auto -6% 6% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 46% 54% 58% 42%;
  background: rgba(168, 29, 132, 0.06);
  filter: blur(4px);
}

.home-hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 3.25rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 39rem;
}

.home-hero h1 {
  max-width: 11ch;
}

.home-hero .lead {
  max-width: 33rem;
}

.home-stats li {
  background: var(--surface-soft);
  backdrop-filter: blur(12px);
}

.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.home-hero-tags span,
.home-path-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(126, 148, 19, 0.18);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-stage {
  position: relative;
  min-height: 42rem;
}

.home-hero-card {
  position: absolute;
  inset: 2.2rem 0 0 3.1rem;
  padding: 0;
  transform: none;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 204, 0.94));
}

.home-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  aspect-ratio: 5 / 5.8;
  object-fit: cover;
  border-radius: 0;
}

.home-hero-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 16rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(84, 106, 16, 0.16);
  backdrop-filter: blur(12px);
}

.home-stage-note,
.home-social-card {
  position: absolute;
  z-index: 1;
}

.home-stage-note {
  max-width: 15rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.home-stage-note strong,
.home-stage-note span {
  display: block;
}

.home-stage-note strong {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.home-stage-note span {
  color: var(--muted);
  line-height: 1.55;
}

.home-stage-note-primary {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 233, 0.92));
}

.home-stage-note-secondary {
  right: 0;
  top: 7rem;
  background: linear-gradient(180deg, rgba(255, 245, 251, 0.96), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(168, 29, 132, 0.14);
}

.home-social-card {
  left: 0;
  bottom: 1.4rem;
  width: min(18rem, 88%);
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.home-social-label {
  margin: 0 0 0.9rem;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.home-social-links,
.home-feature-stack,
.home-path-grid,
.home-intro-shell {
  display: grid;
}

.home-social-links,
.home-feature-stack {
  gap: 0.75rem;
}

.home-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 20px;
  background: rgba(247, 249, 231, 0.88);
  border: 1px solid rgba(126, 148, 19, 0.14);
  color: var(--text);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.home-social-link:hover {
  transform: translateX(4px);
  color: var(--text);
  box-shadow: 0 18px 30px rgba(84, 106, 16, 0.12);
}

.home-intro-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.6rem;
  align-items: start;
}

.home-intro-card,
.home-feature-card,
.home-path-card,
.testimonial-card,
.home-teacher-card,
.home-article-card {
  background: var(--surface-strong);
}

.home-intro-card {
  padding: 2.3rem 2.4rem;
}

.home-feature-card,
.home-path-card {
  padding: 1.5rem;
}

.home-feature-card p,
.home-path-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-feature-card-accent,
.home-path-card-accent {
  background: linear-gradient(180deg, rgba(255, 248, 231, 0.94), rgba(255, 255, 255, 0.98));
}

.home-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.home-path-card {
  min-height: 100%;
}

.home-path-card h3 {
  margin-top: 1rem;
}

.home-path-card a {
  display: inline-flex;
  margin-top: 1.1rem;
  font-weight: 900;
}

.home-band-path::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.6), transparent 16rem),
    linear-gradient(180deg, rgba(255, 245, 229, 0.58), rgba(255, 255, 255, 0));
}

.home-teacher-card,
.home-article-card,
.testimonial-card,
.home-path-card,
.home-feature-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-teacher-card:hover,
.home-article-card:hover,
.testimonial-card:hover,
.home-path-card:hover,
.home-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 58px rgba(84, 106, 16, 0.18);
  border-color: rgba(126, 148, 19, 0.28);
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 235, 0.96));
}

.home-band-reach .local-reach-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 234, 0.96));
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-utility-inner,
  .header-utility-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-grid,
  .home-intro-shell,
  .home-path-grid {
    grid-template-columns: 1fr;
  }

  .home-stage {
    min-height: 36rem;
  }

  .home-hero-card {
    inset: 2.2rem 1rem 0 2rem;
  }
}

@media (max-width: 760px) {
  .header-utility {
    display: none;
  }

  .topbar {
    min-height: 82px;
  }

  .site-nav {
    top: 82px;
  }

  .social-links-footer .social-link span:last-child {
    display: none;
  }

  .home-hero {
    padding: 3.2rem 0 2.8rem;
  }

  .home-stage {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .home-hero-card,
  .home-stage-note,
  .home-social-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    max-width: none;
  }

  .home-hero-card img {
    min-height: 0;
    aspect-ratio: 4 / 4.4;
  }

  .home-hero-caption {
    position: static;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(126, 148, 19, 0.14);
  }

  .home-intro-card,
  .home-feature-card,
  .home-path-card,
  .home-social-card {
    padding: 1.3rem;
  }

  .home-social-link {
    padding: 0.78rem 0.82rem;
  }
}


body[data-page-home="true"] .breadcrumbs-wrap {
  display: none;
}

@media (min-width: 761px) {
  .home-hero-card::before,
  .home-hero-card::after,
  .home-hero-caption,
  .home-stage-note,
  .home-social-card {
    display: none;
  }

  .home-stage {
    min-height: 0;
  }

  .home-hero-card {
    position: relative;
    inset: auto;
  }

  .home-hero-card img {
    min-height: 0;
    aspect-ratio: 5 / 5.3;
  }
}


.card-article-listing {
  padding: 0;
  overflow: hidden;
}

.article-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.article-card-link:hover {
  color: inherit;
}

.card-article-listing img {
  margin-bottom: 0;
  border-radius: 0;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.card-article-listing .card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card-article-listing .card-body h2 {
  transition: color 0.24s ease;
}

.card-article-listing:hover img,
.card-article-listing:focus-within img {
  transform: scale(1.09);
}

.card-article-listing:hover .card-body h2,
.card-article-listing:focus-within .card-body h2 {
  color: var(--accent);
}


.teacher-card-listing {
  padding: 0;
  overflow: hidden;
}

.teacher-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.teacher-card-link:hover {
  color: inherit;
}

.teacher-card-link > div {
  padding: 1.2rem;
}

.teacher-card-link-lead {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.5rem;
  align-items: center;
}

.teacher-card-link-lead > div {
  padding: 1.4rem 1.4rem 1.4rem 0;
}

.teacher-card-listing img {
  margin-bottom: 0;
  border-radius: 0;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.teacher-card-listing:hover img,
.teacher-card-listing:focus-within img {
  transform: scale(1.08);
}

.teacher-card-listing h2 {
  transition: color 0.24s ease;
}

.teacher-card-listing:hover h2,
.teacher-card-listing:focus-within h2 {
  color: var(--accent);
}

@media (max-width: 760px) {
  .teacher-card-link-lead {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .teacher-card-link-lead > div,
  .teacher-card-link > div {
    padding: 1.25rem;
  }
}


.teacher-lead-feature {
  position: relative;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 15rem),
    linear-gradient(135deg, rgba(255, 248, 231, 0.96), rgba(245, 250, 221, 0.98));
  border: 1px solid rgba(174, 203, 27, 0.22);
  box-shadow: 0 28px 60px rgba(84, 106, 16, 0.16);
}

.teacher-lead-feature::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.teacher-lead-feature .teacher-card-link-lead {
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 0;
  min-height: 100%;
}

.teacher-lead-feature img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 4.8;
}

.teacher-lead-feature .teacher-card-link-lead > div {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: 2rem 2.1rem 2rem 1.8rem;
}

.teacher-lead-kicker,
.teacher-lead-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.teacher-lead-kicker {
  padding: 0.56rem 0.9rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-dark);
  font-size: 0.73rem;
}

.teacher-lead-feature h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.teacher-lead-role,
.teacher-lead-motto {
  margin: 0;
}

.teacher-lead-role {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
}

.teacher-lead-motto {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.teacher-lead-cta {
  margin-top: 0.35rem;
  padding: 0.8rem 1.05rem;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
  box-shadow: 0 14px 28px rgba(174, 203, 27, 0.22);
}

.teacher-lead-feature:hover .teacher-lead-cta,
.teacher-lead-feature:focus-within .teacher-lead-cta {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .teacher-lead-feature {
    border-radius: 26px;
  }

  .teacher-lead-feature::before {
    inset: 0.7rem;
    border-radius: 20px;
  }

  .teacher-lead-feature .teacher-card-link-lead {
    grid-template-columns: 1fr;
  }

  .teacher-lead-feature .teacher-card-link-lead > div {
    padding: 1.4rem;
  }

  .teacher-lead-feature img {
    aspect-ratio: 4 / 4.2;
  }
}


@media (min-width: 761px) {
  .teacher-lead-feature {
    max-width: 980px;
    margin: 0 auto;
  }

  .teacher-lead-feature .teacher-card-link-lead {
    grid-template-columns: minmax(280px, 370px) minmax(0, 1fr);
  }

  .teacher-lead-feature .teacher-card-link-lead > div {
    max-width: 34rem;
  }
}

.teacher-lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.teacher-lead-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(174, 203, 27, 0.18);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}


.teacher-lead-feature {
  padding: 0;
  overflow: hidden;
}

.teacher-lead-feature::before {
  display: none;
}

.teacher-lead-feature .teacher-card-link-lead {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.teacher-lead-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.7;
}

.teacher-lead-feature .teacher-card-link-lead > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 2rem 2rem 2rem 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 235, 0.98));
}

.teacher-lead-feature h2,
.teacher-lead-feature .teacher-lead-role,
.teacher-lead-feature .teacher-lead-motto,
.teacher-lead-feature .teacher-lead-kicker,
.teacher-lead-feature .teacher-lead-cta,
.teacher-lead-feature .teacher-lead-points {
  position: relative;
  z-index: 1;
}

.teacher-lead-feature h2 {
  max-width: 16ch;
}

.teacher-lead-role {
  max-width: 28rem;
}

.teacher-lead-motto {
  max-width: 30rem;
}

.teacher-lead-points {
  margin-top: 0.1rem;
}

.teacher-lead-cta {
  margin-top: 0.45rem;
}

@media (min-width: 761px) {
  .teacher-lead-feature {
    max-width: 940px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .teacher-lead-feature .teacher-card-link-lead {
    grid-template-columns: 1fr;
  }

  .teacher-lead-feature .teacher-card-link-lead > div {
    padding: 1.35rem;
  }
}


.teacher-lead-feature,
.teacher-lead-feature::before,
.teacher-lead-feature .teacher-card-link-lead,
.teacher-lead-feature .teacher-card-link-lead > div,
.teacher-lead-feature .teacher-lead-content {
  box-sizing: border-box;
}

.teacher-lead-feature {
  padding: 0;
  overflow: hidden;
  background: #fffdf4;
  border: 1px solid rgba(174, 203, 27, 0.18);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(84, 106, 16, 0.14);
}

.teacher-lead-feature::before {
  content: none;
}

.teacher-lead-feature .teacher-card-link,
.teacher-lead-feature .teacher-card-link:hover {
  color: var(--text);
}

.teacher-lead-feature .teacher-card-link-lead {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 100%;
}

.teacher-lead-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
  border-radius: 0;
}

.teacher-lead-feature .teacher-lead-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 234, 0.98));
}

.teacher-lead-feature h2,
.teacher-lead-feature .teacher-lead-role,
.teacher-lead-feature .teacher-lead-motto,
.teacher-lead-feature .teacher-lead-kicker,
.teacher-lead-feature .teacher-lead-cta,
.teacher-lead-feature .teacher-lead-points {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  color: inherit;
}

.teacher-lead-feature h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.teacher-lead-feature .teacher-lead-role {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
}

.teacher-lead-feature .teacher-lead-motto {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.teacher-lead-feature .teacher-lead-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.12);
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.teacher-lead-feature .teacher-lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.teacher-lead-feature .teacher-lead-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(174, 203, 27, 0.16);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.teacher-lead-feature .teacher-lead-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.78rem 1.02rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.teacher-lead-feature:hover .teacher-lead-cta,
.teacher-lead-feature:focus-within .teacher-lead-cta {
  transform: translateX(4px);
}

@media (min-width: 761px) {
  .teacher-lead-feature {
    max-width: 940px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .teacher-lead-feature .teacher-card-link-lead {
    grid-template-columns: 1fr;
  }

  .teacher-lead-feature .teacher-lead-content {
    padding: 1.35rem;
  }

  .teacher-lead-feature img {
    aspect-ratio: 4 / 4.1;
  }
}


.teacher-lead-feature {
  padding: 0;
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid rgba(174, 203, 27, 0.18);
  border-radius: 28px;
  background: #fffdf4;
  box-shadow: 0 22px 48px rgba(84, 106, 16, 0.14);
}

.teacher-lead-link {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 100%;
  color: var(--text);
}

.teacher-lead-link:hover {
  color: var(--text);
}

.teacher-lead-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.teacher-lead-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 234, 0.98));
}

.teacher-lead-feature h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.teacher-lead-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.12);
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.teacher-lead-role {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
}

.teacher-lead-motto {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.teacher-lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.teacher-lead-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(174, 203, 27, 0.16);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.teacher-lead-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.78rem 1.02rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease;
}

.teacher-lead-feature:hover .teacher-lead-cta,
.teacher-lead-feature:focus-within .teacher-lead-cta {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .teacher-lead-feature {
    max-width: none;
  }

  .teacher-lead-link {
    grid-template-columns: 1fr;
  }

  .teacher-lead-content {
    padding: 1.35rem;
  }

  .teacher-lead-media {
    aspect-ratio: 4 / 4.1;
  }
}


.teacher-lead-feature:hover .teacher-lead-media,
.teacher-lead-feature:focus-within .teacher-lead-media {
  transform: scale(1.08);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: center;
}

.home-hero-copy {
  max-width: 44rem;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.2);
  border: 1px solid rgba(126, 148, 19, 0.24);
  color: #314007;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero .home-hero-title {
  max-width: 16ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 4.8vw, 4.3rem);
  line-height: 1.1;
  text-wrap: balance;
}

.home-hero-title-emphasis {
  color: #627d06;
}

.home-hero .home-hero-lead {
  max-width: 34rem;
  margin: 0;
  color: #44552a;
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.72;
}

.home-hero-btn-primary {
  padding: 0.95rem 1.45rem;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(84, 106, 16, 0.24);
}

.home-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-hero-btn-secondary span {
  display: inline-flex;
}

.home-hero-btn-secondary svg {
  width: 1rem;
  height: 1rem;
}

.home-stage {
  position: relative;
  min-height: 0;
  padding: 0.8rem;
}

.home-hero-card {
  position: relative;
  inset: auto;
  transform: rotate(2deg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(126, 148, 19, 0.24);
  box-shadow: 0 28px 58px rgba(54, 72, 10, 0.28);
  background: #fff;
}

.home-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-hero-caption {
  display: block;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 16.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.home-stage-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
  z-index: -1;
}

.home-stage-orb-primary {
  width: 11rem;
  height: 11rem;
  left: -1.8rem;
  bottom: -2.2rem;
  background: rgba(174, 203, 27, 0.22);
}

.home-stage-orb-secondary {
  width: 13rem;
  height: 13rem;
  right: -2rem;
  top: -2rem;
  background: rgba(168, 29, 132, 0.12);
}

@media (max-width: 1100px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .home-hero-title,
  .home-hero .home-hero-lead {
    max-width: none;
  }

  .home-stage {
    max-width: 34rem;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .home-hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  .home-hero .home-hero-title {
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
  }

  .home-hero .home-hero-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .home-hero-caption {
    position: static;
  }

  .home-hero-card {
    border-radius: 24px;
    transform: none;
  }

  .home-hero-card img {
    aspect-ratio: 4 / 4.9;
  }
}

.home-voices-head {
  text-align: center;
  margin-inline: auto;
}

.home-voices-head h2 {
  margin-bottom: 0.75rem;
}

.home-voices-divider {
  width: 6rem;
  height: 0.3rem;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
}

.home-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-voice-card {
  padding: 1.7rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(126, 148, 19, 0.16);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(84, 106, 16, 0.16);
}

.home-voice-card-offset {
  transform: translateY(0.8rem);
}

.home-voice-stars {
  margin: 0 0 0.75rem;
  color: #7d9212;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.home-voice-quote {
  margin: 0 0 1.2rem;
  color: #46572d;
  font-style: italic;
  line-height: 1.75;
}

.home-voice-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-voice-avatar {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(126, 148, 19, 0.24);
}

.home-voice-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(174, 203, 27, 0.18);
  color: #314007;
  font-weight: 900;
}

.home-voice-name,
.home-voice-meta {
  margin: 0;
}

.home-voice-name {
  font-weight: 900;
  color: #2b3716;
}

.home-voice-meta {
  margin-top: 0.2rem;
  color: #69774b;
  font-size: 0.82rem;
}

.home-program-head {
  max-width: 42rem;
}

.home-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.55rem;
}

.home-program-shell {
  padding: 1px;
  border-radius: 30px;
  background: rgba(174, 203, 27, 0.34);
  transition: transform 0.26s ease;
}

.home-program-shell-featured {
  background: linear-gradient(135deg, rgba(174, 203, 27, 0.62), rgba(198, 225, 58, 0.3));
  box-shadow: 0 24px 44px rgba(84, 106, 16, 0.14);
}

.home-program-shell:hover {
  transform: translateY(-5px) scale(1.01);
}

.home-program-card {
  height: 100%;
  padding: 1.7rem 1.6rem;
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.96);
}

.home-program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(174, 203, 27, 0.2);
  color: #5f7608;
}

.home-program-icon-accent {
  background: linear-gradient(135deg, #c6e13a, #aecb1b);
  color: #2b370a;
}

.home-program-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.home-program-age {
  margin: 0 0 0.55rem;
  color: #6b7a49;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-program-card h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.home-program-copy {
  margin: 0 0 1rem;
  color: #495a31;
  line-height: 1.7;
}

.home-program-list {
  margin: 0 0 1.2rem;
  padding-left: 1.05rem;
  color: #4e5f36;
}

.home-program-list li + li {
  margin-top: 0.35rem;
}

.home-program-btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 0.86rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(126, 148, 19, 0.4);
  color: #33420f;
  font-weight: 900;
}

.home-program-btn-featured {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
}

@media (max-width: 1100px) {
  .home-voices-grid,
  .home-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-voice-card-offset {
    transform: none;
  }
}

@media (max-width: 760px) {
  .home-voices-grid,
  .home-program-grid {
    grid-template-columns: 1fr;
  }

  .home-voice-card,
  .home-program-card {
    padding: 1.35rem;
  }

  .home-program-card h3 {
    font-size: 1.7rem;
  }
}


.google-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.google-review-card {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 233, 0.96));
  border: 1px solid rgba(174, 203, 27, 0.16);
}

.google-review-top,
.google-review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.google-review-author {
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.google-review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(174, 203, 27, 0.22);
}

.google-review-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #223006;
  font-weight: 900;
}

.google-review-name,
.google-review-meta,
.google-review-stars,
.google-review-quote,
.google-review-link-wrap {
  margin: 0;
}

.google-review-name {
  font-weight: 900;
  color: var(--text);
}

.google-review-meta {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(174, 203, 27, 0.18);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.google-review-stars {
  color: #d1a700;
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.google-review-quote {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .google-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .google-review-card {
    padding: 1.25rem;
  }

  .google-review-top {
    align-items: flex-start;
  }
}
