:root {
  --blue: #104a87;
  --blue-dark: #0d315c;
  --teal: #155f72;
  --sage: #9bb89d;
  --sage-soft: #e7efe8;
  --ink: #17202a;
  --muted: #62717d;
  --line: #d8e4df;
  --paper: #fbfcfa;
  --white: #ffffff;
  --gold: #c59b53;
  --shadow: 0 22px 60px rgba(13, 49, 92, 0.14);
}

* {
  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.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(216, 228, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 188px;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--blue-dark);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 80px);
  background:
    linear-gradient(120deg, rgba(231, 239, 232, 0.88) 0%, rgba(251, 252, 250, 0.96) 48%, rgba(21, 95, 114, 0.12) 100%),
    radial-gradient(circle at 78% 28%, rgba(197, 155, 83, 0.12), transparent 30%);
}

.hero-content {
  max-width: 780px;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: clamp(2.15rem, 4.35vw, 4.15rem);
  line-height: 1.08;
}

h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: #40505c;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(16, 74, 135, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.logo-card {
  padding: clamp(22px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: min(100%, 480px);
  margin: 0 auto;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid div {
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(216, 228, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.metric-grid strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
}

.text-block {
  color: #40505c;
  font-size: 1.08rem;
}

.values-panel {
  display: grid;
  gap: 14px;
}

.values-panel div {
  padding: 24px;
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: var(--sage-soft);
}

.values-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
}

.values-panel p {
  margin-bottom: 0;
  color: #40505c;
}

.services {
  background: linear-gradient(180deg, #f4f8f5 0%, #ffffff 100%);
}

.service-grid,
.product-list,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.product-list article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 49, 92, 0.07);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-weight: 800;
}

.service-grid p,
.product-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.products {
  background: var(--white);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage-soft), #ffffff);
  border: 1px solid var(--line);
  font-weight: 900;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.partners-strip span {
  padding: 10px 14px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf8;
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery {
  color: var(--white);
  background: var(--blue-dark);
}

.gallery .eyebrow,
.gallery h2 {
  color: var(--white);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-image {
  min-height: 230px;
  background-color: var(--sage);
  background-position: center;
  background-size: cover;
}

.gallery-image.warehouse {
  background-image:
    linear-gradient(135deg, rgba(13, 49, 92, 0.08), rgba(21, 95, 114, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 12px, rgba(231, 239, 232, 0.9) 12px 24px);
}

.gallery-image.veterinary {
  background-image:
    radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    radial-gradient(circle at 60% 60%, rgba(197, 155, 83, 0.78) 0 9%, transparent 10%),
    linear-gradient(135deg, var(--teal), var(--sage));
}

.gallery-image.nutrition {
  background-image:
    linear-gradient(135deg, rgba(155, 184, 157, 0.92), rgba(255, 255, 255, 0.24)),
    repeating-linear-gradient(45deg, rgba(16, 74, 135, 0.26) 0 10px, rgba(16, 74, 135, 0.08) 10px 20px);
}

.gallery-image.partners {
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.95) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.86) 0 10%, transparent 11%),
    radial-gradient(circle at 48% 70%, rgba(197, 155, 83, 0.72) 0 8%, transparent 9%),
    linear-gradient(135deg, var(--blue), var(--teal));
}

figcaption {
  min-height: 74px;
  padding: 18px;
  color: #edf4ef;
  font-weight: 700;
}

.contact {
  background: linear-gradient(135deg, var(--sage-soft), #ffffff 62%, rgba(21, 95, 114, 0.12));
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 650px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 11px;
  align-content: start;
}

.contact-details a,
.contact-details span {
  padding: 13px 14px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 800;
}

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

  .service-grid,
  .product-list,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .section-heading {
    display: block;
  }

  .metric-grid,
  .service-grid,
  .product-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .product-list article {
    min-height: auto;
  }
}
