:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1b1d22;
  --muted: #5f6670;
  --accent: #f6a11a;
  --accent-2: #ffd28a;
  --border: rgba(27, 29, 34, 0.12);
  --shadow: 0 24px 60px rgba(27, 29, 34, 0.12);
}

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

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

img {
  max-width: 100%;
  display: block;
  border-radius: 28px;
}

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

ul {
  padding-left: 1.2rem;
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

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

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

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

.card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.card span {
  color: var(--muted);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1b1d22;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  justify-self: center;
  width: 100%;
  justify-content: space-between;
}

.nav-links a {
  color: #f7f7f7;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:last-child {
  margin-right: 1cm;
}

.nav .button.primary {
  justify-self: end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1b1d22;
  cursor: pointer;
  padding: 0;
  justify-self: center;
  flex-direction: column;
  gap: 4px;
}

.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #1b1d22;
  box-shadow: 0 14px 32px rgba(246, 161, 26, 0.3);
}

.button.ghost {
  border-color: var(--border);
  color: var(--ink);
  background: var(--surface);
}

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

.hero {
  padding: 6.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}

.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: auto;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media img {
  box-shadow: var(--shadow);
  object-fit: contain;
  width: 100%;
  max-height: none;
  height: auto;
  border: 4px solid #fff;
}

.hero-media {
  background: #ffffff;
  border-radius: 20px;
}

section {
  padding: 4rem 0;
}

main > section {
  background: #ffffff;
}

main > section:nth-of-type(even) {
  background: #f8f9fb;
}

.section-heading {
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-highlights {
  display: grid;
  gap: 1.4rem;
}

.numbers {
  padding-top: 2rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.numbers-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.approach-media img {
  box-shadow: var(--shadow);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.programs {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f9fb 100%
  );
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.program-grid .subtitle {
  color: var(--muted);
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.program-grid ul li {
  margin-bottom: 0.5rem;
}

.testimonials {
  padding-top: 2rem;
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonials-gallery img:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.testimonials-gallery img {
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
  width: 100%;
  height: auto;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  max-width: 760px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.message {
  padding: 4rem 0;
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.message-form {
  display: grid;
  gap: 1rem;
  background: #f8f9fb;
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.message-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.message-form input,
.message-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  color: var(--ink);
  background: #ffffff;
}

.message-form textarea {
  resize: vertical;
  min-height: 140px;
}

.message-form .button {
  width: fit-content;
}

.message-alert {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  display: none;
}

.message-alert.success {
  display: block;
  background: #fff7e6;
  border: 1px solid rgba(246, 161, 26, 0.4);
  color: #7a4a00;
}

.message-alert.error {
  display: block;
  background: #fff1f1;
  border: 1px solid rgba(180, 60, 60, 0.35);
  color: #7a1f1f;
}

.message-back {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-info span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info a {
  display: block;
  margin-top: 0.3rem;
  font-weight: 600;
}

.contact-card {
  background: #1b1d22;
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: #1b1d22;
  color: #fff;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1b1d22;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    border-radius: 0 0 18px 18px;
    padding: 1.2rem 1.6rem;
    width: 100%;
  }

  .nav-links a {
    padding-left: 0.4rem;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-media {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

}
