﻿:root {
  --green: #0b5d3b;
  --green-900: #063321;
  --gold: #c89b4a;
  --ink: #222222;
  --muted: #66716b;
  --line: #e7ebe8;
  --paper: #ffffff;
  --soft: #f6f8f5;
  --shadow: 0 18px 45px rgba(9, 48, 33, .12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
body.dark {
  --paper: #081a13;
  --soft: #0d241a;
  --ink: #f5f8f6;
  --muted: #b9c6bf;
  --line: #1f3b2e;
  color-scheme: dark;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 1000; background: var(--green); color: #fff; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
body.dark .site-header { background: rgba(8,26,19,.92); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 10px; min-width: 148px; }
.logo img { width: 150px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: .94rem; }
.nav a, .drop-button { color: var(--ink); opacity: .88; }
.nav a:hover, .drop-button:hover { color: var(--green); opacity: 1; }
.dropdown { position: relative; }
.drop-button { border: 0; background: transparent; padding: 0; cursor: pointer; font-weight: 700; }
.drop-menu {
  position: absolute;
  top: 32px;
  left: 0;
  display: none;
  width: 230px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.dropdown:hover .drop-menu, .dropdown:focus-within .drop-menu { display: grid; gap: 6px; }
.drop-menu a { padding: 9px 10px; border-radius: 6px; }
.drop-menu a:hover { background: var(--soft); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.hamburger { display: none; }

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.2) 68%),
    url("../images/banner-tx.png") center/cover no-repeat;
  overflow: hidden;
}
body.dark .hero {
  background:
    linear-gradient(90deg, rgba(8,26,19,.98) 0%, rgba(8,26,19,.88) 42%, rgba(8,26,19,.18) 75%),
    url("../images/banner-tx.png") center/cover no-repeat;
}
.hero-content { width: min(610px, 100%); padding: 76px 0 54px; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; }
h1 { font-size: clamp(2.55rem, 8vw, 5.9rem); color: var(--green-900); max-width: 760px; }
body.dark h1 { color: #f5f8f6; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--muted); max-width: 640px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,93,59,.24); }
.btn.secondary { background: transparent; color: var(--green); }
body.dark .btn.secondary { color: #fff; border-color: #6fa98e; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #17120a; }

.section { padding: 76px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head p { max-width: 600px; color: var(--muted); margin: 0; }
.grid { display: grid; gap: 22px; }
.grid.categories { grid-template-columns: repeat(6, 1fr); }
.grid.products { grid-template-columns: repeat(4, 1fr); }
.grid.features { grid-template-columns: repeat(3, 1fr); }
.card, .product-card, .feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover, .product-card:hover, .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,155,74,.45); }
.category-media, .product-media {
  min-height: 170px;
  background-image: linear-gradient(130deg, rgba(11,93,59,.9), rgba(200,155,74,.46)), url("../images/banner-tx.png");
  background-size: cover;
  background-position: center;
}
.cat-2 { background-position: 78% 48%; }
.cat-3 { background-position: 61% 62%; }
.cat-4 { background-position: 68% 69%; }
.cat-5 { background-position: 55% 78%; }
.cat-6 { background-position: 49% 65%; }
.card-body, .product-body, .feature { padding: 22px; }
.feature-icon, .stat strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}
.feature p, .product-body p, .card-body p { color: var(--muted); }
.rating { color: var(--gold); font-weight: 800; letter-spacing: .04em; }
.price { color: var(--green); font-weight: 900; font-size: 1.16rem; }
body.dark .price { color: #8ad2ad; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.product-actions .btn { min-height: 42px; padding: 9px 12px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 26px; border-left: 3px solid var(--gold); background: var(--paper); }
.stat strong { display: block; font-size: clamp(2rem, 5vw, 3rem); color: var(--green); }
body.dark .stat strong { color: #fff; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.lifestyle-img { min-height: 430px; background: url("../images/banner-tx.png") center/cover no-repeat; border-radius: 8px; }
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { padding: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--gold)); margin-bottom: 12px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 20px 0; border: 0; background: transparent; color: var(--ink); display: flex; justify-content: space-between; gap: 20px; text-align: left; font-weight: 900; cursor: pointer; }
.faq-answer { display: none; color: var(--muted); padding: 0 0 20px; }
.faq-item.open .faq-answer { display: block; }
.form { display: grid; gap: 14px; }
.form.two { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 7px; }
.field span { font-weight: 800; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}
textarea { min-height: 132px; resize: vertical; }
.newsletter { background: var(--green); color: #fff; padding: 42px; border-radius: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.newsletter p { color: rgba(255,255,255,.82); }
.newsletter input { background: #fff; color: #222; }
.site-footer { background: #06291b; color: #fff; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid a, .footer-grid p { color: rgba(255,255,255,.78); }
.footer-grid h3 { color: #fff; font-size: 1rem; }
.footer-logo { width: 160px; background: #fff; padding: 10px; border-radius: 6px; margin-bottom: 18px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.68); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 45; display: grid; gap: 10px; }
.float-actions a, .float-actions button { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); cursor: pointer; }
.float-actions .call { background: var(--gold); color: #111; }
.page-hero { padding: 86px 0 56px; background: linear-gradient(135deg, var(--soft), var(--paper)); }
.breadcrumbs { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.policy { max-width: 860px; }
.policy h2 { font-size: 1.5rem; margin-top: 34px; }
.map { min-height: 320px; border: 0; width: 100%; filter: grayscale(.3); }
