:root {
  --green: #34bd34;
  --green-dark: #148e2b;
  --lime: #b8f13a;
  --orange: #ff9b24;
  --red: #f04c3e;
  --cream: #fffaf0;
  --ink: #172119;
  --muted: #687168;
  --white: #ffffff;
  --border: rgba(23, 33, 25, 0.12);
  --shadow: 0 24px 70px rgba(28, 84, 39, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.announcement {
  padding: 9px 20px;
  background: var(--ink);
  color: white;
  text-align: center;
  font-size: .84rem;
  letter-spacing: .02em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Baloo 2"; font-weight: 800; font-size: 1.38rem; }
.brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: 0 5px 16px rgba(0,0,0,.12); }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 600; }
.main-nav a:hover { color: var(--green-dark); }
.nav-cta { padding: 11px 18px; color: white !important; background: var(--green-dark); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; }

.hero { position: relative; overflow: hidden; padding: 92px 0 88px; background:
  radial-gradient(circle at 10% 10%, rgba(184,241,58,.22), transparent 28%),
  radial-gradient(circle at 90% 70%, rgba(255,155,36,.18), transparent 30%); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; color: var(--green-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; }
h1, h2, h3 { margin: 0; font-family: "Baloo 2"; line-height: 1.05; }
h1 { max-width: 720px; margin-top: 14px; font-size: clamp(3.25rem, 6vw, 5.9rem); letter-spacing: -.045em; }
h2 { margin-top: 12px; font-size: clamp(2.35rem, 4.6vw, 4.2rem); letter-spacing: -.035em; }
h3 { font-size: 1.65rem; }
.hero-copy > p { max-width: 640px; margin: 24px 0 30px; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; padding: 13px 23px; align-items: center; justify-content: center; border: 2px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #0f3218; box-shadow: 0 12px 28px rgba(52,189,52,.25); }
.button-secondary { border-color: var(--ink); background: transparent; }
.button-dark { width: 100%; border: 0; background: var(--ink); color: white; }
.hero-trust { display: flex; gap: 30px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: .95rem; }
.hero-trust span { color: var(--muted); font-size: .78rem; }
.hero-media { position: relative; min-height: 600px; }
.image-card { overflow: hidden; border-radius: 35px; box-shadow: var(--shadow); }
.image-card-main { position: absolute; inset: 0 0 35px 60px; transform: rotate(2deg); }
.image-card-main img { height: 100%; object-fit: cover; }
.mini-image { position: absolute; width: 210px; height: 235px; left: 0; bottom: 0; overflow: hidden; border: 9px solid var(--cream); border-radius: 28px; transform: rotate(-5deg); box-shadow: var(--shadow); }
.mini-image img { height: 100%; object-fit: cover; }
.floating-card { position: absolute; right: -25px; top: 48px; display: flex; align-items: center; gap: 11px; padding: 14px 17px; background: white; border-radius: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.14); z-index: 2; }
.floating-card div { display: flex; flex-direction: column; line-height: 1.3; }
.floating-card small { color: var(--muted); }
.floating-icon { font-size: 1.6rem; }
.hero-decor { position: absolute; font-size: 3.2rem; opacity: .35; }
.decor-one { left: 2%; bottom: 12%; transform: rotate(-12deg); }
.decor-two { right: 2%; top: 10%; transform: rotate(12deg); }

.social-proof { padding: 24px 0; background: var(--green-dark); color: white; }
.proof-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 36px; }
.proof-grid p { margin: 0; opacity: .72; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.proof-grid span { font-family: "Baloo 2"; font-size: 1.1rem; font-weight: 700; }

.section { padding: 110px 0; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-collage { position: relative; min-height: 620px; }
.collage-large { position: absolute; inset: 0 35px 35px 0; height: 90%; object-fit: cover; border-radius: 35px; box-shadow: var(--shadow); }
.collage-small { position: absolute; right: 0; bottom: 0; width: 245px; height: 270px; object-fit: cover; border: 9px solid var(--cream); border-radius: 28px; box-shadow: var(--shadow); }
.experience-badge { position: absolute; left: -18px; bottom: 65px; display: flex; flex-direction: column; max-width: 195px; padding: 17px; background: var(--lime); border-radius: 18px; transform: rotate(-3deg); box-shadow: 0 15px 34px rgba(0,0,0,.12); }
.experience-badge span { font-size: .78rem; }
.section-copy > p, .section-heading > p { color: var(--muted); font-size: 1.03rem; }
.check-list { margin: 27px 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 11px; border-radius: 50%; color: white; background: var(--green-dark); font-size: .78rem; font-weight: 900; }
.text-link { font-weight: 800; color: var(--green-dark); }

.menu-section { background: white; }
.section-heading { margin-bottom: 50px; }
.section-heading.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.split { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.instagram-link { color: var(--green-dark); font-weight: 800; white-space: nowrap; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.menu-card { padding: 30px 25px; background: var(--cream); border: 1px solid var(--border); border-radius: 25px; transition: transform .2s, box-shadow .2s; }
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(28,84,39,.12); }
.menu-icon { margin-bottom: 20px; font-size: 2.6rem; }
.menu-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.gallery-section { background: #eef8e9; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item { overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: #ddd; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.05); }

.packages-section { background: white; }
.packages-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.packages-cta p {
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-section { background: var(--cream); }
.process-grid { align-items: start; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.steps li { display: flex; gap: 22px; padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: white; }
.steps > li > span { display: grid; place-items: center; flex: 0 0 52px; height: 52px; border-radius: 50%; background: var(--lime); font-family: "Baloo 2"; font-weight: 800; }
.steps p { margin: 4px 0 0; color: var(--muted); }

.contact-section { color: white; background: linear-gradient(130deg, #116d27, #1e9f38); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.eyebrow.light { color: var(--lime); }
.contact-copy p { color: rgba(255,255,255,.78); }
.contact-copy a { color: white; text-decoration: underline; }
.contact-details { display: grid; gap: 10px; margin-top: 30px; font-weight: 600; }
.booking-form { display: grid; gap: 17px; padding: 33px; color: var(--ink); background: white; border-radius: 28px; box-shadow: 0 26px 70px rgba(0,0,0,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: grid; gap: 7px; font-size: .83rem; font-weight: 700; }
.booking-form input, .booking-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d9ded9; border-radius: 12px; outline: none; background: #fbfcfa; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(52,189,52,.13); }
.form-status { margin: 0; color: var(--green-dark); font-size: .86rem; text-align: center; }

footer { padding: 55px 0 20px; color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.footer-brand img { width: 48px; height: 48px; }
.footer-grid p { color: rgba(255,255,255,.58); }
.footer-links { display: flex; gap: 20px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .8rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 72px 20px 30px;
  background: rgba(5, 14, 7, .94);
}
.lightbox.active { display: grid; }
.lightbox img {
  max-width: min(900px, 100%);
  max-height: 78vh;
  width: auto;
  border-radius: 20px;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, .12);
  font-size: 2rem;
  line-height: 1;
}
body.lightbox-open .site-header,
body.lightbox-open .announcement {
  visibility: hidden;
}

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 950px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 77px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: var(--cream); border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 10px; }
  .nav-cta { text-align: center; }
  .hero-grid, .two-column, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-media { min-height: 550px; max-width: 620px; width: 100%; margin: 0 auto; }
  .about-collage { max-width: 620px; width: 100%; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .announcement { font-size: .73rem; }
  .brand span { font-size: 1.18rem; }
  .hero { padding: 65px 0; }
  h1 { font-size: 3.25rem; }
  .hero-trust { gap: 15px; justify-content: space-between; }
  .hero-media { min-height: 430px; }
  .image-card-main { left: 25px; }
  .mini-image { width: 145px; height: 175px; }
  .floating-card { right: 0; top: 28px; }
  .section { padding: 80px 0; }
  .about-collage { min-height: 450px; }
  .collage-small { width: 175px; height: 205px; }
  .experience-badge { left: 0; bottom: 30px; }
  .menu-grid, .form-row { grid-template-columns: 1fr; }
  .section-heading.split { align-items: start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
