:root {
  --bg: #f4f7f0;
  --bg-soft: #eef4e7;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --text: #1d2f22;
  --muted: #6e7f72;
  --primary: #2f7d4b;
  --primary-2: #5ca56f;
  --accent: #d8efb8;
  --border: rgba(47,125,75,0.12);
  --shadow: 0 14px 40px rgba(31,53,39,0.08);
  --shadow-soft: 0 8px 24px rgba(31,53,39,0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --nav-h: 82px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216,239,184,0.8), transparent 28%),
    radial-gradient(circle at top right, rgba(92,165,111,0.12), transparent 22%),
    linear-gradient(180deg, #f8fbf4 0%, #f2f7ed 45%, #edf4e8 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244,247,240,0.78);
  border-bottom: 1px solid rgba(47,125,75,0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  font-size: 18px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-text { min-width: 0; }
.brand-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.top-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.top-search__panel {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  display: inline-flex;
  align-items: center;
  width: min(240px, 52vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.top-search.open .top-search__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.top-search__input {
  height: 44px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(47,125,75,0.14);
  outline: none;
  background: rgba(255,255,255,0.92);
  font-family: inherit;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  font-size: 13px;
  min-width: 0;
  padding: 0 12px;
  box-shadow: var(--shadow-soft);
}

.top-search__results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  display: grid;
  gap: 8px;
  max-height: min(44vh, 320px);
  overflow: auto;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,125,75,0.12);
  box-shadow: 0 24px 70px rgba(31,53,39,0.14);
}

.top-search__results[hidden] { display: none !important; }

.top-search__panel[hidden] { display: none !important; }

.top-search__hint,
.top-search__empty {
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px dashed rgba(47,125,75,0.18);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  background: rgba(244, 250, 240, 0.8);
}

.top-search__item {
  display: grid;
  gap: 4px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(47,125,75,0.10);
  cursor: pointer;
  transition: .18s ease;
}

.top-search__item:hover {
  transform: translateY(-1px);
  border-color: rgba(47,125,75,0.16);
}

.top-search__item strong { font-size: 13px; letter-spacing: -0.01em; }
.top-search__item small { font-size: 12px; color: var(--muted); line-height: 1.5; }

@media (max-width: 699.98px) {
  .top-search__panel { width: min(210px, 62vw); right: 50px; }
  .top-search__input { height: 42px; border-radius: 16px; }
  .top-search__results { border-radius: 16px; }
}

.top-links {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
}
.top-links::-webkit-scrollbar { display: none; }
.top-links a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(47,125,75,0.09);
  color: #456549;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  transition: .25s ease;
}
.top-links a:hover {
  transform: translateY(-1px);
  color: var(--primary);
  background: rgba(216,239,184,0.42);
}

.icon-btn,
.ghost-btn,
.solid-btn,
.pill-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: .25s ease;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  line-height: 1;
  background: rgba(255,255,255,0.82);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.icon-btn:hover,
.ghost-btn:hover,
.solid-btn:hover,
.pill-btn:hover { transform: translateY(-1px); }

.app-shell { padding: 18px 0 calc(var(--nav-h) + 22px); }
.grid { display: grid; gap: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216,239,184,0.6);
  border: 1px solid rgba(47,125,75,0.09);
  font-size: 12px;
  font-weight: 700;
  color: #345640;
  letter-spacing: .02em;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(244,250,240,0.88)),
    linear-gradient(135deg, rgba(216,239,184,0.2), rgba(92,165,111,0.08));
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.hero::before {
  width: 220px;
  height: 220px;
  background: rgba(216,239,184,0.55);
  right: -60px;
  top: -80px;
}
.hero::after {
  width: 160px;
  height: 160px;
  background: rgba(92,165,111,0.14);
  left: -45px;
  bottom: -65px;
}
.hero-layout { display: grid; gap: 18px; }
.hero-content h1 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.04;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
  max-width: 11ch;
}
.hero-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #506252;
  max-width: 62ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.solid-btn,
.ghost-btn,
.pill-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.solid-btn {
  background: linear-gradient(135deg, var(--primary), #24643b);
  color: #fff;
  box-shadow: 0 14px 26px rgba(47,125,75,0.26);
}
.ghost-btn {
  background: rgba(255,255,255,0.85);
  color: var(--text);
  border: 1px solid var(--border);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(47,125,75,0.1);
  color: #426246;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  background: linear-gradient(180deg, rgba(242,249,236,0.96), rgba(230,241,224,0.9));
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 28px;
  padding: 16px;
  min-height: 280px;
  display: grid;
  gap: 14px;
  align-content: start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.scene {
  position: relative;
  height: 180px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff0c9 0%, #ebf6e1 42%, #c7e1b7 43%, #7eb26f 100%);
}
.sun, .cloud, .hill, .tree, .path { position: absolute; }
.sun {
  width: 42px;
  height: 42px;
  right: 18px;
  top: 18px;
  background: #fff0a6;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255,240,166,0.22);
}
.cloud {
  width: 58px;
  height: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  top: 26px;
  left: 26px;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}
.cloud::before { width: 24px; height: 24px; left: 8px; top: -10px; }
.cloud::after { width: 30px; height: 30px; right: 8px; top: -14px; }
.hill.one {
  left: -10%;
  right: -10%;
  bottom: 30px;
  height: 74px;
  background: #6fa860;
  border-radius: 50% 50% 0 0;
}
.hill.two {
  left: 15%;
  right: -15%;
  bottom: 8px;
  height: 92px;
  background: #5b934d;
  border-radius: 50% 50% 0 0;
}
.path {
  width: 96px;
  height: 130px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  background: linear-gradient(180deg, #f1e1b8, #d8c08b);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}
.tree {
  width: 22px;
  height: 48px;
  bottom: 44px;
  background: #6c4a2f;
  border-radius: 8px;
}
.tree::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8ad06b, #3d7f46);
}
.tree.t1 { left: 24px; }
.tree.t2 { right: 28px; bottom: 50px; }

.floating-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(47,125,75,0.1);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
}

/* Hero slider (right visual) */
.hero-slider {
  display: grid;
  gap: 10px;
}

.hero-slider__viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
}

.hero-slider__viewport::-webkit-scrollbar { display: none; }

.hero-slider__track {
  display: flex;
  width: 100%;
}

.hero-slide {
  padding: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.hero-slide-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(47,125,75,0.06), rgba(216,239,184,0.34));
}

.hero-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make the scene responsive inside slider */
.hero-slider .scene {
  height: auto;
  aspect-ratio: 1 / 1;
}

/* Slight variations for slides */
.scene.scene-2 {
  background: linear-gradient(180deg, #e8f6d6 0%, #edf8e6 42%, #cfe8c1 43%, #76b66f 100%);
}
.scene.scene-2 .sun { right: 14px; top: 14px; box-shadow: 0 0 0 12px rgba(255,240,166,0.18); }
.scene.scene-2 .cloud { left: 18px; top: 20px; opacity: .9; }
.scene.scene-2 .hill.one { background: #6aa85c; }
.scene.scene-2 .hill.two { background: #518f49; }

.scene.scene-3 {
  background: linear-gradient(180deg, #d7f2c8 0%, #e9f6df 42%, #c6e2b7 43%, #6fb26d 100%);
}
.scene.scene-3 .sun { right: 22px; top: 16px; }
.scene.scene-3 .cloud { left: 34px; top: 22px; }
.scene.scene-3 .path { opacity: 0.9; }
.scene.scene-3 .tree.t1 { left: 34px; }
.scene.scene-3 .tree.t2 { right: 38px; bottom: 52px; }

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(47,125,75,0.22);
  background: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  width: 24px;
  background: rgba(216,239,184,0.75);
  border-color: rgba(47,125,75,0.22);
}
.floating-card strong { font-size: 15px; }
.floating-card small { color: var(--muted); line-height: 1.6; }

.section { margin-top: 18px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section-title {
  margin: 0;
  margin-bottom: 7px;
  font-size: clamp(20px, 4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-desc {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 58ch;
}
.mini-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.stats,
.page-grid,
.testimonial-grid { display: grid; gap: 14px; }
.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stat-card,
.page-card,
.testimonial-card,
.cta-box {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.stat-card { padding: 16px; }
.stat-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
.stat-card span { font-size: 12px; color: var(--muted); line-height: 1.6; }

.page-grid { grid-template-columns: 1fr; }
.page-card { padding: 16px; display: grid; gap: 12px; }
.page-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,125,75,0.12), rgba(216,239,184,0.72));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
}
.page-card h3,
.testimonial-card h3,
.cta-box h3 { margin: 0; font-size: 18px; line-height: 1.25; }
.page-card p,
.testimonial-card p,
.cta-box p { margin: 0; font-size: 13px; line-height: 1.7; color: var(--muted); }

/* Services: icon and title on same row */
.service-card .service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card .service-head h3 {
  margin: 0;
}

.cta-box {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(35,70,46,0.98), rgba(50,112,70,0.94)),
    linear-gradient(135deg, rgba(216,239,184,0.18), transparent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(216,239,184,0.12);
  right: -56px;
  top: -80px;
}
.cta-box p { color: rgba(255,255,255,0.78); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill-btn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.pill-btn.primary { background: #fff; color: #1e3526; }

.testimonial-card { padding: 18px; display: grid; gap: 12px; }
.quote-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47,125,75,0.12), rgba(216,239,184,0.78));
  color: var(--primary);
  font-size: 18px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8efb8, #7ba971);
  display: grid;
  place-items: center;
  color: #23412c;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.person strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.person span {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ accordion (nature themed) */
.faq-card {
  background:
    radial-gradient(circle at top left, rgba(216,239,184,0.55), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(244,250,240,0.86));
  border: 1px solid rgba(47,125,75,0.12);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 6px;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(47,125,75,0.10);
  border-radius: 22px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: #2b3f30;
  cursor: pointer;
}

.faq-q-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-ic {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(216,239,184,0.55);
  border: 1px solid rgba(47,125,75,0.12);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-chevron {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(47,125,75,0.12);
  color: #3a5842;
  transition: transform .18s ease;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  padding: 0 14px;
  overflow: hidden;
  transition: max-height .22s ease;
}

.faq-a p {
  margin: 0;
  padding: 0 0 14px;
  color: #4b6150;
  line-height: 1.75;
  font-size: 13px;
}

/* Testimonials carousel */
.tcar {
  position: relative;
}

.tcar-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.tcar-btn {
  width: 42px;
  height: 42px;
  border-radius: 16px;
}

.tcar-viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 26px;
}

.tcar-viewport::-webkit-scrollbar { display: none; }

.tcar-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 12px;
  padding: 2px;
}

.tcar-slide {
  scroll-snap-align: start;
}

.tcar-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.tcar-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(47,125,75,0.22);
  background: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 0;
}

.tcar-dot.active {
  width: 24px;
  background: rgba(216,239,184,0.75);
  border-color: rgba(47,125,75,0.22);
}

@media (min-width: 700px) {
  .tcar-track { grid-auto-columns: 46%; }
}

@media (min-width: 1024px) {
  .tcar-track { grid-auto-columns: 32%; }
}

/* Admin (mobile-first) */
.admin-shell {
  display: grid;
  gap: 14px;
}

.admin-nav {
  display: grid;
  gap: 10px;
}

/* Admin: hide side menu on mobile (use burger drawer) */
@media (max-width: 699.98px) {
  .admin-shell .admin-nav { display: none; }
}

.admin-link {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(47,125,75,0.10);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  color: #37513c;
}

.admin-link.active {
  background: rgba(216,239,184,0.55);
  color: var(--primary);
}

.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-row {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(47,125,75,0.10);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.admin-row__main strong { display:block; font-size: 14px; }
.admin-row__main small { display:block; color: var(--muted); font-size: 12px; margin-top: 4px; line-height: 1.4; }

.admin-row__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-row__actions .pill-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(244, 247, 240, 0.95);
  color: #2b3f30;
  border: 1px solid rgba(47,125,75,0.14);
}

.admin-row__actions .pill-btn.primary {
  background: rgba(216,239,184,0.65);
  color: var(--primary);
}

.admin-row__actions form { margin: 0; }

.admin-content .pill-btn {
  color: #1d2f22;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(29,47,34,0.22);
}

.admin-content .pill-btn:hover {
  transform: translateY(-1px);
}

.admin-content .pill-btn i { color: #1d2f22; }

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(47,125,75,0.14);
  background: rgba(255,255,255,0.85);
}

/* Admin icon picker */
.admin-icon-picker {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  gap: 10px;
  align-items: center;
}
.admin-icon-preview {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,125,75,0.12), rgba(216,239,184,0.72));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
  border: 1px solid rgba(47,125,75,0.10);
}

@media (max-width: 699.98px) {
  /* Icon picker dialog: show icons only on mobile */
  .icon-picker-label { display: none !important; }
}

@media (min-width: 900px) {
  .admin-shell { grid-template-columns: 320px 1fr; align-items: start; }
  .admin-content { min-width: 0; }
}

/* Admin list accordion (entity list) */
.admin-acc {
  display: grid;
  gap: 10px;
}

.admin-acc-item {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(47,125,75,0.10);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.admin-acc-q {
  width: 100%;
  text-align: left;
  padding: 14px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.admin-acc-q strong { font-size: 14px; }
.admin-acc-q small { display:block; margin-top:4px; color: var(--muted); font-size: 12px; line-height: 1.35; }

.admin-acc-chevron {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(47,125,75,0.12);
  color: #3a5842;
  transition: transform .18s ease;
  flex-shrink: 0;
}

.admin-acc-q[aria-expanded="true"] .admin-acc-chevron { transform: rotate(180deg); }

.admin-acc-a {
  padding: 0 14px 14px;
  overflow: hidden;
  max-height: 0px;
  transition: max-height .22s ease;
}

.admin-acc-field {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(47,125,75,0.08);
}

.admin-acc-field span {
  font-size: 12px;
  font-weight: 900;
  color: #37513c;
}

.admin-acc-field p {
  margin: 0;
  font-size: 13px;
  color: #4b6150;
  line-height: 1.7;
  word-break: break-word;
}

.admin-acc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
}

/* Works / Shorts gallery */
.works-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}

.works-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.works-chips::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(47,125,75,0.12);
  color: #456549;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: .2s ease;
}
.chip:hover { transform: translateY(-1px); }
.chip.active {
  background: rgba(216,239,184,0.62);
  color: var(--primary);
  border-color: rgba(47,125,75,0.14);
}

/* Decorative filters (carousel-like chips) */
.filters { display: grid; gap: 12px; margin: 6px 0 14px; }
.filter-row { display: grid; gap: 8px; }
.filter-label { font-weight: 900; font-size: 12px; color: #37513c; }
.filter-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }

.works-yt {
  min-height: 44px;
  border-radius: 16px;
  padding: 0 14px;
  gap: 10px;
}

.shorts-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.short-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
}

.short-frame {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, rgba(47,125,75,0.06), rgba(216,239,184,0.34));
  position: relative;
}

.short-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.short-open {
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(16, 31, 20, 0.02), rgba(16, 31, 20, 0.28));
  cursor: pointer;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: 12px;
  transition: .2s ease;
}

.short-open:hover { background: linear-gradient(180deg, rgba(16, 31, 20, 0.04), rgba(16, 31, 20, 0.34)); }

.short-open-ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(47,125,75,0.14);
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}

.short-open-txt {
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(47,125,75,0.14);
  box-shadow: var(--shadow-soft);
  color: #37513c;
  font-size: 12px;
  font-weight: 900;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 18, 0.55);
  backdrop-filter: blur(10px);
}

.video-modal__dialog {
  position: relative;
  margin: 10px auto;
  width: min(980px, calc(100% - 20px));
  height: min(92vh, 720px);
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,125,75,0.14);
  box-shadow: 0 30px 90px rgba(31,53,39,0.28);
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.video-modal__frame {
  width: 100%;
  height: 100%;
  background: #0b1410;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Blog (Tips) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blog-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
}

.blog-cover {
  display: block;
  background: linear-gradient(135deg, rgba(47,125,75,0.06), rgba(216,239,184,0.34));
  aspect-ratio: 16 / 9;
}

.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-cover__ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 24px;
}

.blog-meta {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.blog-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216,239,184,0.55);
  border: 1px solid rgba(47,125,75,0.10);
  color: #345640;
  font-size: 12px;
  font-weight: 900;
}

.blog-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.blog-body p { margin: 0 0 12px; line-height: 1.85; color: #334b38; }
.blog-body ul, .blog-body ol { margin: 0 0 12px 18px; color: #334b38; line-height: 1.85; }
.blog-body a { color: var(--primary); font-weight: 800; }
.blog-body blockquote {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(216,239,184,0.35);
  border: 1px solid rgba(47,125,75,0.10);
}

/* Encyclopedia cards (Decorative flowers/trees) */
.ency-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ency-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47,125,75,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
}

.ency-cover {
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(47,125,75,0.06), rgba(216,239,184,0.34));
}

.ency-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ency-ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 26px;
}

.ency-meta {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.ency-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #1d2f22;
}

.ency-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 700px) {
  .ency-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .ency-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Decorative filters: one-line selectboxes, horizontal scroll if needed */
.filters-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  margin: 6px 0 14px;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.filters-row::-webkit-scrollbar { display: none; }

.filter-select {
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
  min-width: 190px;
}
.filter-select span {
  font-weight: 900;
  font-size: 12px;
  color: #37513c;
}
.filter-select select {
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(47,125,75,0.16);
  padding: 0 40px 0 14px;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #1d2f22;
  background:
    radial-gradient(circle at top left, rgba(216,239,184,0.45), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(244,250,240,0.90));
  box-shadow: 0 10px 22px rgba(31,53,39,0.08);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%232f7d4b' d='M5.25 7.5a1 1 0 0 1 1.5 0L10 10.9l3.25-3.4a1 1 0 1 1 1.5 1.3l-4 4.2a1.2 1.2 0 0 1-1.5 0l-4-4.2a1 1 0 0 1 0-1.3Z'/%3E%3C/svg%3E");
}
.filter-select select:hover {
  transform: translateY(-1px);
  border-color: rgba(47,125,75,0.24);
  box-shadow: 0 14px 30px rgba(31,53,39,0.12);
}
.filter-select select:focus {
  border-color: rgba(47,125,75,0.38);
  box-shadow: 0 0 0 4px rgba(216,239,184,0.65), 0 16px 34px rgba(31,53,39,0.14);
}

@media (max-width: 699.98px) {
  /* Mobile: keep filters compact and label-less */
  .filters-row { gap: 8px; padding-bottom: 10px; }
  .filter-select { min-width: 165px; }
  .filter-select span { display: none; }
  .filter-select select { height: 46px; border-radius: 18px; font-size: 13px; }
}

@media (min-width: 700px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.short-meta {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.short-meta strong {
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.short-meta span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.works-cta { margin-top: 14px; }

@media (min-width: 700px) {
  .shorts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Mobile drawer menu (hamburger) */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 18, 0.42);
  backdrop-filter: blur(6px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 10px;
  right: 10px;
  left: 48px;
  max-width: 420px;
  margin-left: auto;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47,125,75,0.12);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(31,53,39,0.22);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.drawer.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(47,125,75,0.08);
}
.drawer-title { display: grid; gap: 2px; min-width: 0; }
.drawer-title strong { font-size: 14px; letter-spacing: -0.01em; }
.drawer-title small { font-size: 12px; color: var(--muted); line-height: 1.4; }
.drawer-body { padding: 12px 14px 14px; }
.drawer-links { display: grid; gap: 10px; }
.drawer-links a {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 247, 240, 0.9);
  border: 1px solid rgba(47,125,75,0.1);
  color: #37513c;
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}
.drawer-links a:hover {
  transform: translateY(-1px);
  background: rgba(216,239,184,0.55);
  color: var(--primary);
}
.drawer-links a i { color: var(--primary); }

.mobile-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(47,125,75,0.1);
  box-shadow: 0 18px 44px rgba(31,53,39,0.16);
  border-radius: 24px;
  padding: 10px;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.mobile-nav a {
  min-height: 60px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #5b705f;
  transition: .25s ease;
}
.mobile-nav a i { font-size: 18px; }
.mobile-nav a.active,
.mobile-nav a:hover {
  background: linear-gradient(135deg, rgba(47,125,75,0.12), rgba(216,239,184,0.64));
  color: var(--primary);
}

@media (min-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero { padding: 24px; }
  .hero-layout { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Drawer/hamburger is mobile-only */
  .drawer,
  .drawer-overlay { display: none; }
  #menuBtn { display: none; }
}

@media (max-width: 699.98px) {
  .top-links { display: none; }
}

@media (min-width: 1024px) {
  .topbar-inner { padding: 16px 0; }
  .top-links { justify-content: center; overflow: visible; }
  .app-shell { padding-top: 24px; }
  .hero { padding: 28px; }
  .mobile-nav {
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, calc(100% - 24px));
  }
}

