/* =====================================================================
   מרכז הטבע בע"מ — Minimal / understated (mimics herbalremedieslab.com)
   Thin headings, neutral palette, no gradients/shadows/animations.
   ===================================================================== */

:root {
  /* Neutral palette — headings dark-gray (not green), text soft gray */
  --green-900: #282c37;   /* headings */
  --green-800: #282c37;   /* strong text / brand */
  --green-700: #3f7a52;   /* accent green (links/active/buttons) */
  --green-600: #3f7a52;   /* button */
  --green-500: #5f9d74;   /* small icons / checks */
  --green-100: #eef3ef;   /* light icon bg */
  --mint: #f5f5f5;        /* alt section bg (neutral gray) */
  --cream: #f5f5f5;
  --gold: #7b9d86;        /* muted accent */
  --gold-dark: #5c7d67;   /* kicker / tag text (muted green-gray) */
  --ink: #5f5f5f;         /* body text */
  --gray: #7a7a7a;        /* muted body */
  --line: #e6e6e6;
  --white: #fff;

  --container: 1180px;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2 { font-weight: 300; color: var(--green-900); line-height: 1.3; }
h3, h4 { font-weight: 500; color: var(--green-900); line-height: 1.4; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 48px 0; }
.section--soft, .section--mint, .section--green { background: var(--mint); }

/* ---- Section heading (old-style: right-aligned with a rule under it) ---- */
.head { margin-bottom: 12px; text-align: start; }
.head.center { text-align: start; }
.head__kicker { display: none; }
.head h2 { font-size: clamp(21px, 2.2vw, 26px); font-weight: 700; }
.head p { color: var(--gray); font-size: 18px; margin-top: 10px; max-width: 820px; }

/* Flowing prose in content sections (old brochure feel) */
.section .container > p, .split p { max-width: 820px; margin-bottom: 15px; color: var(--ink); font-size: 18px; line-height: 1.7; }
.section .container > p a, .split p a, .section p a { color: var(--green-700); text-decoration: underline; }

/* ---- Buttons (flat, minimal) ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 3px; font-weight: 600; font-size: 15.5px;
  cursor: pointer; border: 1px solid transparent; transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--green-700); color: #fff; }
.btn--primary:hover { background: #33654371; background: #336544; }
.btn--gold { background: var(--green-700); color: #fff; }
.btn--gold:hover { background: #336544; }
.btn--outline, .btn--ghost { background: transparent; border-color: #cfcfcf; color: var(--green-900); }
.btn--outline:hover, .btn--ghost:hover { border-color: var(--green-700); color: var(--green-700); }

/* =====================================================================
   Top bar + Header
   ===================================================================== */
.topbar { background: #fff; color: var(--gray); font-size: 13.5px; border-bottom: 1px solid var(--line); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { color: var(--gray); }
.topbar a:hover { color: var(--green-700); }
.topbar__left { display: flex; gap: 22px; }
.topbar__left a, .topbar__left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__left svg { width: 14px; height: 14px; color: var(--green-500); }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social a { color: var(--gray); }
.topbar__social svg { width: 15px; height: 15px; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.site-header.scrolled { box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 44px; height: 44px; flex: none; display: grid; place-items: center; color: var(--green-700); }
.brand__mark svg { width: 30px; height: 30px; }
.brand__text b { display: block; font-size: 21px; font-weight: 600; color: var(--green-900); line-height: 1.05; }
.brand__text small { font-size: 11px; color: var(--gray); font-weight: 400; letter-spacing: .03em; }

.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav a { display: block; padding: 10px 15px; font-weight: 400; font-size: 16px; color: #4a4a4a; transition: color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--green-700); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 9px 20px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 3px; cursor: pointer; place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--green-900); }

/* =====================================================================
   Hero (photo, light, understated)
   ===================================================================== */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; color: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.55) 78%, rgba(255,255,255,.35) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 600px; padding: 70px 0; }
.hero__kicker { display: block; font-size: 14px; font-weight: 600; color: var(--gold-dark); margin-bottom: 18px; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { color: var(--green-900); font-size: clamp(28px, 4vw, 42px); line-height: 1.25; margin-bottom: 18px; font-weight: 400; }
.hero h1 .hl { color: var(--green-700); font-weight: 500; }
.hero p { font-size: clamp(17px, 1.8vw, 20px); color: var(--gray); margin-bottom: 26px; max-width: 600px; line-height: 1.6; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Stats (simple thin row) ---- */
.stats { background: var(--mint); border-block: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-inline-start: 1px solid var(--line); }
.stat:first-child { border: none; }
.stat b { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 300; color: var(--green-900); }
.stat b .u { color: var(--green-700); }
.stat span { font-size: 14px; color: var(--gray); }

/* =====================================================================
   Split (photo + text)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split--text { grid-template-columns: 1.2fr 1fr; }
.split__media { display: block; position: relative; }
.split__media img { display: block; width: 100%; max-width: 400px; height: auto; max-height: 240px; object-fit: cover; margin-inline: auto; }
.split__media .badge { display: none; }
.check-list { margin: 22px 0; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; color: var(--ink); }
.check-list li svg { width: 20px; height: 20px; color: var(--green-500); flex: none; margin-top: 4px; }

/* =====================================================================
   Cards (simple, flat)
   ===================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.pcard { background: transparent; overflow: hidden; display: flex; flex-direction: column; }
.pcard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; }
.pcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__tag { font-size: 12.5px; font-weight: 600; color: var(--gold-dark); letter-spacing: .06em; margin-bottom: 7px; text-transform: uppercase; }
.pcard h3 { font-size: 19px; margin-bottom: 8px; font-weight: 500; }
.pcard p { color: var(--gray); font-size: 15px; flex: 1; }
.pcard__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--green-700); font-weight: 600; font-size: 14.5px; }
.pcard__link svg { width: 15px; height: 15px; }

/* ---- Category tiles (image + caption under) ---- */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tile { display: block; background: #fff; }
.tile__img { display: block; aspect-ratio: 3/2; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile__label { display: block; padding: 16px 2px; text-align: center; }
.tile__label h3 { color: var(--green-900); font-size: 18px; margin-bottom: 2px; font-weight: 500; }
.tile__label span { color: var(--gray); font-size: 14px; }

/* ---- Feature: plain bulleted list (old-style, no accent lines/icons) ---- */
.feat { display: block; text-align: start; margin-bottom: 14px; padding-inline-start: 16px; position: relative; }
.feat::before { content: "•"; position: absolute; inset-inline-start: 0; top: 0; color: var(--green-700); font-weight: 700; }
.feat__icon { display: none; }
.feat h4 { font-size: 16px; margin-bottom: 2px; font-weight: 700; color: var(--green-900); }
.feat h4::before { content: none; }
.feat p { color: var(--gray); font-size: 15px; }

/* Hide the small modern accent labels (eyebrows / tags) for a plainer, older look */
.head__kicker, .hero__kicker, .pcard__tag { display: none; }

/* =====================================================================
   Page hero (inner) — simple light band
   ===================================================================== */
.page-hero { position: relative; color: var(--ink); }
.page-hero__bg { display: block; position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.93), rgba(255,255,255,.6)); }
.page-hero .container { position: relative; z-index: 1; padding-block: 56px; }
.breadcrumb { font-size: 13.5px; color: var(--gray); margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--green-700); }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { color: var(--green-900); font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 10px; font-weight: 400; }
.page-hero p { color: var(--gray); font-size: 18px; max-width: 700px; }

/* ---- Brands strip ---- */
.brands { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.brand-chip { height: 82px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; text-align: center; padding: 8px; font-weight: 600; color: var(--green-800); font-size: 16px; }
.brand-chip small { display: block; font-weight: 400; color: var(--gray); font-size: 10px; letter-spacing: .04em; margin-top: 2px; }

/* ---- Timeline (simplified) ---- */
.timeline { max-width: 720px; margin-inline: auto; }
.timeline::before { display: none; }
.tl-item { position: relative; width: 100%; padding: 0 0 20px; margin: 0 !important; border: none; }
.tl-item + .tl-item { border-top: 1px solid var(--line); padding-top: 18px; }
.tl-item .dot { display: none; }
.tl-item b { display: block; color: var(--green-700); font-size: 20px; font-weight: 400; }
.tl-item h4 { font-size: 18px; margin: 2px 0 5px; font-weight: 500; }
.tl-item p { color: var(--gray); font-size: 15px; }

/* ---- Testimonials ---- */
.quote { background: #fff; border: 1px solid var(--line); padding: 26px 24px; }
.quote__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 12px; }
.quote__stars svg { width: 16px; height: 16px; }
.quote p { color: var(--ink); font-size: 16px; font-weight: 400; }
.quote__by { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.quote__by b { color: var(--green-800); font-weight: 600; }
.quote__by span { display: block; font-size: 13.5px; color: var(--gray); }

/* ---- CTA (simple light band) ---- */
.cta { position: relative; color: var(--ink); background: var(--mint); border-block: 1px solid var(--line); overflow: hidden; }
.cta__bg { display: none; }
.cta .container { position: relative; z-index: 1; text-align: center; padding: 62px 22px; }
.cta h2 { color: var(--green-900); font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 12px; font-weight: 300; }
.cta p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 0 auto 24px; }
.cta__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.info-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: none; }
.info-row__icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; color: var(--green-700); }
.info-row__icon svg { width: 24px; height: 24px; }
.info-row h4 { font-size: 16px; margin-bottom: 2px; font-weight: 600; }
.info-row p, .info-row a { color: var(--gray); }
.info-row a:hover { color: var(--green-700); }
.form { background: #fff; border: 1px solid var(--line); padding: 30px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: 14.5px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 3px;
  font-family: inherit; font-size: 15.5px; background: #fff; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--gray); margin-top: 10px; }

/* =====================================================================
   Footer (light, simple)
   ===================================================================== */
.site-footer { background: var(--mint); color: var(--gray); padding-top: 60px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 42px; }
.footer-brand .brand__text b { color: var(--green-900); }
.footer-brand p { margin: 16px 0; font-size: 14.5px; color: var(--gray); max-width: 320px; }
.social { display: flex; gap: 9px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--green-700); }
.social a:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.social svg { width: 17px; height: 17px; }
.footer-col h5 { color: var(--green-900); font-size: 15px; margin-bottom: 16px; font-weight: 600; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--gray); font-size: 14.5px; }
.footer-col a:hover { color: var(--green-700); }
.footer-contact li { display: flex; gap: 9px; margin-bottom: 12px; font-size: 14.5px; color: var(--gray); }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-500); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--gray); flex-wrap: wrap; gap: 8px; }
.footer-bottom a:hover { color: var(--green-700); }

/* ---- No reveal animation (content always visible) ---- */
.reveal { opacity: 1; transform: none; }

/* ---- Mobile nav backdrop ---- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.35); opacity: 0; visibility: hidden; transition: .2s; z-index: 80; }
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .tiles { grid-template-columns: repeat(3,1fr); }
  .brands { grid-template-columns: repeat(3,1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__media img { max-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .main-nav { position: fixed; inset: 0 auto 0 0; width: min(300px,84vw); background: #fff; box-shadow: 0 0 40px rgba(0,0,0,.15); transform: translateX(-100%); transition: transform .25s ease; padding: 84px 20px 20px; z-index: 90; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { padding: 13px 12px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: grid; }
}
@media (max-width: 720px) {
  .section { padding: 54px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .brands { grid-template-columns: repeat(2,1fr); }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-inline-start: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
