* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f7f4ed;
  --paper: #fffdf8;
  --ink: #172015;
  --muted: #66705f;
  --line: rgba(39, 61, 42, 0.14);
  --accent: #294d35;
  --accent2: #df8745;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 32, 21, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { color: white; font-weight: 800; text-decoration: none; font-size: 20px; }
.links { display: flex; gap: 22px; align-items: center; }
.links a { color: rgba(255,255,255,0.78); text-decoration: none; font-weight: 700; font-size: 14px; }
.links a:hover { color: white; }
.quote {
  background: var(--accent2);
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
}
.hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(12,18,11,0.9), rgba(20,29,18,0.58), rgba(20,22,16,0.18)),
    var(--hero-image) center/cover;
  color: white;
}
.hero-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0 72px;
}
.eyebrow {
  color: #f2d39b;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}
h1 { font-size: clamp(38px, 6vw, 76px); line-height: 1.02; max-width: 850px; letter-spacing: 0; }
.hero p { max-width: 720px; margin-top: 20px; font-size: 19px; color: rgba(255,255,255,.86); }
.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0;
}
.section h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin-bottom: 18px; }
.lead { color: var(--muted); max-width: 820px; font-size: 18px; margin-bottom: 30px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(38,63,44,0.09);
}
.card-body { padding: 22px; }
.card h3 { font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card ul { padding-left: 18px; display: grid; gap: 6px; }
.media { aspect-ratio: 4/3; background: #ece5d6; }
.media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; filter: drop-shadow(0 18px 22px rgba(22,29,19,.18)); }
.band {
  background: #182017;
  color: white;
}
.band .section h2, .band .section h3 { color: white; }
.band .lead, .band p, .band li { color: rgba(255,255,255,.74); }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 24px; }
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: #f2d39b;
  font-weight: 900;
  margin-bottom: 10px;
}
.cta {
  background:
    linear-gradient(135deg, rgba(18,28,17,.92), rgba(38,63,44,.92)),
    url('/assets/hero-rain-camp-4k.webp') center/cover;
  color: white;
}
.cta-box { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: 70px 0; display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: center; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.btn {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}
.btn.primary { background: var(--accent2); color: white; }
.btn.secondary { border: 1px solid rgba(255,255,255,.34); color: white; }
.form {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 22px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}
.form textarea { min-height: 140px; }
footer { background: #10160f; color: rgba(255,255,255,.68); padding: 32px 22px; text-align: center; }
footer a { color: white; }
@media (max-width: 820px) {
  .links { display: none; }
  .hero-inner { padding-top: 90px; }
  .grid, .grid.two, .steps, .cta-box { grid-template-columns: 1fr; }
  .btns { justify-content: flex-start; }
}

.nav-item { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 250px; background: rgba(23,32,21,.98); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 10px; box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: grid; gap: 4px; }
.dropdown a { display: block; padding: 9px 10px; border-radius: 6px; white-space: nowrap; font-size: 13px; }
.dropdown a:hover { background: rgba(255,255,255,.08); }
.lang-switch { display: inline-flex; gap: 6px; align-items: center; padding-left: 4px; }
.lang-switch a { border: 1px solid rgba(255,255,255,.22); border-radius: 6px; padding: 6px 8px; font-size: 12px; line-height: 1; }
.lang-switch a:hover { background: rgba(255,255,255,.08); }
.mobile-lang-switch { display: none; }
.breadcrumb { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: 22px 0 0; display: flex; gap: 8px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--accent); text-decoration: none; font-weight: 700; }
.compact { padding-top: 42px; padding-bottom: 42px; }
.link-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.link-grid a { text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,.72); border-radius: 6px; padding: 10px 14px; font-weight: 800; color: var(--accent); }
.faq-list { display: grid; gap: 12px; }
.faq details { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { color: var(--muted); margin-top: 10px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.82); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { width: 210px; color: var(--accent); background: rgba(41,77,53,.06); }
.btns.left { justify-content: flex-start; margin-top: 18px; }
.btn.secondary.dark { color: var(--accent); border: 1px solid var(--accent); }
.article { max-width: 920px; }
.article h1 { color: var(--ink); font-size: clamp(36px,5vw,62px); }
.article h2 { margin-top: 34px; }
.article p { margin: 12px 0; color: var(--muted); }
.small { font-size: 12px; }
@media (max-width: 820px) { .links { display: none; } table { min-width: 560px; } }

.image-section { background: var(--bg); }
.image-section:nth-of-type(even) { background: var(--paper); }
.trust-image-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.trust-image-grid.product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.image-card { background: rgba(255,255,255,.84); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 14px 36px rgba(38,63,44,.08); }
.image-frame, .image-placeholder { aspect-ratio: 4 / 3; width: 100%; background: #ece5d6; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-card figcaption { padding: 12px 14px 14px; font-weight: 900; color: var(--accent); font-size: 14px; }
.image-placeholder { display: grid; align-content: center; justify-items: center; gap: 8px; padding: 18px; text-align: center; color: var(--muted); border-bottom: 1px solid var(--line); background: repeating-linear-gradient(135deg, rgba(41,77,53,.06), rgba(41,77,53,.06) 10px, rgba(255,255,255,.42) 10px, rgba(255,255,255,.42) 20px); }
.image-placeholder strong { color: var(--accent); font-size: 18px; }
.image-placeholder span { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; overflow-wrap: anywhere; }
.image-placeholder small { font-size: 12px; }
.image-cta { margin-top: 20px; }
@media (max-width: 980px) { .trust-image-grid, .trust-image-grid.product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .trust-image-grid, .trust-image-grid.product-gallery { grid-template-columns: 1fr; } .image-card figcaption { font-size: 13px; } }
@media (max-width: 560px) {
  .nav { gap: 8px; padding: 12px 12px; position: relative; flex-wrap: wrap; }
  .logo { font-size: 15px; white-space: nowrap; max-width: 170px; overflow: hidden; text-overflow: ellipsis; }
  .mobile-lang-switch { position: static; order: 2; z-index: 60; width: 300px; max-width: calc(100vw - 48px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 2px auto 0; overflow: visible; padding-bottom: 0; }
  .mobile-lang-switch a { color: rgba(255,255,255,.9); text-decoration: none; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; padding: 5px 6px; font-size: 11px; line-height: 1; font-weight: 800; background: rgba(23,32,21,.9); text-align: center; }
  .hero { overflow: hidden; }
  h1 { width: auto; max-width: 100%; font-size: clamp(25px, 7vw, 30px); line-height: 1.14; overflow-wrap: break-word; word-break: normal; }
  .hero p { width: 300px; max-width: 100%; font-size: 15px; overflow-wrap: anywhere; word-break: break-word; }
  .hero-inner { width: 300px; max-width: calc(100vw - 48px); overflow: hidden; padding-bottom: 56px; }
  .section, .cta-box { width: 300px; max-width: calc(100vw - 48px); overflow: hidden; }
  .section p, .section li, .lead { overflow-wrap: anywhere; word-break: break-word; }
}

.article-body ul { margin: 12px 0 18px 24px; color: var(--muted); display: grid; gap: 8px; }
.article-body .grid { margin: 24px 0; }
.article-body p { font-size: 17px; }
.article-body h2 { padding-top: 8px; }
@media (max-width: 560px) {
  h1 { width: auto; max-width: 100%; overflow-wrap: break-word; word-break: normal; }
  .hero p, .section p, .section li, .lead { overflow-wrap: break-word; word-break: normal; }
}

.article-title { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; color: var(--ink); padding-top: 0; }

.verified-facts {
  background: #fffaf1;
  border-top: 1px solid rgba(223, 135, 69, .22);
  border-bottom: 1px solid rgba(41, 77, 53, .14);
}
.verified-facts-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(210px, .8fr) 2.2fr;
  gap: 24px;
  align-items: center;
}
.verified-facts-intro {
  display: grid;
  gap: 4px;
}
.verified-facts-intro span {
  color: var(--accent2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.verified-facts-intro strong {
  line-height: 1.25;
}
.verified-facts dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}
.verified-facts dl div {
  min-width: 0;
}
.verified-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.verified-facts dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.verified-contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}
.verified-contact .contact-note {
  color: var(--muted);
  font-size: 14px;
  max-width: 680px;
}
.contact-card-frame {
  aspect-ratio: 119 / 47;
  background: #143c34;
}
.contact-card-frame img {
  object-fit: contain;
}
.real-factory-photo .image-frame {
  background: #e8e4da;
}
.factory-gallery {
  margin-top: 28px;
}
@media (max-width: 820px) {
  .verified-facts-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .verified-facts dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .verified-facts-inner {
    width: 300px;
    max-width: calc(100vw - 48px);
  }
  .verified-facts dl {
    grid-template-columns: 1fr;
  }
}
