@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --red-900: #7f1717;
  --red-800: #991b1b;
  --red-600: #dc2626;
  --gold: #f5b301;
  --amber: #f59e0b;
  --ink: #171717;
  --muted: #626262;
  --cream: #fff9eb;
  --cream-2: #fff4d6;
  --white: #fff;
  --line: #eadfca;
  --surface: #fffdf8;
  --success: #137044;
  --shadow-sm: 0 10px 30px rgba(47, 31, 11, 0.08);
  --shadow-lg: 0 25px 65px rgba(28, 17, 4, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-cream { background: var(--cream); }
.section-dark { color: var(--white); background: var(--ink); }
.section-red { color: var(--white); background: linear-gradient(135deg, var(--red-900), var(--red-600)); }
.section-overflow { overflow: hidden; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red-800);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  border-radius: 10px;
  background: var(--gold);
}

.section-dark .eyebrow,
.section-red .eyebrow { color: var(--gold); }

h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.14; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.5rem, 6vw, 5.35rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.48rem); font-weight: 800; }
h4 { font-size: 1.05rem; font-weight: 800; }
p { margin: 0 0 20px; }
.lead { color: #4b4b4b; font-size: clamp(1.02rem, 2vw, 1.2rem); }
.section-dark .lead, .section-red .lead { color: rgba(255,255,255,.8); }
.muted { color: var(--muted); }
.gold-text { color: var(--gold); }
.red-text { color: var(--red-800); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}

.section-heading > div:first-child { max-width: 760px; }
.section-heading p { max-width: 600px; margin: 0; color: var(--muted); }
.section-dark .section-heading p,
.section-red .section-heading p { color: rgba(255,255,255,.72); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red-600); box-shadow: 0 10px 25px rgba(220,38,38,.24); }
.btn-primary:hover { background: var(--red-800); }
.btn-gold { color: var(--ink); background: var(--gold); box-shadow: 0 10px 25px rgba(245,179,1,.25); }
.btn-gold:hover { background: #ffc21c; }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-outline { color: var(--ink); border-color: #cfc7b8; background: transparent; }
.btn-outline:hover { border-color: var(--red-800); color: var(--red-800); }
.btn-white { color: var(--red-800); background: var(--white); }
.btn-link { min-height: auto; padding: 0; color: var(--red-800); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.utility-bar {
  position: relative;
  z-index: 1100;
  color: rgba(255,255,255,.86);
  background: var(--ink);
  font-size: .78rem;
}

.utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-list { display: flex; align-items: center; gap: 22px; }
.utility-list span, .utility-list a { display: inline-flex; align-items: center; gap: 6px; }
.utility-list a:hover { color: var(--gold); }
.utility-icon { color: var(--gold); font-weight: 800; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(23,23,23,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}

.nav-shell { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-emblem {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--red-800);
  box-shadow: inset 0 0 0 3px var(--white);
  font-size: 1.55rem;
  line-height: 1;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: var(--red-800); font-size: 1.14rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link, .dropdown-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  color: #363636;
  background: transparent;
  font-size: .88rem;
  font-weight: 700;
}
.nav-link:hover, .nav-link.active, .dropdown-toggle:hover, .dropdown-toggle.active { color: var(--red-800); background: #fff2f2; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  visibility: hidden;
  top: calc(100% + 12px);
  left: -80px;
  width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(8px);
  transition: .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: #454545; font-size: .85rem; font-weight: 700; }
.dropdown-menu a:hover { color: var(--red-800); background: var(--cream); }
.mobile-menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.mobile-menu-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--ink); }

.mobile-drawer-backdrop {
  position: fixed;
  z-index: 1200;
  visibility: hidden;
  inset: 0;
  opacity: 0;
  background: rgba(0,0,0,.55);
  transition: .25s ease;
}
.mobile-drawer {
  position: fixed;
  z-index: 1201;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  padding: 22px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
  transform: translateX(102%);
  transition: .28s ease;
}
.mobile-drawer.open { transform: none; }
.mobile-drawer-backdrop.open { visibility: visible; opacity: 1; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 1.4rem; }
.mobile-nav { display: grid; gap: 6px; }
.mobile-nav a { padding: 12px 10px; border-bottom: 1px solid #eee6d9; font-weight: 800; }
.mobile-nav .mobile-sub { padding-left: 22px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.drawer-contact { margin-top: 24px; padding: 18px; border-radius: 14px; background: var(--cream); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .64;
  background: linear-gradient(90deg, rgba(23,23,23,.98) 0%, rgba(23,23,23,.86) 45%, rgba(23,23,23,.25) 100%), url("../images/truck-highway.webp") center/cover;
}
.hero::after {
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: 620px;
  height: 620px;
  content: "";
  border: 110px solid rgba(245,179,1,.10);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; display: grid; min-height: 690px; align-items: center; gap: 60px; grid-template-columns: 1.12fr .88fr; }
.hero-copy { max-width: 760px; padding: 75px 0; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 680px; margin-bottom: 32px; color: rgba(255,255,255,.84); }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker::before { width: 42px; height: 2px; content: ""; background: var(--gold); }

.packshot-stage { position: relative; display: flex; min-height: 480px; align-items: end; justify-content: center; padding-bottom: 45px; }
.packshot-glow { position: absolute; right: 0; bottom: 0; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(245,179,1,.3), transparent 64%); filter: blur(8px); }
.bottle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 122px;
  height: 300px;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 26px 26px 18px 18px;
  color: var(--white);
  background: linear-gradient(145deg, #c41f24 0%, #7e1115 70%);
  box-shadow: 0 30px 50px rgba(0,0,0,.32), inset 12px 0 16px rgba(255,255,255,.08);
  transform: rotate(2deg);
}
.bottle::before { position: absolute; top: -38px; width: 65px; height: 46px; content: ""; border-radius: 7px 7px 3px 3px; background: #2b2b2b; box-shadow: inset 0 -8px rgba(255,255,255,.04); }
.bottle::after { position: absolute; top: 12px; right: 10px; width: 19px; height: 64px; content: ""; border: 5px solid rgba(23,23,23,.5); border-radius: 16px; }
.bottle.tall { width: 145px; height: 360px; margin: 0 -12px; transform: rotate(-2deg); }
.bottle.gold { height: 270px; background: linear-gradient(145deg, #eeb316, #a9570b); transform: rotate(5deg); }
.bottle-label { position: relative; z-index: 3; width: 82%; padding: 20px 8px; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); background: rgba(15,15,15,.94); text-align: center; }
.bottle-label .star { display: block; color: var(--gold); font-size: 1.7rem; line-height: 1; }
.bottle-label strong { display: block; margin: 4px 0; font-size: .82rem; line-height: 1.12; text-transform: uppercase; }
.bottle-label small { display: block; color: #eee; font-size: .56rem; letter-spacing: .09em; }
.asset-note { position: absolute; z-index: 4; right: 20px; bottom: 12px; max-width: 220px; color: rgba(255,255,255,.64); font-size: .68rem; text-align: right; }

.trust-strip { position: relative; z-index: 5; margin-top: -42px; }
.trust-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-lg); grid-template-columns: repeat(4, 1fr); }
.trust-item { position: relative; padding: 26px 22px; }
.trust-item + .trust-item::before { position: absolute; top: 22px; bottom: 22px; left: 0; width: 1px; content: ""; background: var(--line); }
.trust-value { display: block; margin-bottom: 3px; color: var(--red-800); font-size: 1.5rem; font-weight: 800; letter-spacing: -.04em; }
.trust-label { color: var(--muted); font-size: .8rem; font-weight: 700; }

.two-col { display: grid; align-items: center; gap: clamp(40px, 7vw, 90px); grid-template-columns: repeat(2, minmax(0,1fr)); }
.image-frame { position: relative; min-height: 460px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(23,23,23,.5), transparent 55%); }
.image-caption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: end; justify-content: space-between; gap: 15px; color: var(--white); }
.experience-badge { display: inline-grid; min-width: 150px; padding: 18px; border-radius: 16px; color: var(--ink); background: var(--gold); }
.experience-badge strong { font-size: 2rem; line-height: 1; }
.experience-badge span { font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 28px; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #414141; font-weight: 600; }
.check-list li::before { position: absolute; top: .1em; left: 0; display: grid; width: 21px; height: 21px; place-items: center; content: "✓"; border-radius: 50%; color: var(--white); background: var(--red-800); font-size: .72rem; font-weight: 800; }

.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.category-card { position: relative; min-height: 360px; overflow: hidden; border-radius: 22px; color: var(--white); background: var(--ink); box-shadow: var(--shadow-sm); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .72; object-fit: cover; transition: transform .55s ease; }
.category-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(23,23,23,.98) 0%, rgba(23,23,23,.2) 74%); }
.category-card:hover img { transform: scale(1.06); }
.category-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 24px; }
.category-content p { margin-bottom: 18px; color: rgba(255,255,255,.75); font-size: .86rem; }
.category-content .btn { min-height: 42px; padding: 9px 14px; font-size: .8rem; }
.category-number { display: inline-grid; width: 37px; height: 37px; place-items: center; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--gold); font-size: .75rem; font-weight: 800; }

.feature-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: .22s ease; }
.feature-card:hover { border-color: rgba(220,38,38,.28); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.feature-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 22px; border-radius: 14px; color: var(--red-800); background: #fff0e2; font-size: 1.4rem; font-weight: 800; }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.industry-grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid #343434; border-radius: 22px; background: #343434; grid-template-columns: repeat(4, minmax(0,1fr)); }
.industry-card { min-height: 185px; padding: 28px; background: var(--ink); transition: background-color .2s ease; }
.industry-card:hover { background: #262626; }
.industry-card .industry-icon { color: var(--gold); font-size: 1.7rem; }
.industry-card h3 { margin-top: 26px; font-size: 1.12rem; }
.industry-card p { margin: 0; color: #aaa; font-size: .83rem; }

.cta-panel { position: relative; display: grid; align-items: center; gap: 50px; overflow: hidden; padding: 55px; border-radius: 28px; color: var(--white); background: linear-gradient(120deg, var(--red-900), var(--red-600)); box-shadow: var(--shadow-lg); grid-template-columns: 1.25fr .75fr; }
.cta-panel::after { position: absolute; right: -150px; bottom: -210px; width: 480px; height: 480px; content: ""; border: 90px solid rgba(245,179,1,.16); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel p { max-width: 690px; color: rgba(255,255,255,.78); }
.cta-panel .button-row { justify-content: flex-end; }

.filter-bar { display: grid; gap: 14px; margin-bottom: 32px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); grid-template-columns: minmax(240px,1.5fr) repeat(3, minmax(150px, .7fr)); }
.filter-control { position: relative; }
.filter-control label { display: block; margin-bottom: 6px; color: #4b4b4b; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.filter-control input, .filter-control select {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #d7cebf;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.filter-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.filter-meta strong { color: var(--red-800); }
.text-button { padding: 6px; border: 0; color: var(--red-800); background: transparent; font-size: .85rem; font-weight: 800; }
.product-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.product-card { display: flex; overflow: hidden; min-width: 0; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 7px 25px rgba(37,23,6,.05); transition: .22s ease; }
.product-card:hover { border-color: rgba(153,27,27,.3); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.product-image { position: relative; height: 205px; overflow: hidden; background: #eee6d8; }
.product-image img { width: 100%; height: 100%; opacity: .68; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(23,23,23,.64), transparent 65%); }
.product-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; color: var(--red-900); background: rgba(255,255,255,.93); font-size: .69rem; font-weight: 800; }
.product-pack { position: absolute; z-index: 2; right: 14px; bottom: 13px; color: var(--white); font-size: .75rem; font-weight: 800; }
.product-body { display: flex; height: 100%; flex-direction: column; padding: 22px; }
.product-body h3 { margin-bottom: 5px; font-size: 1.15rem; }
.product-grade { margin-bottom: 17px; color: var(--red-800); font-size: .8rem; font-weight: 800; }
.product-specs { display: grid; gap: 7px; padding: 0; margin: 0 0 17px; list-style: none; }
.product-specs li { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid #eee8dc; color: var(--muted); font-size: .77rem; }
.product-specs li span:last-child { color: var(--ink); font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.product-application { margin-bottom: 18px; color: var(--muted); font-size: .78rem; }
.product-actions { display: flex; gap: 9px; margin-top: auto; }
.product-actions .btn { min-height: 41px; flex: 1; padding: 8px 10px; font-size: .75rem; }
.no-results { display: none; padding: 50px; border: 1px dashed #cfc4b0; border-radius: 18px; text-align: center; grid-column: 1 / -1; }

.page-hero { position: relative; overflow: hidden; padding: 90px 0 82px; color: var(--white); background: var(--ink); }
.page-hero::before { position: absolute; inset: 0; content: ""; opacity: .36; background: url("../images/industrial-machinery.webp") center/cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(23,23,23,.96), rgba(23,23,23,.64)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold); }

.stat-cards { display: grid; gap: 18px; grid-template-columns: repeat(4,1fr); }
.stat-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.stat-card strong { display: block; margin-bottom: 7px; color: var(--red-800); font-size: 2rem; }
.stat-card span { color: var(--muted); font-size: .84rem; font-weight: 700; }

.value-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
.value-card { padding: 30px; border-radius: 18px; color: var(--white); background: #242424; }
.value-card strong { display: block; margin-bottom: 14px; color: var(--gold); font-size: 1.08rem; }
.value-card p { margin: 0; color: #bdbdbd; font-size: .88rem; }

.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 20px; width: 2px; content: ""; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 38px 68px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; top: 3px; left: 9px; width: 24px; height: 24px; border: 6px solid var(--white); border-radius: 50%; background: var(--red-600); box-shadow: 0 0 0 2px var(--red-600); }
.timeline-item time { color: var(--red-800); font-size: .82rem; font-weight: 800; }
.timeline-item h3 { margin: 5px 0 7px; }
.timeline-item p { margin: 0; color: var(--muted); }

.process-grid { display: grid; gap: 20px; counter-reset: process; grid-template-columns: repeat(3,1fr); }
.process-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); counter-increment: process; }
.process-card::before { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 24px; border-radius: 50%; content: counter(process, decimal-leading-zero); color: var(--white); background: var(--red-800); font-size: .76rem; font-weight: 800; }
.process-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.quality-note { display: flex; gap: 18px; padding: 24px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--cream); }
.quality-note strong { display: block; margin-bottom: 4px; }
.quality-note p { margin: 0; color: var(--muted); font-size: .88rem; }

.form-layout { display: grid; align-items: start; gap: 42px; grid-template-columns: .75fr 1.25fr; }
.form-card { padding: clamp(24px,4vw,42px); border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
.form-group { min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; color: #353535; font-size: .82rem; font-weight: 800; }
.required { color: var(--red-600); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #d9d0c0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red-600); outline: 0; box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--red-600); }
.checkbox-row label { color: var(--muted); font-size: .82rem; }
.form-note { margin-top: 14px; color: var(--muted); font-size: .72rem; }
.form-success { display: none; margin-bottom: 18px; padding: 14px 16px; border: 1px solid #a9d8bf; border-radius: 10px; color: #0f5c38; background: #effbf4; font-size: .87rem; font-weight: 700; }
.form-success.show { display: block; }
.invalid-message { display: none; margin-top: 5px; color: var(--red-600); font-size: .72rem; font-weight: 700; }
.was-validated :invalid:not(fieldset) { border-color: var(--red-600); }
.was-validated :invalid + .invalid-message { display: block; }

.contact-sidebar { display: grid; gap: 16px; }
.contact-block { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.contact-block .contact-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 18px; border-radius: 12px; color: var(--red-800); background: #fff0e2; }
.contact-block h3 { margin-bottom: 8px; font-size: 1rem; }
.contact-block p, .contact-block address { margin: 0; color: var(--muted); font-size: .87rem; font-style: normal; }
.contact-block a { color: var(--red-800); font-weight: 800; }
.config-label { display: inline-flex; margin-top: 8px; padding: 3px 7px; border-radius: 4px; color: #6f5310; background: #fff0bd; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.map-placeholder { position: relative; display: grid; min-height: 360px; overflow: hidden; place-items: center; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(135deg,#f1eadc,#e8dfcf); }
.map-placeholder::before { position: absolute; inset: 0; content: ""; opacity: .35; background-image: linear-gradient(45deg, transparent 46%, #bbb09e 47%, #bbb09e 49%, transparent 50%), linear-gradient(-45deg, transparent 46%, #c7bca9 47%, #c7bca9 49%, transparent 50%); background-size: 80px 80px; }
.map-pin { position: relative; z-index: 2; max-width: 310px; padding: 22px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }
.map-pin strong { display: block; margin-bottom: 6px; color: var(--red-800); }
.map-pin span { color: var(--muted); font-size: .78rem; }

.detail-layout { display: grid; align-items: start; gap: 50px; grid-template-columns: .92fr 1.08fr; }
.detail-gallery { position: sticky; top: calc(var(--header-height) + 24px); }
.detail-main-image { position: relative; height: 520px; overflow: hidden; border-radius: 24px; background: var(--cream); }
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-main-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(23,23,23,.45), transparent 55%); }
.detail-image-label { position: absolute; z-index: 2; bottom: 20px; left: 20px; padding: 8px 12px; border-radius: 999px; color: var(--white); background: rgba(23,23,23,.72); font-size: .72rem; font-weight: 800; }
.detail-thumbs { display: grid; gap: 12px; margin-top: 12px; grid-template-columns: repeat(3,1fr); }
.detail-thumb { height: 90px; overflow: hidden; border: 2px solid transparent; border-radius: 12px; background: var(--cream); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb.active { border-color: var(--red-600); }
.detail-meta { display: grid; gap: 0; overflow: hidden; margin: 25px 0; border: 1px solid var(--line); border-radius: 15px; grid-template-columns: repeat(2,1fr); }
.detail-meta div { padding: 16px; border-bottom: 1px solid var(--line); }
.detail-meta div:nth-child(odd) { border-right: 1px solid var(--line); }
.detail-meta div:nth-last-child(-n+2) { border-bottom: 0; }
.detail-meta small { display: block; color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.detail-meta strong { display: block; margin-top: 3px; overflow-wrap: anywhere; font-size: .9rem; }
.benefit-list { display: grid; gap: 12px; padding: 0; list-style: none; grid-template-columns: repeat(2,1fr); }
.benefit-list li { padding: 15px; border-radius: 10px; background: var(--cream); font-size: .82rem; font-weight: 700; }
.document-buttons { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0; }
.document-note { padding: 14px; border-radius: 10px; color: #684f12; background: #fff5ce; font-size: .8rem; }
.quote-box { margin-top: 30px; padding: 26px; border-radius: 18px; background: var(--cream); }
.quote-box .form-grid { gap: 12px; }

.legal { max-width: 900px; }
.legal h2 { margin-top: 42px; font-size: 1.65rem; }
.legal h3 { margin-top: 28px; font-size: 1.15rem; }
.legal p, .legal li { color: #4d4d4d; }
.legal ul { padding-left: 22px; }
.last-updated { display: inline-block; margin-bottom: 24px; padding: 6px 10px; border-radius: 8px; color: #6e5718; background: #fff3c7; font-size: .75rem; font-weight: 800; }

.site-footer { color: rgba(255,255,255,.76); background: #111; }
.footer-top { padding: 68px 0 48px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #a7a7a7; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: #aaa; font-size: .84rem; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: .83rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: #aaa; font-size: .82rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 9px; font-size: .82rem; }
.footer-contact strong { color: var(--white); }
.footer-contact a:hover { color: var(--gold); }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.social-placeholder { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #373737; border-radius: 50%; color: #aaa; font-size: .7rem; font-weight: 800; }
.social-placeholder:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { padding: 18px 0; border-top: 1px solid #2c2c2c; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #888; font-size: .72rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a:hover { color: var(--white); }

.floating-actions { position: fixed; z-index: 900; right: 18px; bottom: 18px; display: none; gap: 10px; }
.float-btn { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red-600); box-shadow: 0 12px 25px rgba(0,0,0,.22); font-size: 1.15rem; }
.float-btn.whatsapp { background: #16854e; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .desktop-nav .nav-link, .desktop-nav .dropdown-toggle { padding-inline: 7px; font-size: .8rem; }
  .nav-quote { display: none; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .section { padding: 70px 0; }
  .utility-list .utility-location, .utility-list .utility-email { display: none; }
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-inner { min-height: 700px; grid-template-columns: 1fr; }
  .hero-copy { padding: 75px 0 20px; }
  .packshot-stage { min-height: 380px; padding-bottom: 65px; }
  .hero { min-height: 940px; }
  .trust-strip { margin-top: -28px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3)::before { display: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .two-col, .form-layout, .detail-layout { grid-template-columns: 1fr; }
  .image-frame { min-height: 380px; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .cta-panel { padding: 42px; grid-template-columns: 1fr; }
  .cta-panel .button-row { justify-content: flex-start; }
  .filter-bar { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .detail-gallery { position: static; }
  .detail-main-image { height: 430px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 58px 0; }
  .section-sm { padding: 44px 0; }
  .utility-inner { min-height: 34px; justify-content: center; }
  .utility-list { gap: 12px; }
  .utility-established { display: none !important; }
  .brand-emblem { width: 43px; height: 43px; font-size: 1.35rem; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .51rem; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 20px; }
  .hero { min-height: 870px; }
  .hero-inner { min-height: 650px; gap: 15px; }
  .hero-copy { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero .button-row .btn { width: 100%; }
  .packshot-stage { min-height: 330px; padding-bottom: 38px; transform: scale(.84); }
  .bottle { width: 110px; height: 260px; }
  .bottle.tall { width: 125px; height: 320px; }
  .bottle.gold { height: 235px; }
  .asset-note { right: 50%; bottom: -10px; width: 260px; transform: translateX(50%); text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(n+2) { border-top: 1px solid var(--line); }
  .card-grid, .feature-grid, .product-grid, .value-grid, .process-grid, .stat-cards { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: auto; }
  .cta-panel { padding: 32px 24px; }
  .cta-panel .btn { width: 100%; }
  .filter-bar { padding: 15px; grid-template-columns: 1fr; }
  .filter-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .page-hero { padding: 65px 0 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .detail-main-image { height: 340px; }
  .detail-meta { grid-template-columns: 1fr; }
  .detail-meta div, .detail-meta div:nth-child(odd), .detail-meta div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-meta div:last-child { border-bottom: 0; }
  .benefit-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
  .floating-actions { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
