/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dk:   #0E3033;
  --teal:      #145B67;
  --teal-lt:   #5891A0;
  --teal-bg:   #AFD7E2;
  --teal-pale: #E8F4F7;
  --white:     #ffffff;
  --gray-lt:   #f7f8f8;
  --gray:      #626363;
  --dark:      #0B2B38;
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-weight: 600; }
h3 { color: var(--teal-dk); font-weight: 500; }

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 48px;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dk);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
}

.nav-logo span {
  color: var(--teal-bg);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo img {

}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--teal);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  letter-spacing: .3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dk);
  background: var(--teal-pale);
}

/* Language toggle */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--teal-lt);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 12px;
  transition: background .2s, color .2s;
}
.lang-toggle:hover { background: var(--teal); color: white; border-color: var(--teal); }
.nav-over-hero .lang-toggle { border-color: rgba(255,255,255,.6); color: rgba(255,255,255,.88); }
.nav-over-hero .lang-toggle:hover { background: rgba(255,255,255,.2); color: white; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
  margin: 5px 0;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 43, 56, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}

.hero-content .eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-bg);
  margin-bottom: 16px;
  display: block;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .5px;
  transition: background .2s, color .2s, transform .2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-lt); border-color: var(--teal-lt); color: white; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--teal-dk); border-color: white; }

.btn-teal-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-teal-outline:hover { background: var(--teal); color: white; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--teal-dk);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.page-hero .eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-bg);
  margin-bottom: 12px;
  font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  opacity: .78;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  font-size: .95rem;
}

/* ===== SECTION LAYOUT ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 56px; }

.section-title .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal-dk);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  font-size: .95rem;
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
}
.photo-strip .photo-item {
  position: relative;
  overflow: hidden;
}
.photo-strip .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-strip .photo-item:hover img { transform: scale(1.06); }
.photo-strip .photo-item .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,43,56,.75));
  color: white;
  padding: 24px 16px 12px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .5px;
  opacity: 0;
  transition: opacity .3s;
}
.photo-strip .photo-item:hover .photo-caption { opacity: 1; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--teal-dk);
  color: var(--white);
  padding: 48px 24px;
}

/* Stats bar blended into hero bottom */
.stats-bar-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 48, 51, 0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(175, 215, 226, 0.15);
  color: var(--white);
  padding: 24px 24px;
  z-index: 2;
}

/* Hero wrapper for full-image layout */
.hero-wrap {
  position: relative;
  overflow: hidden;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num   { font-size: 2.2rem; font-weight: 700; color: var(--teal-bg); letter-spacing: 1px; }
.stat-label { font-size: .78rem; font-weight: 400; opacity: .7; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FEATURE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid #e4ecee;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--teal-bg);
  box-shadow: 0 8px 32px rgba(14,48,51,.07);
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { font-size: .98rem; font-weight: 600; color: var(--teal-dk); margin-bottom: 8px; }
.card p  { font-size: .87rem; color: var(--gray); line-height: 1.7; }

/* ===== SPLIT SECTIONS ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-text .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 10px;
}
.split-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--teal-dk);
  margin-bottom: 20px;
  line-height: 1.2;
}
.split-text p  { color: var(--gray); font-size: .93rem; margin-bottom: 14px; font-weight: 300; }
.split-text .mt { margin-top: 28px; }

.split-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(14,48,51,.12);
}
.split-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.split-img:hover img { transform: scale(1.03); }
.split-img-caption {
  background: var(--teal-dk);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 500;
  padding: 10px 18px;
  letter-spacing: .3px;
}

/* ===== FULL-WIDTH IMAGE BAND ===== */
.img-band {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-band-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,43,56,.7));
  color: white;
  padding: 40px 40px 24px;
  font-size: .88rem;
  font-weight: 400;
}

/* ===== ABOUT STYLES ===== */
.timeline { list-style: none; border-left: 2px solid var(--teal-bg); padding-left: 28px; }
.timeline li { position: relative; margin-bottom: 28px; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -35px; top: 6px;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-bg);
}
.timeline .year { font-weight: 700; color: var(--teal); font-size: .93rem; }
.timeline p     { font-size: .87rem; color: var(--gray); margin-top: 4px; font-weight: 300; }

.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: var(--teal-pale);
  color: var(--teal-dk);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--teal-bg);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #dde8ea;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.product-card:hover {
  border-color: var(--teal-bg);
  box-shadow: 0 8px 28px rgba(14,48,51,.08);
}

.product-card-header {
  background: var(--teal-dk);
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-card-header .icon { font-size: 1.8rem; }
.product-card-header h3 { color: var(--white); font-size: 1rem; font-weight: 600; }
.product-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card-body p { font-size: .9rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 14px; }
.product-card-body .grain-size-row { margin-top: auto; }

.tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
  margin-right: 4px;
  align-self: flex-start;
  border: 1px solid var(--teal-bg);
}

/* Packaging */
.packaging-section {
  background: var(--gray-lt);
  border-radius: 10px;
  padding: 52px 44px;
  margin-top: 64px;
  border: 1px solid #e4ecee;
}
.packaging-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 8px; }
.packaging-section > p { color: var(--gray); margin-bottom: 36px; font-size: .9rem; font-weight: 300; }

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.pack-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #dde8ea;
}
.pack-item .pack-icon { font-size: 2rem; margin-bottom: 10px; }
.pack-item h4 { font-weight: 600; color: var(--teal-dk); font-size: .93rem; }
.pack-item p  { font-size: .8rem; color: var(--gray); margin-top: 4px; font-weight: 300; }

/* Industries */
.industries-section { margin-top: 56px; }
.industries-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 20px; }
.industries-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag {
  background: var(--teal);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: .83rem;
  font-weight: 400;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { font-size: 1.6rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 28px; }

.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 42px; height: 42px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--teal-bg);
}
.contact-item h4  { font-size: .72rem; color: var(--teal-lt); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p   { font-size: .9rem; color: var(--dark); margin-top: 2px; font-weight: 400; }
.contact-item a   { color: var(--teal); }
.contact-item a:hover { color: var(--teal-dk); }

.hours-grid {
  background: var(--teal-pale);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
  border: 1px solid var(--teal-bg);
}
.hours-grid h4 { font-size: .72rem; color: var(--teal-lt); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.hour-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(20,91,103,.1); font-size: .88rem; }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-weight: 600; color: var(--teal-dk); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 44px;
  border: 1px solid #dde8ea;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { display: block; font-size: .78rem; font-weight: 600; color: var(--teal-dk); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }

input, select, textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #d0dde0;
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
  font-weight: 300;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 13px; font-size: .93rem; border-radius: 20px; }

/* Map */
.map-section { margin-top: 56px; }
.map-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 20px; text-align: center; }
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,48,51,.1);
  height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
details {
  border: 1px solid #dde8ea;
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 18px 22px;
}
details summary {
  font-weight: 600;
  color: var(--teal-dk);
  cursor: pointer;
  font-size: .93rem;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: ' +'; color: var(--teal-lt); float: right; font-weight: 300; }
details[open] summary::after { content: ' −'; }
details p { margin-top: 12px; color: var(--gray); font-size: .88rem; font-weight: 300; }

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--teal-bg);
  color: var(--teal-dk);
  text-align: center;
  padding: 16px 24px;
  font-size: .88rem;
  font-weight: 500;
}
.quote-banner a { font-weight: 700; text-decoration: underline; color: var(--teal-dk); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--teal-dk);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-section .eyebrow {
  display: block;
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-bg);
  margin-bottom: 12px;
  font-weight: 500;
}
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 14px; }
.cta-section p  { opacity: .75; max-width: 480px; margin: 0 auto 32px; font-weight: 300; font-size: .93rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--gray-lt);
  border-top: 1px solid #dde8ea;
  padding: 56px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .87rem; color: var(--gray); line-height: 1.8; max-width: 280px; margin-top: 14px; font-weight: 300; }
.footer-col h4 { color: var(--teal-dk); font-size: .8rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: .87rem; color: var(--gray); font-weight: 300; }
.footer-col ul a:hover { color: var(--teal); }
.footer-divider { border: none; border-top: 1px solid #dde8ea; margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--gray); flex-wrap: wrap; gap: 8px; font-weight: 300; }

/* ===== UTILITY ===== */
.bg-light { background: var(--gray-lt); }
.bg-pale  { background: var(--teal-pale); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ===== TRANSPARENT NAV OVER HERO ===== */
.nav-over-hero {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  background: transparent !important;
  box-shadow: none !important;
}
.nav-over-hero .nav-links a {
  color: rgba(255,255,255,.88);
}
.nav-over-hero .nav-links a:hover,
.nav-over-hero .nav-links a.active {
  background: rgba(255,255,255,.15);
  color: white;
}
.nav-over-hero .nav-logo span { color: var(--teal-bg); }
.nav-over-hero .nav-logo img {

}
.nav-over-hero .nav-toggle span { background: white; }

/* ===== LOGO AS DESIGN ELEMENT ===== */
.hero-logo {
  height: 180px;
  width: auto;
  margin-top: 0;
  margin-bottom: 8px;
  transform: translateY(40px);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-logo {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  opacity: .55;
}

.watermark-wrap {
  position: relative;
  overflow: hidden;
}
.watermark-wrap .logo-ghost {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 280px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .04;
  pointer-events: none;
}

.footer-logo-center {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-img img { height: 260px; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: white; padding: 16px 24px 24px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.2); z-index: 9999; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--teal-dk) !important; }
  .nav-links a:hover, .nav-links a.active { color: var(--teal) !important; background: var(--teal-pale); }
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 20px; }
  .nav-logo span { display: none; }
  nav { z-index: 9999; }
  .nav-over-hero { position: fixed !important; background: rgba(14,48,51,0.92) !important; z-index: 9999; }

  /* Sections */
  section { padding: 52px 18px; }
  .section-inner { padding: 0; }
  .section-title { margin-bottom: 36px; }

  /* Hero (homepage) */
  .hero { height: 500px; }
  .hero-content { padding: 72px 18px 100px !important; }
  .stats-bar-hero { padding: 16px 18px; }
  .stat-num { font-size: 1.6rem; }
  .stats-grid { gap: 16px; grid-template-columns: repeat(2, 1fr); }

  /* Grids */
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .form-row     { grid-template-columns: 1fr; }
  .photo-strip  { grid-template-columns: 1fr; height: auto; }
  .photo-strip .photo-item { height: 220px; }

  /* Product cards */
  .product-card { min-height: unset; }

  /* Contact & form */
  .contact-form-wrap { padding: 24px 18px; }
  .packaging-section { padding: 28px 18px; }

  /* Page hero */
  .page-hero { padding: 52px 18px; }

  /* About belt — show all 3 columns on mobile with scroll (iOS doesn't support fixed) */
  .cv-cont-overlay { display: none; }
  .cv-col-left {
    width: 7%;
    background-attachment: scroll;
    background-size: 7vw auto;
  }
  .cv-col-center {
    background-attachment: scroll;
    background-size: cover;
  }
  .cv-col-right {
    width: 7%;
    background-attachment: scroll;
    background-size: 7vw auto;
  }
  .cv-continuation-wrapper .section-inner,
  .cv-continuation-wrapper > div[style] {
    padding-left: calc(7% + 14px) !important;
    padding-right: calc(7% + 14px) !important;
  }

  /* Logo in nav — smaller on mobile */
  .nav-logo img { height: 56px !important; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-left {
  transform: translateX(-40px);
}
.reveal.from-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delay for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== CONVEYOR BELT SECTION — LAYERED ANIMATION ===== */
.conveyor-scroll-container {
  height: 500vh;
  position: relative;
}

.conveyor-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #07090a;   /* dark factory floor base */
}

/* ── shared layer base ──────────────────────────────────── */
.cv-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── LAYER 1 · Static factory floor ───────────────────────
   Same vertical image, very dark — depth behind the belt.  */
.cv-layer-floor {
  z-index: 1;
  background-image: url('images/conveyor-new-vertical.jpg');
  background-size: 140% auto;
  background-position: center top;
  background-repeat: repeat-y;
  filter: brightness(0.18) saturate(0.5);
  transform: translateZ(0);
}

/* ── LAYER 2 · Conveyor belt — VERTICAL animation ─────────
   background-position-y animates downward (belt moves down).
   Tile height calculated in conveyor.js → injected via
   @keyframes with the exact px value for seamless looping.  */
.cv-layer-belt {
  z-index: 2;
  background-image: url('images/conveyor-new-vertical.jpg');
  background-size: 140% auto;
  background-repeat: repeat-y;
  background-position: center 0px;
  opacity: 0.90;
  filter: brightness(0.85) contrast(1.06);
  animation: beltMove 22s linear infinite;
  will-change: background-position-y;
  transform: translateZ(0);
}

/* ── LAYER 3 · Salt surface — moves faster than belt ──────
   Same image, brighter tint, faster cycle (14 s).
   screen blend mode adds a lighter salt shimmer.            */
.cv-layer-salt {
  z-index: 3;
  background-image: url('images/conveyor-new-vertical.jpg');
  background-size: 140% auto;
  background-repeat: repeat-y;
  background-position: center 0px;
  opacity: 0.28;
  mix-blend-mode: screen;
  filter: brightness(1.5) contrast(0.85);
  animation: saltMove 14s linear infinite;
  will-change: background-position-y;
  transform: translateZ(0);
}

/* ── LAYER 4 · Vignette & text-readability overlays ───────*/
.cv-layer-overlay {
  z-index: 4;
  pointer-events: none;
  /* Radial vignette */
  background:
    radial-gradient(
      ellipse 80% 70% at 60% 50%,
      transparent 30%,
      rgba(5,8,10,0.72) 100%
    ),
    /* Left panel — dark backdrop for text */
    linear-gradient(
      to right,
      rgba(6,10,12,0.88) 0%,
      rgba(6,10,12,0.60) 36%,
      rgba(6,10,12,0.10) 58%,
      transparent 72%
    ),
    /* Top fade */
    linear-gradient(
      to bottom,
      rgba(7,9,10,0.92) 0%,
      transparent 18%
    ),
    /* Bottom fade */
    linear-gradient(
      to top,
      rgba(7,9,10,0.92) 0%,
      transparent 18%
    );
}

/* ── LAYER 5 · Particle canvas ────────────────────────────*/
#cv-canvas {
  z-index: 5;
  pointer-events: none;
  display: block;
}

/* ── Progress bar ─────────────────────────────────────────*/
.cv-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 10;
}
#cv-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--teal-lt), var(--teal-bg));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ── Text panels ──────────────────────────────────────────*/
.cv-panels {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 7vw;
  z-index: 6;
  pointer-events: none;
}

.cv-panel {
  position: absolute;
  max-width: 500px;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.cv-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal-bg);
  margin-bottom: 16px;
}

.cv-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.cv-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  line-height: 1.8;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ── Scroll hint ──────────────────────────────────────────*/
#cv-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  transition: opacity 0.4s;
  pointer-events: none;
}
#cv-scroll-hint span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}
.cv-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(175,215,226,0.5), transparent);
  margin: 0 auto;
  animation: cvPulse 1.8s ease-in-out infinite;
}

/* ── Mobile adjustments ───────────────────────────────────*/
@media (max-width: 768px) {
  .cv-layer-belt { top: 10%; height: 80%; }
  .cv-layer-salt { top: 20%; height: 60%; }
  .cv-panels { padding: 0 6vw; align-items: flex-end; padding-bottom: 110px; }
  .cv-panel  { max-width: 90vw; }
  .cv-title  { font-size: 1.7rem; }
  .cv-body   { font-size: 0.88rem; }
}

/* ===== BELT CONTINUATION WRAPPER — 3-column layout =====
   Left + right margins: stationary (background-attachment:fixed).
   Center belt: animates vertically.
   All three slices are 1774 px tall and come from the same photo,
   so they align with zero gaps.
   One seamless cycle: center is 437 px wide displayed at 49.3785 vw
   → tile height = 1774 × (49.3785/437) vw ≈ 200.5 vw           */

@keyframes beltMove {
  from { background-position-y: 0; }
  to   { background-position-y: 200.5vw; }
}

.cv-continuation-wrapper {
  position: relative;
}

/* Flex row — three columns fill 100% width with no gaps */
.cv-three-col {
  position: absolute;
  inset: 0;
  display: flex;
}

/* LEFT margin — fixed to viewport, never scrolls */
.cv-col-left {
  width: 25.7627%;
  flex-shrink: 0;
  background-image: url('images/belt-left-tile.jpg');
  background-attachment: fixed;
  background-size: 25.7627vw auto;
  background-position: left 60%;
  background-repeat: repeat-y;
}

/* CENTER belt — position driven by scroll via JS */
.cv-col-center {
  flex: 1;
  background-image: url('images/belt-center-tile.jpg');
  background-size: 49.3785vw auto;
  background-position: center 0;
  background-repeat: repeat-y;
}

/* RIGHT margin — fixed to viewport, never scrolls */
.cv-col-right {
  width: 24.8588%;
  flex-shrink: 0;
  background-image: url('images/belt-right-tile.jpg');
  background-attachment: fixed;
  background-size: 24.8588vw auto;
  background-position: right top;
  background-repeat: repeat-y;
}

/* Top/bottom edge fade only — no overlay on the belt */
.cv-cont-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(7,9,10,0.35) 0%, transparent 5%,
      transparent 95%, rgba(7,9,10,0.35) 100%);
}

/* Constrain all content to the center column only
   Left col = 25.7627vw, right col = 24.8588vw              */
.cv-continuation-wrapper .section-inner,
.cv-continuation-wrapper > div[style] {
  max-width: 100%;
  margin: 0;
  padding-left:  calc(25.7627vw + 3vw);
  padding-right: calc(24.8588vw + 3vw);
}
.cv-continuation-wrapper .section-inner > *,
.cv-continuation-wrapper .section-title {
  max-width: 100%;
}

/* Text inside the belt wrapper — dark with white halo so it
   reads on any part of the photo without any overlay         */
.cv-continuation-wrapper h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.7);
}
.cv-continuation-wrapper h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.7);
}
.cv-continuation-wrapper p {
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(255,255,255,0.85), 0 0 28px rgba(255,255,255,0.6);
}
.cv-continuation-wrapper .year {
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,255,255,0.85), 0 0 28px rgba(255,255,255,0.6);
}
.cv-continuation-wrapper .eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,255,255,0.9);
}
