
:root {
  --ink: #102b78;
  --ink-2: #183f9b;
  --accent: #f6c814;
  --accent-dark: #d9a900;
  --cream: #f1eadf;
  --cream-2: #faf8f4;
  --paper: #ffffff;
  --charcoal: #1b2538;
  --muted: #667086;
  --line: #e0e4ec;
  --success: #26824f;
  --shadow-sm: 0 10px 30px rgba(16,43,120,.08);
  --shadow-lg: 0 28px 80px rgba(16,43,120,.16);
  --radius: 22px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 9999; background: #fff; color: var(--ink); padding: 12px 18px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px; color: var(--accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.7vw, 6.6rem); max-width: 920px; }
h2 { font-size: clamp(2.15rem, 4vw, 4.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.06rem, 1.8vw, 1.25rem); line-height: 1.72; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px rgba(239,124,34,.28); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 12px 28px rgba(16,43,120,.2); }
.btn-dark:hover { background: #0a1f5a; }
.btn-ghost { border-color: rgba(16,43,120,.18); background: rgba(255,255,255,.72); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-small { min-height: 42px; padding: 0 16px; font-size: .9rem; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }
.topbar { background: var(--ink); color: rgba(255,255,255,.86); font-size: .8rem; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar strong { color: #fff; }
.topbar a:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(251,248,242,.88); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(16,43,120,.08); }
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { position: relative; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--ink); font-size: 1.05rem; font-weight: 900; letter-spacing: -.04em; box-shadow: 0 10px 24px rgba(16,43,120,.2); }
.brand-mark::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 14px; height: 14px; border: 3px solid var(--cream-2); border-radius: 50%; background: var(--accent); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--ink); font-size: 1.05rem; letter-spacing: .08em; }
.brand-copy span { margin-top: 6px; color: var(--muted); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; color: #34415e; font-size: .92rem; font-weight: 700; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.quote-trigger { position: relative; }
.quote-count { position: absolute; right: -6px; top: -8px; display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border: 3px solid var(--cream-2); border-radius: 999px; color: #fff; background: var(--accent); font-size: .7rem; font-weight: 900; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); }
.hero { position: relative; overflow: hidden; padding: 82px 0 62px; background: linear-gradient(135deg, #f8f3ea 0%, #f1e9db 100%); }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; top: -380px; right: -190px; border: 1px solid rgba(16,43,120,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(16,43,120,.025), 0 0 0 160px rgba(16,43,120,.02); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 64px; }
.hero h1 em { color: var(--accent); font-family: Georgia, serif; font-weight: 500; }
.hero-copy .lead { max-width: 680px; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #4f5d77; font-size: .88rem; font-weight: 700; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(239,124,34,.12); }
.hero-visual { position: relative; min-height: 580px; }
.hero-photo { position: absolute; inset: 0 0 58px 44px; overflow: hidden; border-radius: 34px; background: #d9d0c2 url('../img/packaging-hero.webp') center / cover no-repeat; box-shadow: var(--shadow-lg); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(14,45,38,.32)); }
.hero-card { position: absolute; left: 0; bottom: 0; width: min(360px, 78%); padding: 24px; border: 1px solid rgba(255,255,255,.65); border-radius: 22px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hero-card strong { display: block; color: var(--ink); font-size: 1.25rem; }
.hero-card p { margin-top: 8px; color: var(--muted); font-size: .9rem; }
.hero-card .metric { color: var(--accent); font-size: 2rem; font-weight: 900; }
.hero-stamp { position: absolute; right: -8px; top: 40px; width: 116px; height: 116px; display: grid; place-items: center; border: 2px dashed rgba(255,255,255,.65); border-radius: 50%; color: #fff; background: rgba(16,43,120,.82); backdrop-filter: blur(8px); text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; transform: rotate(8deg); }
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--ink); background: var(--cream); }
.trust-icon img { width: 28px; border-radius: 3px; }
.trust-item strong { display: block; color: var(--ink); font-size: .93rem; }
.trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; }
.section { padding: 104px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head-copy { max-width: 710px; }
.section-head .lead { max-width: 620px; margin-top: 18px; }
.categories { background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 330px; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-2); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.category-card:hover { transform: translateY(-5px); border-color: rgba(16,43,120,.28); box-shadow: var(--shadow-sm); }
.category-card h3 { position: relative; z-index: 2; max-width: 220px; font-size: 1.55rem; }
.category-card p { position: relative; z-index: 2; max-width: 260px; margin-top: 12px; color: var(--muted); font-size: .91rem; }
.category-link { position: absolute; left: 28px; bottom: 26px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: .88rem; font-weight: 900; }
.category-link span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); transition: transform .2s ease; }
.category-card:hover .category-link span { transform: translateX(4px); }
.category-art { position: absolute; right: -24px; bottom: 12px; width: 190px; height: 190px; opacity: .97; transform: rotate(-4deg); }
.category-card:nth-child(2n) .category-art { transform: rotate(4deg); }
.category-card.featured { grid-column: span 2; background: var(--ink); border-color: var(--ink); }
.category-card.featured h3, .category-card.featured .category-link { color: #fff; }
.category-card.featured p { color: rgba(255,255,255,.68); }
.category-card.featured .category-art { width: 280px; height: 230px; right: 14px; bottom: 0; }
.catalogue { background: var(--cream-2); }
.catalogue-toolbar { display: grid; grid-template-columns: minmax(240px, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 26px; }
.search-field { position: relative; }
.search-field svg { position: absolute; left: 18px; top: 50%; width: 20px; transform: translateY(-50%); color: var(--muted); }
.search-field input { width: 100%; height: 56px; padding: 0 18px 0 52px; border: 1px solid var(--line); border-radius: 999px; outline: none; color: var(--ink); background: #fff; box-shadow: 0 8px 22px rgba(16,43,120,.05); }
.search-field input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(16,43,120,.08); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; color: #4c5d57; background: #fff; font-size: .82rem; font-weight: 800; }
.filter-btn:hover, .filter-btn.active { color: #fff; border-color: var(--ink); background: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(16,43,120,.045); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product-media { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 65% 22%, #fff 0, #f4ede2 54%, #e9ddcb 100%); }
.product-media::before { content: ""; position: absolute; width: 210px; height: 210px; border: 1px solid rgba(16,43,120,.08); border-radius: 50%; }
.product-badge { position: absolute; left: 16px; top: 16px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.9); box-shadow: 0 5px 16px rgba(16,43,120,.08); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.product-body { padding: 22px; }
.product-kicker { color: var(--accent-dark); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; font-size: 1.17rem; }
.product-card p { min-height: 67px; margin-top: 10px; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 18px; }
.product-actions .btn { min-height: 44px; padding: 0 14px; font-size: .82rem; }
.details-btn { width: 44px; min-width: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; }
.empty-state { grid-column: 1 / -1; padding: 70px 20px; border: 1px dashed #cbd6d1; border-radius: 18px; text-align: center; color: var(--muted); background: rgba(255,255,255,.55); }
.art { position: relative; width: 150px; height: 150px; filter: drop-shadow(0 22px 18px rgba(16,43,120,.16)); transform: translateZ(0); }
.art *, .art::before, .art::after { box-sizing: border-box; }
.art-cup .cup-body { position:absolute; left:39px; top:36px; width:72px; height:92px; border-radius:8px 8px 24px 24px; background: linear-gradient(90deg,#b9874e,#d9ae75 45%,#a9723c); clip-path: polygon(8% 0,92% 0,82% 100%,18% 100%); }
.art-cup .cup-lid { position:absolute; left:31px; top:27px; width:88px; height:16px; border-radius:9px; background:linear-gradient(#f7f5ef,#d8d5ce); box-shadow:0 4px 0 #b9b7b0; }
.art-cup .cup-band { position:absolute; left:40px; top:65px; width:70px; height:38px; background:var(--ink); clip-path: polygon(0 8%,100% 0,94% 100%,6% 92%); }
.art-cup .cup-band::after { content:"SP"; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:17px; font-weight:900; }
.art-smoothie .cup-body { position:absolute; left:42px; top:45px; width:67px; height:83px; border:3px solid rgba(255,255,255,.95); border-top:0; border-radius:0 0 24px 24px; background:linear-gradient(180deg,rgba(239,124,34,.24),rgba(239,124,34,.65)); clip-path:polygon(10% 0,90% 0,80% 100%,20% 100%); box-shadow:inset 8px 0 12px rgba(255,255,255,.35); }
.art-smoothie .cup-lid { position:absolute; left:35px; top:34px; width:81px; height:18px; border:3px solid rgba(255,255,255,.95); border-radius:50%; background:rgba(255,255,255,.35); }
.art-smoothie .straw { position:absolute; left:82px; top:10px; width:7px; height:62px; border-radius:6px; background:var(--ink); transform:rotate(8deg); }
.art-espresso .cup-body { position:absolute; left:43px; top:60px; width:64px; height:64px; background:linear-gradient(90deg,#7a4a27,#b5783f 50%,#6e3d1d); clip-path:polygon(7% 0,93% 0,82% 100%,18% 100%); border-radius:5px 5px 16px 16px; }
.art-espresso .cup-lid { position:absolute; left:37px; top:50px; width:76px; height:15px; border-radius:8px; background:#242d2a; }
.art-clamshell .shell-base { position:absolute; left:24px; top:78px; width:106px; height:52px; border-radius:12px 12px 18px 18px; background:linear-gradient(145deg,#e2d3b4,#bda77d); transform:skewX(-7deg); }
.art-clamshell .shell-lid { position:absolute; left:22px; top:30px; width:106px; height:58px; border:4px solid #c6b086; border-radius:20px 20px 8px 8px; background:linear-gradient(145deg,#f0e7d3,#cbb893); transform:perspective(130px) rotateX(-23deg) skewX(-5deg); transform-origin:bottom; }
.art-bowl .bowl-body { position:absolute; left:29px; top:62px; width:94px; height:64px; border-radius:8px 8px 45px 45px; background:linear-gradient(90deg,#a86d36,#d39b5e 50%,#99602e); clip-path:polygon(5% 0,95% 0,78% 100%,22% 100%); }
.art-bowl .bowl-lid { position:absolute; left:23px; top:49px; width:106px; height:20px; border-radius:50%; background:linear-gradient(#e8e3d9,#b8b4aa); box-shadow:0 5px 0 rgba(77,80,75,.22); }
.art-burger .box-base { position:absolute; left:25px; top:77px; width:106px; height:50px; border-radius:8px; background:linear-gradient(145deg,#ba7d3e,#dfaa67); transform:skewX(-5deg); }
.art-burger .box-lid { position:absolute; left:31px; top:38px; width:94px; height:48px; border-radius:18px 18px 5px 5px; background:linear-gradient(145deg,#dfb477,#bd7d3f); transform:perspective(150px) rotateX(-25deg); transform-origin:bottom; }
.art-plate .plate-body { position:absolute; left:18px; top:42px; width:116px; height:82px; border-radius:50%; background:radial-gradient(ellipse at center,#efe5d3 0 43%,#c8b28c 45% 58%,#eadfc9 60%); transform:rotate(-8deg); }
.art-pizza .pizza-base { position:absolute; left:18px; top:65px; width:116px; height:62px; border-radius:7px; background:linear-gradient(145deg,#b87936,#dda760); transform:skewY(-4deg); }
.art-pizza .pizza-lid { position:absolute; left:22px; top:27px; width:112px; height:60px; border-radius:7px; background:linear-gradient(145deg,#d6a05d,#aa6b2f); transform:perspective(170px) rotateX(-28deg) rotateZ(-2deg); transform-origin:bottom; }
.art-pizza .pizza-lid::after { content:"PIZZA"; position:absolute; inset:0; display:grid; place-items:center; color:rgba(16,43,120,.8); font-weight:900; letter-spacing:.13em; }
.art-cake .cake-box { position:absolute; left:26px; top:47px; width:100px; height:82px; border-radius:8px; border:3px solid #c38b50; background:linear-gradient(145deg,#f3e6d0,#dcb985); }
.art-cake .window { position:absolute; left:42px; top:63px; width:68px; height:44px; border:4px solid rgba(255,255,255,.75); border-radius:7px; background:rgba(255,255,255,.25); }
.art-cutlery .fork { position:absolute; left:45px; top:18px; width:18px; height:112px; border-radius:6px; background:linear-gradient(90deg,#e1d1b1,#b9a47c); transform:rotate(-12deg); }
.art-cutlery .fork::before { content:""; position:absolute; left:-1px; top:0; width:20px; height:32px; background:repeating-linear-gradient(90deg,#b9a47c 0 3px,transparent 3px 6px); }
.art-cutlery .knife { position:absolute; left:84px; top:18px; width:17px; height:112px; border-radius:12px 4px 5px 5px; background:linear-gradient(90deg,#c9b38a,#eee2c9); transform:rotate(10deg); }
.art-bag .bag-body { position:absolute; left:33px; top:42px; width:84px; height:88px; border-radius:4px 4px 11px 11px; background:linear-gradient(110deg,#bc8043,#dda766 48%,#a96b32); }
.art-bag .handle { position:absolute; left:51px; top:20px; width:48px; height:45px; border:7px solid #9d612e; border-bottom:0; border-radius:30px 30px 0 0; }
.art-bag .bag-body::after { content:"SOUTH\A PACK"; white-space:pre; position:absolute; inset:0; display:grid; place-items:center; color:rgba(255,255,255,.92); font-size:13px; font-weight:900; line-height:1.1; text-align:center; }
.art-paper .roll { position:absolute; left:30px; top:44px; width:89px; height:72px; border-radius:50%; background:radial-gradient(circle at 48% 48%,#fff 0 11%,#b5a98d 12% 19%,#eee5d2 20% 55%,#c9b994 56% 68%,#efe7d5 69%); transform:rotate(-12deg); }
.art-holder .holder { position:absolute; left:20px; top:55px; width:112px; height:70px; border-radius:18px; background:linear-gradient(145deg,#d8c7a7,#aa9470); clip-path:polygon(4% 15%,42% 0,96% 17%,88% 96%,12% 100%); }
.art-holder .hole { position:absolute; top:67px; width:35px; height:25px; border-radius:50%; background:#f0e8dc; box-shadow:inset 0 4px 8px rgba(16,43,120,.18); }
.art-holder .hole.one { left:34px; }.art-holder .hole.two { left:82px; }
.art-serviette .napkin { position:absolute; left:35px; top:42px; width:82px; height:82px; border-radius:5px; background:linear-gradient(145deg,#fff,#d9dedc); transform:rotate(-8deg); box-shadow:10px 10px 0 #f5f2eb, 20px 20px 0 #d8dfdc; }
.art-serviette .napkin::after { content:"SP"; position:absolute; right:10px; bottom:8px; color:var(--ink); font-weight:900; }
.art-ramekin .cup-body { position:absolute; left:45px; top:69px; width:62px; height:54px; border-radius:5px 5px 19px 19px; background:linear-gradient(90deg,#e9e7e2,#babbb7); clip-path:polygon(5% 0,95% 0,80% 100%,20% 100%); }
.art-ramekin .cup-lid { position:absolute; left:38px; top:57px; width:76px; height:17px; border-radius:50%; background:rgba(255,255,255,.75); border:2px solid #b8c0bc; }
.art-roll .roll { position:absolute; left:38px; top:28px; width:74px; height:98px; border-radius:42px; background:linear-gradient(90deg,#cfcfc9,#fff 40%,#d8d8d2); box-shadow:inset -10px 0 14px rgba(0,0,0,.08); }
.art-roll .roll::before { content:""; position:absolute; left:13px; top:-1px; width:48px; height:20px; border-radius:50%; background:radial-gradient(circle,#7e725e 0 16%,#e9e9e3 18% 50%,#bcbcb7 52%); }
.art-roll .paper-tail { position:absolute; left:48px; top:88px; width:74px; height:45px; background:linear-gradient(90deg,#fff,#e9e9e5); transform:skewY(-10deg); }
.process { background: var(--ink); color: #fff; }
.process h2, .process h3 { color: #fff; }
.process .eyebrow { color: var(--accent); }
.process .lead { color: rgba(255,255,255,.67); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; counter-reset: steps; }
.process-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.process-card::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 50px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.process-card p { margin-top: 14px; color: rgba(255,255,255,.62); font-size: .9rem; }
.sectors { background: #fff; }
.sector-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.sector-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream-2); }
.sector-card span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--ink); font-size: 1.2rem; font-weight: 900; }
.sector-card strong { color: var(--ink); font-size: .88rem; }
.cta { padding: 54px 0 100px; background: #fff; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 55px 60px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--ink), #1f55bd); box-shadow: 0 28px 80px rgba(16,43,120,.24); }
.cta-card::after { content:""; position:absolute; width:340px; height:340px; right:-150px; top:-170px; border:1px solid rgba(255,255,255,.22); border-radius:50%; box-shadow:0 0 0 55px rgba(255,255,255,.06),0 0 0 110px rgba(255,255,255,.04); }
.cta-card h2 { position: relative; z-index:1; max-width:780px; color:#fff; font-size:clamp(2rem,4vw,3.7rem); }
.cta-card p { position:relative; z-index:1; max-width:650px; margin-top:14px; color:rgba(255,255,255,.84); }
.cta-card .btn { position:relative; z-index:1; background:#fff; color:var(--ink); }
.site-footer { color: rgba(255,255,255,.73); background: #071946; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .7fr .9fr; gap: 50px; padding: 76px 0 54px; }
.site-footer .brand-copy strong { color: #fff; }
.site-footer .brand-copy span { color: rgba(255,255,255,.55); }
.footer-about { max-width: 380px; margin-top: 22px; font-size: .9rem; }
.footer-col h3 { margin-bottom: 18px; color: #fff; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; font-size: .88rem; }
.footer-col a:hover { color: #fff; }
.footer-contact { display: flex; gap: 12px; margin: 12px 0; }
.footer-contact svg { width: 19px; flex: 0 0 auto; color: var(--accent); }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.page-hero { padding: 92px 0 68px; background: linear-gradient(145deg,#f4ebdd,#faf7f1); }
.page-hero-grid { display:grid; grid-template-columns:1fr .7fr; align-items:end; gap:50px; }
.page-hero .lead { margin-top:22px; max-width:700px; }
.page-card { padding:28px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.catalogue-page { padding:70px 0 110px; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.about-panel { padding:42px; border-radius:26px; background:#fff; border:1px solid var(--line); }
.about-panel.dark { color:#fff; background:var(--ink); border-color:var(--ink); }
.about-panel.dark h2, .about-panel.dark h3 { color:#fff; }
.about-panel p + p { margin-top:18px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:22px; }
.value-card { padding:28px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.value-card span { display:grid; place-items:center; width:50px; height:50px; margin-bottom:26px; border-radius:15px; color:var(--ink); background:var(--accent); font-weight:900; }
.value-card p { margin-top:10px; color:var(--muted); font-size:.9rem; }
.contact-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:24px; }
.contact-panel { padding:40px; border-radius:26px; background:var(--ink); color:#fff; }
.contact-panel h2, .contact-panel h3 { color:#fff; }
.contact-panel .lead { color:rgba(255,255,255,.68); }
.contact-method { display:flex; gap:16px; margin-top:30px; padding-top:26px; border-top:1px solid rgba(255,255,255,.12); }
.contact-method .bubble { width:46px; height:46px; display:grid; place-items:center; border-radius:14px; color:var(--ink); background:var(--accent); font-weight:900; }
.contact-method strong { display:block; color:#fff; }
.contact-method span, .contact-method a { color:rgba(255,255,255,.7); font-size:.9rem; }
.form-card { padding:40px; border:1px solid var(--line); border-radius:26px; background:#fff; box-shadow:var(--shadow-sm); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { color:var(--ink); font-size:.8rem; font-weight:800; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); border-radius:13px; outline:none; color:var(--ink); background:#fbfcfb; }
.field input, .field select { height:52px; padding:0 15px; }
.field textarea { min-height:140px; padding:14px 15px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--ink); box-shadow:0 0 0 4px rgba(16,43,120,.08); }
.form-note { margin-top:14px; color:var(--muted); font-size:.78rem; }
.legal { max-width:850px; }
.legal h2 { margin:42px 0 14px; font-size:1.75rem; }
.legal h3 { margin:28px 0 10px; }
.legal p, .legal li { color:#536078; }
.quote-overlay { position:fixed; inset:0; z-index:2000; visibility:hidden; opacity:0; background:rgba(7,26,21,.58); backdrop-filter:blur(4px); transition:.25s ease; }
.quote-overlay.open { visibility:visible; opacity:1; }
.quote-drawer { position:absolute; right:0; top:0; width:min(520px,100%); height:100%; display:flex; flex-direction:column; background:#fff; transform:translateX(100%); transition:transform .3s ease; box-shadow:-30px 0 80px rgba(0,0,0,.22); }
.quote-overlay.open .quote-drawer { transform:translateX(0); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:24px 26px; border-bottom:1px solid var(--line); }
.drawer-head h2 { font-size:1.5rem; }
.close-btn { width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; color:var(--ink); background:#fff; }
.drawer-body { flex:1; overflow:auto; padding:24px 26px; }
.drawer-empty { display:grid; place-items:center; min-height:360px; text-align:center; color:var(--muted); }
.drawer-empty .empty-icon { width:74px; height:74px; display:grid; place-items:center; margin:0 auto 20px; border-radius:24px; color:var(--ink); background:var(--cream); }
.quote-item { display:grid; grid-template-columns:70px 1fr auto; gap:14px; align-items:center; padding:15px 0; border-bottom:1px solid var(--line); }
.quote-thumb { width:70px; height:70px; display:grid; place-items:center; overflow:hidden; border-radius:15px; background:var(--cream); }
.quote-thumb .art { transform:scale(.42); }
.quote-item h3 { font-size:.92rem; }
.quote-item small { color:var(--muted); font-size:.7rem; }
.qty-controls { display:flex; align-items:center; gap:7px; margin-top:8px; }
.qty-controls button { width:27px; height:27px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; background:#fff; color:var(--ink); font-weight:900; }
.qty-controls span { min-width:24px; text-align:center; font-size:.8rem; font-weight:900; }
.remove-item { border:0; background:transparent; color:#9a4b3a; font-size:.72rem; font-weight:800; }
.drawer-foot { padding:22px 26px; border-top:1px solid var(--line); background:#fbfcfb; }
.drawer-foot .btn { width:100%; }
.drawer-foot .btn + .btn { margin-top:9px; }
.drawer-foot p { margin-top:11px; color:var(--muted); font-size:.73rem; text-align:center; }
.modal-overlay { position:fixed; inset:0; z-index:2100; display:grid; place-items:center; visibility:hidden; opacity:0; padding:22px; background:rgba(7,26,21,.62); backdrop-filter:blur(6px); transition:.22s ease; }
.modal-overlay.open { visibility:visible; opacity:1; }
.product-modal { width:min(800px,100%); max-height:min(720px,calc(100vh - 44px)); overflow:auto; display:grid; grid-template-columns:.9fr 1.1fr; border-radius:28px; background:#fff; box-shadow:var(--shadow-lg); transform:translateY(18px) scale(.98); transition:transform .22s ease; }
.modal-overlay.open .product-modal { transform:none; }
.modal-media { min-height:420px; display:grid; place-items:center; background:radial-gradient(circle at 60% 25%,#fff,#f1e8db 72%); }
.modal-media .art { transform:scale(1.45); }
.modal-copy { position:relative; padding:44px 38px; }
.modal-copy .close-btn { position:absolute; right:18px; top:18px; }
.modal-copy h2 { margin-top:9px; font-size:2.2rem; }
.modal-copy > p { margin-top:18px; color:var(--muted); }
.detail-list { margin:26px 0; padding:0; list-style:none; }
.detail-list li { display:flex; align-items:center; gap:10px; margin:10px 0; color:#46536e; font-size:.9rem; }
.detail-list li::before { content:"✓"; width:22px; height:22px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--success); font-size:.72rem; font-weight:900; }
.toast { position:fixed; left:50%; bottom:24px; z-index:3000; max-width:min(440px,calc(100% - 30px)); padding:13px 18px; border-radius:999px; color:#fff; background:var(--ink); box-shadow:var(--shadow-lg); font-size:.86rem; font-weight:800; opacity:0; transform:translate(-50%,20px); pointer-events:none; transition:.22s ease; }
.toast.show { opacity:1; transform:translate(-50%,0); }
.mobile-panel { display:none; }
@media (max-width: 1050px) {
  .nav-links { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .hero-grid { grid-template-columns:1fr .88fr; gap:35px; }
  .hero-visual { min-height:500px; }
  .product-grid { grid-template-columns:repeat(3,1fr); }
  .sector-grid { grid-template-columns:repeat(3,1fr); }
  .footer-main { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-main > :first-child { grid-column:1/-1; }
  .mobile-panel { position:fixed; inset:118px 0 auto; z-index:1500; display:block; visibility:hidden; opacity:0; padding:18px 20px 28px; border-bottom:1px solid var(--line); background:rgba(251,248,242,.98); transform:translateY(-12px); transition:.2s ease; }
  .mobile-panel.open { visibility:visible; opacity:1; transform:none; }
  .mobile-panel a { display:block; padding:14px 6px; border-bottom:1px solid var(--line); color:var(--ink); font-weight:800; }
}
@media (max-width: 820px) {
  .topbar-inner { justify-content:center; }
  .topbar-inner > :last-child { display:none; }
  .navbar { min-height:72px; }
  .brand-copy span { display:none; }
  .nav-actions .btn-dark { display:none; }
  .hero { padding-top:58px; }
  .hero-grid, .page-hero-grid, .about-grid, .contact-layout { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-copy .lead { margin-inline:auto; }
  .hero-actions, .hero-note { justify-content:center; }
  .hero-visual { min-height:480px; margin-top:20px; }
  .hero-photo { inset:0 0 55px 0; }
  .hero-stamp { right:10px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .section { padding:80px 0; }
  .section-head { align-items:flex-start; flex-direction:column; }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .category-card.featured { grid-column:span 2; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .catalogue-toolbar { grid-template-columns:1fr; }
  .process-grid, .values-grid { grid-template-columns:1fr; }
  .cta-card { grid-template-columns:1fr; padding:42px 34px; }
  .footer-main { grid-template-columns:repeat(2,1fr); }
  .footer-main > :first-child { grid-column:1/-1; }
  .product-modal { grid-template-columns:1fr; }
  .modal-media { min-height:270px; }
  .modal-media .art { transform:scale(1.12); }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
}
@media (max-width: 580px) {
  .container { width:min(100% - 28px,var(--max)); }
  .topbar { font-size:.72rem; }
  .brand-mark { width:42px; height:42px; }
  .quote-trigger .label { display:none; }
  h1 { font-size:clamp(2.75rem,14vw,4.3rem); }
  .hero-visual { min-height:410px; }
  .hero-card { padding:18px; }
  .hero-stamp { width:94px; height:94px; top:24px; font-size:.58rem; }
  .trust-grid, .category-grid, .product-grid, .sector-grid, .footer-main { grid-template-columns:1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right:0; border-bottom:1px solid var(--line); }
  .category-card.featured { grid-column:auto; min-height:390px; }
  .category-card.featured .category-art { right:-40px; bottom:45px; }
  .category-card { min-height:305px; }
  .filters { flex-wrap:nowrap; overflow:auto; padding-bottom:6px; scrollbar-width:none; }
  .filter-btn { flex:0 0 auto; }
  .product-media { height:210px; }
  .footer-main > :first-child { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; justify-content:center; padding:22px 0; }
  .page-hero { padding:66px 0 48px; }
  .about-panel, .contact-panel, .form-card { padding:28px 22px; }
  .modal-copy { padding:38px 24px 28px; }
  .modal-copy h2 { font-size:1.8rem; }
  .cta-card { padding:36px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}


/* Official South Packaging identity and catalogue photography */
.brand-logo { width: 190px; height: 78px; object-fit: contain; object-position: left center; }
.site-footer .brand-logo { width: 220px; height: 96px; background:#fff; border-radius:12px; padding:8px 10px; }
.site-header { background: rgba(255,255,255,.94); }
.hero { background: linear-gradient(135deg,#fffdf6 0%,#f2eadc 100%); }
.hero h1 em { color: var(--ink); font-family: inherit; font-weight: 900; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: .12em; text-underline-offset: .08em; }
.btn-primary { color: var(--ink); }
.product-media { display:grid; place-items:center; padding:24px; background:linear-gradient(145deg,#fff,#f3eee5); }
.product-image { width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 14px 18px rgba(17,28,59,.12)); transition:transform .25s ease; }
.product-card:hover .product-image { transform:scale(1.035); }
.product-image-thumb { max-width:58px; max-height:58px; }
.product-image-modal { width:min(86%,460px); height:min(82%,430px); }
.product-specs { display:flex; flex-wrap:wrap; gap:7px; margin-top:16px; }
.product-specs span { padding:6px 9px; border-radius:999px; color:#4e5870; background:#f1f3f7; font-size:.67rem; font-weight:800; }
.quote-thumb { padding:8px; background:#f5f2ec; }
.modal-media { padding:36px; }
.category-photo { position:absolute; right:18px; bottom:62px; width:48%; height:48%; object-fit:contain; filter:drop-shadow(0 18px 20px rgba(16,43,120,.16)); transition:transform .25s ease; }
.category-card:hover .category-photo { transform:translateY(-6px) rotate(-2deg); }
.category-card.featured .category-photo { width:52%; height:62%; right:16px; bottom:38px; }
.catalogue-download { display:inline-flex; align-items:center; gap:10px; }
.additional-items { padding-top:0; }
.additional-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:28px; }
.additional-item { display:flex; align-items:flex-start; gap:12px; min-height:86px; padding:18px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow-sm); }
.additional-item::before { content:'✓'; display:grid; place-items:center; flex:0 0 26px; width:26px; height:26px; border-radius:50%; color:var(--ink); background:var(--accent); font-weight:900; }
.additional-item span { color:#45516a; font-size:.88rem; font-weight:700; line-height:1.45; }
.catalogue-source-note { margin-top:22px; color:var(--muted); font-size:.82rem; }
@media (max-width:1050px){ .brand-logo{width:165px;height:68px;} }
@media (max-width:820px){ .brand-logo{width:142px;height:60px;} .additional-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:580px){ .brand-logo{width:128px;height:54px;} .additional-grid{grid-template-columns:1fr;} .category-photo{width:46%;height:43%;} }

.product-card { display:flex; flex-direction:column; }
.product-body { display:flex; flex:1; flex-direction:column; }
.product-actions { margin-top:auto; padding-top:18px; }
.product-specs { margin-bottom:2px; }
.navbar { min-height:94px; }
@media(max-width:820px){.navbar{min-height:78px;}}


.protection-toast{position:fixed;right:18px;bottom:18px;z-index:9999;background:#102b78;color:#fff;padding:12px 16px;border-radius:12px;box-shadow:0 12px 32px rgba(16,43,120,.28);font-size:.92rem;line-height:1.35;max-width:320px;opacity:0;transform:translateY(10px);pointer-events:none;transition:opacity .2s ease,transform .2s ease}
.protection-toast.visible{opacity:1;transform:translateY(0)}
img{-webkit-user-drag:none;user-select:none;-webkit-user-select:none}

.product-card[hidden], .product-card.is-filtered-out { display:none !important; }
