﻿:root {
  --teal: #0f8f86;
  --teal-dark: #086e68;
  --green: #b88a3d;
  --ink: #121a2a;
  --muted: #657084;
  --soft: #f6f1e9;
  --line: #e7ded2;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(18, 26, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(13, 30, 44, 0.08);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 clamp(80px, 9vw, 170px);
  color: #ffffff;
  background: linear-gradient(90deg, #086e68, #121a2a);
  font-size: 18px;
  font-weight: 900;
}

.topbar p {
  margin: 0;
}

.socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--teal);
  background: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  min-height: 150px;
  padding: 0 clamp(42px, 7vw, 128px);
  border-bottom: 1px solid #edf0f2;
}

.brand img {
  width: 215px;
  height: auto;
}

.main-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #101828;
  font-size: 20px;
  font-weight: 800;
}

.main-menu a {
  padding: 55px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  white-space: nowrap;
}

.search-button {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 3px solid #4b5563;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 5px;
  width: 14px;
  height: 3px;
  background: #4b5563;
  border-radius: 3px;
  transform: rotate(45deg);
  transform-origin: center;
}

.quote-button,
.primary-link,
.cta-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
}

.primary-link,
.cta-strip a {
  min-height: 44px;
  font-size: 14px;
}

.header-actions .quote-button {
  min-height: 54px;
  min-width: 136px;
  padding: 0 20px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

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

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #f6f6f4;
}

.slides {
  position: relative;
  min-height: clamp(360px, 42vw, 650px);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.active {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  border: 0;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-arrow.previous {
  left: 28px;
}

.slider-arrow.next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.slider-dots button.active {
  background: var(--teal);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: 92px clamp(32px, 10vw, 128px);
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media > img {
  width: 78%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.factory-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  padding: 10px;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.factory-photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.eyebrow,
.section-title p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.about-copy h1,
.section-title h2,
.material-copy h2,
.video-overlay h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.about-copy p,
.material-copy p,
.material-copy li,
.video-overlay li {
  color: var(--muted);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.soft-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  color: #6b7788;
  background: #f3f8f7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.cta-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-strip article {
  min-height: 190px;
  padding: 45px clamp(32px, 9vw, 120px);
  color: #ffffff;
  background: linear-gradient(rgba(14, 34, 52, 0.68), rgba(14, 34, 52, 0.68)),
    url("assets/images/03-20-202503205198.jpg") center/cover;
}

.cta-strip article:nth-child(2) {
  background: linear-gradient(rgba(8, 182, 168, 0.75), rgba(8, 182, 168, 0.75)),
    url("assets/images/03-20-202503205292.jpg") center/cover;
}

.cta-strip span {
  font-size: 13px;
  font-weight: 900;
}

.cta-strip h2 {
  max-width: 420px;
  margin: 8px 0 18px;
  font-size: 24px;
  line-height: 1.18;
}

.products-section,
.applications-section,
.material-section,
.testimonials-section,
.blog-section {
  padding: 88px clamp(32px, 10vw, 128px);
}

.section-title.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(26px, 3.5vw, 38px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  min-height: 390px;
  padding: 34px 26px 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 24px;
  background: #fafafa;
}

.product-card h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.18;
}

.product-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 16px;
  background: var(--teal);
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
}

.applications-section {
  background: #f4fbff;
}

.application-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.application-mosaic img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.video-section {
  position: relative;
  min-height: 520px;
  color: #ffffff;
  overflow: hidden;
}

.video-section > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 70px clamp(32px, 10vw, 128px);
  background: rgba(8, 28, 32, 0.36);
}

.video-overlay button {
  justify-self: center;
  width: 76px;
  height: 76px;
  color: #ffffff;
  background: var(--teal);
  border: 8px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
}

.video-overlay p {
  color: #bdf2eb;
  font-weight: 900;
  text-transform: uppercase;
}

.video-overlay h2 {
  max-width: 650px;
  color: #ffffff;
}

.video-overlay ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.video-overlay li {
  color: #ffffff;
}

.material-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.material-copy ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.material-section > img {
  width: 100%;
}

.counter-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 64px clamp(32px, 10vw, 128px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--teal), #10c9ae);
}

.counter-band div {
  text-align: center;
}

.counter-band strong {
  display: block;
  margin-bottom: 6px;
  font-size: 42px;
  line-height: 1;
}

.counter-band span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.counter-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.testimonial-grid article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.person img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.person strong,
.person span {
  display: block;
}

.person span {
  color: var(--teal);
  font-size: 12px;
}

.testimonial-grid p {
  color: var(--muted);
  font-size: 14px;
}

.stars {
  color: #ffb400;
}

.blog-section {
  background: #eefdff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-grid article {
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.blog-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-grid div {
  padding: 24px;
}

.blog-grid span {
  color: var(--teal);
  font-size: 13px;
}

.blog-grid h3 {
  margin: 12px 0;
  font-size: 18px;
  line-height: 1.25;
}

.blog-grid p {
  color: var(--muted);
  font-size: 14px;
}

.blog-grid a {
  color: var(--ink);
  font-weight: 900;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 40;
  display: grid;
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--teal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 900;
}

.footer {
  padding: 70px clamp(32px, 10vw, 128px) 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #121a2a, #086e68);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
}

.footer h3 {
  margin-bottom: 22px;
  font-size: 18px;
}

.footer a {
  display: block;
  margin-bottom: 11px;
  color: #ffffff;
  font-weight: 700;
}

.footer-contact p {
  max-width: 310px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.footer-socials {
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

@media (max-width: 1100px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-menu,
  .header-actions {
    display: none;
  }

  .main-menu.open {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    padding: 12px 0 20px;
  }

  .main-menu.open a {
    padding: 6px 0;
  }

  .about-band,
  .material-section,
  .video-overlay {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .navbar,
  .about-band,
  .products-section,
  .applications-section,
  .material-section,
  .testimonials-section,
  .blog-section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slides {
    min-height: 260px;
  }

  .about-media {
    min-height: 300px;
  }

  .about-media > img {
    width: 100%;
    height: 260px;
  }

  .factory-photo {
    position: relative;
    width: 78%;
    margin: -70px auto 0;
  }

  .cta-strip,
  .products-grid,
  .application-mosaic,
  .counter-band,
  .testimonial-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .video-section,
  .video-section > img {
    min-height: 600px;
    height: 600px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-contact {
    display: none;
  }
}



/* Independent page additions */
.inner-hero{min-height:260px;background:linear-gradient(135deg,rgba(16,181,169,.94),rgba(112,192,75,.9)),url('assets/images/03-20-202503205198.jpg') center/cover;display:flex;align-items:center;padding:56px 8%;color:#fff}
.inner-hero p{font-weight:800;text-transform:uppercase;margin:0 0 10px}.inner-hero h1{font-size:54px;line-height:1;margin:0 0 14px;color:#fff}.inner-hero span{font-size:18px}
.page-section{padding:72px 7%;background:#f8fafb}.page-section.white{background:#fff}.section-lead{max-width:980px;margin:0 auto 38px;text-align:center;color:#536076;font-size:17px;line-height:1.75}
.catalog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;max-width:1480px;margin:0 auto}.catalog-card{background:#fff;padding:28px;box-shadow:0 10px 34px rgba(16,24,40,.06);border:1px solid #edf1f4}.catalog-card img{width:100%;height:230px;object-fit:contain;background:#f8f8f8;margin-bottom:22px}.catalog-card h3{font-size:22px;margin:0 0 12px;color:#061833}.catalog-card p{color:#536076;line-height:1.7;margin:0}.catalog-card span{display:block;color:#12b8a8;font-weight:800;margin-bottom:10px}
.category-strip{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin:0 auto 36px;max-width:1080px}.category-strip a{padding:10px 18px;border:1px solid #dce8e8;color:#061833;background:#fff;font-weight:800}.category-strip a:hover{background:#10b8a8;color:#fff}
.split-panel{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}.split-panel img{width:100%;border-radius:4px}.split-panel h2{font-size:40px;margin:0 0 18px;color:#061833}.split-panel p,.split-panel li{color:#536076;line-height:1.8}.metric-row{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:1100px;margin:42px auto 0}.metric-row div{background:#061833;color:#fff;padding:30px;text-align:center}.metric-row strong{display:block;font-size:42px;color:#13c3b4}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:1320px;margin:0 auto}.gallery-grid img{width:100%;height:245px;object-fit:cover}
.contact-layout{max-width:1220px;margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:36px}.contact-cards{display:grid;gap:18px}.contact-cards article{background:#fff;padding:26px;border-left:4px solid #10b8a8;box-shadow:0 10px 28px rgba(16,24,40,.06)}.contact-form{background:#fff;padding:34px;box-shadow:0 10px 28px rgba(16,24,40,.06)}.contact-form input,.contact-form textarea{width:100%;box-sizing:border-box;margin-bottom:14px;padding:14px 16px;border:1px solid #dfe8eb;font:inherit}.contact-form textarea{min-height:150px}.contact-form button{background:#10b8a8;color:#fff;border:0;padding:15px 26px;font-weight:900;cursor:pointer}
@media (max-width: 900px){.inner-hero h1{font-size:38px}.catalog-grid,.gallery-grid,.metric-row,.split-panel,.contact-layout{grid-template-columns:1fr}.catalog-card img{height:200px}.page-section{padding:52px 20px}}

/* Differentiated packaging-led homepage */
.packaging-home {
  color: #121a2a;
  background: #f7f3ec;
}

.packaging-home .eyebrow,
.section-kicker p {
  margin: 0 0 14px;
  color: #0f8f86;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.packaging-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: center;
  min-height: 720px;
  padding: 74px clamp(28px, 7vw, 118px) 86px;
  background:
    linear-gradient(120deg, rgba(246, 241, 233, 0.94), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 88% 12%, rgba(184, 138, 61, 0.16), transparent 34%),
    #f7f3ec;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 24px;
  color: #0c1424;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #4c596b;
  font-size: 18px;
  line-height: 1.75;
}

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

.primary-link,
.soft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 2px;
  font-weight: 900;
}

.primary-link {
  color: #ffffff;
  background: #0f8f86;
}

.soft-link {
  color: #0c1424;
  border: 1px solid rgba(12, 20, 36, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 560px;
}

.hero-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
}

.hero-card-large {
  grid-row: 1 / span 2;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(12, 20, 36, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.packaging-types,
.materials-strip {
  padding: 86px clamp(28px, 7vw, 118px);
  background: #ffffff;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

.section-kicker h2 {
  max-width: 760px;
  margin: 0;
  color: #0c1424;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.packaging-grid article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #f6f1e9;
}

.packaging-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #ffffff;
}

.packaging-grid span {
  display: inline-flex;
  margin: 22px 24px 8px;
  color: #b88a3d;
  font-size: 13px;
  font-weight: 900;
}

.packaging-grid h3 {
  margin: 0 24px 12px;
  color: #0c1424;
  font-size: 22px;
  line-height: 1.15;
}

.packaging-grid p {
  margin: 0 24px 26px;
  color: #566274;
  line-height: 1.65;
}

.material-mapping {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 52px;
  padding: 86px clamp(28px, 7vw, 118px);
  background: #121a2a;
}

.mapping-copy h2,
.proof-copy h2,
.brief-cta h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.mapping-copy h2,
.brief-cta h2 {
  color: #ffffff;
}

.mapping-copy p:not(.eyebrow),
.brief-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.mapping-table {
  display: grid;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mapping-table div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mapping-table div:last-child {
  border-bottom: 0;
}

.mapping-table strong {
  color: #ffffff;
  font-size: 18px;
}

.mapping-table span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding: 92px clamp(28px, 7vw, 118px);
  background: #f6f1e9;
}

.proof-image {
  min-height: 520px;
  overflow: hidden;
  background: #ffffff;
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.proof-copy h2 {
  color: #0c1424;
}

.proof-copy p:not(.eyebrow) {
  margin: 0;
  color: #526073;
  font-size: 17px;
  line-height: 1.75;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-stats div {
  padding: 18px;
  background: #ffffff;
  border-top: 3px solid #b88a3d;
}

.proof-stats strong {
  display: block;
  color: #0c1424;
  font-size: 22px;
  line-height: 1.1;
}

.proof-stats span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.material-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.material-cards article {
  padding: 24px;
  background: #f6f1e9;
  border-left: 3px solid #b88a3d;
}

.material-cards h3 {
  margin: 0 0 12px;
  color: #0c1424;
  font-size: 19px;
}

.material-cards p {
  margin: 0;
  color: #566274;
  font-size: 14px;
  line-height: 1.65;
}

.brief-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 76px clamp(28px, 7vw, 118px);
  background: #086e68;
}

.brief-cta .primary-link {
  color: #0c1424;
  background: #ffffff;
}

@media (max-width: 1100px) {
  .packaging-hero,
  .material-mapping,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .packaging-hero {
    min-height: 0;
  }

  .hero-gallery {
    min-height: 460px;
  }

  .packaging-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .packaging-hero,
  .packaging-types,
  .material-mapping,
  .proof-band,
  .materials-strip,
  .brief-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .packaging-hero {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-copy > p:not(.eyebrow),
  .mapping-copy p:not(.eyebrow),
  .proof-copy p:not(.eyebrow),
  .brief-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .brief-cta {
    display: grid;
  }

  .brief-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .primary-link,
  .soft-link {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-gallery,
  .packaging-grid,
  .mapping-table div,
  .proof-stats,
  .material-cards {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-card-large {
    grid-row: auto;
  }

  .hero-card {
    min-height: 230px;
  }

  .section-kicker {
    display: grid;
    gap: 12px;
  }

  .section-kicker h2,
  .mapping-copy h2,
  .proof-copy h2,
  .brief-cta h2 {
    font-size: 32px;
  }

  .packaging-grid article {
    min-height: 0;
  }

  .proof-image,
  .proof-image img {
    min-height: 320px;
  }
}

/* Packaging-led independent pages */
.new-page {
  color: #121a2a;
  background: #f7f3ec;
}

.new-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 56px;
  align-items: center;
  min-height: 620px;
  padding: 74px clamp(28px, 7vw, 118px);
  background:
    linear-gradient(120deg, rgba(247, 243, 236, 0.96), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 92% 8%, rgba(184, 138, 61, 0.14), transparent 34%);
}

.new-hero.reverse {
  grid-template-columns: minmax(460px, 1.05fr) minmax(0, 0.95fr);
}

.new-hero.reverse .new-hero-copy {
  order: 2;
}

.new-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #121a2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.new-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #536075;
  font-size: 18px;
  line-height: 1.76;
}

.new-hero-media {
  min-height: 460px;
}

.trio-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.trio-media img:first-child {
  grid-row: 1 / span 2;
}

.mosaic-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.focus-media {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 26, 42, 0.12);
}

.new-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: #ffffff;
}

.trio-media img,
.mosaic-media img {
  box-shadow: 0 18px 48px rgba(18, 26, 42, 0.1);
}

.new-section {
  padding: 86px clamp(28px, 7vw, 118px);
  background: #ffffff;
}

.new-section.dark {
  color: #ffffff;
  background: #121a2a;
}

.new-section.dark .section-kicker h2,
.new-section.dark h3 {
  color: #ffffff;
}

.new-section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-matrix article,
.scenario-grid article,
.solution-flow article {
  background: #f6f1e9;
  border-top: 3px solid #b88a3d;
}

.product-matrix article {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 22px;
}

.product-matrix span,
.solution-flow span,
.resource-list span {
  color: #0f8f86;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-matrix h3,
.scenario-grid h3,
.solution-flow h3,
.resource-list h3 {
  margin: 10px 0 12px;
  color: #121a2a;
  font-size: 22px;
  line-height: 1.15;
}

.product-matrix p,
.scenario-grid p,
.solution-flow p,
.resource-list p {
  margin: 0;
  color: #59667a;
  line-height: 1.65;
}

.product-matrix img {
  align-self: end;
  width: 100%;
  height: 180px;
  margin-top: 18px;
  object-fit: contain;
  background: #ffffff;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.scenario-grid article {
  overflow: hidden;
}

.scenario-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #ffffff;
}

.scenario-grid h3,
.scenario-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.scenario-grid h3 {
  margin-top: 22px;
}

.scenario-grid p {
  margin-bottom: 26px;
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-flow article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: #b88a3d;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-strip div {
  padding: 28px;
  color: #ffffff;
  background: #086e68;
}

.process-strip strong,
.process-strip span {
  display: block;
}

.process-strip strong {
  margin-bottom: 10px;
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
}

.process-strip span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.new-split h2,
.contact-form h2 {
  margin: 0 0 18px;
  color: #121a2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.08;
}

.new-split img {
  min-height: 430px;
  object-fit: cover;
}

.new-metrics div {
  background: #121a2a;
}

.new-metrics strong {
  color: #b88a3d;
}

.resource-list {
  display: grid;
  gap: 18px;
}

.resource-list article {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px;
  background: #f6f1e9;
  border-left: 3px solid #b88a3d;
}

.resource-list img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #ffffff;
}

.new-contact .contact-form {
  border-top: 3px solid #b88a3d;
}

.new-contact .contact-cards article {
  border-left-color: #b88a3d;
}

@media (max-width: 1100px) {
  .new-hero,
  .new-hero.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .new-hero.reverse .new-hero-copy {
    order: initial;
  }

  .product-matrix,
  .solution-flow,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .new-hero,
  .new-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .new-hero {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .new-hero-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .new-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .new-hero-media,
  .focus-media {
    min-height: 0;
  }

  .trio-media,
  .mosaic-media,
  .product-matrix,
  .scenario-grid,
  .solution-flow,
  .process-strip,
  .resource-list article {
    grid-template-columns: 1fr;
  }

  .trio-media img:first-child {
    grid-row: auto;
  }

  .new-hero-media img {
    min-height: 220px;
  }

  .product-matrix article {
    min-height: 0;
  }

  .resource-list article {
    gap: 16px;
  }

  .resource-list img,
  .scenario-grid img {
    height: 210px;
  }
}
