:root {
  --green: #0f5a2a;
  --green-2: #194f2d;
  --sage: #adc6a4;
  --sage-soft: #e6efdf;
  --cream: #fbf5e9;
  --cream-2: #f5ead9;
  --beige: #e7d5bd;
  --peach: #d79b78;
  --brown: #4b3828;
  --ink: #243328;
  --muted: #706555;
  --white: #fffdf7;
  --line: rgba(15, 90, 42, 0.14);
  --shadow: 0 26px 70px rgba(33, 48, 35, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(31, 55, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(150px, 13vw, 190px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #52604f;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.footer a:hover,
.text-cta:hover {
  color: var(--peach);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.nav-whatsapp {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 55, 36, 0.16);
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(15, 90, 42, 0.18);
}

.btn-secondary {
  background: rgba(255, 253, 247, 0.78);
  border-color: var(--line);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
}

.section {
  padding: clamp(76px, 8vw, 126px) clamp(20px, 5vw, 72px);
}

.compact-section {
  padding-top: clamp(48px, 6vw, 74px);
  padding-bottom: clamp(48px, 6vw, 74px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 78px);
  background:
    radial-gradient(circle at 8% 10%, rgba(173, 198, 164, 0.36), transparent 28%),
    linear-gradient(145deg, var(--cream), #f4ead7);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-2);
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.8vw, 72px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 62px);
}

h3 {
  font-size: clamp(24px, 2vw, 31px);
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.55vw, 22px);
}

.hero-actions {
  margin-top: 34px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 36px;
}

.trust-badges span,
.icon-card,
.why-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  color: #435241;
  font-weight: 800;
}

.trust-badges span {
  padding: 12px 14px;
  font-size: 14px;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 42%;
  border: 1px solid rgba(255, 253, 247, 0.8);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  max-width: 295px;
  padding: 22px;
  border: 1px solid rgba(15, 90, 42, 0.16);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 20px 46px rgba(31, 55, 36, 0.16);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.hero-card span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.authority {
  background: var(--white);
}

.authority-grid,
.program-grid,
.testimonial-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

.authority-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card {
  min-height: 88px;
  justify-content: center;
  padding: 16px;
  border-radius: 22px;
  background: #f6efe4;
  text-align: center;
}

.icon-card svg {
  color: var(--green);
}

.about,
.philosophy,
.recipe {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--cream);
}

.about-media img,
.food-image img,
.recipe img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-media img {
  object-position: center 30%;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.credentials {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.credentials article {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.74);
}

.credentials svg {
  grid-row: span 2;
  color: var(--green);
  margin-top: 3px;
}

.credentials span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.credentials strong {
  color: var(--muted);
  font-size: 14px;
}

.check-grid span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #435241;
  font-weight: 800;
}

.check-grid svg {
  color: var(--green);
}

.programs {
  background: var(--sage-soft);
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 90, 42, 0.13);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 45px rgba(31, 55, 36, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.program-card > div,
.program-card ul,
.program-card footer {
  padding-left: 24px;
  padding-right: 24px;
}

.program-card > div {
  padding-top: 24px;
}

.program-card span {
  color: #5f8b65;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card h3 {
  margin-top: 10px;
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 22px;
  color: var(--muted);
  font-weight: 600;
}

.program-card footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-bottom: 24px;
}

.program-card footer a,
.text-cta {
  color: var(--green);
  font-weight: 900;
}

.program-card.featured {
  background: #eef6e9;
  border-color: rgba(15, 90, 42, 0.14);
}

.program-card.featured h3,
.program-card.featured p,
.program-card.featured li,
.program-card.featured footer a {
  color: var(--green-2);
}

.program-card.featured span {
  color: #5f8b65;
}

.program-details {
  background: var(--white);
}

.details-list {
  max-width: 1020px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  align-items: center;
  padding-right: 54px;
  cursor: pointer;
  color: var(--green-2);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.22s ease;
}

details[open] summary::after {
  border-color: rgba(15, 90, 42, 0.26);
  background-color: var(--sage-soft);
}

details[open] summary::before {
  transform: translateY(-35%) rotate(225deg);
}

details > div {
  max-width: 850px;
  padding: 0 0 30px;
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--green);
}

.why h2,
.why p,
.why .eyebrow {
  color: var(--cream);
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-grid span {
  min-height: 70px;
  padding: 14px 18px;
  border-color: rgba(255, 253, 247, 0.22);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.08);
  color: var(--cream);
}

.philosophy {
  background: var(--cream);
}

.community {
  background:
    linear-gradient(90deg, rgba(251, 245, 233, 0.96), rgba(251, 245, 233, 0.78)),
    url("assets/images/founder-tea-garden.webp") center 38% / cover;
}

.community-panel {
  max-width: 760px;
}

.recipe {
  grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.75fr);
  background: var(--white);
}

.recipe img {
  min-height: 480px;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f6efe4;
}

.testimonial p {
  color: #4a5448;
  font-size: 18px;
}

.testimonial cite {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.final-cta {
  background: var(--green);
}

.final-panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-panel h2,
.final-panel p,
.final-panel .eyebrow {
  color: var(--cream);
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 34px auto 18px;
  text-align: left;
}

.consultation-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  outline: none;
}

.consultation-form textarea {
  min-height: 134px;
  resize: vertical;
}

.consultation-form ::placeholder {
  color: rgba(255, 253, 247, 0.52);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(173, 198, 164, 0.18);
}

.consultation-form .full-field,
.consultation-form button,
.consultation-form .form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cream);
  font-weight: 800;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 0.8fr 0.8fr;
  gap: 42px;
  padding: 58px clamp(20px, 5vw, 72px) 88px;
  background: #0c3f20;
  color: var(--cream);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer .brand img {
  width: clamp(170px, 16vw, 220px);
  height: auto;
}

.footer p,
.footer a {
  color: rgba(251, 245, 233, 0.78);
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--cream);
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.disclaimer {
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(31, 55, 36, 0.28);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: min(160px, 46vw);
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .about,
  .philosophy,
  .recipe,
  .why {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .section {
    padding: 66px 18px;
  }

  h1 {
    font-size: 44px;
  }

  .trust-badges,
  .authority-grid,
  .program-grid,
  .testimonial-grid,
  .why-grid,
  .check-grid,
  .consultation-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 480px;
    border-radius: 24px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin: -54px 14px 0;
  }

  .about-media img,
  .food-image img,
  .recipe img {
    min-height: 420px;
    border-radius: 24px;
  }

  .program-card footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultation-form .full-field,
  .consultation-form button,
  .consultation-form .form-status {
    grid-column: auto;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 247, 0.3);
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 18px 42px rgba(31, 55, 36, 0.24);
  }

  .mobile-sticky-cta a {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: var(--cream);
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    border-left: 1px solid rgba(255, 253, 247, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
