:root {
  --green: #8bd000;
  --green-dark: #073d2b;
  --green-deep: #052d22;
  --green-soft: #eff8dc;
  --yellow: #f6c928;
  --cream: #fbfcf7;
  --white: #ffffff;
  --text: #17342b;
  --muted: #6b7c74;
  --line: #dfe8dc;
  --shadow: 0 18px 50px rgba(7, 61, 43, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,232,220,.8);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img { width: 135px; height: auto; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.main-nav a:hover { color: #75ad00; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 45%, rgba(139,208,0,.13), transparent 28%),
    linear-gradient(120deg, #fff 0%, #fbfcf7 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  align-items: center;
  gap: 80px;
  padding: 85px 0;
}
.eyebrow {
  display: inline-block;
  color: #679d00;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.hero h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-dark);
}
.hero h1 {
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: .9;
  margin: 18px 0 20px;
  letter-spacing: -.055em;
}
em { color: #7ab900; font-style: normal; }
.hero-role { color: #7ab900; font-size: 2rem; font-weight: 600; }
.hero-tagline {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 600;
}
.hero-intro {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(7,61,43,.18);
}
.btn-primary span { color: var(--green); font-size: 1.4rem; }

.hero-photo { 
  position: relative; 
  justify-self: end; 
  width: min(100%, 360px); 
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  box-shadow: var(--shadow);
}

.photo-badge {
  position: absolute;
  left: -35px;
  bottom: 35px;
  padding: 15px 20px;
  border-radius: 15px;
  background: var(--green);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.hero-decor {
  position: absolute;
  border: 1px solid rgba(139,208,0,.35);
  border-radius: 50%;
}
.hero-decor-1 { width: 500px; height: 500px; right: -280px; top: 70px; }
.hero-decor-2 { width: 160px; height: 160px; left: -100px; bottom: 20px; }

.intro-strip { background: var(--green-dark); color: white; }
.intro-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.intro-grid > div {
  padding: 10px 35px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.intro-grid > div:first-child { padding-left: 0; }
.intro-grid > div:last-child { border-right: 0; }
.intro-grid strong { display: block; font-size: 1.35rem; color: var(--green); }
.intro-grid span { color: rgba(255,255,255,.7); font-size: .9rem; }

.section { padding: 60px 0; }
.section-heading { margin-bottom: 55px; }
.section-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 14px 0 0;
}
.section-heading p { color: var(--muted); margin: 30px 0 0; }
.centered { text-align: center; }

.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about p { color: var(--muted); }
.about-lead .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
}
.about-highlight {
  padding: 42px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--green);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .6;
  color: var(--green);
  height: 35px;
}
.qualifications { margin-top: 80px; }
.mini-heading h3 { font-size: 2.3rem; margin: 8px 0 28px; }
.qualification-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.qualification-list div {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.qualification-list span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 1.0rem;
}

.schedule { background: white; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.class-card {
  position: relative;
  padding: 35px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.class-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.class-card.featured { background: var(--green-soft); border-color: transparent; }

.class-icon { position:absolute; top:22px; left:24px; width:42px; height:42px; color:var(--green-dark); }
.class-card .day { margin-top:20px; }

.day { color: #6da000; font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.time { font-size: 2.4rem; font-weight: 700; color: var(--green-dark); margin: 10px 0; }
.class-card h3 { font-size: 1.75rem; line-height: 1.1; margin: 12px 0 10px; }
.class-card p { margin: 0; font-weight: 600; }
.class-card small { color: var(--muted); }
.class-icon {
  position: absolute;
  right: 28px;
  bottom: 25px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--green-dark);
  font-weight: 800;
}

.prices { background: var(--green-dark); color: white; }
.prices .section-heading h2 { color: white; }
.prices .eyebrow { color: var(--green); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  padding: 36px;
  min-height: 290px;
  border-radius: var(--radius);
  background: white;
  color: var(--text);
}
.price-card > span { color: var(--muted); font-weight: 700; }
.price-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 15px 0 20px;
}
.price-card strong small { font-size: 1rem; }
.price-card p { color: var(--muted); margin: 0; }
.highlight-price { background: var(--green); }
.highlight-price strong, .highlight-price > span { color: var(--green-dark); }
.highlight-price p { color: rgba(5,45,34,.75); }
.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--green);
}
.validity { text-align: center; color: rgba(255,255,255,.7); margin: 25px 0 0; font-size: 1.12rem; }
.validity strong { font-size: 1.45rem; color: white; }

.contact { background: white; }
.contact-top { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; padding:5px 0 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info { display:flex; flex-direction:column; align-items:flex-start; gap:16px; }
.contact h2 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; margin: 14px 0 20px; }
.contact-lead { color: var(--muted); max-width: 450px; margin:0 0 5px; }
.contact-item { display:flex; align-items:center; gap:12px; font-weight:700; color:var(--green-dark); }
.contact-icon { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; flex:0 0 34px; }
.mail-icon { border:2px solid var(--green-dark); font-size:.9rem; }
.facebook-icon { background:#1877f2; color:#fff; font-family:Arial,sans-serif; }
.instagram-icon { color:#fff; background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.locations-title { display:flex; flex-direction:column; align-items:flex-start; gap:30px; }
.locations { display:grid; grid-template-columns:1fr 1fr; gap:25px; }
.location {
  display: flex;
  gap: 24px;
  padding: 25px;
  border-radius: 20px;
  background: var(--green-soft);
}
.location-number { color: var(--green-dark); font-weight: 800; }
.location strong { font-size: 1.1rem; }
.location p { margin: 4px 0; color: var(--muted); }
.location small { color: #6e8b7c; }

footer { background: var(--green-deep); color: rgba(255,255,255,.65); }
.footer-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
}
.footer-wrap a { color: var(--green); font-weight: 700; }

@media (max-width: 900px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 45px; }
  .about-grid, .contact-grid { gap: 45px; }
  .qualification-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 600px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 105px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 16px; }
  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 65px 0 80px;
  }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .hero-photo { justify-self: center; width: min(100%, 390px); }
  .photo-badge { left: 10px; }
  .intro-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .intro-grid > div, .intro-grid > div:first-child {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .intro-grid > div:last-child { border-bottom: 0; }
  .section { padding: 75px 0; }
  .section-heading { margin-bottom: 38px; }
  .about-grid, .schedule-grid, .price-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-highlight { padding: 30px; }
  .qualifications { margin-top: 55px; }
  .class-card { min-height: 255px; }
  .price-card { min-height: 240px; }
  .contact-grid { gap: 45px; }
  .contact-top { align-items:flex-start; flex-direction:column; gap:18px; padding-bottom:42px; }
  .footer-wrap { min-height: 75px; flex-direction: column; justify-content: center; gap: 5px; }
}
@media (max-width: 430px) {
  .hero h1 { font-size: 3.7rem; }
  .photo-placeholder { aspect-ratio: 1 / 1.15; }
}
