
:root {
  --paper: #f8f7f2;
  --soft: #ecefe8;
  --forest: #173d35;
  --leaf: #2f6d61;
  --wine: #a13f49;
  --gold: #b58b2a;
  --ink: #171717;
  --muted: #5d625f;
  --line: #d9ddd3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.62;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(248, 247, 242, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(20, 20, 20, .08); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; font-size: 14px; font-weight: 800; }
.main-nav a { text-decoration: none; color: #2f3431; }
.nav-cta,
.floating-cta a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  text-align: center;
}
.nav-cta,
.floating-cta a { background: #25d366; color: #102116; white-space: nowrap; }
.button.primary { background: var(--forest); color: var(--white); }
.button.secondary { background: var(--gold); color: #1b1408; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(236,239,232,.94)),
    linear-gradient(90deg, #f8f7f2, #ecefe8);
}
h1 {
  margin: 10px 0 20px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  overflow-wrap: break-word;
}
h2 { margin: 0 0 16px; font-size: clamp(28px, 3.3vw, 44px); line-height: 1.12; overflow-wrap: break-word; }
h3 { margin: 0 0 8px; font-size: 21px; }
p { overflow-wrap: break-word; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-text, .page-hero p, .section p, .contact-section p { color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.hero-stats dt { font-weight: 900; color: var(--forest); }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.hero-gallery,
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-gallery img,
.mini-gallery img,
.category-card img,
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--forest);
  color: var(--white);
}
.trust-strip span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 13px; }
.section,
.page-hero,
.contact-section,
.global-cta {
  padding: clamp(46px, 6vw, 82px) clamp(22px, 5vw, 64px);
}
.section.soft { background: var(--soft); }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.split { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.feature-list article,
.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.category-grid,
.feature-list,
.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.category-card,
.related-links a {
  display: grid;
  gap: 10px;
  padding: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
}
.category-card strong,
.category-card p { padding-inline: 18px; }
.category-card p { margin: 0; color: var(--muted); }
.related-links a { padding: 18px 20px; font-weight: 900; }
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(22px, 5vw, 64px) clamp(46px, 6vw, 82px);
}
.product-gallery figure { margin: 0; }
.product-gallery figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; }
.page-hero { background: var(--soft); }
.breadcrumbs { margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--forest); font-weight: 900; text-decoration: none; }
.contact-section {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  background: var(--forest);
  color: var(--white);
}
.contact-section p,
.contact-section .eyebrow { color: rgba(255,255,255,.82); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.inquiry-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 900; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cfd7cf;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: #fff;
}
.inquiry-form .full,
.inquiry-form button,
.form-note { grid-column: 1 / -1; }
.inquiry-form button { cursor: pointer; }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.faq-list details { margin-bottom: 12px; }
.faq-list summary { cursor: pointer; font-weight: 900; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.global-cta { background: var(--wine); color: var(--white); text-align: center; }
.global-cta .eyebrow { color: rgba(255,255,255,.8); }
.global-cta .hero-actions { justify-content: center; }
.site-footer { background: #151515; color: #f7efe1; padding: 42px clamp(22px, 5vw, 64px) 96px; }
.footer-inner { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 28px; }
.footer-inner span,
.footer-inner strong { display: block; font-weight: 900; margin-bottom: 10px; }
.footer-inner p { color: #d8cbb8; }
.footer-inner a { display: block; color: #f7efe1; text-decoration: none; margin: 8px 0; }
.floating-cta {
  position: fixed;
  left: clamp(14px, 2.6vw, 34px);
  bottom: clamp(14px, 2.6vw, 30px);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100% - 28px));
  padding: 12px 14px;
  border: 1px solid rgba(37, 211, 102, .36);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 46px rgba(12, 18, 28, .18);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-cta span {
  flex: 1 1 auto;
  min-width: 0;
  color: #222;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1080px) {
  .hero,
  .split,
  .contact-section,
  .footer-inner { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 760px) {
  .hero,
  .section,
  .page-hero,
  .contact-section,
  .global-cta { padding-left: 24px; padding-right: 24px; }
  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 27px; }
  .hero-stats,
  .category-grid,
  .feature-list,
  .related-links,
  .product-gallery,
  .inquiry-form { grid-template-columns: 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; min-width: 0; white-space: normal; }
  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 12px;
    width: auto;
    border-radius: 14px;
  }
  .floating-cta span { white-space: normal; line-height: 1.25; }
}
