:root {
  --bg: #f5f4f2;
  --surface: #fff;
  --soft: #ece8e4;
  --text: #2d2722;
  --muted: #6c6258;
  --primary: #5f3c27;
  --border: #ddd4cc;
  --shadow: 0 8px 18px rgba(32, 24, 18, 0.05);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 242, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(9px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: var(--surface);
  color: var(--muted);
  padding: 0.35rem 0.55rem;
  font-weight: 700;
  cursor: pointer;
}

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

.hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at 90% 10%, #e6d9cc 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.95rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.68rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
}

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

.btn.primary:hover {
  filter: brightness(0.92);
}

.btn.ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.hero-media img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
}

.section-subtitle {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.story-card h3 {
  margin-top: 1rem;
  font-size: 1.02rem;
}

.story-card h3:first-child {
  margin-top: 0;
}

.story-media {
  display: grid;
  gap: 0.8rem;
}

.story-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  min-height: 220px;
}

.alt {
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-group {
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-grid.one {
  grid-template-columns: repeat(1, minmax(0, 340px));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}

.product-card h4 {
  margin: 0.7rem 0 0.25rem;
  font-size: 0.98rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}

.cert-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cert-card h3 {
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.award-card {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.award-card img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 0.6rem;
  border-radius: 12px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.facility-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 220px;
  object-fit: cover;
}

.contact-list {
  max-width: 560px;
  margin: 0 0 1rem;
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(88px, 118px) 1fr;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45, 39, 34, 0.08);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.contact-value:hover {
  color: var(--primary);
}

.contact-values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-values a {
  color: var(--text);
  text-decoration: none;
}

.contact-values a:hover {
  color: var(--primary);
}

.contact-sep {
  color: var(--muted);
  user-select: none;
}

.contact-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-fb {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-fb:hover .icon-fb {
  opacity: 1;
}

.map-wrap {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.footer {
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 1rem;
    min-width: 230px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .story-grid,
  .product-grid,
  .cert-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 0.95rem;
  }
}
