* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  background: #FAF6EC;
  color: #1C160F;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  margin: 0;
}

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

button {
  font-family: 'Karla', sans-serif;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.entrance {
  animation: fadeInUp 0.7s ease both;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #FAF6EC;
  border-bottom: 1px solid rgba(28,22,15,0.14);
}

.nav-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: #1C160F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav a {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B5B45;
}

nav a.active {
  color: #1C160F;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #6E4423;
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(28,22,15,0.2);
}

.offer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease;
}

.offer-link:hover {
  transform: translateY(-4px);
}

.offer-icon-circle {
  border-radius: 999px;
  border: 1.5px solid rgba(28,22,15,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.offer-link:hover .offer-icon-circle {
  background-color: #A9713D;
  background-image: linear-gradient(rgba(28,22,15,0.45), rgba(28,22,15,0.45)), url('images/icon_bg.jpg');
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.offer-link:hover .offer-icon-circle svg {
  stroke: #FAF6EC;
}

.offer-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  transition: color 0.25s ease;
}

.offer-link:hover .offer-label {
  color: #6E4423;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 28px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(28,22,15,0.55);
  color: #FAF6EC;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background-color: rgba(28,22,15,0.8);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11.5px;
  color: #FAF6EC;
  background: rgba(28,22,15,0.55);
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(250,246,236,0.45);
}

.carousel-dots span.active {
  background: #FAF6EC;
}

.carousel {
  height: 320px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: none;
}

.carousel img.active {
  display: block;
}

.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(28,22,15,0.12);
}

.logistics-grid {
  background: #2E3C24;
  border-radius: 6px;
  padding: clamp(28px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-grid, .cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cert-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-size: 12.5px;
  font-weight: 700;
  color: #1C160F;
  display: block;
  margin-bottom: 6px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(28,22,15,0.2);
  border-radius: 4px;
  font-size: 14.5px;
  font-family: 'Karla', sans-serif;
  background: #FFFFFF;
  color: #1C160F;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
  background: #6E4423;
  color: #FAF6EC;
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}

footer {
  background: #1C160F;
  padding: 56px 32px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-inner .brand-name {
  color: #FAF6EC;
  font-size: 19px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: rgba(250,246,236,0.55);
  font-size: 12.5px;
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(250,246,236,0.7);
  font-size: 12.5px;
  font-weight: 600;
}

.footer-note {
  max-width: 1240px;
  margin: 32px auto 0;
  color: rgba(250,246,236,0.35);
  font-size: 11.5px;
}

.placeholder-tag {
  background: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(198,60,60,0.12) 8px, rgba(198,60,60,0.12) 16px);
  border: 1.5px dashed rgba(198,60,60,0.55);
  color: #A03A2E;
  font-size: 0.9em;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .logistics-grid, .product-grid, .contact-grid, .cert-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-row {
    padding: 16px 20px;
  }
  nav {
    gap: 16px;
  }
  .offer-icon-circle {
    width: 84px !important;
    height: 84px !important;
  }
}
