:root {
  --ink: #1f1a17;
  --muted: #6b6259;
  --bg: #faf6f0;
  --card: #ffffff;
  --line: #e8e0d6;
  --primary: #0f766e;
  --primary-dark: #115e59;
  --accent: #c2703d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 26, 23, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a:not(.btn) {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

.site-nav a:not(.btn):hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--ink);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #a85d2e;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  color: var(--ink);
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
}

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .lead {
  margin: 12px auto 0;
}

/* Hero */
.hero {
  background:
    radial-gradient(1000px 420px at 85% -10%, rgba(15, 118, 110, 0.12), transparent 60%),
    radial-gradient(700px 380px at 0% 20%, rgba(194, 112, 61, 0.10), transparent 60%);
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.hero .lead {
  margin-bottom: 30px;
}

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

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14.5px;
}

.trust-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-radius: 10px;
  flex-shrink: 0;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.swatch {
  height: 180px;
  position: relative;
}

.swatch-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(31, 26, 23, 0.72);
  color: #fff;
  font-size: 11.5px;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.swatch-1 {
  background: linear-gradient(135deg, #e7dcf4 0%, #f8f3fd 45%, #d8c9ee 100%);
}

.swatch-2 {
  background: linear-gradient(135deg, #d9cfc5 0%, #f2ece6 50%, #c9bdb0 100%);
}

.swatch-3 {
  background: linear-gradient(135deg, #f3b0c0 0%, #fbe3ea 50%, #e48ea6 100%);
}

.swatch-4 {
  background: linear-gradient(135deg, #b98a5a 0%, #d9b98f 50%, #8a5f34 100%);
}

.swatch-5 {
  background:
    repeating-linear-gradient(45deg, #c9c2b6 0 6px, #ded8cc 6px 12px);
}

.swatch-6 {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.25) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #a7c7e7 0%, #dbe9f7 50%, #79a6d1 100%);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 14px;
}

.card-link {
  font-weight: 600;
  font-size: 14.5px;
}

.spec-list {
  list-style: none;
  margin-bottom: 16px;
}

.spec-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 14.5px;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 26px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(800px 360px at 90% -20%, rgba(15, 118, 110, 0.12), transparent 60%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat span {
  font-size: 13.5px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin-top: 10px;
}

.check-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 15px;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.35);
  border-color: var(--primary);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.contact-info {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 18px;
}

.contact-line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14.5px;
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line strong {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-line a {
  color: #fff;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ===== Hero background image (replaces flat gradient) ===== */
.hero {
  background-color: #332d27;
  background-image: linear-gradient(rgba(31, 26, 23, 0.58), rgba(31, 26, 23, 0.76)), url("../images/hero.jpg");
  background-size: cover;
  background-position: center 32%;
  text-align: center;
  color: #fff;
}

.hero h1 {
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  margin-left: auto;
  margin-right: auto;
}

.hero .eyebrow {
  color: #a9ded7;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

.hero-actions {
  justify-content: center;
}

/* ===== Stats band (animated counters) ===== */
.stats-band {
  background: var(--ink);
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stat-item .stat-num {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  color: #f2c879;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.stat-item .stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

/* ===== Language toggle (top-right) ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== Explore More button below product grid ===== */
.explore-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== Scroll reveal animation ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsive additions ===== */
@media (max-width: 700px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 15px;
}

.site-footer p {
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Placeholder hint */
.placeholder-hint {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4%;
    gap: 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .product-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 52px 0;
  }
}
