/* ══════════════════════════════════════
   Design tokens
══════════════════════════════════════ */
:root {
  --g-dark:    #1a4d1a;
  --g-mid:     #2d7d32;
  --g-bright:  #43a047;
  --g-light:   #81c784;
  --g-pale:    #c8e6c9;
  --cream:     #f2ede3;
  --cream-lt:  #faf7f0;
  --white:     #ffffff;
  --txt-dark:  #1a2e18;
  --txt-mid:   #3d5c3a;
  --txt-lt:    #6b8a68;

  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 4px 24px rgba(0,0,0,.12);
  --sh-lg: 0 8px 48px rgba(0,0,0,.16);

  --r-sm:   8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 9999px;

  --ff-head: 'Fredoka One', cursive;
  --ff-body: 'Nunito', sans-serif;
  --tr: .3s ease;
}

/* ══════════════════════════════════════
   Reset & base
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream-lt);
  color: var(--txt-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.hidden { display: none !important; }

/* ══════════════════════════════════════
   Buttons
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .8rem 1.8rem;
  border-radius: var(--r-full);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--g-mid);
  color: var(--white);
  border-color: var(--g-mid);
}
.btn-primary:hover {
  background: var(--g-dark);
  border-color: var(--g-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-outline {
  background: transparent;
  color: var(--g-mid);
  border-color: var(--g-mid);
}
.btn-outline:hover {
  background: var(--g-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--g-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--g-pale);
  transform: translateY(-2px);
}
.btn-lg  { padding: 1rem 2.4rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════
   Section helpers
══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  background: var(--g-pale);
  color: var(--g-dark);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--g-dark);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--txt-mid);
  font-size: 1.1rem;
  max-width: 580px;
  margin-inline: auto;
}

/* ══════════════════════════════════════
   Scroll animations
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up--delay  { transition-delay: .12s; }
.fade-up--d2     { transition-delay: .16s; }
.fade-up--d3     { transition-delay: .24s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   Header
══════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(242, 237, 227, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,125,50,.12);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 80px;
}
.header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav { display: flex; gap: 2rem; align-items: center; }
.nav__link {
  font-weight: 700;
  color: var(--txt-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--tr);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2.5px;
  background: var(--g-mid);
  border-radius: 2px;
  transition: width var(--tr);
}
.nav__link:hover { color: var(--g-dark); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: .875rem; }

/* Language toggle */
.lang-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: 2px solid var(--g-mid);
  border-radius: var(--r-full);
  padding: .3rem .8rem;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: .82rem;
  color: var(--g-mid);
  transition: var(--tr);
  letter-spacing: .03em;
}
.lang-btn:hover { background: var(--g-mid); color: var(--white); }
.lang-opt { transition: var(--tr); }
.lang-opt.active { color: var(--g-dark); font-size: .9rem; }
.lang-btn:hover .lang-opt { color: var(--white); }
.lang-sep { opacity: .45; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--g-dark);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   Hero
══════════════════════════════════════ */
.hero {
  background: linear-gradient(150deg, var(--cream) 0%, var(--cream-lt) 100%);
  padding-top: calc(80px + 4.5rem);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(129,199,132,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-bottom: 5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(45,125,50,.1);
  color: var(--g-mid);
  font-weight: 800;
  font-size: .88rem;
  padding: .45rem 1.25rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(45,125,50,.22);
  margin-bottom: 1.25rem;
}
.hero__badge::before { content: '🌿'; }
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--g-dark);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--txt-mid);
  max-width: 500px;
  margin-bottom: 1.75rem;
}
.hero__list {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.hero__list li {
  font-weight: 700;
  color: var(--g-dark);
  font-size: 1.05rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__mascot {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  border-radius: 32px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.14));
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero__wave { line-height: 0; margin-top: 1rem; }
.hero__wave svg { display: block; width: 100%; }

/* ══════════════════════════════════════
   Services
══════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: 6rem 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(45,125,50,.1);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--g-light);
}
.svc-card__icon { font-size: 3rem; margin-bottom: 1.25rem; }
.svc-card__title {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  color: var(--g-dark);
  margin-bottom: .75rem;
}
.svc-card__desc { color: var(--txt-mid); font-size: 1rem; line-height: 1.7; }

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--g-dark);
  border-radius: var(--r-xl);
  padding: 2.75rem 3rem;
  overflow: hidden;
}
.stat { text-align: center; flex: 1; }
.stat__num {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: var(--g-light);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat__lbl { color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 600; }
.stat__div {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* ══════════════════════════════════════
   Gallery
══════════════════════════════════════ */
.gallery {
  background: var(--cream-lt);
  padding: 6rem 0;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.gal-item {
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* gradient placeholder tones cycling through greens */
  background: linear-gradient(
    135deg,
    hsl(calc(115 + var(--ph-n, 1) * 8), 45%, calc(38% + var(--ph-n, 1) * 4%)) 0%,
    hsl(calc(130 + var(--ph-n, 1) * 5), 55%, calc(48% + var(--ph-n, 1) * 2%)) 100%
  );
}
.gal-item--wide { grid-column: span 2; }

.gal-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.gal-ph__icon  { font-size: 2.5rem; }
.gal-ph__txt   { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.gal-item:hover .gal-ph { color: rgba(255,255,255,.2); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,77,26,.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--tr);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: var(--white); font-weight: 800; font-size: 1rem; }

.gallery__note {
  text-align: center;
  color: var(--txt-lt);
  font-size: .95rem;
}
.gallery__note a { color: var(--g-mid); font-weight: 700; text-decoration: underline; }

/* ══════════════════════════════════════
   Contact
══════════════════════════════════════ */
.contact {
  background: var(--cream);
  padding: 6rem 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: start;
}
.contact__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--g-dark);
  margin-bottom: .75rem;
}
.contact__sub { color: var(--txt-mid); margin-bottom: 2.25rem; font-size: 1.05rem; }

/* Form */
.cform__honey { display: none; }
.cform__group { margin-bottom: 1.25rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform__label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  color: var(--txt-dark);
  margin-bottom: .45rem;
}
.cform__input {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid rgba(45,125,50,.2);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--txt-dark);
  background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.cform__input:focus {
  outline: none;
  border-color: var(--g-mid);
  box-shadow: 0 0 0 3px rgba(45,125,50,.14);
}
.cform__textarea { resize: vertical; min-height: 115px; }

/* Thank you state */
.cform__thanks {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 2px solid var(--g-pale);
}
.thanks-icon {
  width: 64px; height: 64px;
  background: var(--g-mid);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.cform__thanks h3 {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  color: var(--g-dark);
  margin-bottom: .5rem;
}
.cform__thanks p { color: var(--txt-mid); }

/* Info card */
.info-card {
  background: var(--g-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  color: var(--white);
  position: sticky;
  top: 96px;
}
.info-card__logo {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem;
  margin-bottom: 2rem;
}
.info-card__logo img { width: 100%; object-fit: contain; max-height: 200px; }

.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; margin-bottom: 2rem; }
.info-item { display: flex; gap: .875rem; align-items: flex-start; }
.info-item__icon { font-size: 1.35rem; flex-shrink: 0; margin-top: .1rem; }
.info-item div { font-size: .97rem; line-height: 1.6; }
.info-item strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: .2rem;
}
.info-item a { color: var(--g-light); font-weight: 700; }
.info-item a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   Footer
══════════════════════════════════════ */
.footer { background: var(--txt-dark); color: rgba(255,255,255,.8); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4.5rem;
}
.footer__logo-wrap {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: inline-block;
  margin-bottom: .875rem;
}
.footer__logo-wrap img { height: 120px; width: auto; }
.footer__brand p { font-size: .95rem; opacity: .75; }

.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav h4, .footer__contact h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--g-light);
  margin-bottom: .25rem;
}
.footer__nav a, .footer__contact a, .footer__contact p {
  color: rgba(255,255,255,.65);
  font-weight: 600;
  font-size: .97rem;
  transition: color var(--tr);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--g-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: .88rem;
  opacity: .5;
}

/* ══════════════════════════════════════
   Responsive — tablet (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .contact__inner { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* ══════════════════════════════════════
   Responsive — hero breakpoint
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 4rem; }
  .hero__list  { align-items: center; }
  .hero__ctas  { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__mascot { max-height: 320px; }
  .hero__sub { margin-inline: auto; }
}

/* ══════════════════════════════════════
   Responsive — mobile (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: var(--sh-md);
    z-index: 199;
  }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .header__actions .btn-primary { display: none; }

  /* Gallery */
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gal-item--wide { grid-column: span 1; }

  /* Stats */
  .stats-bar { flex-direction: column; gap: 2rem; padding: 2.5rem 2rem; }
  .stat__div  { width: 80px; height: 1px; margin: 0; }

  .cform__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item { height: 200px; }
  .hero__mascot { max-height: 260px; }
  .hero__badge  { font-size: .78rem; }
}
