*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #edf3ef;
  --panel: rgba(255, 255, 255, 0.85);
  --panel-strong: rgba(255, 255, 255, 0.93);
  --text: #25343c;
  --muted: #66757c;
  --brand: #5d946c;
  --brand-dark: #44765a;
  --gold: #f1c34c;
  --shadow: 0 18px 48px rgba(34, 58, 47, 0.12);
  --shadow-soft: 0 10px 28px rgba(34, 58, 47, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/background.jpg") center center / cover no-repeat;
  z-index: -2;
}

.page-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 8%, rgba(121, 174, 137, 0.22), transparent 12%),
    radial-gradient(circle at 95% 88%, rgba(121, 174, 137, 0.18), transparent 12%),
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.45), transparent 14%);
  z-index: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 34px;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.faq-panel {
  border-radius: var(--radius-xl);
  padding: 24px 24px 22px;
}

.logo-wrap {
  margin-bottom: 10px;
}

.site-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-title span,
.cta-panel h1 span {
  color: var(--brand);
}

.section-title-left {
  margin-bottom: 18px;
}

.section-title-center {
  text-align: center;
}

.section-title-tight h2 {
  max-width: 920px;
  margin-inline: auto;
}

.editor-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.editor-note code {
  background: rgba(93, 148, 108, 0.12);
  color: var(--brand-dark);
  padding: 0.18rem 0.5rem;
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--panel-strong);
  border: 1px solid rgba(93, 148, 108, 0.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 18px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-question {
  font-size: clamp(1rem, 1.2vw, 1.26rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--text);
}

.faq-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}

.faq-answer-shell {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer-shell {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-dark);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-panel,
.learn-panel {
  border-radius: 30px;
  padding: 28px;
}

.cta-panel {
  text-align: center;
}

.cta-panel h1 {
  margin: 0;
  font-size: clamp(2.3rem, 3.7vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.title-divider {
  width: 126px;
  height: 4px;
  border-radius: 999px;
  background: rgba(93, 148, 108, 0.9);
  margin: 22px auto;
}

.btn {
  min-height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-primary,
.btn-secondary {
  width: 100%;
  color: white;
  background: linear-gradient(180deg, #68a379 0%, #4e845e 100%);
  box-shadow: 0 16px 36px rgba(78, 132, 94, 0.24);
}

.btn-primary {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  padding: 16px 24px;
}

.learn-panel {
  text-decoration: none;
  color: inherit;
}

.learn-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(93, 148, 108, 0.12);
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.learn-heading h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.5vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.learn-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 1.05rem;
}

.btn-secondary {
  padding: 14px 18px;
  font-size: clamp(1.02rem, 1.5vw, 1.45rem);
}

.btn-arrow {
  font-size: 1.6em;
  line-height: 1;
}

.refer-panel-btn {
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(37, 52, 60, 0.95);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 2500;
}

.share-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.news-announcements-panel {
  margin-top: 26px;
  margin-bottom: 0;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.news-image-wrap {
  display: block;
  margin-bottom: 24px;
}

.news-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: rgba(223, 231, 226, 0.9);
}

/* ===== UPGRADED HERO BANNER SLIDER ===== */
.hero-banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-banner-link {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
}

.hero-banner-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.00) 28%,
      rgba(28, 44, 36, 0.10) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-banner-image-wrap {
  position: relative;
  aspect-ratio: 1536 / 719;
  min-height: 180px;
  background: rgba(223, 231, 226, 0.9);
}

#heroBannerImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.45s ease;
  will-change: opacity;
}

#heroBannerImage.is-fading {
  opacity: 0.18;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(34, 58, 47, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(34, 58, 47, 0.24);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.hero-arrow-left {
  left: 16px;
}

.hero-arrow-right {
  right: 16px;
}

.hero-banner-slider:hover .hero-arrow,
.hero-banner-slider:focus-within .hero-arrow {
  opacity: 1;
}

.hero-slider-paused .hero-arrow {
  opacity: 1;
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(93, 148, 108, 0.25);
  box-shadow: inset 0 0 0 1px rgba(68, 118, 90, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-dot:hover {
  transform: scale(1.08);
  background: rgba(93, 148, 108, 0.42);
}

.hero-dot.active {
  background: linear-gradient(180deg, #68a379 0%, #4e845e 100%);
  box-shadow: 0 6px 16px rgba(78, 132, 94, 0.26);
  transform: scale(1.08);
}

.wellness-panel {
  margin-top: 26px;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.wellness-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  background: rgba(223, 231, 226, 0.9);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-panel {
  margin-top: 26px;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(93, 148, 108, 0.10);
  border-radius: 28px;
  padding: 34px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.quote-chip {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #68a379 0%, #4e845e 100%);
  color: white;
  box-shadow: 0 16px 36px rgba(78, 132, 94, 0.24);
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
}

.star-row {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1.3rem;
  margin-top: 8px;
}

.testimonial-copy {
  margin: 18px 0 10px;
  color: #4f5f66;
  line-height: 1.72;
  font-size: 1.06rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.28s ease;
}

.testimonial-copy.is-collapsed {
  max-height: 8.6em;
}

.testimonial-copy.is-expanded {
  max-height: 1000px;
}

.testimonial-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 4px;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.testimonial-toggle:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.testimonial-toggle[hidden] {
  display: none !important;
}

.testimonial-name {
  margin-top: auto;
  font-weight: 800;
  font-size: 1.58rem;
  letter-spacing: -0.04em;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body::before {
    background: url("assets/background.jpg") center center / cover no-repeat;
  }

  .site-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding: 10px 0 22px;
  }

  .faq-panel,
  .wellness-panel,
  .news-announcements-panel,
  .testimonials-panel,
  .cta-panel,
  .learn-panel {
    border-radius: 24px;
    padding: 18px;
  }

  .hero-grid {
    margin-top: 18px;
  }

  .faq-trigger {
    padding: 16px 16px 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 0.96rem;
  }

  .wellness-images {
    grid-template-columns: 1fr;
  }

  .image-card {
    aspect-ratio: 16 / 10;
  }

  .learn-heading p {
    font-size: 1rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 320px;
  }

  .testimonial-copy.is-collapsed {
    max-height: 7.2em;
  }

  .testimonial-name {
    font-size: 1.4rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-banner-image-wrap {
    min-height: 140px;
  }
}


/* ================= INTRO OVERLAY ================= */
.site-shell {
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-shell--preload {
  opacity: 0.52;
  transform: scale(1.018);
  filter: blur(18px);
}

.site-shell--revealing {
  opacity: 0.72;
  transform: scale(1.012);
  filter: blur(11px);
}

.site-shell--ready {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro.is-exiting {
  opacity: 0;
  background: rgba(255, 255, 255, 0.92);
}

.site-intro[hidden] {
  display: none !important;
}

.site-intro__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  transition: opacity 1.3s ease;
}

.site-intro.is-exiting .site-intro__grain {
  opacity: 0;
}

.site-intro__content {
  position: relative;
  width: min(calc(100% - 40px), 540px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: siteIntroContentIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.site-intro.is-exiting .site-intro__content {
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 1.0s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro__logo {
  display: block;
  width: auto;
  height: 96px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  animation: siteIntroLogoIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.site-intro.is-exiting .site-intro__logo {
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.0s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro__line {
  width: 74px;
  height: 1px;
  margin-top: 24px;
  background: #a7c4ab;
  opacity: 0;
  transform: scaleX(0.8);
  animation: siteIntroLineIn 0.8s ease 0.34s forwards;
}

.site-intro.is-exiting .site-intro__line {
  opacity: 0;
  transform: scaleX(1.18);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.site-intro__tagline {
  margin: 22px 0 0;
  color: #6b7c85;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  animation: siteIntroTaglineIn 0.9s ease 0.48s forwards;
}

.site-intro.is-exiting .site-intro__tagline {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.95s ease,
    transform 0.95s ease;
}

@keyframes siteIntroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes siteIntroLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes siteIntroLineIn {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes siteIntroTaglineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MICRO POLISH ================= */
.news-announcements-panel,
.cta-panel,
.learn-panel,
.wellness-panel,
.testimonials-panel {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.news-announcements-panel:hover,
.cta-panel:hover,
.learn-panel:hover,
.wellness-panel:hover,
.testimonials-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(120, 140, 130, 0.18);
}

.faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 148, 108, 0.18);
  box-shadow: 0 14px 28px rgba(180, 190, 180, 0.18);
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .site-intro__logo {
    height: 110px;
  }

  .site-intro__tagline {
    font-size: 0.95rem;
  }
}
