/* ==========================================================================
   Herb Man Teas — Prostaat Thee (#421)
   Nederlandse informatieve landingspagina
   Kleurenschema: warm bruin / kruiden-apotheek
   ========================================================================== */

:root {
  --bark:        #3E2A1E;   /* diepste bruin — koppen */
  --walnut:      #6B4423;   /* warm notenhout */
  --amber:       #B57829;   /* goud-amber accent */
  --amber-dark:  #9A6320;
  --parchment:   #F5EFE4;   /* pagina achtergrond */
  --cream:       #FBF7EF;   /* kaart achtergrond */
  --sage:        #6E7F4E;   /* kruiden-groen accent */
  --sage-soft:   #EDF0E4;
  --ink:         #2C221B;   /* bodytekst */
  --ink-soft:    #5A4C40;   /* secundaire tekst */
  --line:        #E3D8C6;   /* randen */
  --shadow:      rgba(62, 42, 30, 0.10);
  --shadow-lg:   rgba(62, 42, 30, 0.16);

  --maxw: 1080px;
  --radius: 14px;
  --radius-sm: 8px;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------------------------------------------------------------------------- */
/* Reset & base                                                               */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--walnut); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bark);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

/* -------------------------------------------------------------------------- */
/* Top disclosure bar (native ad transparency)                                */
/* -------------------------------------------------------------------------- */
.disclosure {
  background: var(--bark);
  color: #E8DCC8;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--bark);
}
.brand .leaf-mark {
  width: 34px; height: 34px;
  background: var(--sage);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  font-size: 1rem;
}
.header-cta {
  background: var(--amber);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background .2s ease;
}
.header-cta:hover { background: var(--amber-dark); text-decoration: none; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(110,127,78,0.10), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  padding: 64px 0 56px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--walnut); font-style: italic; }
.hero-lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 34ch;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sage-soft);
  color: var(--bark);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow-lg);
  width: 100%;
}
.hero-tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 210px;
}
.hero-tag strong { display: block; color: var(--bark); font-family: var(--font-display); font-size: 1.05rem; }
.hero-tag span { font-size: 0.82rem; color: var(--ink-soft); }

/* CTA buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px rgba(181,120,41,0.28);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); text-decoration: none; color:#fff; }
.btn-ghost {
  background: transparent;
  color: var(--walnut);
  border: 1.5px solid var(--walnut);
}
.btn-ghost:hover { background: var(--walnut); color: #fff; text-decoration: none; }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }

/* -------------------------------------------------------------------------- */
/* Section base                                                               */
/* -------------------------------------------------------------------------- */
.section { padding: 64px 0; }
.section-tint { background: var(--cream); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* -------------------------------------------------------------------------- */
/* Ad-block (rich content block under each product photo)                     */
/* -------------------------------------------------------------------------- */
.adblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 34px;
  box-shadow: 0 10px 30px var(--shadow);
}
.adblock:nth-child(even) .adblock-media { order: 2; }
.adblock-media img {
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px var(--shadow);
  width: 100%;
}
.adblock-body h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.adblock-body p { color: var(--ink-soft); margin-bottom: 16px; }
.adblock-list { list-style: none; }
.adblock-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink);
}
.adblock-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--cream);
}
.adblock-list li strong { color: var(--bark); }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.tag {
  font-size: 0.78rem; font-weight:600;
  background: var(--sage-soft); color: var(--walnut);
  padding: 5px 12px; border-radius: 30px; border:1px solid var(--line);
}

/* -------------------------------------------------------------------------- */
/* Ingredients grid                                                           */
/* -------------------------------------------------------------------------- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.ing-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px var(--shadow); }
.ing-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--sage-soft);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.ing-card h4 { font-size: 1.12rem; margin-bottom: 8px; }
.ing-card p { font-size: 0.94rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Steps                                                                      */
/* -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Expert card                                                                */
/* -------------------------------------------------------------------------- */
.expert {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--sage-soft) 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.expert img { border-radius: var(--radius-sm); box-shadow: 0 12px 30px var(--shadow); }
.expert h3 { font-size: 1.7rem; margin-bottom: 6px; }
.expert .role { color: var(--sage); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.expert p { color: var(--ink-soft); margin-bottom: 12px; }

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.testi .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sage);
  line-height: 0.6;
  opacity: 0.5;
}
.testi p { font-style: italic; color: var(--ink); margin: 10px 0 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--walnut); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.testi .who strong { display: block; font-size: 0.95rem; color: var(--bark); }
.testi .who span { font-size: 0.82rem; color: var(--ink-soft); }
.stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 6px; }
.testi-note {
  text-align: center; margin-top: 22px;
  font-size: 0.82rem; color: var(--ink-soft); font-style: italic;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform .25s ease; color: var(--amber); font-size: 1.3rem; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* -------------------------------------------------------------------------- */
/* Final CTA                                                                  */
/* -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--walnut) 0%, var(--bark) 100%);
  color: #F3E9D8;
  text-align: center;
  padding: 66px 0;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.final-cta p { color: #E0D2BC; font-size: 1.12rem; max-width: 540px; margin: 0 auto 30px; }
.final-cta .btn-primary { background: var(--amber); }
.final-cta .btn-primary:hover { background: #cf9138; }
.final-cta .small { font-size: 0.82rem; color: #C4B49B; margin-top: 18px; }

/* -------------------------------------------------------------------------- */
/* Disclaimer band                                                            */
/* -------------------------------------------------------------------------- */
.disclaimer-band {
  background: var(--parchment);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.disclaimer-band .container { max-width: 900px; }
.disclaimer-band p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  text-align: center;
}
.disclaimer-band strong { color: var(--walnut); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bark);
  color: #C9B79E;
  padding: 44px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand { max-width: 300px; }
.footer-brand .brand { color: #F3E9D8; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: #A8967D; }
.footer-contact { margin-top: 14px; line-height: 1.6; }
.footer-contact a { color: #C9B79E; }
.footer-contact a:hover { color: #fff; }
.footer-links h5 { color: #F3E9D8; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { display: block; color: #C9B79E; font-size: 0.92rem; margin-bottom: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #937F66;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Legal page styles                                                          */
/* -------------------------------------------------------------------------- */
.legal-page { padding: 54px 0 70px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal-page h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal-page h3 { font-size: 1.12rem; margin: 22px 0 8px; color: var(--walnut); }
.legal-page p { margin-bottom: 14px; color: var(--ink); font-size: 1rem; }
.legal-page ul { margin: 0 0 16px 22px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--amber-dark); text-decoration: underline; }
.back-home { display: inline-block; margin-bottom: 24px; color: var(--walnut); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Reveal animation                                                           */
/* -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-lead { max-width: none; }
  .adblock { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
  .adblock:nth-child(even) .adblock-media { order: -1; }
  .adblock-media { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .expert { grid-template-columns: 1fr; text-align: center; }
  .expert img { max-width: 240px; margin: 0 auto; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 48px 0; }
  .hero { padding: 44px 0 40px; }
  .header-cta { padding: 8px 14px; font-size: 0.82rem; }
  .brand { font-size: 1.05rem; }
  .hero-tag { position: static; margin-top: 16px; max-width: none; }
  .btn { width: 100%; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
