:root {
  --max-width: 1100px;
  --card: #ffffff;
  --muted: #333;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #222;
  line-height: 1.45;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(2px);
  z-index: -1;
}

.hero-content {
  position: relative;
  padding: 28px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  margin: 0;
  margin-top: 40px;
  font-size: clamp(22px, 4vw, 38px);
}

.tagline {
  margin-top: 6px;
  font-size: clamp(18px, 3vw, 24px);
  opacity: 0.95;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 18px;
}

/* Sections */
section {
  background: var(--card);
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

section p {
  color: var(--muted)
}

h2 {
  margin-top: 0
}

/* Factories */
.factory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.factory-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.factory-grid figcaption {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Partners */
.partners-card img {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 18px;
  color: #fff;
  font-size: 13px;
}

/* Responsive */
@media (max-width:600px) {
  .hero {
    min-height: 200px
  }

  .factory-grid img {
    height: 150px
  }
}