:root {
  --green: #5f875c;
  --green-dark: #36533a;
  --green-soft: #eaf1e5;
  --sage: #b5caa2;
  --earth: #7c5a2f;
  --cream: #f8f7f1;
  --text: #243126;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(37, 54, 39, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 247, 241, 0.92);
  border-bottom: 1px solid rgba(95, 135, 92, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(95, 135, 92, 0.15);
}
.brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--earth);
  line-height: 1;
}
.brand span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.menu a {
  font-weight: 600;
  font-size: 14px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 30px;
}
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg,
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.overlay {
  background: linear-gradient(120deg, rgba(28, 45, 31, 0.68), rgba(67, 93, 62, 0.35));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 100px 0 70px;
}
.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1,
.section h2,
.intro-card h2,
.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  max-width: 780px;
  margin: 12px 0 18px;
}
.lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-secondary { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.left { justify-content: flex-start; }
.intro-card { margin-top: -56px; position: relative; z-index: 2; }
.card-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
}
.quote-card,
.levels-card,
.exp-card,
.contact-card,
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote-card,
.levels-card,
.contact-card,
.form-card { padding: 34px; }
.quote-card h2,
.section h2,
.contact-card h2 { font-size: clamp(38px, 5vw, 62px); margin: 0 0 14px; }
.quote-card p,
.section p,
.contact-card p,
.exp-card p { line-height: 1.8; }
blockquote {
  margin: 26px 0 0;
  padding: 24px;
  border-left: 4px solid var(--sage);
  background: var(--green-soft);
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
}
blockquote span { display: block; margin-top: 10px; font-size: 14px; }
.levels-card {
  background: linear-gradient(180deg, var(--green-dark), var(--green));
  color: var(--white);
}
.levels-card h3 { margin-top: 0; font-size: 28px; font-family: 'Cormorant Garamond', serif; }
.levels-card ul { padding-left: 18px; line-height: 2; }
.section { padding: 84px 0; }
.soft-bg { background: linear-gradient(180deg, #edf3e8, #f8f7f1); }
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.feature-item {
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.feature-item h3 { margin-top: 0; color: var(--earth); }
.image-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.image-stack img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.image-stack img:first-child {
  grid-column: span 2;
  height: 320px;
}
.center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card { overflow: hidden; }
.exp-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.exp-card h3 { padding: 22px 22px 0; margin: 0; font-size: 24px; font-family: 'Cormorant Garamond', serif; color: var(--earth); }
.exp-card p { padding: 0 22px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.video-split { align-items: stretch; }
.video-frame {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.contact-list a,
.contact-list span {
  padding: 15px 18px;
  background: var(--green-soft);
  border-radius: 16px;
  font-weight: 600;
}
.form-card {
  display: grid;
  gap: 14px;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(95, 135, 92, 0.18);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fbfcf9;
}
.full { width: 100%; }
.map-section iframe { width: 100%; height: 430px; border: 0; display: block; }
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer p { margin: 6px 0 0; }
.footer a { text-decoration: underline; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 18, 14, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(900px, 95vw);
  max-height: 86vh;
  border-radius: 20px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.16);
  border: 0;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .card-grid,
  .split,
  .contact-grid,
  .experience-grid,
  .feature-list,
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .split,
  .card-grid,
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    background: var(--white);
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
  }
  .menu.open { display: flex; }
  .hero { min-height: 82vh; }
  .hero h1 { font-size: 48px; }
  .lead { font-size: 16px; }
  .quote-card,
  .levels-card,
  .contact-card,
  .form-card { padding: 24px; }
  .image-stack,
  .experience-grid,
  .feature-list,
  .gallery-grid { grid-template-columns: 1fr; }
  .image-stack img,
  .image-stack img:first-child { height: auto; }
  .topbar-inner,
  .footer-inner { justify-content: flex-start; }
}
