:root {
  --leaf: #2f6f43;
  --moss: #6f7c45;
  --clay: #b16a3c;
  --gold: #c89b4d;
  --cream: #f7f2e8;
  --paper: #fffcf4;
  --ink: #1f2922;
  --muted: #657064;
  --line: rgba(31, 41, 34, 0.14);
  --shadow: 0 22px 60px rgba(31, 41, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(31, 41, 34, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.nav-links {
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.95rem;
}

.nav-links a,
.nav-disabled,
.header-cta {
  opacity: 0.92;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.nav-disabled {
  cursor: default;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 7vw, 96px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 41, 34, 0.84) 0%, rgba(31, 41, 34, 0.58) 38%, rgba(31, 41, 34, 0.12) 74%),
    linear-gradient(0deg, rgba(31, 41, 34, 0.25), rgba(31, 41, 34, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.partner-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-badge img {
  width: 104px;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1c241d;
  background: var(--gold);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 28px clamp(20px, 4vw, 52px);
  background: var(--cream);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.trust-strip span,
.section-heading p,
.product-card p,
.split-copy p,
.check-list,
.feature-row p,
.faq-list p,
.contact-section p,
.site-footer {
  color: var(--muted);
}

.section,
.split-band,
.faq-band,
.contact-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(31, 41, 34, 0.06);
}

.product-photo {
  width: 100%;
  height: 178px;
  object-fit: contain;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(47, 111, 67, 0.08), rgba(200, 155, 77, 0.12));
  border-radius: 8px;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card:nth-child(2) .product-icon {
  background: var(--clay);
}

.product-card:nth-child(3) .product-icon {
  background: var(--moss);
}

.product-card:nth-child(4) .product-icon {
  background: var(--gold);
  color: var(--ink);
}

.product-card:nth-child(5) .product-icon {
  background: #8b5f3d;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--leaf);
  font-weight: 850;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.split-copy p,
.split-copy .check-list {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.stats-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.stats-panel div {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 1;
}

.stats-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.compact-section {
  padding-top: clamp(58px, 7vw, 94px);
  padding-bottom: clamp(58px, 7vw, 94px);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}

.feature-row div {
  padding-top: 26px;
}

.faq-band {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 20px 22px;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.expert-contact {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--cream);
}

.expert-contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-contact h3 {
  margin-bottom: 6px;
}

.expert-contact a {
  color: var(--clay);
  font-weight: 900;
  overflow-wrap: anywhere;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 34, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.shop-link {
  color: var(--leaf);
  border-color: rgba(47, 111, 67, 0.28);
  background: #fff;
}

.contact-link {
  color: #fff;
  background: var(--leaf);
}

.expert-link {
  color: #fff;
  background: var(--clay);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 41, 34, 0.86), rgba(31, 41, 34, 0.48)),
      linear-gradient(0deg, rgba(31, 41, 34, 0.32), rgba(31, 41, 34, 0.08));
  }

  .trust-strip,
  .product-grid,
  .feature-row,
  .split-band,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 96px 18px 52px;
  }

  .hero-image {
    object-position: 68% center;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .btn {
    width: 100%;
  }

  .trust-strip div,
  .section,
  .split-band,
  .faq-band,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-card {
    min-height: auto;
  }

  .product-icon {
    margin-bottom: 28px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}
