:root {
  --color-orange: #e6a15c;
  --color-orange-dark: #b77332;
  --color-yellow: #e6a15c;
  --color-primary: #c53030;
  --color-primary-dark: #a32626;
  --color-button-light: #faf5ff;
  --color-kraft: #c9965a;
  --color-cream: #fff9f1;
  --color-soft: #faf8f4;
  --color-dark: #1a1a1a;
  --color-gray: #666;
  --color-line: #eadfce;
  --container: 1440px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 20px 55px rgba(49, 35, 20, .09);
  --header-height: 104px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; overflow-x: hidden; color: var(--color-dark); background: #fff; font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(82px, 7vw, 112px) 0; }
.eyebrow { margin: 0 0 12px; color: var(--color-primary); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-heading { margin: 0 auto 34px; text-align: center; }
.section-heading h2, .certification-heading h2, .about-copy h2, .private-label-copy h2 { margin: 0; font-size: clamp(30px, 3.1vw, 50px); font-weight: 750; line-height: 1.08; letter-spacing: -.035em; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; transform: translateY(-160%); color: #fff; background: var(--color-dark); border-radius: 8px; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(244, 106, 18, .45); outline-offset: 3px; }

.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; max-width: 100%; padding: 15px 24px; border: 2px solid var(--color-dark); border-radius: 7px; font-size: 13px; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; line-height: 1.35; text-align: center; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, color .2s ease; }
.button::before { content: ""; position: absolute; inset: 4px; border: 1px solid currentColor; border-radius: 3px; opacity: .28; pointer-events: none; }
.button::after { content: ""; flex: 0 0 32px; width: 32px; height: 18px; background: currentColor; -webkit-mask: url('../images/decorativos/bigote-boton.svg') center / contain no-repeat; mask: url('../images/decorativos/bigote-boton.svg') center / contain no-repeat; transition: transform .2s var(--ease); }
.button:hover { transform: translate(-1px, -2px); }
.button svg { display: none; }
.button:hover::after { transform: rotate(-7deg); }
/* Two reusable variants: solid on light surfaces, light on colored surfaces. */
.button-primary { color: var(--color-button-light); border-color: transparent; background: var(--color-primary); box-shadow: none; }
.button-primary::before { display: none; }
.button-primary svg { color: var(--color-primary); background: var(--color-button-light); }
.button-primary:hover { background: var(--color-primary-dark); box-shadow: none; }
.button-secondary { color: var(--color-primary); border-color: currentColor; background: transparent; box-shadow: none; }
.button-secondary svg { color: var(--color-button-light); background: var(--color-primary); }
.button-secondary:hover { color: var(--color-primary-dark); background: rgba(197,48,48,.06); box-shadow: none; }
.button-secondary::before { display: none; }
.final-cta .button-secondary { color: var(--color-button-light); }
.final-cta .button-secondary:hover { background: rgba(250,245,255,.12); }
.button:focus-visible { outline: 3px solid var(--color-dark); outline-offset: 4px; box-shadow: 0 0 0 4px var(--color-button-light); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; height: var(--header-height); background: transparent; box-shadow: none; transition: height .3s ease, box-shadow .3s ease, background .3s ease, backdrop-filter .3s ease; }
.site-header::after { display: none; }
.site-header.is-scrolled { height: 78px; background: rgba(255,255,255,.94); box-shadow: 0 8px 32px rgba(23,23,23,.08); backdrop-filter: blur(14px); }
.header-inner { display: grid; grid-template-columns: 145px 1fr auto; align-items: center; height: 100%; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img, .brand .custom-logo { width: 82px; max-height: 84px; object-fit: contain; filter: none; transition: width .3s ease; }
.is-scrolled .brand img, .is-scrolled .brand .custom-logo { width: 62px; }
.primary-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; display: block; padding: 14px 0; color: var(--color-dark); font-size: 14px; font-weight: 600; }
.nav-list a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--color-orange); transition: transform .3s var(--ease); }
.nav-list a:hover::after, .nav-list .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }
.header-cta { min-width: 205px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--color-dark); transition: transform .25s ease, opacity .25s ease, background .25s ease; }

.hero { position: relative; min-height: 690px; margin-bottom: 170px; padding: clamp(72px, 7vw, 112px) 0 250px; overflow: visible; background: #e9dcc8; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.32) 0%, rgba(255,251,244,.12) 46%, rgba(20,16,12,.16) 72%, rgba(16,13,10,.40) 100%); }
.hero-background-slider { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-background-slide { position: absolute; inset: 0; opacity: 0; background-position: center; background-size: cover; animation: hero-background-fade 18s ease-in-out infinite; will-change: opacity, transform; }
.hero-background-slide:nth-child(2) { animation-delay: -12s; background-position: center 66%; }
.hero-background-slide:nth-child(3) { animation-delay: -6s; }
@keyframes hero-background-fade { 0%, 28% { opacity: 1; transform: scale(1.02); } 34%, 94% { opacity: 0; transform: scale(1.07); } 100% { opacity: 1; transform: scale(1.02); } }
.hero-centered-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 350px; text-align: center; }
.hero-centered-content h1 { position: relative; isolation: isolate; max-width: 1120px; margin: 0; font-size: clamp(60px, 6.1vw, 94px); font-weight: 850; line-height: .94; letter-spacing: -.068em; text-wrap: balance; text-shadow: 0 2px 0 rgba(255,255,255,.7), 0 16px 36px rgba(37,25,13,.17); }
.hero-centered-content h1::before { content: ""; position: absolute; z-index: -1; inset: -22px -46px; opacity: .62; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,252,246,.88), rgba(255,252,246,0) 70%); filter: blur(10px); animation: hero-title-glow 4.8s ease-in-out infinite; }
.hero-centered-content h1 span { position: relative; display: inline-block; padding: 0; color: var(--color-dark); }
.hero-centered-content h1 span::before, .hero-centered-content h1 span::after { display: none; }
.hero-centered-content h1 .hero-word-rotator { display: inline-grid; vertical-align: bottom; color: var(--color-primary); }
.hero-word { grid-area: 1 / 1; font-weight: inherit; opacity: 0; white-space: nowrap; }
.hero-word:nth-of-type(2) { opacity: 1; }
.hero-word-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .hero-word { animation: hero-word-cycle 9s ease-in-out infinite; }
  .hero-word:nth-of-type(3) { animation-delay: -6s; }
  .hero-word:nth-of-type(4) { animation-delay: -3s; }
}
@keyframes hero-word-cycle {
  0%, 27% { opacity: 1; transform: translateY(0); }
  33%, 94% { opacity: 0; transform: translateY(-.15em); }
  95% { opacity: 0; transform: translateY(.15em); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-title-shine { 0%, 30% { background-position: 120% 50%; } 58%, 100% { background-position: -120% 50%; } }
@keyframes hero-title-line { to { transform: scaleX(1); } }
@keyframes hero-title-glow { 0%, 100% { opacity: .48; transform: scale(.96); } 50% { opacity: .72; transform: scale(1.03); } }
.hero-centered-lead { max-width: 710px; margin: 26px auto 0; color: #3f382f; font-size: clamp(16px, 1.45vw, 20px); font-weight: 600; line-height: 1.55; text-shadow: 0 1px 14px rgba(255,255,255,.6); }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 34px; }
.hero-cta .button { width: auto; min-width: 190px; }
.hero-bag-marquee { position: absolute; z-index: 5; right: 0; bottom: -155px; left: 0; height: 320px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.hero-bag-track { display: flex; width: max-content; height: 100%; animation: hero-bag-marquee 34s linear infinite; will-change: transform; }
.hero-bag-marquee:hover .hero-bag-track { animation-play-state: paused; }
.hero-bag-group { display: flex; flex: 0 0 auto; align-items: flex-end; gap: 18px; padding-right: 18px; }
.hero-marquee-product { position: relative; isolation: isolate; display: grid; place-items: end center; flex: 0 0 210px; width: 210px; height: 320px; transition: transform .35s var(--ease); }
.hero-marquee-product::before { content: ""; position: absolute; z-index: 0; right: 18%; bottom: 11px; left: 18%; height: 16px; border-radius: 50%; background: rgba(48,30,13,.18); filter: blur(9px); transform: scaleX(.86); transition: opacity .35s ease, transform .35s var(--ease); }
.hero-marquee-product:hover { transform: translateY(-8px); }
.hero-marquee-product:hover::before { opacity: .7; transform: scaleX(.72); }
.hero-marquee-product img { position: relative; z-index: 1; width: 210px; height: 296px; object-fit: contain; filter: none; }
@keyframes hero-bag-marquee { to { transform: translateX(-50%); } }
.cuspide-logo { display: inline-grid; grid-template-columns: auto 1fr; align-items: end; max-width: 126px; font-size: 18px; letter-spacing: .03em; line-height: .8; }
.cuspide-logo b { grid-row: span 2; margin-right: 4px; color: var(--color-orange); font-size: 20px; letter-spacing: -.25em; transform: translateX(-5px); }
.cuspide-logo small { grid-column: 2; font-size: 7px; letter-spacing: .18em; }

.benefits-wrap { position: relative; z-index: 10; padding-top: 42px; }
.benefits-card { display: grid; grid-template-columns: repeat(4, 1fr); padding: 29px 20px; border: 1px solid rgba(230, 218, 199, .75); border-radius: 26px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.benefit-item { display: grid; grid-template-columns: 74px 1fr; align-items: center; gap: 18px; min-height: 94px; padding: 0 24px; border-right: 1px solid #e7ddcf; transition: transform .3s var(--ease); }
.benefit-item:last-child { border-right: 0; }
.benefit-item:hover { transform: translateY(-3px); }
.benefit-icon { display: grid; place-items: center; width: 68px; height: 68px; color: var(--color-dark); border: 1px solid #f3a164; border-radius: 50%; background: var(--color-cream); transition: transform .3s var(--ease); }
.benefit-item:hover .benefit-icon { transform: translateY(-4px); }
.benefit-icon svg { width: 39px; height: 39px; stroke-width: 1.6; }
.benefit-item h2 { margin: 0 0 5px; font-size: 16px; line-height: 1.2; }
.benefit-item p { margin: 0; color: var(--color-gray); font-size: 12px; line-height: 1.45; }

.products-section { position: relative; padding-block: clamp(92px, 8vw, 124px); overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fffaf3 100%); isolation: isolate; }
.products-section::before { content: ""; position: absolute; z-index: 0; top: -70px; right: -80px; width: min(52vw, 760px); aspect-ratio: 1; opacity: .2; background: url('../images/texturas/textura-topografica.webp') center / cover no-repeat; pointer-events: none; transform: rotate(8deg); }
.products-section > .container { position: relative; z-index: 1; }
.product-categories { padding-top: clamp(92px, 8vw, 124px); }
.category-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.category-product-card { position: relative; min-height: 430px; border-radius: 28px; background: #ede3d4; box-shadow: 0 18px 44px rgba(45,31,18,.1); }
.category-product-card::after { content: ""; position: absolute; z-index: 1; inset: 34% 0 0; border-radius: 0 0 28px 28px; background: linear-gradient(180deg, transparent, rgba(21,15,10,.78)); pointer-events: none; }
.category-product-backdrop { position: absolute; inset: 0; overflow: hidden; border-radius: 28px; }
.category-product-backdrop img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s ease; }
.category-product-card:hover .category-product-backdrop img { transform: scale(1.04); filter: saturate(1.08); }
.category-product-bag { position: absolute; z-index: 2; right: 5%; bottom: -8px; width: min(43%, 310px); height: 510px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 22px 18px rgba(40,25,12,.28)); transition: transform .55s var(--ease), filter .55s ease; }
.category-product-card:hover .category-product-bag { transform: translateY(-10px) rotate(1deg); filter: drop-shadow(0 30px 22px rgba(40,25,12,.32)); }
.category-product-overlay { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; }
.category-product-overlay strong { position: relative; z-index: 2; max-width: 48%; font-size: clamp(27px, 2.5vw, 40px); line-height: 1; letter-spacing: -.045em; text-shadow: 0 3px 18px rgba(0,0,0,.28); }
.category-product-overlay .circle-arrow { position: static; flex: 0 0 auto; width: 46px; height: 46px; }
.category-product-card:hover .circle-arrow svg { transform: rotate(0); }
.product-grid, .product-archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(244, 106, 18, .4); box-shadow: 0 22px 45px rgba(47, 35, 23, .09); }
.product-card > a { display: grid; grid-template-columns: 42% 58%; min-height: 258px; }
.product-card-media { display: flex; align-items: flex-end; justify-content: center; padding: 18px 4px 0 18px; overflow: hidden; background: linear-gradient(150deg, #fffdf9, #f8f2e8); }
.product-card-media img { width: 155px; height: 225px; object-fit: contain; transition: transform .45s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 28px 26px 50px 18px; }
.product-card-copy h3, .product-card-copy h2 { margin: 0 0 10px; font-size: 19px; line-height: 1.15; letter-spacing: -.025em; }
.product-card-copy p { margin: 0; color: var(--color-gray); font-size: 12px; line-height: 1.55; }
.circle-arrow { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 34px; height: 34px; color: #fff; border-radius: 50%; background: var(--color-primary); }
.circle-arrow svg { width: 17px; transform: rotate(-45deg); transition: transform .3s var(--ease); }
.product-card:hover .circle-arrow svg { transform: rotate(0); }

.industries-section { position: relative; padding-block: clamp(92px, 8vw, 124px); overflow: hidden; background: #fff; isolation: isolate; }
.industries-section::before { content: ""; position: absolute; z-index: 0; inset: -4%; opacity: .3; background: url('../images/texturas/textura-harina-marco.webp') center / cover no-repeat; pointer-events: none; }
.industries-section::after { content: ""; position: absolute; z-index: 0; right: -8%; bottom: -34%; width: min(48vw, 680px); aspect-ratio: 1; opacity: .16; background: url('../images/texturas/textura-migas-esquinas.webp') center / cover no-repeat; pointer-events: none; }
.industries-section > .container { position: relative; z-index: 1; }
.industries-heading { max-width: 720px; margin-bottom: 38px; }
.industries-heading > p:last-child { max-width: 610px; margin: 14px auto 0; color: var(--color-gray); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; min-height: 250px; padding: 30px 28px 28px; overflow: hidden; border: 1px solid #eee2d3; border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: 0 14px 32px rgba(43,31,18,.05); transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.industry-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--color-orange), #f2b632); transform: scaleX(.28); transform-origin: left; transition: transform .4s var(--ease); }
.industry-card:hover { transform: translateY(-5px); border-color: rgba(244,106,18,.28); box-shadow: 0 20px 42px rgba(43,31,18,.09); }
.industry-card:hover::before { transform: scaleX(1); }
.industry-icon { display: grid; place-items: center; flex: 0 0 auto; width: 88px; height: 78px; transition: transform .35s var(--ease); }
.industry-card:hover .industry-icon { transform: translateY(-5px) rotate(-2deg) scale(1.04); }
.industry-icon img { display: block !important; width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; visibility: visible !important; }
.industry-copy h3 { margin: 24px 0 9px; font-size: 21px; line-height: 1.2; letter-spacing: -.03em; }
.industry-copy p { margin: 0; color: var(--color-gray); font-size: 13px; line-height: 1.6; }
.industries-secondary { max-width: 850px; margin: 32px auto 0; text-align: center; color: var(--color-gray); font-size: 14px; }
.industries-secondary a { display: inline-flex; align-items: center; gap: 8px; margin: 8px 0 0; color: var(--color-primary); font-weight: 750; }
.industries-secondary a:hover { text-decoration: underline; }

.private-label-section { position: relative; padding: clamp(68px, 6vw, 92px) 0; overflow: hidden; background: #f4e5ce; isolation: isolate; }
.private-label-section::before { content: ""; position: absolute; z-index: 0; inset: 0; opacity: .42; background: url('../images/texturas/textura-papel-kraft-claro.webp') center / cover no-repeat; pointer-events: none; }
.private-label-section > .private-label-banner { position: relative; z-index: 1; }
.private-label-banner { position: relative; min-height: 540px; overflow: hidden; background: #ead8bd url('../images/marca-blanca-banner-ai.webp') center / cover no-repeat; }
.private-label-banner::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(255,250,242,.98) 0%, rgba(255,250,242,.92) 30%, rgba(255,250,242,.46) 49%, rgba(255,250,242,.06) 68%); }
.private-label-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: 540px; }
.private-label-copy { width: min(48%, 650px); padding: 68px 0; }
.private-label-copy h2 { font-size: clamp(44px, 4.5vw, 68px); }
.private-label-lead { max-width: 560px; margin: 20px 0 0; color: #51483e; font-size: 17px; line-height: 1.6; }
.private-label-copy ul { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; color: #3c3b38; font-size: 14px; }
.private-label-copy li { display: flex; align-items: center; }
.private-label-copy li::before { content: "✓"; display: inline-grid; place-items: center; flex: 0 0 auto; width: 19px; height: 19px; margin-right: 10px; color: #fff; border-radius: 50%; background: var(--color-orange); font-size: 11px; }
.private-bag { position: absolute; bottom: 58px; width: 175px; height: 250px; clip-path: polygon(6% 0, 94% 2%, 100% 94%, 95% 100%, 5% 98%, 0 6%); background: linear-gradient(100deg, #a97c47, #d6a86e 48%, #bb8951); box-shadow: 0 22px 28px rgba(24,17,11,.22); }
.private-bag span { position: absolute; inset: 0; display: grid; place-content: center; color: #22190f; font-size: 25px; font-weight: 800; line-height: 1; text-align: center; }

.certifications-section { position: relative; padding-block: clamp(92px, 8vw, 124px); overflow: hidden; background: linear-gradient(110deg, #fbfbfb, #f7f7f7); isolation: isolate; }
.certifications-section::before { content: ""; position: absolute; z-index: 0; inset: -15%; opacity: .18; background: url('../images/texturas/textura-topografica.webp') center / cover no-repeat; pointer-events: none; transform: rotate(180deg); }
.certifications-section::after { content: ""; position: absolute; z-index: 0; bottom: -180px; left: -150px; width: 520px; aspect-ratio: 1; opacity: .15; background: url('../images/texturas/textura-migas-esquinas.webp') center / cover no-repeat; pointer-events: none; }
.certifications-section > .container { position: relative; z-index: 1; }
.certification-grid { display: grid; grid-template-columns: 340px 1fr; align-items: center; gap: 46px; }
.certification-card { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 230px; overflow: hidden; border: 1px solid #ece8e1; border-radius: 26px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,.045); }
.certification-item { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-width: 0; padding: 28px 25px; border-left: 1px solid #eee7dd; transition: background .3s ease, transform .3s var(--ease); }
.certification-item:first-child { border-left: 0; }
.certification-item:hover { z-index: 2; background: var(--color-cream); transform: translateY(-3px); }
.certification-icon-image { display: grid; place-items: center; width: 78px; height: 72px; margin-bottom: 18px; transition: transform .35s var(--ease); }
.certification-item:hover .certification-icon-image { transform: translateY(-4px) scale(1.04); }
.certification-icon-image img { display: block !important; width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; visibility: visible !important; }
.certification-item h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.25; letter-spacing: -.025em; }
.certification-item p { margin: 0; color: var(--color-gray); font-size: 12px; line-height: 1.55; }

.about-section { background: var(--color-soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(44px, 7vw, 110px); }
.about-visual { position: relative; }
.about-visual img { width: 100%; height: 500px; object-fit: cover; border-radius: 28px; }
.about-badge { position: absolute; right: -28px; bottom: 40px; width: 160px; padding: 20px; color: #fff; border-radius: 18px; background: var(--color-orange); box-shadow: 0 16px 32px rgba(244, 106, 18, .25); font-size: 12px; }
.about-badge strong { display: block; font-size: 26px; }
.about-copy h2 span { color: var(--color-orange); }
.about-copy > p:not(.eyebrow) { max-width: 600px; color: var(--color-gray); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 30px; overflow: hidden; border: 1px solid var(--color-line); border-radius: 14px; background: var(--color-line); }
.about-stats span { padding: 18px; background: #fff; font-size: 12px; }
.about-stats strong { display: block; font-size: 15px; }

.final-cta-section { padding-block: clamp(92px, 8vw, 124px); overflow: hidden; }
.final-cta { position: relative; min-height: 360px; padding: clamp(44px, 6vw, 80px); overflow: visible; color: #fff; border-radius: var(--radius-lg); background: var(--color-primary); }
.final-cta h2 { margin: 0; font-size: clamp(38px, 4.5vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.final-cta p:not(.eyebrow) { margin: 16px 0 26px; }
.final-cta .eyebrow { color: #ffe1c7; }
.final-cta img { position: absolute; right: 5%; bottom: -68px; width: 285px; max-height: 460px; object-fit: contain; mix-blend-mode: multiply; transform: rotate(5deg); filter: drop-shadow(0 26px 25px rgba(79,35,8,.25)); }

.site-footer { margin-top: 60px; }
.footer-main { padding: 58px 0 48px; background: linear-gradient(110deg, #f5d49d, #f9e4bd); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-brand img { width: 105px; height: 100px; object-fit: contain; }
.footer-brand p { margin: 0; font-size: 12px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; }
.footer-column h2 { margin: 0 0 6px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a:hover { color: var(--color-orange-dark); }
.footer-bottom { padding: 16px 0; color: rgba(255,255,255,.72); background: var(--color-dark); font-size: 11px; text-align: center; }

.page-main { min-height: 65vh; }
.page-hero { padding: clamp(72px, 9vw, 145px) 0; background: linear-gradient(120deg, var(--color-cream), #fff); }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(46px, 6vw, 88px); line-height: 1; letter-spacing: -.06em; }
.page-hero p:not(.eyebrow) { max-width: 680px; color: var(--color-gray); font-size: 19px; }
.compact-hero { padding: 72px 0; }
.compact-hero h1 { font-size: clamp(42px, 5vw, 72px); }
.prose { max-width: 900px; padding-top: 70px; padding-bottom: 90px; }
.prose h2, .prose h3 { line-height: 1.15; }
.prose a { color: var(--color-orange); text-decoration: underline; }
.posts-grid, .product-archive-grid { padding-top: 70px; padding-bottom: 90px; }
.content-card { padding: 30px; border: 1px solid var(--color-line); border-radius: var(--radius-md); }
.single-content { padding-top: 90px; padding-bottom: 100px; }
.single-content > h1 { max-width: 900px; font-size: clamp(44px, 6vw, 78px); line-height: 1; }
.single-media { margin: 44px 0; }
.single-media img { max-height: 700px; margin-inline: auto; object-fit: contain; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding-top: 80px; padding-bottom: 100px; }
.product-detail-media { padding: 30px; border-radius: 30px; background: var(--color-soft); }
.product-detail-media img { max-height: 720px; margin-inline: auto; object-fit: contain; mix-blend-mode: multiply; }
.product-detail-copy h1 { margin: 0; font-size: clamp(48px, 5.2vw, 78px); line-height: 1; letter-spacing: -.05em; }
.lead { color: var(--color-gray); font-size: 20px; }
.private-page-hero .split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 520px; }
.private-page-hero h1 span { color: var(--color-orange); }
.private-page-hero .private-bag { position: relative; right: auto; bottom: auto; justify-self: center; width: 300px; height: 430px; }
.content-section { padding: 90px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-grid article { padding: 38px; border: 1px solid var(--color-line); border-radius: 20px; }
.feature-grid article > span { color: var(--color-orange); font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 120px); }
.contact-panel { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 38px; border-radius: 24px; background: var(--color-cream); }
.contact-panel h2, .contact-copy h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 45px); line-height: 1.08; }
.contact-panel a { color: var(--color-orange-dark); font-weight: 700; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; color: var(--color-gray); font-size: 18px; }
.brands-strip { padding: 25px 0; }
.not-found { display: grid; place-items: center; min-height: 70vh; text-align: center; }
.not-found h1 { margin: 0; font-size: clamp(48px, 6vw, 84px); }
