:root {
  /* PRIMARY BRAND COLORS */
  --brown: #5A341C;
  --brown-dark: #3E2312;
  --brown-light: #7A4A2B;

  /* ACCENT COLORS */
  --orange: #E7852F;
  --orange-dark: #C96A18;
  --gold: #D8A25A;

  /* NEUTRALS */
  --cream: #F6EFE7;
  --beige: #EADCCF;
  --sand: #D9C2AA;
  --white: #FFFFFF;

  /* TEXT */
  --charcoal: #24160F;
  --muted: #7A6B61;

  /* UI */
  --line: rgba(62, 35, 18, .12);
  --shadow: 0 24px 70px rgba(52, 28, 15, .18);

  /* TYPOGRAPHY */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
  text-align: center;
}

.section {
  padding: 96px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-head);
}

p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center,
.center-action {
  text-align: center;
}

.section-heading h2,
.section-copy h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--charcoal);
}

.section-heading p,
.section-copy p {
  margin-top: 18px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(12, 141, 163, .22);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(12, 141, 163, .12);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--cream);
  color: var(--charcoal);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 16px;
  align-content: center;
  background: var(--cream);
  transition: opacity .45s ease, visibility .45s ease;
}

.loader span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(12, 141, 163, .18);
  border-top-color: var(--brown);
  animation: spin 1s linear infinite;
}

.loader strong {
  color: var(--brown-dark);
  letter-spacing: .22em;
  font-size: 12px;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--brown));
  z-index: 1600;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
  width: min(1240px, calc(100% - 30px));
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: all .28s ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
  border-color: rgba(12, 141, 163, .12);
}

.brand img {
  width: 206px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-header.scrolled .main-nav a {
  color: var(--charcoal);
}

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

.main-nav .nav-cta {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
}

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

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 130px 0 70px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(32,16,8,.92),
    rgba(62,35,18,.74),
    rgba(62,35,18,.38)
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .65fr);
  gap: 54px;
  align-items: end;
}

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

.hero h1 {
  font-size: clamp(46px, 8vw, 55px);
  letter-spacing: .02em;
  margin-top: 16px;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 27px);
  margin-top: 12px;
  color: var(--cream);
  font-weight: 600;
}

.hero p {
  color: rgba(255, 255, 255, .82);
  margin-top: 20px;
  max-width: 760px;
}

.hero-note {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--cream) !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.floating-card,
.mini-counter-row>div {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.floating-card {
  animation: float 4s ease-in-out infinite;
}

.floating-card span {
  color: var(--gold);
  font-weight: 900;
}

.floating-card strong {
  display: block;
  margin: 10px 0;
  font-size: 22px;
}

.mini-counter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-counter-row strong {
  display: block;
  font-size: 34px;
  color: var(--gold);
}

.mini-counter-row span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 155, 60, .18);
  filter: blur(4px);
  z-index: 1;
}

.hero-shape-one {
  width: 190px;
  height: 190px;
  right: 8%;
  top: 18%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-two {
  width: 110px;
  height: 110px;
  right: 34%;
  bottom: 10%;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  50% {
    transform: translateY(-16px);
  }
}

.scroll-down {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
}

.scroll-down span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: drop 1.5s infinite;
}

@keyframes drop {
  80% {
    top: 28px;
    opacity: .2;
  }
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.image-collage {
  position: relative;
  min-height: 560px;
}

.image-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.collage-main {
  inset: 0 auto auto 0;
  width: 76%;
  height: 88%;
  border-radius: 26px;
}

.collage-small {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 46%;
  border-radius: 20px;
  border: 10px solid var(--white);
}

.collage-badge {
  position: absolute;
  left: 28px;
  bottom: 34px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.collage-badge strong {
  display: block;
  color: var(--brown);
}

.collage-badge span {
  color: var(--muted);
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats-grid div {
  background: var(--cream);
  border: 1px solid rgba(200, 155, 60, .18);
  border-radius: 16px;
  padding: 18px 14px;
}

.stats-grid strong {
  color: var(--brown);
  font-size: 32px;
  display: block;
}

.stats-grid span {
  font-size: 12px;
  color: var(--muted);
}

.glass-section {
  background:
    linear-gradient(
      135deg,
      rgba(90,52,28,.92),
      rgba(62,35,18,.94)
    ),
    url("../images/hero-dairy-logistics.jpg") center/cover fixed;
}

.glass-section h2,
.glass-section h3,
.glass-section p,
.glass-section .eyebrow {
  color: var(--white);
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.glass-card {
  min-height: 300px;
  padding: 38px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  transition: transform .25s ease, background .25s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .18);
}

.card-icon,
.value-card span,
.service-card span {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 22px;
}

.glass-card h3,
.glass-card h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.values-section,
.products-preview,
.related-section {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.value-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card,
.service-card,
.product-card,
.contact-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover,
.service-card:hover,
.product-card:hover,
.contact-cards article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
 border-color: rgba(12, 141, 163, .12);
}

.value-card span {
  box-shadow: 0 0 30px rgba(200, 155, 60, .38);
}

.value-card h3,
.service-card h3 {
  font-size: 17px;
  line-height: 1.35;
}

.category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.category-tabs button,
.product-sidebar button,
.slider-controls button {
  border: 1px solid rgba(12, 141, 163, .18);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: all .2s ease;
}

.category-tabs button.active,
.category-tabs button:hover,
.product-sidebar button.active,
.product-sidebar button:hover,
.slider-controls button:hover {
  background: var(--brown);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-grid.full {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.product-card figure {
  margin: 0;
  height: 230px;
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform .3s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-card .product-body {
  padding: 22px;
}

.product-card .tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 20px;
  margin: 8px 0 10px;
}

.product-card p {
  font-size: 13px;
}

.product-card button {
  width: 100%;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease;
}

.product-card button:hover {
  background: var(--orange);
}

.map-section {
  background: var(--white);
}

.map-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.region-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.region-cards span {
  background: var(--cream);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brown-dark);
}

.trade-map {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(200, 155, 60, .18), transparent 18%),
    linear-gradient(135deg, rgba(12, 141, 163, .12), rgba(247, 242, 232, .95)),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(12, 141, 163, .09) 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(12, 141, 163, .09) 40px);
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(12, 141, 163, .12);
}

.pin-eu {
  left: 20%;
  top: 24%;
}

.pin-sa {
  left: 58%;
  top: 52%;
  background: var(--orange);
}

.pin-iq {
  left: 64%;
  top: 35%;
}

.pin-gulf {
  left: 76%;
  top: 58%;
}

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--brown), transparent);
  transform-origin: left;
  animation: pulseLine 2.4s infinite;
}

.line-one {
  width: 310px;
  left: 24%;
  top: 34%;
  transform: rotate(28deg);
}

.line-two {
  width: 190px;
  left: 58%;
  top: 48%;
  transform: rotate(-22deg);
}

.line-three {
  width: 180px;
  left: 62%;
  top: 60%;
  transform: rotate(12deg);
}

@keyframes pulseLine {
  50% {
    opacity: .35;
  }
}

.ship-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: rgba(255, 255, 255, .88);
  border-radius: 16px;
  padding: 18px;
  font-weight: 800;
  color: var(--brown-dark);
}

.services-section {
  background: var(--cream);
}

.service-card span {
  background: rgba(12, 141, 163, .1);
  color: var(--brown);
}

.why-section {
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.why-image img {
  border-radius: 26px;
  min-height: 520px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.why-content h2,
.why-content p {
  color: var(--white);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(200, 155, 60, .12);
}

.welcome-section {
  background: var(--white);
}

.quote-mark {
  display: block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 96px;
  height: 56px;
}

.welcome-section h2 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 18px;
}

.testimonials {
  background: var(--cream);
}

.testimonial-slider {
  position: relative;
  min-height: 260px;
}

.testimonial {
  display: none;
  background: var(--white);
  border-radius: 22px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.testimonial.active {
  display: block;
  animation: fade .35s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.testimonial p {
  font-size: 22px;
  color: var(--charcoal);
  font-family: var(--font-head);
}

.testimonial strong,
.testimonial span {
  display: block;
  margin-top: 18px;
  color: var(--brown);
}

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.cta-band {
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  border-radius: 28px;
  padding: 42px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

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

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  padding: 160px 0 64px;
  overflow: hidden;
}

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

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 18, 22, .88), rgba(2, 18, 22, .42));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 900px;
  margin-top: 14px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 12px;
  color: var(--gold);
}

.product-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 34px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 110px;
  background: var(--cream);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(12, 141, 163, .12);
}

.product-sidebar h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.product-sidebar button {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  border-radius: 12px;
}

.sidebar-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
}

.sidebar-note strong {
  color: var(--brown);
}

.product-tools {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.product-tools h2 {
  font-size: 38px;
  margin-top: 8px;
}

.search-box {
  min-width: 330px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.search-box input,
.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--charcoal);
}

.related-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards article span {
  color: var(--gold);
  font-weight: 900;
}

.contact-cards h2 {
  font-size: 24px;
  margin: 8px 0;
}

.contact-form {
  background: var(--white);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 42px;
  margin: 10px 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 13px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  font-weight: 700;
  color: var(--brown);
}

.map-embed {
  margin-top: 34px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.04);
}

.site-footer {
  background:#2B170C;
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  gap: 34px;
}

.footer-logo {
  width: 220px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--cream);
  margin-bottom: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 10px;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--gold);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter input {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(12, 141, 163, .12);
}

.newsletter button {
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 0 16px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding: 22px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 1200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.whatsapp-float {
  bottom: 92px;
  background: #25D366;
  color: var(--white);
}

.back-to-top {
  bottom: 24px;
  background: var(--orange);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .62);
}

.product-modal.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(900px, 100%);
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .32);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.modal-content img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--cream);
  padding: 34px;
}

.modal-info {
  padding: 44px;
}

.modal-info h2 {
  font-size: 42px;
  margin: 10px 0 18px;
}

.modal-info ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 86px 15px auto 15px;
    display: grid;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .site-header .main-nav a {
    color: var(--charcoal);
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .map-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .product-grid,
  .value-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .product-grid.full {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    height: 70px;
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 166px;
    height: 46px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-actions,
  .cta-band,
  .product-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mini-counter-row,
  .stats-grid,
  .glass-grid,
  .product-grid,
  .product-grid.full,
  .value-grid,
  .service-grid,
  .check-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-collage {
    min-height: 430px;
  }

  .collage-main {
    width: 86%;
    height: 78%;
  }

  .collage-small {
    width: 56%;
    height: 38%;
  }

  .map-line {
    display: none;
  }

  .trade-map {
    min-height: 420px;
  }

  .product-card figure {
    height: 210px;
  }

  .search-box {
    min-width: 0;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-content img {
    height: 260px;
  }

  .modal-info {
    padding: 28px;
  }

  .contact-form {
    padding: 24px;
  }

  .page-hero {
    min-height: 420px;
    padding-top: 130px;
  }
}