:root {
  --bg: #f3f3f1;
  --paper: #ffffff;
  --ink: #242424;
  --muted: #5e5e5e;
  --line: #e5e5e5;
  --dark: #232323;
  --accent: #d38b32;
  --accent-deep: #b97524;
  --shadow: rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

body[data-lang="en"] .lang-bs,
body[data-lang="bs"] .lang-en {
  display: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem clamp(1rem, 3vw, 2rem) 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  text-decoration: none;
}

.brand-logo {
  width: 7.8rem;
  height: 5.8rem;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0.85rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.04rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: #f6f6f6;
  border: 1px solid var(--line);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

main {
  width: min(1200px, calc(100vw - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.88) 0%, rgba(20, 20, 20, 0.55) 45%, rgba(20, 20, 20, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 2rem));
  padding: 6.5rem 0 6rem 3.2rem;
  color: #fff;
}

.hero-eyebrow,
.eyebrow,
.product-tag {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  color: #f0b15f;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.hero-kicker {
  margin: 0 0 0.5rem;
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.3rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-subtitle,
.about-copy p,
.cta-strip p,
.product-body p,
.contact-info p,
.contact-line p {
  font-size: 1.12rem;
  line-height: 1.65;
  margin: 0;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.82rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(211, 139, 50, 0.28);
}

.btn-secondary,
.btn-light {
  background: #fff;
  color: var(--dark);
}

.language-switch {
  box-shadow: 0 0 0 1px rgba(211, 139, 50, 0.18);
}

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

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.cta-strip p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.about,
.products,
.contact {
  padding: 4rem 0;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 1.6rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
}

.about-copy,
.about-panel,
.product-card,
.contact-layout {
  background: #fff;
  border: 1px solid var(--line);
}

.about-copy {
  padding: 1.8rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-panel {
  display: grid;
  gap: 1px;
  background: #e8e8e8;
}

.metric {
  padding: 1.4rem;
  background: #fff;
}

.metric strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--accent-deep);
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

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

.product-card {
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  padding: 1.3rem;
}

.product-tag {
  display: inline-block;
  color: var(--accent-deep);
  font-size: 0.8rem;
  margin-bottom: 0.55rem;
}

.product-body h3 {
  margin-bottom: 0.7rem;
}

.quality-band {
  padding: 3rem 2.2rem;
  background: #232323;
  color: #fff;
}

.quality-band .eyebrow {
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.contact-info {
  padding: 1.8rem;
  background: #fff;
}

.contact-info p + p {
  margin-top: 1rem;
}

.contact-line {
  margin-top: 1.2rem;
}

.contact-label {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.contact-line a {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.map-frame {
  width: 100%;
  min-height: 100%;
  border: 0;
  background: #ddd;
}

.site-footer {
  padding: 1.6rem 1rem 2rem;
  text-align: center;
  color: var(--muted);
}

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

@media (max-width: 980px) {
  .about-layout,
  .product-grid,
  .contact-layout,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: min(680px, calc(100% - 2rem));
    padding: 5rem 1rem 4rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 88px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  }

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

  h1 {
    max-width: 10ch;
  }
}

@media (max-width: 540px) {
  main {
    width: min(1200px, calc(100vw - 1rem));
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 4.6rem;
    height: 3.5rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 4.5rem 0.9rem 3rem;
  }

  h1 {
    font-size: 2.7rem;
  }
}
    width: min(52%, 290px);
    height: 230px;
    border: 0.45rem solid rgba(255, 255, 255, 0.96);
  }

  .section-grid,
  .contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
    gap: 1.4rem;
    align-items: start;
  }

  .about,
  .products,
  .contact {
    padding: 2rem 0 4rem;
  }

  .section-heading {
    max-width: 42rem;
    margin-bottom: 1.5rem;
  }

  .info-panel,
  .product-card,
  .contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1.2rem;
    box-shadow: 0 18px 38px var(--shadow);
  }

  .info-panel {
    padding: 1.4rem;
  }

  .info-panel ul {
    padding-left: 1.1rem;
    margin: 0.8rem 0 0;
  }

  .info-panel li + li {
    margin-top: 0.6rem;
  }

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

  .product-card {
    overflow: hidden;
  }

  .product-image {
    height: 220px;
  }

  .product-card h3,
  .product-card p {
    padding-inline: 1.2rem;
  }

  .product-card h3 {
    padding-top: 1rem;
  }

  .product-card p:last-child {
    padding-bottom: 1.25rem;
  }

  .contact-card {
    padding: clamp(1.3rem, 2vw, 1.8rem);
    background: linear-gradient(135deg, #f8fbf8 0%, #eef5f0 100%);
  }

  .contact-details {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 1.2rem;
    border-radius: 1rem;
    background: var(--green-deep);
  }

  .contact-line {
    display: grid;
    gap: 0.35rem;
  }

  .contact-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
  }

  .contact-details a,
  .contact-details p {
    color: var(--white);
  }

  .contact-details a {
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
  }

  .map-frame {
    min-height: 260px;
    border: 0;
    border-radius: 0.9rem;
    background: #dce8df;
  }

  .site-footer {
    padding: 0 1rem 2rem;
    text-align: center;
    color: var(--gray-500);
  }

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

  @media (max-width: 980px) {
    .hero,
    .section-grid,
    .contact-card,
    .product-grid {
      grid-template-columns: 1fr;
    }

    .hero {
      padding-top: 2rem;
    }

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

    .hero-visual {
      min-height: 500px;
    }
  }

  @media (max-width: 760px) {
    .site-header {
      flex-wrap: wrap;
    }

    .header-actions {
      width: 100%;
      justify-content: space-between;
    }

    .menu-toggle {
      display: inline-flex;
    }

    .site-nav {
      position: fixed;
      inset: 88px 1rem auto 1rem;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
      border-radius: 1rem;
      border: 1px solid var(--gray-200);
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 18px 44px rgba(23, 39, 29, 0.16);
    }

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

    .hero-card-main {
      inset: 0 1rem 2.6rem 0;
    }
  }

  @media (max-width: 540px) {
    main {
      width: min(1140px, calc(100vw - 1rem));
    }

    .brand-mark {
      width: 4rem;
      height: 3rem;
    }

    .brand-mark-top {
      font-size: 0.92rem;
    }

    .hero-visual {
      min-height: 390px;
    }

    .hero-card-main {
      inset: 0 0 2.2rem 0;
    }

    .hero-card-float {
      width: 64%;
      height: 160px;
    }

    .brand-copy strong {
      font-size: 0.84rem;
    }

    .brand-copy span {
      font-size: 0.7rem;
    }

    .brand-copy {
      padding-bottom: 0.55rem;
    }

    .brand-copy::after {
      height: 3px;
    }
  }