/* H2 Packaging — HTML template
   Vanilla CSS, no Tailwind. Mobile-first responsive. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; }

/* ---------- Tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-muted: #6b7280;
  --color-card-title: #3f444b;
  --color-sage: #bbd0b1;
  --color-sage-light: #d8e7d1;
  --color-forest: #234134;
  --color-forest-soft: #2c5141;
  --color-yellow: #fbd718;
  --color-yellow-hover: #e6c310;
  --color-border: rgba(0, 0, 0, 0.08);
  --radius-pill: 20px;
  --radius-card: 16px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 10px 28px rgba(0, 0, 0, 0.1);
  --container: 1200px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
main { flex: 1; }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 40; background: #fff; }
.site-header .inner {
  position: relative;
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; gap: 16px;
}
.site-header .logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.site-header .logo img { width: 84px; height: 84px; object-fit: contain; }
.nav-list { display: none; gap: 28px; font-size: 15px; font-weight: 700; align-items: center; }
.nav-list > a,
.nav-list > .nav-item > .nav-trigger { white-space: nowrap; }
.nav-list > a { display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.nav-list > a:hover { color: var(--color-forest); }
.nav-list > a > svg { width: 14px; height: 14px; }

/* Mega menu */
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 4px; transition: color .2s;
  padding: 8px 0;
}
.nav-trigger svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger { color: var(--color-forest); }
.nav-item:hover > .nav-trigger svg,
.nav-item:focus-within > .nav-trigger svg { transform: rotate(180deg); }

.mega-panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  background: #fff; border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 24px; min-width: 560px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 50;
}
.mega-panel::before {
  content: ''; position: absolute; left: 0; right: 0; top: -8px; height: 8px;
}
.nav-item:hover > .mega-panel,
.nav-item:focus-within > .mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-grid { display: grid; gap: 16px 24px; }
.mega-grid-2 { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
.mega-grid-3 { grid-template-columns: repeat(3, minmax(150px, 1fr)); }

.mega-card {
  display: flex; align-items: center; gap: 12px;
  padding: 6px; border-radius: 10px; transition: background .2s;
}
.mega-card:hover { background: rgba(35, 65, 52, .06); }
.mega-thumb {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 8px; background: #f5f7f3;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mega-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.mega-card > span:last-child { display: flex; flex-direction: column; }
.mega-card strong { font-size: 14px; font-weight: 600; color: var(--color-text); }
.mega-card em { font-style: normal; font-size: 12px; color: rgba(51,51,51,.6); margin-top: 2px; }
.mega-card:hover strong { color: var(--color-forest); }

.mega-panel-industry { min-width: 580px; }
.mega-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px; border-radius: 10px; transition: background .2s, color .2s;
  font-size: 14px; font-weight: 500;
}
.mega-pill img { width: 32px; height: 32px; object-fit: contain; }
.mega-pill:hover { background: rgba(35, 65, 52, .06); color: var(--color-forest); }

.mega-foot { margin-top: 18px; display: flex; justify-content: center; }
.mega-see-all { padding: 10px 28px; font-size: 14px; }

/* Mobile sub-menu */
.mobile-menu details { border-bottom: 1px solid rgba(0,0,0,.06); }
.mobile-menu details > summary {
  list-style: none; cursor: pointer;
  padding: 14px 0; font-size: 16px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu details > summary::-webkit-details-marker { display: none; }
.mobile-menu details > summary::after {
  content: ''; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-right: 4px; transition: transform .2s;
}
.mobile-menu details[open] > summary::after { transform: rotate(-135deg); margin-top: 4px; }
.mobile-menu .m-sub {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px; padding: 4px 0 16px 12px;
}
.mobile-menu .m-sub a {
  padding: 6px 0; border: 0;
  font-size: 14px; color: rgba(51,51,51,.78);
}
.header-tools { display: none; align-items: center; gap: 16px; }
.lang-btn, .search-btn {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; transition: color .2s;
}
.lang-btn:hover, .search-btn:hover { color: var(--color-forest); }
.lang-btn .flag {
  width: 20px; height: 14px; border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.1); display: inline-block;
}
.search-btn {
  width: 36px; height: 36px; border-radius: 50%;
  justify-content: center; padding: 0;
}
.search-btn:hover { background: rgba(0,0,0,.05); }
.menu-toggle { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }

@media (min-width: 1024px) {
  .nav-list, .header-tools { display: flex; }
  .menu-toggle { display: none; }
  .site-header .inner {
    padding: 12px 24px;
  }
  .site-header .logo img { width: 96px; height: 96px; }
  /* Logo: left-aligned. Nav: absolutely centered. Tools: right-aligned. */
  .site-header .logo { position: relative; z-index: 1; }
  .site-header .nav-list {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .site-header .header-tools {
    position: relative; z-index: 1;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; background: #fff; z-index: 50;
}
.mobile-menu.open { display: block; }
.mobile-menu .head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-bottom: 1px solid var(--color-border);
}
.mobile-menu nav { padding: 16px 24px; display: flex; flex-direction: column; }
.mobile-menu nav a {
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 16px;
}

/* ---------- Hero ---------- */
.hero { background: var(--color-sage); }
.hero .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; padding: 48px 0;
}
.hero h1 { font-size: 26px; line-height: 1.1; }
.hero h2 { font-size: 20px; line-height: 1.2; margin-top: 18px; }
.hero h2 .sep { opacity: .7; margin: 0 4px; }
.hero p {
  font-size: 15px; line-height: 1.6; max-width: 520px; color: rgba(51,51,51,.85);
  margin-top: 18px;
}
.hero .cta { margin-top: 24px; }
.hero .image { position: relative; aspect-ratio: 1024 / 572; }
.hero .image img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 1024px) {
  .hero .grid { grid-template-columns: 1fr 1fr; gap: 48px; padding: 80px 0; }
  .hero h1 { font-size: 36px; }
  .hero h2 { font-size: 28px; }
  .hero p { font-size: 16px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s, transform .2s;
}
.btn-primary { background: var(--color-yellow); color: #000; box-shadow: 0 2px 6px rgba(0,0,0,.06); }
.btn-primary:hover { background: var(--color-yellow-hover); }
.btn-forest { background: var(--color-forest); color: #fff; }
.btn-forest:hover { background: var(--color-forest-soft); }

/* ---------- Section common ---------- */
.section { padding: 64px 0; }
@media (min-width: 1024px) { .section { padding: 96px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: 24px; line-height: 1.25; }
.section-head p { font-size: 15px; color: rgba(51,51,51,.7); margin-top: 12px; }
@media (min-width: 1024px) {
  .section-head { margin-bottom: 56px; }
  .section-head h2 { font-size: 32px; }
  .section-head p { font-size: 16px; }
}
.bg-sage-light { background: var(--color-sage-light); }

/* ---------- Trust strip (static row, no animation, no scroll) ---------- */
.trust-carousel { padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.trust-carousel .viewport { overflow: hidden; }
.trust-carousel .track {
  display: flex; align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-carousel .track img {
  flex: 1 1 calc((100% - 5 * 12px) / 6);
  min-width: 0; max-width: 100%;
  height: auto; max-height: 60px;
  opacity: .9;
  object-fit: contain;
}
/* Hide the duplicated set since marquee is disabled */
.trust-carousel .track img[aria-hidden="true"] { display: none; }
@media (min-width: 768px) {
  .trust-carousel .track { flex-wrap: nowrap; gap: 16px; }
  .trust-carousel .track img {
    flex: 1 1 0; max-height: 60px;
  }
}
@media (min-width: 1024px) {
  .trust-carousel { padding: 40px 0; }
  .trust-carousel .track { gap: 24px; }
  .trust-carousel .track img { max-height: 64px; }
}

/* ---------- Product solutions ---------- */
.products .grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 1024px) { .products .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.product-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.product-card h3 {
  font-size: 18px; font-weight: 600; line-height: 1.2; color: var(--color-card-title);
  transition: color .2s;
}
.product-card:hover h3 { color: var(--color-forest); }
.product-card .img-wrap {
  width: 88px; height: 88px; flex-shrink: 0; position: relative;
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; }
@media (min-width: 1024px) {
  .product-card { padding: 20px; }
  .product-card h3 { font-size: 20px; }
  .product-card .img-wrap { width: 110px; height: 110px; }
}

/* ---------- Why ---------- */
.why .grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .why .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why .grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.why-card { text-align: center; padding: 0 8px; }
.why-card .icon { width: 80px; height: 80px; margin: 0 auto 16px; position: relative; }
.why-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.why-card h3 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 14px; line-height: 1.55; color: rgba(51,51,51,.75); }
@media (min-width: 1024px) {
  .why-card .icon { width: 96px; height: 96px; }
  .why-card h3 { font-size: 17px; }
}

/* ---------- Industries — horizontal carousel ---------- */
.industry-carousel {
  position: relative;
  padding: 0;
  /* Break out of the .container max-width and span the full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}

.ic-viewport { overflow: hidden; }
.ic-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.ic-slide {
  flex: 0 0 calc((100% - 5 * 20px) / 6);
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform .25s;
}
.ic-slide:hover { transform: translateY(-3px); }
.ic-slide .ic-img {
  aspect-ratio: 1; background: #f4f5f0;
  border-radius: var(--radius-card); overflow: hidden;
  margin-bottom: 12px;
}
.ic-slide .ic-img img {
  width: 110%; height: 110%; object-fit: cover;
  margin: -5%;
  transition: transform .35s ease;
}
.ic-slide:hover .ic-img img { transform: scale(1.05); }
.ic-slide h3 {
  font-size: 18px; font-weight: 600; text-align: center;
  color: var(--color-text); transition: color .2s;
  margin-top: 4px;
}
.ic-slide:hover h3 { color: var(--color-forest); }

@media (max-width: 1023px) {
  .ic-slide { flex: 0 0 calc((100% - 3 * 20px) / 4); }
}
@media (max-width: 767px) {
  .ic-slide { flex: 0 0 calc((100% - 2 * 20px) / 3); }
  .ic-slide h3 { font-size: 14px; }
}

.ic-arrow {
  position: absolute; top: calc(50% - 20px); /* center on the image, not card+title */
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: background .2s, color .2s, border-color .2s;
}
.ic-arrow:hover { background: var(--color-forest); color: #fff; border-color: var(--color-forest); }
.ic-arrow svg { width: 20px; height: 20px; }
.ic-prev { left: 16px; }
.ic-next { right: 16px; }
.ic-arrow:disabled { opacity: .35; cursor: not-allowed; }
.ic-arrow:disabled:hover { background: #fff; color: inherit; border-color: rgba(0,0,0,.1); }

/* Dots indicator */
.ic-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 24px;
}
.ic-dots .ic-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(0,0,0,.25); cursor: pointer;
  transition: width .3s, background .3s;
  border: 0;
}
.ic-dots .ic-dot.active { width: 22px; background: var(--color-forest); }

/* ---------- Impact ---------- */
.impact { position: relative; isolate: isolate; color: #fff; }
.impact .bg, .impact .overlay { position: absolute; inset: 0; z-index: -1; }
.impact .bg img { width: 100%; height: 100%; object-fit: cover; }
.impact .overlay { background: rgba(35, 65, 52, .65); }
.impact .container { padding: 64px 24px; text-align: center; }
.impact h2 { font-size: 24px; margin-bottom: 40px; color: #fff; }
.impact .grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
@media (min-width: 1024px) {
  .impact .container { padding: 96px 24px; }
  .impact h2 { font-size: 32px; margin-bottom: 56px; }
  .impact .grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.stat .icon {
  width: 64px; height: 64px; margin: 0 auto 12px; position: relative;
  filter: brightness(0) invert(1);
}
.stat .icon img { width: 100%; height: 100%; object-fit: contain; }
.stat .num { font-size: 28px; font-weight: 700; line-height: 1; }
.stat p { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 8px; max-width: 220px; margin-inline: auto; }
@media (min-width: 1024px) {
  .stat .icon { width: 80px; height: 80px; }
  .stat .num { font-size: 36px; }
  .stat p { font-size: 14px; }
}

/* ---------- Services tabs ---------- */
.services-tabs .tab-list {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 32px;
}
.services-tabs .tab {
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; transition: background-color .2s, color .2s;
}
.services-tabs .tab.active { background: var(--color-forest); color: #fff; }
.services-tabs .tab:not(.active):hover { background: rgba(255,255,255,.4); }
.services-tabs .panels { position: relative; }
.services-tabs .panel { display: none; }
.services-tabs .panel.active { display: grid; }
.services-tabs .panel {
  grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .services-tabs .panel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .services-tabs .panel { grid-template-columns: repeat(4, 1fr); }
  .services-tabs .tab-list { gap: 12px; margin-bottom: 48px; }
  .services-tabs .tab { padding: 12px 28px; font-size: 15px; }
}
.service-card {
  background: #fff; border-radius: var(--radius-card); padding: 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: box-shadow .25s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.service-card .icon { width: 64px; height: 64px; margin: 0 auto 16px; position: relative; }
.service-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-size: 15px; margin-bottom: 8px; }
.service-card p { font-size: 13px; line-height: 1.6; color: rgba(51,51,51,.75); }
@media (min-width: 1024px) {
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 14px; }
}

/* ---------- Blog ---------- */
.blog .grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1024px) { .blog .grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
  transition: box-shadow .25s;
}
.blog-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.blog-card .thumb {
  aspect-ratio: 16 / 10; background: rgba(216,231,209,.4);
  display: flex; align-items: center; justify-content: center;
}
.blog-card .thumb img { max-width: 60%; max-height: 60%; object-fit: contain; transition: transform .5s; }
.blog-card:hover .thumb img { transform: scale(1.03); }
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  font-size: 16px; line-height: 1.3; transition: color .2s;
}
.blog-card:hover h3 { color: var(--color-forest); }
.blog-card .excerpt {
  font-size: 14px; color: rgba(51,51,51,.7); line-height: 1.6;
  margin-top: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--color-forest); margin-top: 20px;
}
@media (min-width: 1024px) { .blog-card h3 { font-size: 17px; } }

/* ---------- Ordering ---------- */
.ordering .grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) { .ordering .grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.process-list { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .process-list { gap: 40px; } }
.process-step { display: flex; gap: 16px; }
.process-step .icon { width: 56px; height: 56px; flex-shrink: 0; position: relative; }
.process-step .icon img { width: 100%; height: 100%; object-fit: contain; }
.process-step h3 { font-size: 18px; }
.process-step p {
  font-size: 14px; line-height: 1.6; color: rgba(51,51,51,.75);
  margin-top: 8px; max-width: 440px;
}
@media (min-width: 1024px) {
  .process-step { gap: 24px; }
  .process-step .icon { width: 64px; height: 64px; }
  .process-step h3 { font-size: 20px; }
  .process-step p { font-size: 15px; }
}
.order-form-wrap h2 { font-size: 24px; margin-bottom: 24px; }
@media (min-width: 1024px) { .order-form-wrap h2 { font-size: 32px; margin-bottom: 32px; } }
.order-form {
  background: #fff; border-radius: var(--radius-card);
  padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 1024px) { .order-form { padding: 28px; } }
.order-form .row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .order-form .row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 500; color: rgba(51,51,51,.8); }
.field input, .field textarea {
  width: 100%; margin-top: 4px; padding: 10px 14px;
  background: #f5f7f3; border: 1px solid var(--color-border);
  border-radius: 8px; font: inherit; font-size: 14px; color: var(--color-text);
  outline: none; transition: background .2s, border-color .2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--color-forest); background: #fff;
}
.field textarea { min-height: 100px; resize: vertical; }
.form-msg { font-size: 13px; color: var(--color-forest); padding-top: 4px; display: none; }
.form-msg.show { display: block; }

/* ---------- Instagram feed ---------- */
.ig-feed { padding: 48px 0; }
.ig-feed .head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
}
.ig-feed .handle {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; transition: color .2s;
}
.ig-feed .handle:hover { color: var(--color-forest); }
.ig-feed .handle .ico-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.05);
  display: inline-flex; align-items: center; justify-content: center;
}
.ig-feed .follow-btn {
  display: none;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(0,0,0,.05); font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.ig-feed .follow-btn:hover { background: rgba(0,0,0,.1); }
@media (min-width: 640px) { .ig-feed .follow-btn { display: inline-flex; align-items: center; gap: 8px; } }
.ig-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (min-width: 640px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ig-grid { gap: 12px; } }
.ig-tile {
  position: relative; display: block; aspect-ratio: 1 / 1;
  background: rgba(216,231,209,.4); border-radius: 8px; overflow: hidden;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  transition: transform .5s;
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile .ig-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(35,65,52,0); transition: background .25s;
}
.ig-tile:hover .ig-overlay { background: rgba(35,65,52,.35); }
.ig-tile .ig-overlay svg {
  width: 28px; height: 28px; color: #fff;
  opacity: 0; transition: opacity .25s;
}
.ig-tile:hover .ig-overlay svg { opacity: 1; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--color-forest); color: #fff; padding: 56px 0; }
@media (min-width: 1024px) { .cta-banner { padding: 80px 0; } }
.cta-banner .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; text-align: center;
}
@media (min-width: 1024px) {
  .cta-banner .grid {
    grid-template-columns: auto 1fr auto; gap: 48px; text-align: left;
  }
}
.cta-banner img.brand { width: 96px; height: 96px; margin: 0 auto; object-fit: contain; }
@media (min-width: 1024px) { .cta-banner img.brand { width: 112px; height: 112px; margin: 0; } }
.cta-banner h2 { font-size: 22px; line-height: 1.3; color: #fff; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.85); margin-top: 8px; }
@media (min-width: 1024px) {
  .cta-banner h2 { font-size: 30px; }
  .cta-banner p { font-size: 18px; }
}
.social-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.social-row a:hover { background: #fff; color: var(--color-forest); }
.social-row svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-forest); color: #fff; }
.site-footer .columns {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  padding: 48px 0; border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 1024px) {
  .site-footer .columns { grid-template-columns: repeat(4, 1fr); gap: 48px; padding: 64px 0; }
}
.footer-col h3 {
  font-size: 14px; letter-spacing: .08em; font-weight: 700;
  margin-bottom: 18px; color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col img.payment { width: 100%; max-width: 252px; margin-bottom: 16px; }
.footer-col .whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.85); transition: color .2s;
}
.footer-col .whatsapp:hover { color: #fff; }
.footer-col .whatsapp svg { width: 16px; height: 16px; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.65);
}

/* ============================================================
   PRODUCT CATEGORY PAGE — corrugated-boxes.html, paperboard-box.html, etc.
   ============================================================ */

/* Breadcrumb */
.breadcrumb-bar { background: #dcdbcc; padding: 12px 0; }
.breadcrumb-bar .container { display: flex; align-items: center; }
.breadcrumb {
  font-size: 14px; color: rgba(51,51,51,.85);
}
.breadcrumb a { color: var(--color-forest); transition: color .2s; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: rgba(51,51,51,.45); }

/* Category banner */
.category-banner { background: #dcdbcc; padding: 48px 0; }
@media (min-width: 1024px) { .category-banner { padding: 72px 0; } }
.category-banner .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .category-banner .grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.category-banner h1 {
  font-size: 30px; line-height: 1.15; color: var(--color-forest); margin-bottom: 14px;
}
.category-banner h2 {
  font-size: 18px; line-height: 1.3; color: var(--color-text); margin-bottom: 16px;
}
.category-banner p { font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.8); margin-bottom: 12px; }
.category-banner .image { aspect-ratio: 1024/621; }
.category-banner .image img { width: 100%; height: 100%; object-fit: contain; }
@media (min-width: 1024px) {
  .category-banner h1 { font-size: 40px; }
  .category-banner h2 { font-size: 22px; }
  .category-banner p { font-size: 15px; }
}

/* Most popular product grid */
.popular-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 640px) { .popular-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .popular-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.popular-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: transparent; border: 0;
  border-radius: 0; padding: 0;
  transition: transform .25s;
}
.popular-card:hover { transform: translateY(-3px); }
.popular-card .img-wrap {
  width: 100%; aspect-ratio: 1; margin-bottom: 14px;
  border-radius: 0;
  overflow: hidden;
}
.popular-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.popular-card h3 {
  font-size: 15px; line-height: 1.4; color: var(--color-card-title);
  font-weight: 700;
}
.popular-card:hover h3 { color: var(--color-forest); }

/* Build Your Ideal — 2-col text/image alternating */
.build-section { padding: 64px 0; }
@media (min-width: 1024px) { .build-section { padding: 96px 0; } }
.build-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: stretch;
}
@media (min-width: 1024px) {
  .build-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.build-grid .image {
  position: relative;
  aspect-ratio: 4/3;
  align-self: stretch;
}
@media (min-width: 1024px) {
  .build-grid .image { aspect-ratio: auto; min-height: 100%; }
}
.build-grid .image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-card);
}
.build-features { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .build-features { grid-template-columns: 1fr 1fr; gap: 28px; } }
.build-feature h3 {
  font-size: 16px; line-height: 1.3; color: var(--color-forest); margin-bottom: 8px;
}
.build-feature p { font-size: 14px; line-height: 1.65; color: rgba(51,51,51,.78); }

/* Heavy-Duty — alternating split rows */
.split-row { padding: 56px 0; }
@media (min-width: 1024px) { .split-row { padding: 80px 0; } }
.split-row .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .split-row .grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split-row.reverse .grid > .body { order: 2; }
  .split-row.reverse .grid > .image { order: 1; }
}
.split-row .image { aspect-ratio: 4/3; border-radius: var(--radius-card); overflow: hidden; }
.split-row .image img { width: 100%; height: 100%; object-fit: cover; }
.split-row h2 { font-size: 24px; margin-bottom: 8px; line-height: 1.25; }
.split-row .lead {
  font-size: 16px; color: var(--color-forest); font-weight: 600; margin-bottom: 16px;
}
.split-row p { font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.78); }
@media (min-width: 1024px) {
  .split-row h2 { font-size: 32px; }
  .split-row .lead { font-size: 18px; }
  .split-row p { font-size: 15px; }
}

/* Industry small grid */
.industry-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.industry-tile {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 12px;
  text-align: center; transition: box-shadow .25s, transform .25s;
}
.industry-tile:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.industry-tile .img-wrap {
  width: 100%; aspect-ratio: 1; background: #f7f8f4;
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.industry-tile .img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.industry-tile h3 {
  font-size: 14px; margin-top: 12px; color: var(--color-card-title);
}

/* FAQ */
.faq-section { padding: 56px 0; }
@media (min-width: 1024px) { .faq-section { padding: 80px 0; } }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 16px 20px; font-size: 15px; font-weight: 600;
  color: var(--color-text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--color-forest);
  border-bottom: 2px solid var(--color-forest);
  transform: rotate(45deg); margin-top: -4px;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item summary:hover { color: var(--color-forest); }
.faq-item .answer {
  padding: 0 20px 18px; font-size: 14px; line-height: 1.7;
  color: rgba(51,51,51,.8);
}
.faq-item .answer p { margin-top: 8px; }
.faq-item .answer ul { padding-left: 20px; margin-top: 8px; list-style: disc; }
.faq-item .answer li { margin: 4px 0; }
@media (min-width: 1024px) {
  .faq-item summary { font-size: 16px; padding: 20px 24px; }
  .faq-item .answer { padding: 0 24px 22px; font-size: 15px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE — product-airplane-mailer-box.html etc.
   ============================================================ */
.product-page { padding: 32px 0 0; }
.product-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-gallery .main {
  aspect-ratio: 1; background: #f7f8f4;
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-gallery .main img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  transition: transform .3s ease;
}
.product-gallery .thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.product-gallery .thumb-btn {
  aspect-ratio: 1; background: #f7f8f4;
  border: 2px solid transparent; border-radius: 10px;
  overflow: hidden; cursor: pointer; padding: 0;
  transition: border-color .2s, transform .2s;
}
.product-gallery .thumb-btn:hover { transform: translateY(-2px); }
.product-gallery .thumb-btn.active { border-color: var(--color-forest); }
.product-gallery .thumb-btn img {
  width: 100%; height: 100%; object-fit: contain; padding: 6px;
}

/* Summary */
.product-summary h1 {
  font-size: 22px; line-height: 1.25; color: var(--color-text);
  margin-bottom: 14px;
}
.product-summary .lead {
  font-size: 15px; line-height: 1.6; color: rgba(51,51,51,.8);
  margin-bottom: 24px;
  padding: 14px 16px; background: #f7f8f4;
  border-left: 3px solid var(--color-forest);
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .product-summary h1 { font-size: 28px; }
}

/* Variation form */
.variation-form { display: flex; flex-direction: column; gap: 16px; }
.variation-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.variation-row .field input {
  width: 100%; padding: 9px 12px; font: inherit; font-size: 14px;
  border: 1px solid var(--color-border); border-radius: 6px;
  background: #fafafa; outline: none; transition: border-color .2s, background .2s;
}
.variation-row .field input:focus { border-color: var(--color-forest); background: #fff; }
.variation-row .field label { font-size: 12px; color: rgba(51,51,51,.7); margin-bottom: 4px; display: block; }

.variation-group { }
.variation-group > label {
  font-size: 13px; font-weight: 600; color: var(--color-text);
  margin-bottom: 8px; display: block;
}
.variation-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.variation-options .opt {
  padding: 7px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  font-size: 13px; cursor: pointer;
  background: #fff; color: var(--color-text);
  transition: background .2s, border-color .2s, color .2s;
}
.variation-options .opt:hover { border-color: var(--color-forest); }
.variation-options .opt.active {
  background: var(--color-forest); color: #fff; border-color: var(--color-forest);
}

.quote-block {
  background: #fafafa; padding: 18px; border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 12px;
}
.quote-block h3 { font-size: 15px; font-weight: 600; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .quote-row { grid-template-columns: 1fr; } }
.quote-block input,
.quote-block textarea {
  width: 100%; padding: 9px 12px; font: inherit; font-size: 14px;
  border: 1px solid var(--color-border); border-radius: 6px;
  background: #fff; outline: none; transition: border-color .2s;
}
.quote-block textarea { min-height: 70px; resize: vertical; }
.quote-block input:focus, .quote-block textarea:focus { border-color: var(--color-forest); }
.quote-block .file-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(51,51,51,.7);
}
.quote-block .file-row input[type=file] { font-size: 12px; }

/* Product detail panel (sage section) */
.product-detail-panel {
  background: var(--color-sage-light);
  padding: 56px 0;
}
@media (min-width: 1024px) { .product-detail-panel { padding: 80px 0; } }
.product-detail-panel h2 {
  text-align: center; font-size: 24px; margin-bottom: 32px;
}
@media (min-width: 1024px) { .product-detail-panel h2 { font-size: 32px; margin-bottom: 48px; } }
.detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 768px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.detail-block h3 {
  font-size: 16px; color: var(--color-forest); margin-bottom: 12px;
}
.detail-block ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.detail-block li { font-size: 14px; line-height: 1.6; color: rgba(51,51,51,.85); }
.detail-block p { font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.85); }
@media (min-width: 1024px) {
  .detail-block h3 { font-size: 18px; }
  .detail-block li, .detail-block p { font-size: 15px; }
}

/* Inspiration & Quality split */
.inspiration { padding: 56px 0; }
@media (min-width: 1024px) { .inspiration { padding: 80px 0; } }
.inspiration .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .inspiration .grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .inspiration.reverse .grid > .image { order: 2; }
  .inspiration.reverse .grid > .body { order: 1; }
}
.inspiration .image { aspect-ratio: 800/734; border-radius: var(--radius-card); overflow: hidden; }
.inspiration .image img { width: 100%; height: 100%; object-fit: cover; }
.inspiration h2 { font-size: 22px; margin-bottom: 14px; line-height: 1.3; }
.inspiration p { font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.78); }
@media (min-width: 1024px) {
  .inspiration h2 { font-size: 28px; }
  .inspiration p { font-size: 15px; }
}

/* Related products */
.related-products { padding: 48px 0 64px; }
.related-products h2 {
  text-align: center; font-size: 22px; margin-bottom: 32px;
}
@media (min-width: 1024px) { .related-products h2 { font-size: 28px; margin-bottom: 40px; } }
.related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* ============================================================
   INDUSTRY PAGE — bakery-cake.html etc.
   ============================================================ */

/* Industry banner (text-only on left, sage tan bg) */
.industry-banner { background: #dcdbcc; padding: 56px 0; }
@media (min-width: 1024px) { .industry-banner { padding: 80px 0; } }
.industry-banner .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .industry-banner .grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.industry-banner h1 {
  font-size: 30px; line-height: 1.2; color: var(--color-forest); margin-bottom: 16px;
}
.industry-banner p {
  font-size: 15px; line-height: 1.7; color: rgba(51,51,51,.85);
  margin-bottom: 24px; max-width: 560px;
}
.industry-banner .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-banner .image {
  aspect-ratio: 1; border-radius: var(--radius-card); overflow: hidden;
  background: #fff; padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.industry-banner .image img { width: 70%; height: 70%; object-fit: contain; }
.btn-outline {
  background: transparent; color: var(--color-forest);
  border: 1.5px solid var(--color-forest);
}
.btn-outline:hover { background: var(--color-forest); color: #fff; }
@media (min-width: 1024px) {
  .industry-banner h1 { font-size: 40px; }
}

/* 2-paragraph descriptive section */
.intro-block { padding: 56px 0; }
@media (min-width: 1024px) { .intro-block { padding: 80px 0; } }
.intro-block .container { max-width: 920px; }
.intro-block h2 { font-size: 22px; margin-bottom: 14px; line-height: 1.3; }
.intro-block h3 {
  font-size: 18px; color: var(--color-forest);
  margin-top: 32px; margin-bottom: 12px;
}
.intro-block p {
  font-size: 15px; line-height: 1.75; color: rgba(51,51,51,.82);
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .intro-block h2 { font-size: 28px; }
  .intro-block h3 { font-size: 20px; }
  .intro-block p { font-size: 16px; }
}

/* ============================================================
   LEARN CENTER PAGE — learn-center.html
   ============================================================ */

/* Page header (centered, no image) */
.learn-header { padding: 56px 0 40px; text-align: center; }
@media (min-width: 1024px) { .learn-header { padding: 80px 0 56px; } }
.learn-header h1 {
  font-size: 32px; line-height: 1.15; color: var(--color-forest); margin-bottom: 16px;
}
.learn-header p {
  font-size: 16px; line-height: 1.7; color: rgba(51,51,51,.8);
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 1024px) { .learn-header h1 { font-size: 44px; } }

/* 4-card category strip */
.learn-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 1024px) { .learn-cards { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.learn-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 20px 16px;
  transition: box-shadow .25s, transform .25s;
}
.learn-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.learn-card .img-wrap {
  width: 96px; height: 96px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.learn-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.learn-card h3 {
  font-size: 14px; line-height: 1.3; color: var(--color-card-title); font-weight: 600;
}
.learn-card:hover h3 { color: var(--color-forest); }
@media (min-width: 1024px) {
  .learn-card { padding: 28px 20px; }
  .learn-card h3 { font-size: 16px; }
  .learn-card .img-wrap { width: 120px; height: 120px; margin-bottom: 16px; }
}

/* Topic block (one of 4 stacked) */
.topic-block { padding: 40px 0; border-top: 1px solid var(--color-border); }
.topic-block:first-of-type { border-top: 0; }
.topic-block .container { max-width: 920px; }
.topic-block h2 {
  font-size: 22px; line-height: 1.25;
  color: var(--color-forest); margin-bottom: 14px;
}
.topic-block p {
  font-size: 15px; line-height: 1.75; color: rgba(51,51,51,.82);
  margin-bottom: 20px;
}
.topic-block .btn {
  font-size: 14px; padding: 10px 22px;
}
@media (min-width: 1024px) {
  .topic-block { padding: 56px 0; }
  .topic-block h2 { font-size: 28px; }
  .topic-block p { font-size: 16px; }
}

/* ============================================================
   ABOUT US PAGE — about-us.html
   ============================================================ */

/* Hero with bg image */
.about-hero {
  position: relative; isolate: isolate; color: #fff;
  padding: 80px 0 100px;
}
.about-hero .bg, .about-hero .overlay { position: absolute; inset: 0; z-index: -1; }
.about-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero .overlay { background: rgba(35, 65, 52, .65); }
.about-hero .container { max-width: 880px; text-align: center; }
.about-hero h1 {
  font-size: 32px; line-height: 1.15; margin-bottom: 16px; color: #fff;
}
.about-hero p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.92); max-width: 720px; margin: 0 auto 12px; }
@media (min-width: 1024px) {
  .about-hero { padding: 110px 0 130px; }
  .about-hero h1 { font-size: 44px; }
  .about-hero p { font-size: 17px; }
}

/* About text+image alternating split */
.about-split { padding: 56px 0; }
@media (min-width: 1024px) { .about-split { padding: 80px 0; } }
.about-split .grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 1024px) {
  .about-split .grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .about-split.reverse .grid > .image { order: 2; }
  .about-split.reverse .grid > .body { order: 1; }
}
.about-split .image { aspect-ratio: 4/3; border-radius: var(--radius-card); overflow: hidden; }
.about-split .image img { width: 100%; height: 100%; object-fit: cover; }
.about-split h2 { font-size: 24px; margin-bottom: 14px; line-height: 1.25; color: var(--color-forest); }
.about-split p { font-size: 14px; line-height: 1.75; color: rgba(51,51,51,.8); margin-bottom: 12px; }
@media (min-width: 1024px) {
  .about-split h2 { font-size: 30px; }
  .about-split p { font-size: 15px; }
}

/* Why choose 6-card grid */
.why-choose { padding: 56px 0; }
@media (min-width: 1024px) { .why-choose { padding: 80px 0; } }
.why-choose .section-head h2 { color: var(--color-forest); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.why-cell {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.why-cell:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.why-cell .icon { width: 72px; height: 72px; margin: 0 auto 12px; }
.why-cell .icon img { width: 100%; height: 100%; object-fit: contain; }
.why-cell h3 { font-size: 16px; margin-bottom: 8px; color: var(--color-forest); }
.why-cell p { font-size: 14px; line-height: 1.6; color: rgba(51,51,51,.8); }

/* Product expertise — 3 columns */
.expertise { padding: 56px 0; }
@media (min-width: 1024px) { .expertise { padding: 80px 0; } }
.expertise-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1024px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.expertise-cell {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.expertise-cell h3 { font-size: 18px; color: var(--color-forest); margin-bottom: 10px; }
.expertise-cell p {
  font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.78);
  margin-bottom: 18px; flex: 1;
}
.expertise-cell a {
  font-size: 14px; font-weight: 600; color: var(--color-forest);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  transition: gap .2s;
}
.expertise-cell a:hover { gap: 10px; }
.expertise-cell a::after {
  content: '→'; transition: transform .2s;
}

/* Final CTA */
.final-cta { background: rgb(202, 217, 196); padding: 56px 0; text-align: center; }
.final-cta h2 { font-size: 26px; color: var(--color-forest); margin-bottom: 14px; line-height: 1.25; }
.final-cta p { font-size: 15px; color: rgba(51,51,51,.85); max-width: 720px; margin: 0 auto 24px; line-height: 1.7; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (min-width: 1024px) {
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 34px; }
}

/* ============================================================
   BLOG INDEX PAGE
   ============================================================ */
.blog-banner { background: rgb(202, 217, 196); padding: 48px 0 36px; text-align: center; }
@media (min-width: 1024px) { .blog-banner { padding: 72px 0 56px; } }
.blog-banner h1 {
  font-size: 30px; line-height: 1.2; color: var(--color-forest); margin-bottom: 14px;
}
.blog-banner p {
  font-size: 16px; line-height: 1.7; color: rgba(51,51,51,.8);
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 1024px) { .blog-banner h1 { font-size: 42px; } }

/* Featured post card */
.blog-featured { padding: 56px 0 0; }
.featured-card {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .featured-card { grid-template-columns: 1.1fr 1fr; gap: 0; } }
.featured-card .thumb {
  background: rgba(216,231,209,.4);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/10;
}
.featured-card .thumb img { max-width: 50%; max-height: 60%; object-fit: contain; }
.featured-card .body { padding: 24px; display: flex; flex-direction: column; }
.featured-card .meta { font-size: 13px; color: rgba(51,51,51,.55); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.featured-card h2 {
  font-size: 22px; line-height: 1.3; margin-bottom: 14px;
  color: var(--color-text);
}
.featured-card .excerpt {
  font-size: 14px; line-height: 1.7; color: rgba(51,51,51,.78);
  margin-bottom: 20px; flex: 1;
}
.featured-card .read-more {
  align-self: flex-start;
  padding: 10px 22px; font-size: 14px;
}
@media (min-width: 1024px) {
  .featured-card .body { padding: 40px; }
  .featured-card h2 { font-size: 28px; }
  .featured-card .excerpt { font-size: 15px; }
}

/* Blog list (News) */
.blog-list { padding: 56px 0 64px; }
.blog-list .section-head { text-align: left; margin-bottom: 24px; max-width: none; }
.blog-list .section-head h2 { color: var(--color-forest); font-size: 24px; }
.blog-list .grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .blog-list .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .blog-list .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero {
  padding: 48px 0 32px; background: rgb(202, 217, 196);
}
@media (min-width: 1024px) { .post-hero { padding: 72px 0 48px; } }
.post-hero .container { max-width: 880px; text-align: center; }
.post-hero h1 {
  font-size: 28px; line-height: 1.25; color: var(--color-forest); margin-bottom: 14px;
}
.post-hero .meta {
  font-size: 13px; color: rgba(51,51,51,.65);
  text-transform: uppercase; letter-spacing: .06em;
}
.post-hero .meta span { margin: 0 8px; }
@media (min-width: 1024px) { .post-hero h1 { font-size: 38px; } }

.post-body { padding: 48px 0 64px; }
.post-body .container { max-width: 800px; }
.post-body p {
  font-size: 16px; line-height: 1.85; color: rgba(51,51,51,.85);
  margin-bottom: 18px;
}
.post-body h2 {
  font-size: 22px; line-height: 1.3; color: var(--color-forest);
  margin: 36px 0 14px; font-weight: 700;
}
.post-body h3 {
  font-size: 18px; line-height: 1.35; color: var(--color-text);
  margin: 28px 0 12px;
}
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 16px; line-height: 1.8; color: rgba(51,51,51,.85); margin-bottom: 6px; }
.post-body strong { color: var(--color-text); font-weight: 700; }
.post-body a { color: var(--color-forest); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { text-decoration-thickness: 2px; }
.post-body img { border-radius: var(--radius-card); margin: 20px 0; }
@media (min-width: 1024px) {
  .post-body h2 { font-size: 26px; }
  .post-body h3 { font-size: 20px; }
}

/* Post bottom CTA strip */
.post-cta-strip {
  margin: 32px 0 0; padding: 24px;
  background: var(--color-sage-light);
  border-radius: var(--radius-card); text-align: center;
}
.post-cta-strip h3 { font-size: 18px; color: var(--color-forest); margin-bottom: 14px; }
.post-cta-strip .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
/* ============================================================
   MOBILE OPTIMIZATIONS — apply to viewports below 768px
   ============================================================ */
@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }

  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 20px; line-height: 1.25; }
  .section-head p { font-size: 14px; margin-top: 8px; }

  /* Hero */
  .hero .grid { padding: 32px 0; gap: 20px; }
  .hero h1 { font-size: 22px; }
  .hero h2 { font-size: 18px; margin-top: 12px; }
  .hero p { font-size: 14px; margin-top: 12px; }
  .hero .cta { margin-top: 18px; }
  .btn { padding: 10px 20px; font-size: 14px; }

  /* Header */
  .site-header .inner { padding: 8px 16px; gap: 8px; }
  .site-header .logo img { width: 60px; height: 60px; }
  .menu-toggle { width: 36px; height: 36px; }
  .mobile-menu nav { padding: 12px 20px; }
  .mobile-menu nav a { padding: 12px 0; font-size: 15px; }
  .mobile-menu .m-sub a { font-size: 13px; }

  /* Product solution cards */
  .products .grid { gap: 12px; }
  .product-card { padding: 12px; }
  .product-card h3 { font-size: 15px; }
  .product-card .img-wrap { width: 70px; height: 70px; }

  /* Why */
  .why .grid { gap: 28px; }
  .why-card .icon { width: 64px; height: 64px; margin-bottom: 12px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 13px; }

  /* Industries carousel */
  .ic-arrow { width: 36px; height: 36px; }
  .ic-arrow svg { width: 16px; height: 16px; }
  .ic-prev { left: 8px; }
  .ic-next { right: 8px; }
  .ic-slide h3 { font-size: 13px; }

  /* Impact */
  .impact .container { padding: 48px 16px; }
  .impact h2 { font-size: 22px; margin-bottom: 28px; }
  .impact .grid { gap: 24px; }
  .stat .icon { width: 52px; height: 52px; margin-bottom: 8px; }
  .stat .num { font-size: 24px; }
  .stat p { font-size: 12px; }

  /* Services tabs */
  .services-tabs .tab-list {
    gap: 6px; margin-bottom: 24px;
    overflow-x: auto; flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .services-tabs .tab { padding: 8px 16px; font-size: 13px; flex-shrink: 0; }
  .service-card { padding: 18px; }
  .service-card .icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .service-card h3 { font-size: 14px; }
  .service-card p { font-size: 12px; }

  /* Blog */
  .blog-card .body { padding: 18px; }
  .blog-card h3 { font-size: 15px; }
  .blog-card .excerpt { font-size: 13px; margin-top: 8px; }

  /* Ordering / Form */
  .order-form { padding: 16px; gap: 12px; }
  .order-form-wrap h2 { font-size: 22px; margin-bottom: 18px; }
  .field input, .field textarea { padding: 9px 12px; font-size: 13px; }
  .process-step { gap: 12px; }
  .process-step .icon { width: 44px; height: 44px; }
  .process-step h3 { font-size: 16px; }
  .process-step p { font-size: 13px; }

  /* Instagram feed */
  .ig-feed { padding: 32px 0; }
  .ig-feed .head { margin-bottom: 16px; }
  .ig-feed .handle { font-size: 14px; }
  .ig-feed .handle .ico-wrap { width: 32px; height: 32px; }

  /* CTA banner */
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: 20px; }
  .cta-banner p { font-size: 14px; }
  .cta-banner img.brand { width: 72px; height: 72px; }
  .social-row a { width: 38px; height: 38px; }

  /* Footer */
  .site-footer .columns { padding: 32px 0; gap: 24px; grid-template-columns: 1fr 1fr; }
  .footer-col h3 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 13px; }
  .copyright { font-size: 12px; padding: 14px 0; }

  /* Category banner */
  .category-banner { padding: 32px 0; }
  .category-banner .grid { gap: 20px; }
  .category-banner h1 { font-size: 24px; }
  .category-banner h2 { font-size: 16px; margin-bottom: 10px; }
  .category-banner p { font-size: 13px; }
  .breadcrumb-bar { padding: 10px 0; }
  .breadcrumb { font-size: 12px; }

  /* Popular grid */
  .popular-grid { gap: 12px; }
  .popular-card h3 { font-size: 13px; line-height: 1.35; }

  /* Build section */
  .build-section { padding: 40px 0; }
  .build-grid { gap: 24px; }
  .build-features { gap: 18px; }
  .build-feature h3 { font-size: 15px; }
  .build-feature p { font-size: 13px; }

  /* Split rows */
  .split-row { padding: 36px 0; }
  .split-row .grid { gap: 20px; }
  .split-row h2 { font-size: 22px; }
  .split-row .lead { font-size: 14px; margin-bottom: 12px; }
  .split-row p { font-size: 13px; }

  /* Industry tiles */
  .industry-grid { gap: 12px; }
  .industry-tile { padding: 8px; }
  .industry-tile h3 { font-size: 13px; margin-top: 8px; }

  /* FAQ */
  .faq-section { padding: 36px 0; }
  .faq-item summary { padding: 14px 16px; font-size: 14px; }
  .faq-item .answer { padding: 0 16px 14px; font-size: 13px; }

  /* Industry banner */
  .industry-banner { padding: 32px 0; }
  .industry-banner .grid { gap: 20px; }
  .industry-banner h1 { font-size: 24px; margin-bottom: 12px; }
  .industry-banner p { font-size: 13px; margin-bottom: 16px; }
  .industry-banner .cta-row { gap: 8px; }
  .industry-banner .image { padding: 16px; }

  /* Intro block */
  .intro-block { padding: 36px 0; }
  .intro-block h2 { font-size: 20px; }
  .intro-block h3 { font-size: 16px; margin-top: 24px; }
  .intro-block p { font-size: 14px; }

  /* Learn center */
  .learn-header { padding: 32px 0 24px; }
  .learn-header h1 { font-size: 26px; }
  .learn-header p { font-size: 14px; }
  .learn-cards { gap: 12px; }
  .learn-card { padding: 16px 12px; }
  .learn-card .img-wrap { width: 64px; height: 64px; margin-bottom: 8px; }
  .learn-card h3 { font-size: 13px; }
  .topic-block { padding: 28px 0; }
  .topic-block h2 { font-size: 20px; }
  .topic-block p { font-size: 14px; }

  /* About hero */
  .about-hero { padding: 48px 0 56px; }
  .about-hero h1 { font-size: 26px; }
  .about-hero p { font-size: 14px; }

  /* About splits */
  .about-split { padding: 36px 0; }
  .about-split .grid { gap: 24px; }
  .about-split h2 { font-size: 20px; margin-bottom: 10px; }
  .about-split p { font-size: 13px; }

  /* Why-choose */
  .why-choose { padding: 36px 0; }
  .why-cell { padding: 18px; }
  .why-cell .icon { width: 56px; height: 56px; margin-bottom: 10px; }
  .why-cell h3 { font-size: 14px; }
  .why-cell p { font-size: 13px; }

  /* Expertise */
  .expertise { padding: 36px 0; }
  .expertise-grid { gap: 16px; }
  .expertise-cell { padding: 20px 18px; }
  .expertise-cell h3 { font-size: 16px; }
  .expertise-cell p { font-size: 13px; margin-bottom: 14px; }

  /* Final CTA */
  .final-cta { padding: 40px 0; }
  .final-cta h2 { font-size: 22px; }
  .final-cta p { font-size: 13px; }

  /* Blog featured */
  .blog-featured { padding: 32px 0 0; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .body { padding: 20px; }
  .featured-card .meta { font-size: 11px; margin-bottom: 8px; }
  .featured-card h2 { font-size: 18px; margin-bottom: 10px; }
  .featured-card .excerpt { font-size: 13px; margin-bottom: 16px; }
  .blog-banner { padding: 32px 0 24px; }
  .blog-banner h1 { font-size: 22px; }
  .blog-banner p { font-size: 13px; }

  /* Post pages */
  .post-hero { padding: 32px 0 24px; }
  .post-hero h1 { font-size: 22px; }
  .post-hero .meta { font-size: 11px; }
  .post-hero .meta span { margin: 0 4px; }
  .post-body { padding: 32px 0 40px; }
  .post-body p { font-size: 14px; line-height: 1.75; margin-bottom: 14px; }
  .post-body h2 { font-size: 18px; margin: 24px 0 10px; }
  .post-body h3 { font-size: 16px; margin: 20px 0 8px; }
  .post-body li { font-size: 14px; }
  .post-cta-strip { padding: 18px; }
  .post-cta-strip h3 { font-size: 15px; }

  /* Product detail page */
  .product-page { padding: 20px 0 0; }
  .product-grid { gap: 24px; }
  .product-summary h1 { font-size: 19px; margin-bottom: 10px; }
  .product-summary .lead { font-size: 13px; padding: 12px 14px; margin-bottom: 18px; }
  .product-gallery .thumbs { gap: 8px; }
  .variation-row { grid-template-columns: 1fr; gap: 8px; }
  .variation-options .opt { padding: 6px 12px; font-size: 12px; }
  .variation-group > label { font-size: 12px; }
  .quote-block { padding: 14px; }
  .quote-block h3 { font-size: 14px; }
  .quote-block input, .quote-block textarea { font-size: 13px; padding: 8px 10px; }
  .product-detail-panel { padding: 36px 0; }
  .product-detail-panel h2 { font-size: 20px; margin-bottom: 20px; }
  .detail-grid { gap: 22px; }
  .detail-block h3 { font-size: 15px; }
  .detail-block li, .detail-block p { font-size: 13px; }
  .inspiration { padding: 36px 0; }
  .inspiration .grid { gap: 20px; }
  .inspiration h2 { font-size: 20px; margin-bottom: 10px; }
  .inspiration p { font-size: 13px; }
  .related-products { padding: 32px 0 40px; }
  .related-products h2 { font-size: 20px; margin-bottom: 22px; }

  /* Trust strip — wrap to 3 per row on phones */
  .trust-carousel { padding: 20px 0; }
  .trust-carousel .track {
    flex-wrap: wrap;
    gap: 12px 8px;
    justify-content: space-around;
  }
  .trust-carousel .track img {
    flex: 0 0 calc((100% - 16px) / 3);
    max-height: 44px;
  }

  /* Mega-menu hidden on mobile — use the drawer instead */
  .mega-panel { display: none !important; }
}

/* ============================================================
   TABLET TWEAKS — 768px to 1023px
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 28px; }
  .hero h2 { font-size: 22px; }
  .impact h2 { font-size: 26px; }
  .ic-prev { left: 16px; }
  .ic-next { right: 16px; }
  .featured-card { grid-template-columns: 1fr; }
  .post-body .container { max-width: 100%; padding: 0 24px; }
}
