:root {
  --blue: #41a9e4;
  --text: #666666;
  --dark: #262626;
  --line: #b8b8b8;
  --header-height: 80px;
  --content: 1010px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--text); font-family: "Open Sans", "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: #c6edff; color: #111; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.section-width { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-shell main { flex: 1; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid #e8e8e8; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.header-inner { width: min(calc(100% - 48px), var(--content)); min-height: var(--header-height); margin: 0 auto; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 1.6rem; }
.site-logo { width: 104px; align-self: center; }
.site-logo img { width: 100%; height: 65px; object-fit: contain; }
.main-nav { justify-self: end; display: flex; align-items: center; gap: 2rem; }
.main-nav a { padding: 1.8rem 0; color: #555; font-size: .94rem; font-weight: 600; transition: color .18s ease; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { color: var(--blue); }
.header-tools { display: flex; align-items: center; gap: .35rem; }
.icon-button { width: 40px; height: 40px; border: 0; background: transparent; color: #333; font-size: 1.65rem; line-height: 1; }
.language-wrap { position: relative; }
.language-button { min-height: 44px; display: flex; align-items: center; gap: .5rem; padding: .55rem .8rem; background: white; border: 0; box-shadow: 0 5px 18px rgba(0,0,0,.13); color: #222; font-size: 1rem; }
.language-button img { width: 32px; height: 22px; object-fit: cover; }
.language-button strong { font-size: 1.2rem; }
.language-button > span { font-size: .8rem; color: #777; }
.language-menu { position: absolute; right: 0; top: calc(100% + .3rem); min-width: 145px; padding: .35rem; background: white; box-shadow: 0 9px 24px rgba(0,0,0,.15); }
.language-menu button { width: 100%; padding: .7rem .8rem; border: 0; background: white; text-align: left; }
.language-menu button:hover { background: #f2f2f2; }
.site-search { width: min(calc(100% - 48px), var(--content)); margin: 0 auto; padding: .8rem 0 1rem; display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; }
.site-search label { color: #333; font-size: .86rem; font-weight: 700; }
.site-search input { min-height: 42px; border: 1px solid #ddd; background: #f6f6f6; padding: .65rem .85rem; outline: none; }
.site-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(65,169,228,.16); }
.site-search button { min-height: 42px; border: 1px solid var(--blue); background: var(--blue); color: white; padding: .55rem 1.1rem; }
.mobile-menu-button { display: none; }

.home-hero { position: relative; height: 640px; display: grid; place-items: start center; overflow: hidden; isolation: isolate; }
.home-hero video, .vision-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.video-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(255,255,255,.2), rgba(0,0,0,.06)); }
.home-hero h1 { width: min(calc(100% - 48px), 930px); margin: 4.5rem auto 0; color: #050505; text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.07; font-weight: 800; letter-spacing: -.025em; }
.home-intro { padding: 3.4rem 0 2rem; text-align: center; }
.home-intro h2 { width: min(100%, 880px); margin: 0 auto 2.5rem; color: #111; font-size: clamp(1.55rem, 2.5vw, 2.05rem); line-height: 1.07; font-weight: 800; letter-spacing: -.02em; }
.black-button { display: inline-flex; align-items: center; gap: .6rem; min-height: 48px; padding: .8rem 1.2rem; background: #030303; color: white; font-size: 1rem; }
.black-button span, .contact-form button span { font-size: 1.4em; line-height: .8; }
.black-button:hover { background: var(--blue); }
.home-about { padding: 2.2rem 0 3.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.home-about-image img { width: 100%; max-height: 360px; object-fit: contain; }
.home-about-copy h2, .about-page h1, .about-page h2, .process-column h2 { margin: 0; padding-bottom: .7rem; border-bottom: 1px solid var(--line); color: #555; font-size: 1.42rem; line-height: 1.2; font-weight: 400; }
.home-about-copy h2.subheading { margin-top: 1rem; border: 0; padding-bottom: 0; }
.home-about-copy p, .about-page p, .contact-details p { font-size: .94rem; line-height: 1.7; }
.home-contact { padding: 1.5rem 0 4rem; display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.company-name { font-weight: 800; }
.contact-copy > p, .contact-details > p { margin: .45rem 0 1rem; }
.contact-product-image img { width: 100%; max-height: 330px; object-fit: contain; }
.contact-form { margin-top: 1.8rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.contact-form label { display: block; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-radius: 0; background: #f0f0f0; color: #555; padding: 1rem; outline: none; }
.contact-form input { min-height: 52px; }
.contact-form textarea { margin-top: .8rem; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { box-shadow: inset 0 0 0 2px var(--blue); background: #f7fbfd; }
.form-action { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.contact-form button { min-height: 49px; display: inline-flex; align-items: center; gap: .45rem; margin-top: .35rem; border: 2px solid var(--blue); background: transparent; color: var(--blue); padding: .55rem 1.05rem; font-size: 1.05rem; }
.contact-form button:hover { background: var(--blue); color: white; }
.form-action p { margin: .4rem 0 0; color: #2479a8; font-size: .78rem; }
.vision-hero { position: relative; height: 600px; display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.vision-shade { position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.27); }
.vision-copy { width: min(calc(100% - 48px), 980px); text-align: center; color: white; }
.vision-copy h2 { margin: 0 0 .3rem; font-size: 2.2rem; line-height: 1; font-weight: 800; }
.vision-copy p { margin: 0; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.08; font-weight: 800; }

.inner-page main { min-height: calc(100vh - var(--header-height) - 75px); }
.about-page { padding: 6.3rem 0 5rem; display: grid; grid-template-columns: .95fr .95fr 1.08fr; gap: 3.2rem; align-items: start; }
.about-page h2 { margin-top: 1rem; border: 0; padding-bottom: 0; }
.about-page .about-column h1, .process-column h2 { border-bottom: 1px solid var(--line); }
.about-page p { margin: .5rem 0; }
.jars-image { width: 100%; height: 230px; object-fit: contain; margin-bottom: .7rem; }
.process-column h2 strong { font-weight: 800; color: #333; }
.about-bin-image img { width: 100%; max-height: 500px; object-fit: contain; }

.products-page { padding: 1rem 0 5rem; }
.products-page > h1 { margin: 0 0 4rem; color: #555; text-align: center; font-size: 1.7rem; font-weight: 400; }
.product-grid, .bulk-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3.1rem 2.4rem; }
.bulk-grid { margin-top: 3.6rem; }
.product-card { text-align: center; }
.product-image { height: 205px; display: grid; place-items: center; }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-card h2 { margin: 1rem 0 .8rem; color: #5a5a5a; font-size: .95rem; line-height: 1.35; font-weight: 800; }
.product-card p { margin: 0; font-size: .9rem; line-height: 1.75; }
.bulk-card .product-image { height: 205px; }
.bulk-card .product-image.second { height: 125px; margin-top: .5rem; }
.bulk-card:nth-child(5) { grid-column: 1; }

.contact-page { padding: 3.2rem 0 4.5rem; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: start; }
.contact-details .us-sales { margin-top: 3rem; }
.contact-details .us-sales p { line-height: 1.6; }
.contact-page-image { padding-top: 5rem; }
.contact-page-image img { width: 100%; max-height: 360px; object-fit: contain; }
.site-footer { margin-top: auto; min-height: 75px; display: flex; align-items: center; background: #050505; color: #eee; }
.site-footer p { margin: 0; font-size: .86rem; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 115px 1fr auto; gap: .8rem; }
  .main-nav { gap: 1.1rem; }
  .main-nav a { font-size: .83rem; }
  .home-hero { height: 560px; }
  .about-page { grid-template-columns: 1fr 1fr; }
  .about-bin-image { grid-column: 2; }
  .product-grid, .bulk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bulk-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .section-width, .header-inner, .site-search { width: min(calc(100% - 32px), var(--content)); }
  .header-inner { grid-template-columns: 100px 1fr auto; }
  .site-logo img { height: 58px; }
  .mobile-menu-button { justify-self: end; display: grid; gap: 4px; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
  .mobile-menu-button span:not(.sr-only) { display: block; height: 2px; background: #333; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: .65rem 1rem 1rem; background: white; border-top: 1px solid #eee; box-shadow: 0 12px 22px rgba(0,0,0,.1); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: .7rem 1rem; }
  .icon-button { display: none; }
  .language-button { min-height: 40px; padding: .45rem .55rem; }
  .language-button strong { font-size: 1rem; }
  .language-button img { width: 26px; height: 18px; }
  .site-search { grid-template-columns: 1fr auto; }
  .site-search label { grid-column: 1 / -1; }
  .home-hero { height: 520px; }
  .home-hero h1 { width: calc(100% - 28px); margin-top: 3rem; font-size: 1.75rem; }
  .home-intro { padding-top: 2.7rem; }
  .home-about, .home-contact, .contact-page { grid-template-columns: 1fr; gap: 2rem; }
  .home-about { padding-top: 1rem; }
  .home-contact { padding-top: .5rem; }
  .contact-product-image { order: -1; }
  .vision-hero { height: 520px; }
  .about-page { padding-top: 3rem; grid-template-columns: 1fr; gap: 2.3rem; }
  .about-bin-image { grid-column: auto; }
  .products-page { padding-top: 1.8rem; }
  .products-page > h1 { margin-bottom: 2.7rem; }
  .product-grid, .bulk-grid { gap: 2.5rem 1.5rem; }
  .contact-page { padding-top: 2.6rem; }
  .contact-page-image { padding-top: 0; order: -1; }
}

@media (max-width: 500px) {
  .form-row, .contact-form .form-row, .product-grid, .bulk-grid { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: 88px 1fr auto; }
  .language-button > span { display: none; }
  .home-hero { height: 480px; }
  .home-hero h1 { margin-top: 2.2rem; font-size: 1.45rem; }
  .vision-copy h2 { font-size: 1.7rem; }
  .vision-copy p { font-size: 1.55rem; }
  .product-image { height: 230px; }
  .site-footer { padding: 1.1rem 0; }
}
