:root {
  --black: #050705;
  --charcoal: #0d110c;
  --forest: #102618;
  --green: #1d3a27;
  --acid: #cfff35;
  --gold: #d8b56b;
  --kraft: #b9844a;
  --cream: #f2ead8;
  --paper: #fff8e9;
  --white: #ffffff;
  --ink-muted: rgba(5, 7, 5, 0.68);
  --paper-muted: rgba(255, 248, 233, 0.72);
  --line-dark: rgba(5, 7, 5, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 18px;
  padding: 12px 16px;
  clip: auto;
  background: var(--acid);
  color: var(--black);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' type='fractalNoise' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-meter {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: var(--scroll, 0%);
  height: 3px;
  background: var(--acid);
}

.site-header {
  position: fixed;
  inset: 22px 28px auto;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 70px;
  padding: 0 18px 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 5, 0.48);
  backdrop-filter: blur(24px);
  transition: transform 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  transform: translateY(-8px);
  background: rgba(5, 7, 5, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
  height: 52px;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  width: 72px;
  max-width: none;
  height: 72px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.brand-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer .brand {
  width: auto;
  min-width: 0;
  height: 64px;
}

.footer .brand-mark {
  width: 54px;
  height: 54px;
}

.footer .brand-logo {
  width: 92px;
  height: 92px;
}

.footer .brand-name {
  font-size: 16px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-link {
  position: relative;
  padding: 27px 0;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.menu-link:hover::after,
.nav-dropdown:focus-within .menu-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-trigger span {
  color: var(--acid);
  font-size: 14px;
  line-height: 1;
}

.mega-menu {
  position: fixed;
  left: clamp(22px, 4vw, 64px);
  right: clamp(22px, 4vw, 64px);
  top: 104px;
  max-height: min(72vh, 680px);
  padding: 22px;
  overflow: auto;
  color: var(--black);
  background:
    linear-gradient(rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    rgba(255, 250, 240, 0.94);
  background-size: 76px 76px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mega-menu-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-items: end;
  margin-bottom: 18px;
  padding: 8px 4px 18px;
  border-bottom: 1px solid rgba(5, 7, 5, 0.1);
}

.mega-menu-head span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mega-menu-head strong {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 12px;
}

.mega-grid a {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  color: rgba(5, 7, 5, 0.82);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 58, 39, 0.14);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-transform: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: rgba(207, 255, 53, 0.85);
  transform: translateY(-3px);
}

.mega-grid a span {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    #87a84a;
  border: 1px solid rgba(29, 58, 39, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  background: var(--acid);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 132px clamp(20px, 5vw, 76px) 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 73% 42%, rgba(207, 255, 53, 0.32), transparent 22%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.98), rgba(5, 7, 5, 0.46) 48%, rgba(5, 7, 5, 0.7));
}

.hero::after {
  content: "PACKAGING";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(100px, 17vw, 280px);
  line-height: 1;
  white-space: nowrap;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.14) blur(1px);
  transform: scale(calc(1.08 - var(--hero-progress, 0) * 0.035));
}

.hero-copy {
  max-width: 820px;
  transform: translateY(calc(var(--hero-progress, 0) * -80px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 900px;
  font-size: clamp(50px, 5.8vw, 94px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.hero-copy .hero-campaign-line {
  margin-top: 20px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.hero-copy .hero-summary {
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-4px);
}

.button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stage {
  position: relative;
  min-height: min(62vw, 760px);
  transform: translateY(calc(var(--hero-progress, 0) * -120px));
  overflow: visible;
}

.hero-product-frame {
  position: absolute;
  inset: 3% 0 5% 0;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--black);
  box-shadow: 0 56px 120px rgba(0, 0, 0, 0.58);
  transform:
    translate3d(calc(var(--mx, 0) * 20px), calc(var(--my, 0) * 14px), 0)
    perspective(1100px)
    rotateY(calc(var(--mx, 0) * -4deg))
    rotateX(calc(var(--my, 0) * 3deg));
  animation: floatMain 8s ease-in-out infinite;
}

.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.12);
}

.hero-product-frame > img,
.hero-product-frame::after {
  overflow: hidden;
}

.hero-product-frame > img {
  clip-path: inset(0);
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 820ms ease, transform 1600ms ease;
}

.hero-slide-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(207, 255, 53, 0.28), transparent 24%),
    linear-gradient(0deg, rgba(5, 7, 5, 0.82), transparent 48%);
  pointer-events: none;
}

.hero-product-frame figcaption {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 1;
  width: min(92%, 1180px);
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(240px, 1fr);
  gap: 22px;
  align-items: end;
  padding: 22px;
  background: rgba(5, 7, 5, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 50%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-product-frame figcaption span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-frame figcaption strong {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 44px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-spec-card {
  position: absolute;
  left: -4%;
  top: 12%;
  width: min(23vw, 320px);
  padding: 22px;
  color: var(--white);
  background: rgba(5, 7, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  transform: translate3d(calc(var(--mx, 0) * -32px), calc(var(--my, 0) * -20px), 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-spec-card span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-spec-card strong {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-spec-card p {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-stage.changing .hero-spec-card,
.hero-stage.changing .hero-product-frame figcaption {
  opacity: 0;
}

.hero-stage.changing .hero-product-frame figcaption {
  transform: translate(-50%, calc(50% + 10px));
}

.hero-slider-dots {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(5, 7, 5, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-slider-dots span {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.hero-slider-dots span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slider-dots span.active::after {
  animation: heroDot 3000ms linear both;
}

.light-beam {
  position: absolute;
  right: 4%;
  top: 36%;
  width: min(42vw, 660px);
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  filter: blur(3px);
  transform: rotate(-17deg);
  opacity: 0.62;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  align-self: end;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-bottom: 0;
}

.hero-proof span {
  padding: 18px;
  background: rgba(5, 7, 5, 0.52);
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.campaign-strip {
  overflow: hidden;
  background: var(--acid);
  color: var(--black);
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 300%;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
}

.ticker-group span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 18px clamp(28px, 3vw, 58px);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

h2 {
  max-width: 1050px;
  font-size: clamp(46px, 6vw, 104px);
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.story-media {
  min-height: 760px;
  overflow: hidden;
  background: var(--forest);
}

.story-media img,
.category-card img,
.quote-bg img,
.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p:not(.eyebrow),
.showcase-intro p:not(.eyebrow),
.materials-copy p,
.quote-panel > p {
  max-width: 720px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.72;
}

.story-points {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: var(--line-dark);
}

.story-points article {
  padding: 24px;
  background: var(--paper);
}

.story-points span,
.process-steps span,
.showcase-slide span {
  display: block;
  margin-bottom: 10px;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.story-points p {
  color: var(--ink-muted);
  line-height: 1.58;
}

.showcase {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(207, 255, 53, 0.2), transparent 25%),
    linear-gradient(140deg, var(--black), var(--forest));
}

.showcase-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(460px, 0.54fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: min(760px, 74vh);
  margin: calc(clamp(80px, 10vw, 150px) * -1) calc(clamp(20px, 5vw, 76px) * -1) 54px;
  padding: clamp(120px, 13vw, 190px) clamp(20px, 5vw, 76px) clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

.showcase-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.36), rgba(5, 7, 5, 0.88) 58%),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/product-showcase-section.png") left center / cover no-repeat;
  opacity: 0.92;
}

.showcase-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 35%, rgba(207, 255, 53, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.34), rgba(5, 7, 5, 0.88));
}

.showcase-intro .eyebrow,
.showcase-intro p:not(.eyebrow) {
  grid-column: 1;
  max-width: 560px;
  padding: 0;
}

.showcase-intro h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 840px;
  line-height: 1.02;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.showcase-intro p:not(.eyebrow) {
  color: var(--paper-muted);
}

.showcase-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5%) scale(0.98);
  transition: opacity 520ms ease, transform 620ms ease;
}

.showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.showcase-slide img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.showcase-slide h3 {
  font-size: clamp(46px, 6vw, 96px);
  line-height: 1;
  text-transform: uppercase;
}

.showcase-slide p {
  color: var(--paper-muted);
  font-size: 18px;
  line-height: 1.72;
}

.showcase-slide a {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line-light);
}

.showcase-controls button {
  min-height: 58px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.showcase-controls button.active {
  background: var(--acid);
  color: var(--black);
}

.category-section {
  background: var(--cream);
}

.entity-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 92px);
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 20%, rgba(207, 255, 53, 0.08), transparent 34%),
    var(--forest);
}

.entity-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.entity-intro h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.entity-intro > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.answer-card {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 7, 5, 0.34);
}

.answer-card > span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.answer-card h3 {
  margin-top: 46px;
  color: var(--cream);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
  text-transform: uppercase;
}

.answer-card p {
  margin: 20px 0 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.72;
}

.section-heading {
  margin-bottom: 48px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: 360px;
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
}

.category-card.large {
  grid-row: span 2;
}

.category-card.wide {
  grid-column: span 2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(5, 7, 5, 0.9));
}

.category-card img {
  transition: transform 700ms ease, opacity 700ms ease;
  opacity: 0.84;
}

.category-card:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.category-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
}

.category-card span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  margin-top: 12px;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(5, 7, 5, 0.15);
  border: 1px solid rgba(5, 7, 5, 0.12);
}

.product-link-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.product-link-grid a::after {
  content: "->";
  color: var(--forest);
}

.product-link-grid a:hover {
  color: var(--cream);
  background: var(--forest);
}

.product-link-grid a:hover::after {
  color: var(--acid);
}

.materials {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(34px, 6vw, 86px);
  color: var(--white);
  background: var(--black);
}

.materials-copy p {
  color: var(--paper-muted);
}

.material-conversion {
  display: grid;
  gap: 1px;
  margin-top: clamp(34px, 5vw, 72px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.material-conversion article {
  min-height: 148px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(207, 255, 53, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, transform 220ms ease;
}

.material-conversion article:hover {
  background:
    linear-gradient(135deg, rgba(207, 255, 53, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.085);
  transform: translateX(8px);
}

.material-conversion span {
  display: block;
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.material-conversion strong {
  display: block;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.material-conversion p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.62;
}

.material-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.material-proof-grid div {
  min-height: 106px;
  padding: 18px;
  background: rgba(5, 7, 5, 0.52);
}

.material-proof-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.material-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.material-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.material-display {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--charcoal);
}

.material-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 520ms ease;
}

.material-display.changing img {
  opacity: 0;
  transform: scale(1.04);
}

.material-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  background: rgba(5, 7, 5, 0.66);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.material-caption span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.material-caption p {
  color: var(--paper-muted);
  line-height: 1.58;
}

.material-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.material-tabs button {
  min-height: 70px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.material-tabs button.active {
  background: var(--acid);
  color: var(--black);
}

.process {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.process-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.9), rgba(5, 7, 5, 0.24) 56%, rgba(5, 7, 5, 0.72));
}

.process-content {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line-light);
}

.process-steps article {
  min-height: 250px;
  padding: 24px;
  background: rgba(5, 7, 5, 0.54);
  backdrop-filter: blur(14px);
}

.process-steps h3 {
  margin-top: 52px;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps p {
  color: var(--paper-muted);
  line-height: 1.58;
}

.quote {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-items: center;
  padding: clamp(110px, 10vw, 150px) clamp(20px, 5vw, 76px);
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(207, 255, 53, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.78), rgba(5, 7, 5, 0.42) 50%, rgba(5, 7, 5, 0.78));
}

.quote-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(26px, 4vw, 56px);
  background: rgba(5, 7, 5, 0.66);
  border: 1px solid var(--line-light);
  box-shadow: 0 54px 120px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
}

.quote-panel > p {
  color: var(--paper-muted);
}

.quote-panel .eyebrow,
.quote-panel h2 {
  grid-column: 1;
}

.quote-panel h2 {
  font-size: clamp(36px, 4vw, 68px);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.quote-form {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px;
}

.quote-form select option {
  background: #1a1c18;
  color: #f0f0ec;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
}

.form-status {
  min-height: 0;
  padding: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status:not(:empty) {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(207, 255, 53, 0.4);
  background: rgba(207, 255, 53, 0.08);
}

.quote-form :invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff8877;
}

.mobile-quote-cta {
  display: none;
}

.final-cta {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.final-cta img {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.08);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(5, 7, 5, 0.18), rgba(5, 7, 5, 0.82));
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  text-align: center;
}

.final-copy h2 {
  margin-inline: auto;
}

.final-copy .button {
  margin-top: 34px;
}

.testimonials-bottom {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 68% 32%, rgba(207, 255, 53, 0.18), transparent 30%),
    linear-gradient(100deg, rgba(5, 7, 5, 0.94), rgba(5, 7, 5, 0.58) 52%, rgba(5, 7, 5, 0.86)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/corporate-brand-storytelling.png") center / cover no-repeat;
  overflow: hidden;
}

.testimonials-bottom::before {
  content: "TRUST";
  position: absolute;
  left: -4vw;
  top: 16%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(110px, 20vw, 340px);
  line-height: 1;
  pointer-events: none;
}

.testimonials-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.bottom-heading {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  margin: 0;
  text-align: left;
}

.bottom-heading h2 {
  font-size: clamp(54px, 6.5vw, 112px);
  line-height: 1.02;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.testimonial-cards {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
  align-items: stretch;
}

.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 252, 242, 0.95), rgba(230, 222, 199, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.testimonial-card:nth-child(1) {
  transform: translateY(46px);
}

.testimonial-card:nth-child(3) {
  transform: translateY(-34px);
}

.testimonial-card span {
  color: var(--black);
  letter-spacing: 3px;
  font-weight: 900;
}

.testimonial-card.featured span {
  color: #b89616;
}

.testimonial-card p {
  margin: 26px 0 auto;
  font-weight: 850;
  line-height: 1.5;
}

.testimonial-card.featured p {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card strong {
  display: block;
  margin-top: 34px;
  color: rgba(5, 7, 5, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.faq-bottom {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: center;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(245, 240, 224, 0.96), rgba(245, 240, 224, 0.78) 44%, rgba(245, 240, 224, 0.9)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/process-section-background.png") center / cover no-repeat;
  overflow: hidden;
}

.faq-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 5, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.faq-bottom::after {
  content: "ANSWERS";
  position: absolute;
  right: -3vw;
  bottom: 3%;
  color: rgba(5, 7, 5, 0.055);
  font-family: var(--serif);
  font-size: clamp(96px, 16vw, 260px);
  line-height: 1;
  pointer-events: none;
}

.faq-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  justify-self: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-card h2 {
  font-size: clamp(54px, 6.5vw, 108px);
  line-height: 1.02;
}

.faq-card p {
  color: var(--ink-muted);
  max-width: 520px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.64;
}

.faq-accordion {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.faq-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 22px 24px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--black);
  text-align: left;
  border: 1px solid rgba(5, 7, 5, 0.08);
  box-shadow: 0 18px 45px rgba(5, 7, 5, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.faq-row:hover,
.faq-row[aria-expanded="true"] {
  transform: translateX(-12px);
  background: var(--paper);
  box-shadow: 0 28px 68px rgba(5, 7, 5, 0.16);
}

.faq-row span,
.faq-row em {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--acid);
  font-style: normal;
  font-weight: 900;
}

.faq-row em {
  background: #eee7c8;
  color: var(--black);
}

.faq-row strong {
  font-weight: 900;
}

.faq-row p {
  grid-column: 2 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-muted);
  line-height: 1.55;
  transition: max-height 220ms ease;
}

.faq-row[aria-expanded="true"] p {
  max-height: 120px;
}

.newsletter-bottom {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(90px, 10vw, 150px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 74% 36%, rgba(207, 255, 53, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.94), rgba(5, 7, 5, 0.52), rgba(5, 7, 5, 0.9)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/custom-packaging-cta.png") center / cover no-repeat;
  overflow: hidden;
}

.newsletter-bottom::before {
  content: "INSIGHT";
  position: absolute;
  left: -3vw;
  top: 8%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(96px, 17vw, 280px);
  line-height: 1;
  pointer-events: none;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
  text-align: center;
  margin-top: 0;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 0;
  background: rgba(5, 7, 5, 0.48);
  color: var(--white);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.newsletter-card h2 {
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.02;
}

.newsletter-card h2 span {
  color: var(--acid);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  width: 100%;
  max-width: 560px;
}

.newsletter-msg {
  font-size: 14px;
  letter-spacing: 0.04em;
  min-height: 20px;
  margin-top: 4px;
}

.newsletter-form input {
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  min-height: 62px;
  border: 0;
  border-radius: 0;
  padding: 0 34px;
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  position: relative;
  padding: 120px clamp(20px, 5vw, 76px) 72px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #132413, #071006);
  background-size: 96px 96px, 96px 96px, auto;
}

.footer-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.footer p,
.footer a {
  color: var(--paper-muted);
}

.footer-brand p {
  margin: 0;
  max-width: 290px;
  line-height: 1.6;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
}

.footer nav a,
.footer-newsletter p {
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  font-weight: 900;
}

.footer-newsletter {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.16);
}

.footer-newsletter input,
.footer-newsletter button {
  width: 100%;
  min-height: 34px;
  border: 0;
  margin-top: 12px;
  padding: 0 12px;
}

.footer-newsletter button {
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
}

/* Default: visible — JS adds js-ready to body to enable animations */
.reveal { opacity: 1; transform: none; transition: opacity 760ms ease, transform 760ms ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(42px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

@keyframes floatMain {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -24px; }
}

@keyframes floatSmall {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 18px; }
}

@keyframes heroDot {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line-light);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: var(--white);
  }

  .menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 28px;
    background: rgba(5, 7, 5, 0.94);
  }

  .menu.open {
    display: flex;
  }

  .menu-link {
    padding: 8px 0;
  }

  .nav-dropdown,
  .products-trigger,
  .mega-menu {
    width: 100%;
  }

  .mega-menu {
    position: static;
    max-height: none;
    margin-top: 10px;
    padding: 16px;
    color: var(--black);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .mega-menu-head {
    grid-template-columns: 1fr;
  }

  .mega-menu-head strong {
    font-size: 42px;
  }

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

  .header-cta {
    justify-self: end;
  }

  .hero,
  .brand-story,
  .showcase-intro,
  .showcase-slide,
  .materials,
  .entity-section,
  .quote-panel,
  .testimonials-bottom,
  .faq-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-story > *,
  .showcase-intro > *,
  .entity-section > *,
  .quote-panel > * {
    min-width: 0;
    max-width: 100%;
  }

  .entity-intro {
    position: static;
  }

  .quote-form {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .showcase-intro {
    min-height: 680px;
  }

  .showcase-intro .eyebrow,
  .showcase-intro p:not(.eyebrow),
  .showcase-intro h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .showcase-intro::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.28), rgba(5, 7, 5, 0.9) 62%),
      url("https://ecoboxstudio.com/wp-content/uploads/2026/06/product-showcase-section.png") center / cover no-repeat;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-spec-card {
    left: 0;
    width: min(42vw, 320px);
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card.large,
  .category-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .material-tabs,
  .material-proof-grid,
  .process-steps,
  .testimonial-cards,
  .newsletter-card,
  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-bottom,
  .faq-bottom {
    min-height: auto;
  }

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(3) {
    transform: none;
  }

  .faq-card,
  .bottom-heading {
    width: min(820px, 100%);
  }

  .footer-shell {
    width: min(760px, 100%);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .quote-panel {
    grid-template-columns: 1fr;
  }
  .quote-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    inset: 10px 10px auto;
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 16px 0;
  }

  .showcase-intro {
    min-height: 620px;
    padding-top: 110px;
  }

  .hero::after {
    top: 23%;
    font-size: 29vw;
  }

  h1 {
    font-size: clamp(42px, 12.5vw, 62px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-copy .hero-campaign-line {
    font-size: clamp(20px, 7vw, 28px);
  }

  .hero-copy .hero-summary {
    font-size: 16px;
    line-height: 1.58;
  }

  .entity-section {
    grid-template-columns: 1fr;
  }

  .entity-intro {
    position: static;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .answer-card {
    min-height: auto;
  }

  .product-link-grid {
    grid-template-columns: 1fr;
  }

  .mobile-quote-cta {
    position: fixed;
    z-index: 85;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--acid);
    border: 1px solid var(--acid);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-cta .mobile-quote-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-product-frame {
    width: 84vw;
    height: 56vw;
    inset: 0;
  }

  .hero-product-frame figcaption {
    left: 50%;
    right: auto;
    bottom: 0;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 16px;
    transform: translate(-50%, 50%);
  }

  .hero-spec-card {
    display: none;
  }

  .hero-proof,
  .showcase-controls,
  .category-grid,
  .material-tabs,
  .material-proof-grid,
  .process-steps,
  .quote-form,
  .testimonial-cards,
  .faq-bottom,
  .newsletter-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-grid a {
    min-height: 54px;
  }

  .testimonials-bottom,
  .faq-bottom,
  .newsletter-bottom {
    padding-inline: 16px;
  }

  .testimonial-card,
  .faq-row,
  .newsletter-card,
  .footer-shell {
    padding: 22px;
  }

  .faq-row:hover,
  .faq-row[aria-expanded="true"] {
    transform: none;
  }

  .faq-card {
    justify-self: stretch;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 999px;
  }

  .story-media {
    min-height: 420px;
  }

  .showcase-stage {
    min-height: 920px;
  }

  .showcase-slide img {
    height: 420px;
  }

  .category-card {
    min-height: 430px;
  }

  .material-display {
    min-height: 470px;
  }

  .quote {
    padding: 100px 16px;
  }
}

@media (max-width: 900px) {
  .answer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section,
  .showcase-intro,
  .quote-panel {
    min-width: 0;
    max-width: 100%;
  }

  .portfolio-film-section {
    max-width: 100%;
    overflow: hidden;
  }

  .portfolio-film-scroll {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overscroll-behavior-inline: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --black: #050705;
  --charcoal: #0d110c;
  --forest: #102618;
  --green: #1d3a27;
  --acid: #cfff35;
  --gold: #d8b56b;
  --kraft: #b9844a;
  --cream: #f2ead8;
  --paper: #fff8e9;
  --white: #ffffff;
  --ink-muted: rgba(5, 7, 5, 0.68);
  --paper-muted: rgba(255, 248, 233, 0.72);
  --line-dark: rgba(5, 7, 5, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 18px;
  padding: 12px 16px;
  clip: auto;
  background: var(--acid);
  color: var(--black);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' type='fractalNoise' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-meter {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: var(--scroll, 0%);
  height: 3px;
  background: var(--acid);
}

.site-header {
  position: fixed;
  inset: 22px 28px auto;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 70px;
  padding: 0 18px 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 5, 0.48);
  backdrop-filter: blur(24px);
  transition: transform 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  transform: translateY(-8px);
  background: rgba(5, 7, 5, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
  height: 52px;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  width: 72px;
  max-width: none;
  height: 72px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.brand-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer .brand {
  width: auto;
  min-width: 0;
  height: 64px;
}

.footer .brand-mark {
  width: 54px;
  height: 54px;
}

.footer .brand-logo {
  width: 92px;
  height: 92px;
}

.footer .brand-name {
  font-size: 16px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-link {
  position: relative;
  padding: 27px 0;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.menu-link:hover::after,
.nav-dropdown:focus-within .menu-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-trigger span {
  color: var(--acid);
  font-size: 14px;
  line-height: 1;
}

.mega-menu {
  position: fixed;
  left: clamp(22px, 4vw, 64px);
  right: clamp(22px, 4vw, 64px);
  top: 104px;
  max-height: min(72vh, 680px);
  padding: 22px;
  overflow: auto;
  color: var(--black);
  background:
    linear-gradient(rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    rgba(255, 250, 240, 0.94);
  background-size: 76px 76px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mega-menu-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-items: end;
  margin-bottom: 18px;
  padding: 8px 4px 18px;
  border-bottom: 1px solid rgba(5, 7, 5, 0.1);
}

.mega-menu-head span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mega-menu-head strong {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 12px;
}

.mega-grid a {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  color: rgba(5, 7, 5, 0.82);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 58, 39, 0.14);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-transform: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: rgba(207, 255, 53, 0.85);
  transform: translateY(-3px);
}

.mega-grid a span {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    #87a84a;
  border: 1px solid rgba(29, 58, 39, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  background: var(--acid);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 132px clamp(20px, 5vw, 76px) 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 73% 42%, rgba(207, 255, 53, 0.32), transparent 22%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.98), rgba(5, 7, 5, 0.46) 48%, rgba(5, 7, 5, 0.7));
}

.hero::after {
  content: "PACKAGING";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(100px, 17vw, 280px);
  line-height: 1;
  white-space: nowrap;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.14) blur(1px);
  transform: scale(calc(1.08 - var(--hero-progress, 0) * 0.035));
}

.hero-copy {
  max-width: 820px;
  transform: translateY(calc(var(--hero-progress, 0) * -80px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 900px;
  font-size: clamp(50px, 5.8vw, 94px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.hero-copy .hero-campaign-line {
  margin-top: 20px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.hero-copy .hero-summary {
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-4px);
}

.button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stage {
  position: relative;
  min-height: min(62vw, 760px);
  transform: translateY(calc(var(--hero-progress, 0) * -120px));
  overflow: visible;
}

.hero-product-frame {
  position: absolute;
  inset: 3% 0 5% 0;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--black);
  box-shadow: 0 56px 120px rgba(0, 0, 0, 0.58);
  transform:
    translate3d(calc(var(--mx, 0) * 20px), calc(var(--my, 0) * 14px), 0)
    perspective(1100px)
    rotateY(calc(var(--mx, 0) * -4deg))
    rotateX(calc(var(--my, 0) * 3deg));
  animation: floatMain 8s ease-in-out infinite;
}

.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.12);
}

.hero-product-frame > img,
.hero-product-frame::after {
  overflow: hidden;
}

.hero-product-frame > img {
  clip-path: inset(0);
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 820ms ease, transform 1600ms ease;
}

.hero-slide-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(207, 255, 53, 0.28), transparent 24%),
    linear-gradient(0deg, rgba(5, 7, 5, 0.82), transparent 48%);
  pointer-events: none;
}

.hero-product-frame figcaption {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 1;
  width: min(92%, 1180px);
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(240px, 1fr);
  gap: 22px;
  align-items: end;
  padding: 22px;
  background: rgba(5, 7, 5, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 50%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-product-frame figcaption span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-frame figcaption strong {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 44px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-spec-card {
  position: absolute;
  left: -4%;
  top: 12%;
  width: min(23vw, 320px);
  padding: 22px;
  color: var(--white);
  background: rgba(5, 7, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  transform: translate3d(calc(var(--mx, 0) * -32px), calc(var(--my, 0) * -20px), 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-spec-card span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-spec-card strong {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-spec-card p {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-stage.changing .hero-spec-card,
.hero-stage.changing .hero-product-frame figcaption {
  opacity: 0;
}

.hero-stage.changing .hero-product-frame figcaption {
  transform: translate(-50%, calc(50% + 10px));
}

.hero-slider-dots {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(5, 7, 5, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-slider-dots span {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.hero-slider-dots span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slider-dots span.active::after {
  animation: heroDot 3000ms linear both;
}

.light-beam {
  position: absolute;
  right: 4%;
  top: 36%;
  width: min(42vw, 660px);
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  filter: blur(3px);
  transform: rotate(-17deg);
  opacity: 0.62;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  align-self: end;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-bottom: 0;
}

.hero-proof span {
  padding: 18px;
  background: rgba(5, 7, 5, 0.52);
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.campaign-strip {
  overflow: hidden;
  background: var(--acid);
  color: var(--black);
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 300%;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
}

.ticker-group span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 18px clamp(28px, 3vw, 58px);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

h2 {
  max-width: 1050px;
  font-size: clamp(46px, 6vw, 104px);
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.story-media {
  min-height: 760px;
  overflow: hidden;
  background: var(--forest);
}

.story-media img,
.category-card img,
.quote-bg img,
.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p:not(.eyebrow),
.showcase-intro p:not(.eyebrow),
.materials-copy p,
.quote-panel > p {
  max-width: 720px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.72;
}

.story-points {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: var(--line-dark);
}

.story-points article {
  padding: 24px;
  background: var(--paper);
}

.story-points span,
.process-steps span,
.showcase-slide span {
  display: block;
  margin-bottom: 10px;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.story-points p {
  color: var(--ink-muted);
  line-height: 1.58;
}

.showcase {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(207, 255, 53, 0.2), transparent 25%),
    linear-gradient(140deg, var(--black), var(--forest));
}

.showcase-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(460px, 0.54fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: min(760px, 74vh);
  margin: calc(clamp(80px, 10vw, 150px) * -1) calc(clamp(20px, 5vw, 76px) * -1) 54px;
  padding: clamp(120px, 13vw, 190px) clamp(20px, 5vw, 76px) clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

.showcase-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.36), rgba(5, 7, 5, 0.88) 58%),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/product-showcase-section.png") left center / cover no-repeat;
  opacity: 0.92;
}

.showcase-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 35%, rgba(207, 255, 53, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.34), rgba(5, 7, 5, 0.88));
}

.showcase-intro .eyebrow,
.showcase-intro p:not(.eyebrow) {
  grid-column: 1;
  max-width: 560px;
  padding: 0;
}

.showcase-intro h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 840px;
  line-height: 1.02;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.showcase-intro p:not(.eyebrow) {
  color: var(--paper-muted);
}

.showcase-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5%) scale(0.98);
  transition: opacity 520ms ease, transform 620ms ease;
}

.showcase-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.showcase-slide img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.showcase-slide h3 {
  font-size: clamp(46px, 6vw, 96px);
  line-height: 1;
  text-transform: uppercase;
}

.showcase-slide p {
  color: var(--paper-muted);
  font-size: 18px;
  line-height: 1.72;
}

.showcase-slide a {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line-light);
}

.showcase-controls button {
  min-height: 58px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.showcase-controls button.active {
  background: var(--acid);
  color: var(--black);
}

.category-section {
  background: var(--cream);
}

.entity-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 92px);
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 20%, rgba(207, 255, 53, 0.08), transparent 34%),
    var(--forest);
}

.entity-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.entity-intro h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.entity-intro > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.answer-card {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 7, 5, 0.34);
}

.answer-card > span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.answer-card h3 {
  margin-top: 46px;
  color: var(--cream);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.04;
  text-transform: uppercase;
}

.answer-card p {
  margin: 20px 0 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.72;
}

.section-heading {
  margin-bottom: 48px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: 360px;
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
}

.category-card.large {
  grid-row: span 2;
}

.category-card.wide {
  grid-column: span 2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(5, 7, 5, 0.9));
}

.category-card img {
  transition: transform 700ms ease, opacity 700ms ease;
  opacity: 0.84;
}

.category-card:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.category-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
}

.category-card span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  margin-top: 12px;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(5, 7, 5, 0.15);
  border: 1px solid rgba(5, 7, 5, 0.12);
}

.product-link-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.product-link-grid a::after {
  content: "->";
  color: var(--forest);
}

.product-link-grid a:hover {
  color: var(--cream);
  background: var(--forest);
}

.product-link-grid a:hover::after {
  color: var(--acid);
}

.materials {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(34px, 6vw, 86px);
  color: var(--white);
  background: var(--black);
}

.materials-copy p {
  color: var(--paper-muted);
}

.material-conversion {
  display: grid;
  gap: 1px;
  margin-top: clamp(34px, 5vw, 72px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.material-conversion article {
  min-height: 148px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(207, 255, 53, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, transform 220ms ease;
}

.material-conversion article:hover {
  background:
    linear-gradient(135deg, rgba(207, 255, 53, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.085);
  transform: translateX(8px);
}

.material-conversion span {
  display: block;
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.material-conversion strong {
  display: block;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.material-conversion p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.62;
}

.material-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.material-proof-grid div {
  min-height: 106px;
  padding: 18px;
  background: rgba(5, 7, 5, 0.52);
}

.material-proof-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.material-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.material-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.material-display {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--charcoal);
}

.material-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 520ms ease;
}

.material-display.changing img {
  opacity: 0;
  transform: scale(1.04);
}

.material-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  background: rgba(5, 7, 5, 0.66);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.material-caption span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.material-caption p {
  color: var(--paper-muted);
  line-height: 1.58;
}

.material-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-light);
}

.material-tabs button {
  min-height: 70px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.material-tabs button.active {
  background: var(--acid);
  color: var(--black);
}

.process {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.process-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.9), rgba(5, 7, 5, 0.24) 56%, rgba(5, 7, 5, 0.72));
}

.process-content {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line-light);
}

.process-steps article {
  min-height: 250px;
  padding: 24px;
  background: rgba(5, 7, 5, 0.54);
  backdrop-filter: blur(14px);
}

.process-steps h3 {
  margin-top: 52px;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps p {
  color: var(--paper-muted);
  line-height: 1.58;
}

.quote {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-items: center;
  padding: clamp(110px, 10vw, 150px) clamp(20px, 5vw, 76px);
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(207, 255, 53, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.78), rgba(5, 7, 5, 0.42) 50%, rgba(5, 7, 5, 0.78));
}

.quote-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(26px, 4vw, 56px);
  background: rgba(5, 7, 5, 0.66);
  border: 1px solid var(--line-light);
  box-shadow: 0 54px 120px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
}

.quote-panel > p {
  color: var(--paper-muted);
}

.quote-panel .eyebrow,
.quote-panel h2 {
  grid-column: 1;
}

.quote-panel h2 {
  font-size: clamp(36px, 4vw, 68px);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.quote-form {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px;
}

.quote-form select option {
  background: #1a1c18;
  color: #f0f0ec;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
}

.form-status {
  min-height: 0;
  padding: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status:not(:empty) {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(207, 255, 53, 0.4);
  background: rgba(207, 255, 53, 0.08);
}

.quote-form :invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff8877;
}

.mobile-quote-cta {
  display: none;
}

.final-cta {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.final-cta img {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.08);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(5, 7, 5, 0.18), rgba(5, 7, 5, 0.82));
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  text-align: center;
}

.final-copy h2 {
  margin-inline: auto;
}

.final-copy .button {
  margin-top: 34px;
}

.testimonials-bottom {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 68% 32%, rgba(207, 255, 53, 0.18), transparent 30%),
    linear-gradient(100deg, rgba(5, 7, 5, 0.94), rgba(5, 7, 5, 0.58) 52%, rgba(5, 7, 5, 0.86)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/corporate-brand-storytelling.png") center / cover no-repeat;
  overflow: hidden;
}

.testimonials-bottom::before {
  content: "TRUST";
  position: absolute;
  left: -4vw;
  top: 16%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(110px, 20vw, 340px);
  line-height: 1;
  pointer-events: none;
}

.testimonials-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.bottom-heading {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  margin: 0;
  text-align: left;
}

.bottom-heading h2 {
  font-size: clamp(54px, 6.5vw, 112px);
  line-height: 1.02;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.testimonial-cards {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
  align-items: stretch;
}

.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 252, 242, 0.95), rgba(230, 222, 199, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.testimonial-card:nth-child(1) {
  transform: translateY(46px);
}

.testimonial-card:nth-child(3) {
  transform: translateY(-34px);
}

.testimonial-card span {
  color: var(--black);
  letter-spacing: 3px;
  font-weight: 900;
}

.testimonial-card.featured span {
  color: #b89616;
}

.testimonial-card p {
  margin: 26px 0 auto;
  font-weight: 850;
  line-height: 1.5;
}

.testimonial-card.featured p {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card strong {
  display: block;
  margin-top: 34px;
  color: rgba(5, 7, 5, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.faq-bottom {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: center;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(245, 240, 224, 0.96), rgba(245, 240, 224, 0.78) 44%, rgba(245, 240, 224, 0.9)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/process-section-background.png") center / cover no-repeat;
  overflow: hidden;
}

.faq-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 7, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 5, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.faq-bottom::after {
  content: "ANSWERS";
  position: absolute;
  right: -3vw;
  bottom: 3%;
  color: rgba(5, 7, 5, 0.055);
  font-family: var(--serif);
  font-size: clamp(96px, 16vw, 260px);
  line-height: 1;
  pointer-events: none;
}

.faq-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  justify-self: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-card h2 {
  font-size: clamp(54px, 6.5vw, 108px);
  line-height: 1.02;
}

.faq-card p {
  color: var(--ink-muted);
  max-width: 520px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.64;
}

.faq-accordion {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.faq-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 22px 24px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--black);
  text-align: left;
  border: 1px solid rgba(5, 7, 5, 0.08);
  box-shadow: 0 18px 45px rgba(5, 7, 5, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.faq-row:hover,
.faq-row[aria-expanded="true"] {
  transform: translateX(-12px);
  background: var(--paper);
  box-shadow: 0 28px 68px rgba(5, 7, 5, 0.16);
}

.faq-row span,
.faq-row em {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--acid);
  font-style: normal;
  font-weight: 900;
}

.faq-row em {
  background: #eee7c8;
  color: var(--black);
}

.faq-row strong {
  font-weight: 900;
}

.faq-row p {
  grid-column: 2 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-muted);
  line-height: 1.55;
  transition: max-height 220ms ease;
}

.faq-row[aria-expanded="true"] p {
  max-height: 120px;
}

.newsletter-bottom {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(90px, 10vw, 150px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 74% 36%, rgba(207, 255, 53, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.94), rgba(5, 7, 5, 0.52), rgba(5, 7, 5, 0.9)),
    url("https://ecoboxstudio.com/wp-content/uploads/2026/06/custom-packaging-cta.png") center / cover no-repeat;
  overflow: hidden;
}

.newsletter-bottom::before {
  content: "INSIGHT";
  position: absolute;
  left: -3vw;
  top: 8%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(96px, 17vw, 280px);
  line-height: 1;
  pointer-events: none;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
  text-align: center;
  margin-top: 0;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 0;
  background: rgba(5, 7, 5, 0.48);
  color: var(--white);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.newsletter-card h2 {
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.02;
}

.newsletter-card h2 span {
  color: var(--acid);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  width: 100%;
  max-width: 560px;
}

.newsletter-msg {
  font-size: 14px;
  letter-spacing: 0.04em;
  min-height: 20px;
  margin-top: 4px;
}

.newsletter-form input {
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  min-height: 62px;
  border: 0;
  border-radius: 0;
  padding: 0 34px;
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  position: relative;
  padding: 120px clamp(20px, 5vw, 76px) 72px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #132413, #071006);
  background-size: 96px 96px, 96px 96px, auto;
}

.footer-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.footer p,
.footer a {
  color: var(--paper-muted);
}

.footer-brand p {
  margin: 0;
  max-width: 290px;
  line-height: 1.6;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
}

.footer nav a,
.footer-newsletter p {
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  font-weight: 900;
}

.footer-newsletter {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.16);
}

.footer-newsletter input,
.footer-newsletter button {
  width: 100%;
  min-height: 34px;
  border: 0;
  margin-top: 12px;
  padding: 0 12px;
}

.footer-newsletter button {
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
}

/* Default: visible — JS adds js-ready to body to enable animations */
.reveal { opacity: 1; transform: none; transition: opacity 760ms ease, transform 760ms ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(42px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

@keyframes floatMain {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -24px; }
}

@keyframes floatSmall {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 18px; }
}

@keyframes heroDot {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line-light);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: var(--white);
  }

  .menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 28px;
    background: rgba(5, 7, 5, 0.94);
  }

  .menu.open {
    display: flex;
  }

  .menu-link {
    padding: 8px 0;
  }

  .nav-dropdown,
  .products-trigger,
  .mega-menu {
    width: 100%;
  }

  .mega-menu {
    position: static;
    max-height: none;
    margin-top: 10px;
    padding: 16px;
    color: var(--black);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .mega-menu-head {
    grid-template-columns: 1fr;
  }

  .mega-menu-head strong {
    font-size: 42px;
  }

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

  .header-cta {
    justify-self: end;
  }

  .hero,
  .brand-story,
  .showcase-intro,
  .showcase-slide,
  .materials,
  .entity-section,
  .quote-panel,
  .testimonials-bottom,
  .faq-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-story > *,
  .showcase-intro > *,
  .entity-section > *,
  .quote-panel > * {
    min-width: 0;
    max-width: 100%;
  }

  .entity-intro {
    position: static;
  }

  .quote-form {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .showcase-intro {
    min-height: 680px;
  }

  .showcase-intro .eyebrow,
  .showcase-intro p:not(.eyebrow),
  .showcase-intro h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .showcase-intro::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.28), rgba(5, 7, 5, 0.9) 62%),
      url("https://ecoboxstudio.com/wp-content/uploads/2026/06/product-showcase-section.png") center / cover no-repeat;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-spec-card {
    left: 0;
    width: min(42vw, 320px);
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card.large,
  .category-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .material-tabs,
  .material-proof-grid,
  .process-steps,
  .testimonial-cards,
  .newsletter-card,
  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-bottom,
  .faq-bottom {
    min-height: auto;
  }

  .testimonial-card:nth-child(1),
  .testimonial-card:nth-child(3) {
    transform: none;
  }

  .faq-card,
  .bottom-heading {
    width: min(820px, 100%);
  }

  .footer-shell {
    width: min(760px, 100%);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .quote-panel {
    grid-template-columns: 1fr;
  }
  .quote-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    inset: 10px 10px auto;
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 16px 0;
  }

  .showcase-intro {
    min-height: 620px;
    padding-top: 110px;
  }

  .hero::after {
    top: 23%;
    font-size: 29vw;
  }

  h1 {
    font-size: clamp(42px, 12.5vw, 62px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-copy .hero-campaign-line {
    font-size: clamp(20px, 7vw, 28px);
  }

  .hero-copy .hero-summary {
    font-size: 16px;
    line-height: 1.58;
  }

  .entity-section {
    grid-template-columns: 1fr;
  }

  .entity-intro {
    position: static;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .answer-card {
    min-height: auto;
  }

  .product-link-grid {
    grid-template-columns: 1fr;
  }

  .mobile-quote-cta {
    position: fixed;
    z-index: 85;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--acid);
    border: 1px solid var(--acid);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-cta .mobile-quote-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-product-frame {
    width: 84vw;
    height: 56vw;
    inset: 0;
  }

  .hero-product-frame figcaption {
    left: 50%;
    right: auto;
    bottom: 0;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 16px;
    transform: translate(-50%, 50%);
  }

  .hero-spec-card {
    display: none;
  }

  .hero-proof,
  .showcase-controls,
  .category-grid,
  .material-tabs,
  .material-proof-grid,
  .process-steps,
  .quote-form,
  .testimonial-cards,
  .faq-bottom,
  .newsletter-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-grid a {
    min-height: 54px;
  }

  .testimonials-bottom,
  .faq-bottom,
  .newsletter-bottom {
    padding-inline: 16px;
  }

  .testimonial-card,
  .faq-row,
  .newsletter-card,
  .footer-shell {
    padding: 22px;
  }

  .faq-row:hover,
  .faq-row[aria-expanded="true"] {
    transform: none;
  }

  .faq-card {
    justify-self: stretch;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 999px;
  }

  .story-media {
    min-height: 420px;
  }

  .showcase-stage {
    min-height: 920px;
  }

  .showcase-slide img {
    height: 420px;
  }

  .category-card {
    min-height: 430px;
  }

  .material-display {
    min-height: 470px;
  }

  .quote {
    padding: 100px 16px;
  }
}

@media (max-width: 900px) {
  .answer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section,
  .showcase-intro,
  .quote-panel {
    min-width: 0;
    max-width: 100%;
  }

  .portfolio-film-section {
    max-width: 100%;
    overflow: hidden;
  }

  .portfolio-film-scroll {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overscroll-behavior-inline: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
