:root {
  --green: #2E7D32;
  --green-dark: #1e5221;
  --green-light: #4CAF50;
  --orange: #F57C00;
  --orange-light: #FFA726;
  --orange-press: #D96D00;
  --ink: #212121;
  --muted: #757575;
  --border: #E0E4E1;
  --bg: #ffffff;
  --radius: 10px;
  --maxw: 1240px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; padding: 12px 22px; font-size: 15px; }
.btn--primary:hover { background: var(--green-dark); }
.btn--primary:active { transform: translateY(1px); }
.btn--lg { padding: 16px 34px; font-size: 17px; border-radius: 12px; box-shadow: 0 8px 20px rgba(46,125,50,.25); }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { height: 48px; width: auto; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 24px; font-weight: 800; color: var(--green); letter-spacing: -.5px; }
.brand__tagline { font-size: 11px; color: var(--muted); letter-spacing: .3px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--green); }

.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }
.hero__visual { display: block; width: 100%; height: auto; }

.hero__inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__content {
  width: 42%;
  min-width: 320px;
  margin-top: clamp(24px, 5vw, 88px);
  pointer-events: auto;
}

.hero__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1px;
  font-size: clamp(34px, 5.2vw, 66px);
}
.hero__title span { display: block; }
.t-green { color: var(--green); }
.t-orange { color: var(--orange); }

.hero__bullets {
  list-style: none;
  margin: clamp(20px, 2.6vw, 34px) 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 600;
  color: var(--ink);
}
.bullet-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.bullet-icon--green { background: var(--green); }
.bullet-icon--orange { background: var(--orange); }

.hero__lead {
  margin: clamp(22px, 2.4vw, 32px) 0 16px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink);
}
.hero__lead strong { color: var(--green); }

/* ===================== STORE BADGES ===================== */
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 10px;
  transition: opacity .15s ease;
}
.store-badge:hover { opacity: .85; }
.store-badge__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge__txt small { font-size: 9px; text-transform: uppercase; letter-spacing: .5px; opacity: .9; }
.store-badge__txt strong { font-size: 17px; font-weight: 600; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
}
.site-footer a { color: #fff; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 14px; }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 28px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* stack: text first, composite image below */
  .hero { display: flex; flex-direction: column; }
  .hero__visual { order: 2; }
  .hero__inner { position: static; order: 1; }
  .hero__content {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 36px 0 28px;
  }
  .hero__title { font-size: clamp(32px, 9vw, 48px); }
  .hero__bullets li { font-size: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand__tagline { display: none; }
}

/* ===================== CONTENT SUBPAGES ===================== */
.subhero {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-light) 45%, var(--orange-light) 78%, var(--orange) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 8vw, 92px) 0;
}
.subhero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
}
.subhero p {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 20px);
  opacity: .95;
  padding: 0 20px;
}

.article {
  padding: clamp(40px, 6vw, 72px) 0;
}
.article section { margin-bottom: clamp(34px, 4vw, 52px); }
.article section:last-child { margin-bottom: 0; }
.article h2 {
  margin: 0 0 14px;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.25;
}
.article p {
  margin: 0 0 12px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
  color: #333;
}
.article p:last-child { margin-bottom: 0; }
.article .closing { font-weight: 600; color: var(--ink); }

.list-dot, .list-check, .list-arrow {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.list-dot li, .list-check li, .list-arrow li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6;
  color: #333;
}
.list-dot li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--green);
}
.list-arrow li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--orange);
}

.cta-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0;
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
}
.cta-band p { margin: 0 0 22px; color: var(--muted); font-size: 16px; }

/* ===================== CARD GRID ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.09); }
.card__emoji { display: block; font-size: 30px; line-height: 1; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--green); }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: #444; }

.section-title {
  margin: clamp(36px, 5vw, 60px) 0 0;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

/* ===================== PANELS / CALLOUT ===================== */
.article h3 {
  margin: 26px 0 10px;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--ink);
}
.panel {
  padding: clamp(30px, 4vw, 52px) 0;
  margin: 24px 0 0;
}
.panel .container > h2:first-child { margin-top: 0; }
.panel--green { background: rgba(46,125,50,.06); }
.panel--orange { background: rgba(245,124,0,.06); }
.panel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.callout {
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.callout h3 { margin: 0 0 8px; color: var(--orange); }
.callout p:last-child { margin-bottom: 0; }

/* ===================== FAQ ACCORDION ===================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(16px, 1.4vw, 18px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary { color: var(--green); }
.faq details[open] summary::after { content: "−"; }
.faq__body { padding: 0 22px 20px; }
.faq__body p { margin: 0 0 10px; line-height: 1.7; color: #444; font-size: clamp(15px, 1.2vw, 17px); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--orange); font-weight: 600; }
.faq__body .list-dot { margin-top: 8px; }

/* ===================== CONTACT ===================== */
.contact-card {
  text-align: center;
  background: rgba(46,125,50,.06);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 52px);
}
.contact-card__emoji { display: block; font-size: 40px; line-height: 1; margin-bottom: 12px; }
.contact-card h2 { margin: 0 0 14px; color: var(--green); font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; }
.contact-card__mail {
  display: inline-block;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 12px;
}
.contact-card__mail:hover { text-decoration: underline; }
.contact-card p { color: var(--muted); margin: 0 0 22px; }

.company-info {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.company-info p { margin: 0; }
.company-info strong { color: var(--ink); }
