/* ════════════════════════════════════════════════════════════
   PACKASA — Enterprise Light Theme
   Palette: Cream + Deep Ink + Copper + Sage accents
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* core palette inspired by premium packaging / kraft / luxury */
  --ink:       #1A1F2E;   /* deep navy ink */
  --ink-2:     #212637;
  --ink-soft:  #4A5160;
  --muted:     #7B8194;

  --cream:     #FAF5EC;   /* main bg — warm paper cream */
  --cream-2:   #F4EBDA;
  --cream-3:   #EDE0C9;
  --paper:     #FFFFFF;

  --copper:    #D97757;   /* primary accent — warm copper / terracotta */
  --copper-d:  #B85E3F;
  --copper-l:  #F0A484;

  --kraft:     #C29B6B;   /* secondary — kraft brown */
  --sage:      #7A9266;   /* eco accent */
  --gold:      #C9A961;
  --blush:     #E8C9B4;

  --border:    #E5DBC4;
  --shadow:    0 14px 40px rgba(33, 38, 55, 0.08);
  --shadow-lg: 0 30px 80px rgba(33, 38, 55, 0.14);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --display:'Anton', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: var(--cream); }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--ink-soft); border-radius: 99px; border: 2px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 140px 0; position: relative; }

/* ───────────── LOADER ─────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stage {
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.loader-brand {
  color: var(--ink);
  animation: logoFadeIn .8s ease both;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.loader-bar { width: 240px; height: 2px; background: var(--border); position: relative; }
.loader-bar span {
  position: absolute; inset: 0;
  background: var(--ink);
  transform-origin: left; transform: scaleX(0);
  transition: transform .1s linear;
}

/* ───────────── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.nav.scrolled {
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
  padding: 8px 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}

/* ─── PACKASA LOGO (actual image, untouched) ───────────── */
/* image is 1024×1536 — logo content sits in middle band (y 608-882).
   crop to that band via object-fit + object-position. */
.logo {
  display: block;
  object-fit: cover;
  object-position: 50% 48.5%;
  user-select: none;
}
.logo-nav    { height: 78px;  width: 220px; }
.logo-footer {
  height: 110px; width: 320px;
  filter: brightness(0) invert(1); opacity: .95;
}
.logo-loader { height: 170px; width: 480px; }
.nav-menu { display: flex; gap: 30px; margin-left: 48px; }
.nav-menu a {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 14.5px;
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--copper); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 13.5px;
}
.nav-phone svg { color: var(--copper); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 360px;
  background: var(--cream); z-index: 799;
  display: flex; flex-direction: column; gap: 4px;
  padding: 100px 40px 40px;
  transform: translateX(100%); transition: transform .35s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  text-decoration: none; color: var(--ink); font-size: 22px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-family: var(--serif);
}
.mobile-menu a.btn { margin-top: 20px; border: none; }

/* ───────────── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 99px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 4px 14px rgba(33,38,55,0.18);
}
.btn-primary:hover { background: var(--copper); color: var(--cream); box-shadow: 0 6px 22px rgba(217,119,87,0.4); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-light {
  background: var(--cream); color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.btn-light:hover { background: var(--copper); color: var(--cream); }

/* ═════════════ HERO ════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .5;
}
.blob-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--blush); animation: blobFloat 14s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: var(--cream-3); animation: blobFloat 18s ease-in-out infinite reverse; }
.blob-3 { width: 400px; height: 400px; top: 40%; left: 40%; background: rgba(217,119,87,0.18); animation: blobFloat 22s ease-in-out infinite; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.05); }
  66%     { transform: translate(-30px,40px) scale(0.95); }
}

.hero-grid-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}

/* hero eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 99px;
  background: rgba(33, 38, 55, 0.06);
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--copper-d);
  margin-bottom: 18px;
}
.eyebrow .dot, .hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--copper);
  box-shadow: 0 0 0 4px rgba(217,119,87,0.18);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(217,119,87,0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(217,119,87,0.04); }
}

/* hero title */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 112px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  animation: wordRise .9s cubic-bezier(.5,.1,.1,1) forwards;
}
.hero-title .line:nth-child(2) .word { animation-delay: .12s; }
.hero-title .line:nth-child(3) .word { animation-delay: .24s; }
@keyframes wordRise { to { transform: translateY(0); } }

/* HIGHLIGHTED TAGLINE WORD */
.highlight {
  position: relative; display: inline-block;
  font-style: italic; font-weight: 900;
  color: var(--ink);
  padding: 0 .1em;
  font-family: var(--serif);
}
.hl-bg {
  position: absolute; left: -.05em; right: -.05em; top: 12%; bottom: 12%;
  background: var(--copper);
  transform-origin: left;
  transform: scaleX(0);
  animation: hlSweep 1s .7s cubic-bezier(.65,0,.35,1) forwards;
  z-index: 0;
  border-radius: 6px;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.hl-text {
  position: relative; z-index: 1;
  color: var(--cream);
  opacity: 0;
  animation: hlText .3s 1.3s forwards;
}
@keyframes hlSweep { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes hlText  { to { opacity: 1; } }

.hero-sub {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-soft); max-width: 520px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp .7s 1.6s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
  opacity: 0; animation: fadeUp .7s 1.8s forwards;
}

.hero-trust {
  display: flex; align-items: center; gap: 24px;
  opacity: 0; animation: fadeUp .7s 2s forwards;
}
.hero-trust > span {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.trust-marks { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.trust-mark {
  font-family: var(--display); font-size: 17px;
  letter-spacing: .1em;
  color: var(--ink-soft); opacity: .65;
  transition: opacity .2s, color .2s;
}
.trust-mark:hover { opacity: 1; color: var(--ink); }

/* ─── HERO VISUAL — Floating 3D Package Scene ─────────── */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.visual-stage {
  position: relative;
  width: 100%; height: 100%;
  perspective: 1200px;
}

.float-pack {
  position: absolute;
  filter: drop-shadow(0 25px 35px rgba(33,38,55,0.18));
  transform-style: preserve-3d;
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-18px) rotate(-4deg); }
}

.pack-main {
  width: 240px; height: 240px;
  top: 50%; left: 50%; margin: -120px 0 0 -120px;
  z-index: 3;
}
.fp-lid {
  width: 100%; height: 20px;
  background: linear-gradient(180deg, #1A1F2E 0%, #0F1320 100%);
  border-radius: 8px 8px 2px 2px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.fp-body {
  width: 100%; height: calc(100% - 16px);
  background: linear-gradient(135deg, #FAF5EC 0%, #EDE0C9 100%);
  border-radius: 2px 2px 8px 8px;
  border: 2px solid var(--ink);
  border-top: none;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fp-body::before {
  content: ''; position: absolute; inset: 18px;
  border: 1px dashed rgba(33,38,55,0.18); border-radius: 4px;
}
.fp-label {
  text-align: center;
  z-index: 1;
}
.fp-brand {
  font-family: var(--display);
  font-size: 32px; letter-spacing: .25em;
  color: var(--ink);
  margin-bottom: 6px;
}
.fp-tag {
  font-size: 10px; letter-spacing: .15em; font-weight: 600;
  color: var(--copper-d);
  text-transform: uppercase;
}
.fp-ribbon {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 100%;
  background: var(--copper);
  z-index: 1;
}
.fp-ribbon::before, .fp-ribbon::after {
  content: ''; position: absolute; top: 12px; width: 14px; height: 14px;
  background: var(--copper-d); transform: rotate(45deg);
}
.fp-ribbon::before { left: -10px; }
.fp-ribbon::after  { right: -10px; }

.pack-small {
  width: 110px; height: 110px;
  top: 12%; left: -8%;
  animation-duration: 7s; animation-delay: -2s;
}
.pack-small .fp-body-kraft {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--kraft), #B68859);
  border: 2px solid var(--ink);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 16px; letter-spacing: .2em; color: var(--ink);
  position: relative;
}
.pack-small .fp-body-kraft::before {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 12px; background: rgba(33,38,55,0.15); transform: translateY(-50%);
}

.pack-tiny {
  width: 80px; height: 80px;
  bottom: 16%; right: -2%;
  animation-duration: 8s; animation-delay: -4s;
}
.pack-tiny .fp-body-ink {
  width: 100%; height: 100%;
  background: var(--ink);
  border-radius: 6px;
  position: relative;
}
.pack-tiny .fp-body-ink::before {
  content: '✦'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 24px;
}

/* floating pouch */
.float-pouch {
  position: absolute; width: 100px; height: 140px;
  bottom: 18%; left: 4%; z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(33,38,55,0.15));
  animation: bob 7.5s ease-in-out infinite;
  animation-delay: -1s;
}
.pouch-top {
  width: 70%; height: 14px; margin: 0 auto;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.pouch-top::after {
  content: ''; position: absolute; top: 4px; left: 8px; right: 8px; height: 2px;
  background: rgba(255,255,255,0.3);
}
.pouch-body {
  width: 100%; height: calc(100% - 14px);
  background: linear-gradient(135deg, var(--copper-l), var(--copper));
  border: 2px solid var(--ink);
  border-radius: 8px 8px 24px 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 11px; letter-spacing: .2em; color: var(--ink);
}

/* circular badge */
.float-badge {
  position: absolute; width: 120px; height: 120px;
  top: 8%; right: 6%; z-index: 4;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.badge-text { width: 100%; height: 100%; }
.badge-core {
  position: absolute; inset: 25%;
  background: var(--ink); color: var(--copper);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px; letter-spacing: .05em;
  animation: spinReverse 22s linear infinite;
}
.badge-core span { font-size: 7px; letter-spacing: .12em; color: var(--cream); margin-top: 2px; }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

/* float cards */
.float-card {
  position: absolute; z-index: 5;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  animation: cardBob 5s ease-in-out infinite;
}
@keyframes cardBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.card-stat-1 { bottom: 6%; left: 8%; animation-delay: -1.5s; }
.card-stat-num {
  font-family: var(--display); font-size: 28px;
  color: var(--ink); letter-spacing: .03em;
}
.card-stat-num span { color: var(--copper); }
.card-stat-label { font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

.card-stat-2 {
  top: 38%; right: -4%;
  display: flex; align-items: center; gap: 10px;
  animation-delay: -3s;
}
.card-stat-2 strong { display: block; font-family: var(--display); font-size: 20px; color: var(--ink); }
.card-stat-2 p { font-size: 11px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.card-stat-pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--sage);
  position: relative;
}
.card-stat-pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--sage); animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0%   { opacity: 1; transform: scale(.5); }
  100% { opacity: 0; transform: scale(1.6); }
}

.orbit-ring {
  position: absolute; inset: -30px;
  border: 1px dashed rgba(33,38,55,0.18);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.orbit-ring::before, .orbit-ring::after {
  content: ''; position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--copper);
}
.orbit-ring::before { top: -6px; left: 50%; }
.orbit-ring::after  { bottom: -6px; left: 50%; background: var(--ink); }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink-soft);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  z-index: 3;
}
.cue-line {
  width: 1.5px; height: 50px;
  background: rgba(33,38,55,0.15); position: relative; overflow: hidden;
}
.cue-line span {
  position: absolute; top: -50%; left: 0; right: 0; height: 50%;
  background: var(--ink);
  animation: cueSlide 2.5s ease-in-out infinite;
}
@keyframes cueSlide {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ═════════════ MARQUEE ════════════════════════════════ */
.marquee {
  background: var(--ink); color: var(--cream);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-row {
  display: flex; gap: 50px; white-space: nowrap;
  animation: scrollX 35s linear infinite;
  width: max-content;
}
.m-item {
  font-family: var(--display); font-size: 32px; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 50px;
}
.m-star { color: var(--copper); font-size: 22px; }
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═════════════ SECTION HEAD ═══════════════════════════ */
.section-head { text-align: center; margin: 0 auto 80px; max-width: 720px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic; font-weight: 700; color: var(--copper-d);
}
.ink-underline {
  position: relative; display: inline-block;
}
.ink-underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4%; height: 18%;
  background: var(--copper); opacity: .35;
  z-index: -1;
  transform: skewX(-8deg);
}
.section-sub {
  font-size: 16.5px; color: var(--ink-soft); line-height: 1.65;
}

/* ═════════════ ABOUT ═══════════════════════════════════ */
.about {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 90px; align-items: center;
}

.about-visual {
  position: relative; height: 580px;
}
.ab-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ab-img-main {
  top: 0; left: 0; width: 340px; height: 440px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.ab-img-side {
  bottom: 0; right: 0; width: 240px; height: 260px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

.ab-mock { position: relative; }
.ab-mock-box {
  width: 200px; height: 200px;
  position: relative;
  transform: rotate(-8deg);
  filter: drop-shadow(0 20px 30px rgba(33,38,55,0.18));
}
.ab-mock-lid {
  width: 100%; height: 36px;
  background: linear-gradient(180deg, var(--copper) 0%, var(--copper-d) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.ab-mock-lid::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 4px;
  background: rgba(0,0,0,0.15);
}
.ab-mock-body {
  width: 100%; height: calc(100% - 36px);
  background: var(--cream);
  border: 2px solid var(--ink); border-top: none;
  display: flex; align-items: center; justify-content: center;
}
.ab-mock-logo {
  font-family: var(--display);
  font-size: 80px; color: var(--ink);
  letter-spacing: -0.04em;
}
.ab-mock-shadow {
  position: absolute; bottom: -20px; left: 10%; right: 10%; height: 16px;
  background: rgba(33,38,55,0.18);
  filter: blur(8px); border-radius: 50%;
}
.ab-decor-circle {
  position: absolute; top: -30px; right: -30px; width: 80px; height: 80px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.ab-decor-circle::after {
  content: '✦'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--paper); padding: 0 6px;
  color: var(--copper); font-size: 16px;
}

.ab-stack {
  display: flex; flex-direction: column; gap: 6px;
  transform: rotate(8deg);
}
.ab-stack-item {
  height: 38px; border-radius: 4px;
  border: 1.5px solid var(--cream);
  position: relative;
}
.ab-stack-item::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 6px; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
}
.s1 { width: 180px; background: var(--copper); }
.s2 { width: 160px; background: var(--kraft); margin-left: 10px; }
.s3 { width: 140px; background: var(--gold); margin-left: 20px; }

.ab-stat-float {
  position: absolute; top: 60%; left: 18%;
  background: var(--copper); color: var(--cream);
  padding: 18px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: cardBob 5s ease-in-out infinite;
}
.ab-stat-num {
  font-family: var(--display); font-size: 44px; line-height: 1;
}
.ab-stat-num span { font-size: 24px; }
.ab-stat-float p { font-size: 11.5px; line-height: 1.4; letter-spacing: .05em; text-transform: uppercase; margin-top: 6px; }

.ab-badge-float {
  position: absolute; top: 24px; right: -28px;
  background: var(--paper); border: 1px solid var(--border);
  padding: 12px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: cardBob 6s ease-in-out infinite;
  animation-delay: -2s;
}
.badge-ring { width: 32px; height: 32px; background: rgba(217,119,87,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.badge-ring svg { width: 18px; height: 18px; }
.ab-badge-float strong { display: block; font-size: 14px; color: var(--ink); }
.ab-badge-float span { font-size: 11px; color: var(--muted); }

.about-text .lede {
  font-size: 18px; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 40px;
}

.about-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.afeat {
  display: flex; gap: 22px; align-items: flex-start;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.afeat:last-child { border-bottom: none; }
.afeat-num {
  font-family: var(--display); font-size: 28px; color: var(--copper);
  flex-shrink: 0; min-width: 60px;
}
.afeat h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; font-weight: 600; }
.afeat p { color: var(--ink-soft); line-height: 1.6; }

.about-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.meta-divider { width: 1px; height: 40px; background: var(--border); }
.meta-stat strong { font-family: var(--display); font-size: 22px; display: block; color: var(--ink); }
.meta-stat span { font-size: 12px; color: var(--muted); letter-spacing: .03em; }

/* ═════════════ PRODUCTS ═══════════════════════════════ */
.products { background: var(--cream); }

.filter-bar {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter {
  padding: 10px 22px; border-radius: 99px;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--ink-soft); font-weight: 500; font-size: 13.5px;
  cursor: pointer; transition: all .25s ease;
  font-family: var(--sans);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.prod {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, opacity .35s;
}
.prod:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.prod.hidden { opacity: 0; pointer-events: none; transform: scale(.94); }

.prod-img {
  height: 220px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bg-cream { background: linear-gradient(135deg, #FAF5EC, #F0E5CC); }
.bg-navy  { background: linear-gradient(135deg, #2A3145, #1A1F2E); }
.bg-blush { background: linear-gradient(135deg, #F4D8C5, #E8C9B4); }
.bg-sage  { background: linear-gradient(135deg, #E1E8D5, #C8D4B8); }
.bg-mint  { background: linear-gradient(135deg, #DDE8E1, #C0D4C5); }
.bg-peach { background: linear-gradient(135deg, #F8DCC8, #F0C5A8); }
.bg-ivory { background: linear-gradient(135deg, #F5EDD8, #E8D9B4); }
.bg-clay  { background: linear-gradient(135deg, #E0CFB8, #C9B698); }

.pmk { position: relative; transition: transform .5s ease; }
.prod:hover .pmk { transform: scale(1.08) rotate(2deg); }

/* corrugated */
.pmk-corrugated { width: 130px; }
.cor-top {
  width: 100%; height: 14px;
  background: linear-gradient(180deg, #A87C4F, #8B6539);
  border-radius: 3px 3px 0 0;
  border: 1.5px solid var(--ink);
}
.cor-body {
  width: 100%; height: 120px;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 8px),
              linear-gradient(135deg, #C29B6B, #A87C4F);
  border: 1.5px solid var(--ink); border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 11px; letter-spacing: .15em; color: var(--ink);
}
.cor-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 8px; background: rgba(0,0,0,0.25); filter: blur(6px); border-radius: 50%; }

/* luxury rigid */
.pmk-luxury { width: 130px; }
.lux-lid {
  width: 100%; height: 30px;
  background: linear-gradient(180deg, var(--copper), var(--copper-d));
  border-radius: 4px 4px 0 0;
}
.lux-body {
  width: 100%; height: 110px;
  background: var(--ink);
  border: 2px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  border-radius: 0 0 6px 6px;
}
.lux-emboss {
  font-family: var(--display); font-size: 48px; color: var(--copper);
  text-shadow: 1px 1px 0 rgba(255,255,255,0.1);
}
.lux-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 8px; background: rgba(0,0,0,0.35); filter: blur(6px); border-radius: 50%; }

/* pouch */
.pmk-pouch { width: 90px; }
.pch-top {
  width: 70%; height: 10px; margin: 0 auto;
  background: var(--ink); border-radius: 3px 3px 0 0;
}
.pch-body {
  width: 100%; height: 110px;
  background: linear-gradient(135deg, #F0A484, #D97757);
  border: 2px solid var(--ink); border-top: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 10px; letter-spacing: .15em; color: var(--ink);
}
.pch-base {
  width: 100%; height: 20px;
  background: linear-gradient(180deg, #D97757, #B85E3F);
  border: 2px solid var(--ink); border-top: none;
  border-radius: 0 0 12px 12px;
}
.pch-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 6px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

/* kraft */
.pmk-kraft { width: 130px; text-align: center; }
.krft-leaf { font-size: 26px; margin-bottom: 6px; }
.krft-body {
  width: 100%; height: 110px;
  background: linear-gradient(135deg, #B68859, #8E6939);
  border: 2px solid var(--ink); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; letter-spacing: .2em; color: var(--cream);
  position: relative;
}
.krft-body::before, .krft-body::after {
  content: ''; position: absolute;
  width: 2px; background: rgba(0,0,0,0.15);
  top: 0; bottom: 0;
}
.krft-body::before { left: 15px; }
.krft-body::after  { right: 15px; }
.krft-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 8px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

/* mailer */
.pmk-mailer { width: 150px; }
.ml-flap {
  width: 100%; height: 22px;
  background: linear-gradient(180deg, #4A6B5A, #354F42);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  border-radius: 4px 4px 0 0;
}
.ml-body {
  width: 100%; height: 90px;
  background: linear-gradient(135deg, #5C7D6C, #3F5C4B);
  border: 2px solid var(--ink); border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; letter-spacing: .2em; color: var(--cream);
}
.ml-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 8px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

/* sleeve */
.pmk-sleeve { width: 90px; position: relative; }
.slv-bottle {
  width: 50px; height: 140px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(217,119,87,0.2), rgba(217,119,87,0.4));
  border: 1.5px solid var(--ink);
  border-radius: 24px 24px 8px 8px;
}
.slv-label {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 50px;
  background: var(--copper);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 12px; letter-spacing: .15em; color: var(--ink);
}
.slv-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 6px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

/* bag */
.pmk-bag { width: 120px; }
.bag-handle {
  width: 60%; margin: 0 auto;
  height: 24px;
  border: 3px solid var(--ink);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
}
.bag-body {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, #FAF5EC, #E5D5B8);
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; letter-spacing: .2em; color: var(--ink);
  position: relative;
}
.bag-body::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: rgba(0,0,0,0.05);
}
.bag-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 6px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

/* tube */
.pmk-tube { width: 70px; }
.tb-cap {
  width: 80px; height: 16px; margin-left: -5px;
  background: linear-gradient(180deg, var(--ink), #0F1320);
  border-radius: 6px 6px 2px 2px;
}
.tb-body {
  width: 70px; height: 130px;
  background: linear-gradient(90deg, rgba(0,0,0,0.1), transparent 20%, transparent 80%, rgba(0,0,0,0.1)),
              linear-gradient(135deg, #B85E3F, #8B4426);
  border: 2px solid var(--ink); border-top: none;
  border-radius: 0 0 4px 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; letter-spacing: .2em; color: var(--cream);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.tb-shadow { position: absolute; bottom: -10px; left: 10%; right: 10%; height: 6px; background: rgba(0,0,0,0.2); filter: blur(6px); border-radius: 50%; }

.prod-body { padding: 24px; }
.prod-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.prod-tag {
  display: inline-block; padding: 4px 12px; border-radius: 99px;
  background: rgba(33,38,55,0.06); color: var(--ink-soft);
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
}
.tag-lux  { background: rgba(217,119,87,0.12); color: var(--copper-d); }
.tag-flex { background: rgba(122,146,102,0.15); color: var(--sage); }
.tag-eco  { background: rgba(194,155,107,0.18); color: #8E6939; }
.prod-num { font-family: var(--display); font-size: 14px; letter-spacing: .1em; color: var(--muted); }
.prod-body h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px; line-height: 1.2;
}
.prod-body > p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
.prod-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none;
  letter-spacing: .04em;
  transition: gap .25s ease, color .25s ease;
}
.prod-link span { transition: transform .25s ease; }
.prod-link:hover { color: var(--copper); gap: 12px; }
.prod-link:hover span { transform: translateX(2px); }

/* ═════════════ TAG BANNER ════════════════════════════ */
.tag-banner {
  background: var(--ink); color: var(--cream);
  padding: 120px 0 0; overflow: hidden;
  position: relative;
}
.tag-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(217,119,87,0.18), transparent 60%);
  pointer-events: none;
}
.tag-banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px 80px;
  text-align: center; position: relative;
}
.tag-banner-text {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 700; line-height: .98;
  letter-spacing: -0.035em;
}
.tbl { display: block; }
.tbl-em em {
  font-style: italic; color: var(--copper);
  position: relative;
}
.tbl-em em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 8%; height: 6%;
  background: var(--copper);
  opacity: .4;
}
.tag-banner-meta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 36px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--copper-l);
}

.tag-banner-marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0; overflow: hidden;
}
.tbm-row {
  display: flex; gap: 80px;
  animation: scrollX 28s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-size: 64px; letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  white-space: nowrap;
}
.tbm-row span { display: inline-block; }
.tbm-row span:nth-child(odd) {
  color: var(--copper); -webkit-text-stroke: 0;
}

/* ═════════════ PROCESS ════════════════════════════════ */
.process { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-wrap { position: relative; }
.process-line {
  position: absolute; top: 32px;
  left: calc(10% + 32px); right: calc(10% + 32px); height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-line span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--copper-d));
  transition: width 1.4s ease;
}
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.proc {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  padding: 0 8px;
}
.proc-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--ink);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  transition: background .3s, color .3s, transform .3s;
}
.proc:hover .proc-circle { background: var(--copper); color: var(--cream); border-color: var(--copper); transform: scale(1.1) rotate(-4deg); }
.proc-num {
  font-family: var(--display); font-size: 13px; letter-spacing: .15em;
  color: var(--copper);
}
.proc h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.proc p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ═════════════ INDUSTRIES ═════════════════════════════ */
.industries { background: var(--cream); }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ind {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  position: relative; overflow: hidden;
  animation-delay: var(--d);
}
.ind::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--copper); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.ind:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--copper); }
.ind:hover::before { transform: scaleX(1); }
.ind-emoji { font-size: 42px; margin-bottom: 18px; display: block; }
.ind h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.ind p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.ind-tag {
  display: inline-block; padding: 4px 12px; border-radius: 99px;
  background: var(--ink); color: var(--cream);
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
}

/* ═════════════ TESTIMONIALS ═══════════════════════════ */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--border);
}
.testi-head { max-width: 600px; margin: 0 auto 60px; text-align: center; }
.testi-slider { position: relative; overflow: hidden; padding: 10px 0; }
.testi-track {
  display: flex; gap: 28px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testi {
  min-width: calc(50% - 14px); flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.testi::before {
  content: '"'; position: absolute; top: 8px; right: 30px;
  font-family: var(--serif); font-size: 120px; line-height: 1;
  color: var(--copper); opacity: .25;
}
.testi-stars { color: var(--copper); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.testi > p {
  font-family: var(--serif); font-size: 19px; line-height: 1.55;
  color: var(--ink); font-weight: 500; font-style: italic;
  margin-bottom: 28px;
}
.testi-by { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testi-by strong { display: block; font-size: 15px; color: var(--ink); }
.testi-by span { font-size: 12.5px; color: var(--muted); }

.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 40px;
}
.t-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--ink);
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.t-btn:hover { background: var(--ink); color: var(--cream); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all .25s ease; border: none;
}
.t-dot.active { background: var(--copper); width: 26px; border-radius: 99px; }

/* ═════════════ CONTACT ════════════════════════════════ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }

.contact-info .lede { font-size: 17px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--border);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci strong { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.ci a, .ci span { font-family: var(--serif); font-size: 19px; color: var(--ink); text-decoration: none; font-weight: 600; }
.ci a:hover { color: var(--copper); }

.contact-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cb {
  padding: 8px 16px; background: var(--paper);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--ink-soft);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.cf-group label { font-size: 12px; font-weight: 600; color: var(--ink-soft); letter-spacing: .03em; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%;
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--ink); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(33,38,55,0.06);
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-success {
  display: none; align-items: center; gap: 12px;
  margin-top: 18px; padding: 14px 16px;
  background: rgba(46,125,91,0.08); border: 1px solid rgba(46,125,91,0.25);
  border-radius: var(--radius-sm); color: #2E7D5B;
}
.cf-success.show { display: flex; animation: cfSlide .4s ease both; }
.cf-success p { font-size: 14px; font-weight: 500; }
.cf-success.error {
  background: rgba(185, 40, 40, 0.06);
  border-color: rgba(185, 40, 40, 0.28);
  color: #B92828;
}
.cf-success.error svg path { stroke: #B92828; }
@keyframes cfSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ═════════════ FOOTER ═════════════════════════════════ */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 100px 0 32px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,87,0.15), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.footer-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 80px; gap: 40px; flex-wrap: wrap;
  position: relative;
}
.footer-cta h2 {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.025em;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.f-brand .brand { color: var(--cream); }
.f-brand p { font-size: 14px; color: rgba(250,245,236,0.6); line-height: 1.65; margin: 18px 0 22px; max-width: 280px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none; transition: all .25s ease;
}
.f-social a:hover { background: var(--copper); }

.f-col h5 {
  font-family: var(--display); font-size: 14px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 22px;
}
.f-col a {
  display: block; padding: 6px 0;
  font-size: 14px; color: rgba(250,245,236,0.7); text-decoration: none;
  transition: color .2s, transform .2s;
}
.f-col a:hover { color: var(--copper); transform: translateX(4px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(250,245,236,0.5);
}
.f-legal { display: flex; gap: 28px; }
.f-legal a { color: rgba(250,245,236,0.5); text-decoration: none; transition: color .2s; }
.f-legal a:hover { color: var(--copper); }

/* ═════════════ BACK TO TOP ════════════════════════════ */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--cream); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: var(--shadow);
}
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { background: var(--copper); }

/* ═════════════ REVEAL ════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right, .reveal-pop {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-pop   { transform: scale(.92) translateY(20px); }
.reveal-up.in, .reveal-left.in, .reveal-right.in, .reveal-pop.in { opacity: 1; transform: none; }

/* ═════════════ RESPONSIVE ════════════════════════════ */

/* large tablet / small laptop */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { height: 500px; }
  .container { padding: 0 28px; }
}

/* tablet */
@media (max-width: 960px) {
  .nav-menu, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .nav-inner { gap: 16px; }
  .logo-nav { height: 64px; width: 180px; }

  .section { padding: 100px 0; }
  .section-head { margin-bottom: 56px; }

  .hero { padding: 130px 0 80px; }
  .hero-grid-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 440px; max-width: 520px; margin: 0 auto; }
  .hero-trust { gap: 18px; flex-wrap: wrap; }
  .trust-marks { gap: 22px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 560px; margin: 0 auto; }

  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line  { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testi { min-width: 100%; padding: 32px; }
  .footer-cta { flex-direction: column; text-align: center; align-items: stretch; }
  .footer-cta h2 { text-align: center; }

  .tag-banner-text { font-size: clamp(48px, 9vw, 96px); }
  .tbm-row { font-size: 52px; }
}

/* mobile */
@media (max-width: 640px) {
  :root { --radius: 14px; --radius-sm: 8px; --radius-lg: 20px; }

  .container, .nav-inner { padding: 0 18px; }
  .section { padding: 72px 0; }

  /* nav */
  .nav { padding: 8px 0; }
  .nav.scrolled { padding: 6px 0; }
  .logo-nav { height: 52px; width: 148px; }
  .burger { padding: 8px; }
  .mobile-menu { max-width: 100%; padding: 90px 24px 32px; }
  .mobile-menu a { font-size: 19px; padding: 14px 0; }

  /* hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); margin-bottom: 22px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; gap: 10px; margin-bottom: 36px; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-marks { gap: 16px; }
  .trust-mark { font-size: 14px; }
  .hero-visual { height: 380px; }
  .pack-main { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
  .fp-brand { font-size: 24px; }
  .pack-small { width: 80px; height: 80px; top: 8%; left: -2%; }
  .pack-tiny  { width: 60px; height: 60px; bottom: 18%; right: 0; }
  .float-pouch { width: 76px; height: 108px; bottom: 14%; left: 0; }
  .float-badge { width: 88px; height: 88px; top: 4%; right: 0; }
  .card-stat-1 { bottom: 2%; left: 0; padding: 10px 14px; }
  .card-stat-num { font-size: 22px; }
  .card-stat-label { font-size: 10px; }
  .card-stat-2 { top: 38%; right: -2%; padding: 10px 12px; }
  .card-stat-2 strong { font-size: 17px; }
  .orbit-ring { inset: -10px; }
  .scroll-cue { display: none; }

  /* marquee */
  .marquee { padding: 16px 0; }
  .m-item { font-size: 22px; gap: 32px; }
  .marquee-row { gap: 32px; }

  /* section heads */
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .section-sub { font-size: 15px; }
  .eyebrow { font-size: 11px; margin-bottom: 14px; letter-spacing: .14em; }

  /* about */
  .about-grid { gap: 48px; }
  .about-visual { height: 420px; }
  .ab-img-main { width: 70%; height: 320px; }
  .ab-img-side { width: 52%; height: 180px; }
  .ab-mock-box { width: 150px; height: 150px; }
  .ab-mock-logo { font-size: 56px; }
  .ab-stat-float { left: 4%; padding: 12px 16px; }
  .ab-stat-num { font-size: 30px; }
  .ab-stat-float p { font-size: 10px; }
  .ab-badge-float { top: 16px; right: -8px; padding: 8px 12px; }
  .ab-badge-float strong { font-size: 12px; }
  .ab-badge-float span { font-size: 10px; }
  .about-text .lede { font-size: 16px; margin-bottom: 32px; }
  .afeat { gap: 16px; padding-bottom: 20px; }
  .afeat-num { font-size: 22px; min-width: 44px; }
  .afeat h4 { font-size: 19px; }
  .afeat p { font-size: 14px; }
  .about-meta { gap: 18px; }

  /* products */
  .prod-grid, .ind-grid { grid-template-columns: 1fr; gap: 18px; }
  .filter-bar { gap: 6px; margin-bottom: 36px; }
  .filter { padding: 8px 16px; font-size: 12.5px; }
  .prod-img { height: 200px; }
  .prod-body { padding: 22px; }
  .prod-body h3 { font-size: 20px; }

  /* tag banner */
  .tag-banner { padding: 70px 0 0; }
  .tag-banner-inner { padding: 0 18px 56px; }
  .tag-banner-text { font-size: clamp(40px, 12vw, 64px); }
  .tag-banner-meta { font-size: 11px; margin-top: 24px; gap: 10px; }
  .tag-banner-marquee { padding: 20px 0; }
  .tbm-row { font-size: 36px; gap: 50px; }

  /* process */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .proc { padding: 0; }
  .proc-circle { width: 56px; height: 56px; }

  /* industries */
  .ind { padding: 28px 24px; }
  .ind-emoji { font-size: 36px; margin-bottom: 14px; }
  .ind h4 { font-size: 20px; }

  /* testimonials */
  .testi-head { margin-bottom: 40px; }
  .testi { padding: 26px; }
  .testi > p { font-size: 16px; margin-bottom: 22px; }
  .testi::before { font-size: 80px; top: 4px; right: 18px; }

  /* contact */
  .contact-grid { gap: 50px; }
  .contact-info .lede { font-size: 15.5px; margin-bottom: 32px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; border-radius: 18px; }
  .ci a, .ci span { font-size: 17px; }

  /* footer */
  .footer { padding: 70px 0 28px; }
  .footer-cta { padding-bottom: 56px; margin-bottom: 56px; gap: 28px; }
  .footer-cta h2 { font-size: clamp(28px, 8vw, 40px); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding-top: 24px; }
  .f-legal { gap: 18px; }
  .logo-footer { height: 80px; width: 230px; }

  /* back to top */
  .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  /* loader */
  .logo-loader { height: 110px; width: 320px; }
  .loader-bar { width: 200px; }
}

/* very small mobile */
@media (max-width: 380px) {
  .container, .nav-inner { padding: 0 14px; }
  .logo-nav { height: 46px; width: 130px; }
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .tag-banner-text { font-size: 42px; }
  .tbm-row { font-size: 28px; gap: 32px; }
  .m-item { font-size: 18px; gap: 24px; }
  .marquee-row { gap: 24px; }
  .hero-visual { height: 320px; }
  .pack-main { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
  .ab-mock-box { width: 130px; height: 130px; }
  .ab-mock-logo { font-size: 48px; }
}

/* disable hover-only mouse effects on touch devices */
@media (hover: none) {
  .btn:hover, .prod:hover, .ind:hover, .proc:hover .proc-circle,
  .why-card:hover, .ab-card:hover { transform: none; }
}
