﻿:root {
  --ink: #22201d;
  --muted-ink: #625f56;
  --paper: #f4edde;
  --soft: #e8ddc8;
  --line: #d4c7ad;
  --forest: #536b57;
  --leaf: #70876f;
  --saffron: #c0733d;
  --tomato: #8f4f34;
  --cream: #fffaf0;
  --charcoal: #22201d;
  --shadow: 0 22px 60px rgba(34, 32, 29, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  display: block;
  width: min(220px, 38vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 600;
}

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

.header-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.header-cta,
.button.primary,
.inquiry-form button {
  color: #fff;
  background: var(--saffron);
}

.button.secondary {
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 32, 29, .94) 0%, rgba(34, 32, 29, .82) 42%, rgba(34, 32, 29, .28) 76%),
    url("hero-horeca-premix.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero .eyebrow,
.hero h1,
.hero-copy {
  color: var(--cream);
}

.hero-copy {
  opacity: .94;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted-ink);
  font-size: 18px;
}

.hero .hero-copy {
  color: #f5ead8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  min-width: 0;
}

.hero-image {
  position: relative;
  height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 250, 240, .95), rgba(255, 250, 240, 0) 24%),
    linear-gradient(145deg, #f5ead8 0 28%, #c0733d 48%, #312a25 100%);
  box-shadow: var(--shadow);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: auto 9% 32px 9%;
  height: 64%;
  border: 1px solid rgba(255, 250, 240, .42);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.hero-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 64%;
  background: linear-gradient(135deg, transparent, rgba(34, 32, 29, .55));
}

.service-tray {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 42px;
  height: 54px;
  border-radius: 50%;
  background: rgba(34, 32, 29, .38);
  filter: blur(.2px);
}

.cup {
  position: absolute;
  z-index: 3;
  bottom: 92px;
  width: 160px;
  height: 96px;
  border-radius: 0 0 48px 48px;
  background: #fffdf8;
  box-shadow: 0 18px 36px rgba(36, 37, 32, .24);
}

.cup::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 160px;
  height: 34px;
  border-radius: 50%;
  background: #6e4935;
  border: 10px solid #fffdf8;
}

.cup::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -38px;
  width: 52px;
  height: 46px;
  border: 11px solid #fffdf8;
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.cup-left {
  left: 54px;
}

.cup-right {
  right: 48px;
  bottom: 82px;
  transform: scale(.86);
}

.pack {
  position: absolute;
  display: grid;
  place-items: center;
  z-index: 4;
  color: #fff;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 20px 42px rgba(23, 33, 29, .22);
}

.pack-tall {
  right: 70px;
  top: 74px;
  width: 136px;
  height: 206px;
  background: linear-gradient(160deg, var(--charcoal), #3b3530);
  border-radius: 8px;
}

.pack-wide {
  left: 56px;
  top: 118px;
  width: 178px;
  height: 106px;
  background: linear-gradient(160deg, var(--saffron), #8f4f34);
  border-radius: 8px;
}

.steam {
  position: absolute;
  z-index: 2;
  bottom: 204px;
  width: 72px;
  height: 130px;
  border-left: 3px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
}

.steam.one {
  left: 106px;
}

.steam.two {
  right: 118px;
  transform: scale(.9) rotate(8deg);
}

.hero-badge {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 5;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, .48);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(34, 32, 29, .44);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.category-strip,
.highlights,
.target-strip,
.export-services,
.cert-row,
.industry-grid,
.logo-grid,
.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-strip {
  margin-top: 14px;
  padding-bottom: 4px;
}

.category-strip span,
.highlights div,
.target-strip span,
.export-services span,
.cert-row span,
.industry-grid span,
.market-grid span,
.logo-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  padding: 9px 13px;
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 700;
}

.highlights {
  padding: 18px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.highlights div {
  color: var(--cream);
  background: rgba(255, 250, 240, .08);
  border-color: rgba(255, 250, 240, .22);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.split,
.exports,
.resources,
.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
}

.body-copy {
  color: var(--muted-ink);
  font-size: 17px;
}

.about-grid,
.facility-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.section-photo {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.section-photo img {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 460px);
  object-fit: cover;
}

.product-photo img {
  object-position: center;
}

.private-photo img {
  object-position: center right;
}

.about-grid article,
.product-card,
.facility-grid article,
.market-panel,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 10px 34px rgba(23, 33, 29, .08);
}

.about-grid article {
  padding: 22px;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.product-card {
  min-height: 330px;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.product-card.coffee {
  background: linear-gradient(150deg, #2c211b, #6e4733);
}

.product-card.tea {
  background: linear-gradient(150deg, #536b57, #8b9075);
}

.product-card.soup {
  background: linear-gradient(150deg, #8f4f34, #c0733d);
}

.product-card.drink {
  background: linear-gradient(150deg, #536b57, #c0733d);
}

.product-card.shake {
  background: linear-gradient(150deg, #533b31, #b67853);
}

.product-card.sauce {
  background: linear-gradient(150deg, #2f3934, #70876f);
}

.product-card.packaging {
  background: linear-gradient(150deg, #5a3f34, #9f6945);
}

.product-card.services {
  background: linear-gradient(150deg, #283b38, #5f7a76);
}

.product-kicker {
  display: block;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card ul {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding-left: 18px;
}


.facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.facility-grid article {
  overflow: hidden;
}

.facility-grid h3,
.facility-grid p {
  padding: 0 22px;
}

.facility-grid h3 {
  margin-top: 20px;
}

.facility-grid p {
  color: var(--muted-ink);
  padding-bottom: 24px;
}

.facility-image {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.facility-image.production {
  background:
    linear-gradient(90deg, rgba(34, 32, 29, .08), rgba(34, 32, 29, .02)),
    url("manufacturing-line.png") center / cover no-repeat;
}

.facility-image.lab {
  background:
    linear-gradient(90deg, rgba(34, 32, 29, .08), rgba(34, 32, 29, .02)),
    url("quality-lab.png") center / cover no-repeat;
}

.facility-image.warehouse {
  background:
    linear-gradient(90deg, rgba(34, 32, 29, .08), rgba(34, 32, 29, .02)),
    url("export-warehouse.png") center / cover no-repeat;
}

.cert-row {
  margin-top: 22px;
}

.exports {
  background: var(--charcoal);
  color: #fff;
}

.exports .eyebrow,
.exports .body-copy {
  color: #f1e7d2;
}

.exports .body-copy {
  max-width: 680px;
}

.export-services span,
.market-grid span {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.market-panel {
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.market-panel img {
  display: block;
  width: 100%;
  height: 230px;
  margin-bottom: 22px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.market-grid {
  margin-top: 18px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process article {
  min-height: 150px;
  padding: 20px;
  border-top: 4px solid var(--saffron);
  background: var(--cream);
}

.process span {
  color: var(--saffron);
  font-weight: 800;
}

.target-strip {
  margin-top: 22px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 20px;
}

.industry-grid {
  gap: 12px;
}

.industry-grid span {
  padding: 14px 18px;
}

.resources {
  align-items: start;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-list a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.contact {
  align-items: start;
}

.contact-copy p {
  color: var(--muted-ink);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  font-weight: 700;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  background: #1f7a4d;
  box-shadow: 0 10px 24px rgba(31, 122, 77, .18);
}

.whatsapp-button:hover {
  background: #17643e;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}


.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--charcoal);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .split,
  .exports,
  .resources,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .product-grid,

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    display: grid;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(210px, 62vw);
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(34, 32, 29, .95) 0%, rgba(34, 32, 29, .84) 54%, rgba(34, 32, 29, .36) 100%),
      url("hero-horeca-premix.png") center right / cover no-repeat;
  }

  .section-photo img {
    height: 260px;
  }

  .hero-image {
    height: 430px;
  }

  .pack-wide {
    left: 28px;
    width: 176px;
  }

  .pack-tall {
    right: 34px;
  }

  .cup-left {
    left: 30px;
  }

  .cup-right {
    right: 32px;
  }

  .about-grid,
  .product-grid,
  .facility-grid,
  .process,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid span {
    min-height: 82px;
  }
}
