/* ==========================================================================
   United Business Solutions — Import & Export
   Editorial · Kinetic · Awwwards-grade
   Brand: Deep Aubergine (#2A0F35) · Gold (#C6A24F) · Ivory (#F5EEE1)
   ========================================================================== */

:root {
  --plum-950: #14071B;
  --plum-900: #1E0A28;
  --plum-800: #2A0F35;
  --plum-700: #3B1B4A;
  --plum-600: #4E2760;
  --plum-500: #663880;
  --gold-600: #B08935;
  --gold-500: #C6A24F;
  --gold-400: #D9B366;
  --gold-300: #E8CC8C;
  --ivory: #F5EEE1;
  --cream: #EFE6D2;
  --paper: #FAF6EC;
  --ink: #14101A;
  --grain-opacity: 0.06;

  --font-display: "Fraunces", "Playfair Display", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Grain overlay — global editorial texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.12 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
}

/* ================================ TYPE ================================= */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
.display em { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; color: var(--gold-500); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ================================ LOADER ================================ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--plum-900);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.1s var(--ease-in-out-quart);
}
#loader.done { transform: translateY(-101%); }
#loader .mark {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 180px);
  letter-spacing: -0.04em;
  overflow: hidden;
  display: flex; align-items: baseline; gap: 0.2ch;
}
#loader .mark span { display: inline-block; transform: translateY(110%); animation: rise 1.1s var(--ease-out-expo) forwards; }
#loader .mark span:nth-child(1) { animation-delay: 0.05s; }
#loader .mark span:nth-child(2) { animation-delay: 0.15s; color: var(--ivory); }
#loader .mark span:nth-child(3) { animation-delay: 0.25s; }
#loader .count {
  position: absolute; bottom: 40px; left: 40px;
  font-family: var(--font-mono); color: var(--gold-500);
  font-size: 12px; letter-spacing: 0.2em;
}
@keyframes rise { to { transform: translateY(0); } }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-500);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), background 0.25s;
}
.cursor.hover { width: 44px; height: 44px; background: var(--ivory); }
@media (hover: none) { .cursor { display: none; } }

/* ================================ NAV ================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  mix-blend-mode: normal;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(20, 7, 27, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 40px;
}
.nav .brand { display: flex; align-items: center; gap: 12px; color: var(--ivory); }
.nav .brand-mark {
  width: 42px; height: 42px;
  background: var(--ivory);
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
}
.nav .brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.nav .brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav .brand-text b {
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ivory);
}
.nav .brand-text small { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.24em; color: var(--gold-400); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--ivory);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out-expo);
}
.nav-cta:hover { background: var(--gold-500); color: var(--plum-900); transform: translateY(-1px); }

.burger { display: none; width: 36px; height: 36px; position: relative; }
.burger span { position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--ivory); transition: transform 0.3s; }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 21px; }
.burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--plum-900);
  z-index: 90;
  padding: 100px 40px 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-in-out-quart);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--ivory); font-family: var(--font-display); font-size: 40px;
  padding: 10px 0; border-bottom: 1px solid rgba(198, 162, 79, 0.2);
}
.mobile-menu a em { color: var(--gold-500); }

/* ================================ HERO ================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  background: var(--plum-900);
  overflow: hidden;
  color: var(--ivory);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease-out-expo), visibility 1.1s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 6s var(--ease-out-expo);
  filter: brightness(0.55) saturate(1.05);
}
.hero-slide.active .hero-slide-image { transform: scale(1.0); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,7,27,0.55) 0%, rgba(20,7,27,0.25) 40%, rgba(20,7,27,0.85) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 40px 90px;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  color: var(--gold-400);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out-expo) 0.3s, transform 0.9s var(--ease-out-expo) 0.3s;
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-title {
  font-size: clamp(44px, 8vw, 140px);
  max-width: 1200px;
  margin-bottom: 32px;
}
.hero-title .mask { display: block; overflow: hidden; }
.hero-title .mask > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease-out-expo);
}
.hero-slide.active .hero-title .mask:nth-child(1) > span { transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-title .mask:nth-child(2) > span { transform: translateY(0); transition-delay: 0.55s; }
.hero-slide.active .hero-title .mask:nth-child(3) > span { transform: translateY(0); transition-delay: 0.7s; }

.hero-sub {
  max-width: 520px;
  font-size: 15px;
  color: rgba(245, 238, 225, 0.78);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out-expo) 0.85s, transform 0.9s var(--ease-out-expo) 0.85s;
}
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out-expo) 1s, transform 0.9s var(--ease-out-expo) 1s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--gold-500);
  color: var(--plum-900);
  border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-out-expo);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(245, 238, 225, 0.3);
  color: var(--ivory);
  border-radius: 999px;
  font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold-500); background: rgba(198, 162, 79, 0.08); }

/* Slider controls */
.slider-ui {
  position: absolute; bottom: 40px; right: 40px;
  z-index: 4;
  display: flex; align-items: center; gap: 20px;
  color: var(--ivory);
}
.slider-count {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--gold-400);
}
.slider-count .cur { color: var(--ivory); font-size: 18px; }
.slider-btns { display: flex; gap: 8px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(245, 238, 225, 0.3);
  display: grid; place-items: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  color: var(--ivory);
}
.slider-btn:hover { border-color: var(--gold-500); background: var(--gold-500); color: var(--plum-900); }
.slider-btn svg { width: 16px; height: 16px; }

.hero-dots {
  position: absolute; left: 40px; bottom: 40px; z-index: 4;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 40px; height: 2px; background: rgba(245, 238, 225, 0.25);
  cursor: pointer; position: relative; overflow: hidden;
}
.hero-dot::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
}
.hero-dot.active::after { animation: fillBar 5s linear forwards; }
@keyframes fillBar { to { transform: scaleX(1); } }

/* Vertical side info */
.hero-side {
  position: absolute; left: 40px; top: 50%; transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 4;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245, 238, 225, 0.55);
  white-space: nowrap;
}

/* ============================== MARQUEE ================================ */
.marquee {
  background: var(--plum-800);
  color: var(--gold-500);
  padding: 30px 0;
  border-top: 1px solid rgba(198, 162, 79, 0.15);
  border-bottom: 1px solid rgba(198, 162, 79, 0.15);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.marquee-track span::after {
  content: "✦";
  margin-left: 60px;
  color: var(--gold-500);
  font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================== SECTIONS =============================== */
section { position: relative; }

.section-pad { padding: 140px 40px; max-width: 1400px; margin: 0 auto; }
.section-pad-lg { padding: 180px 40px; max-width: 1400px; margin: 0 auto; }

.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}
.section-head .num { font-family: var(--font-mono); font-size: 12px; color: var(--gold-600); letter-spacing: 0.22em; }
.section-head .eyebrow { color: var(--plum-800); margin-top: 6px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--plum-900);
}
.section-head h2 em { font-style: italic; color: var(--gold-600); }

/* Manifesto — numbered chapters */
.manifesto {
  background: var(--paper);
  color: var(--ink);
}
.chapter-list { border-top: 1px solid rgba(20, 16, 26, 0.12); }
.chapter {
  padding: 44px 0;
  border-bottom: 1px solid rgba(20, 16, 26, 0.12);
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  align-items: start;
  transition: padding 0.4s;
}
.chapter:hover { padding-left: 12px; }
.chapter .ch-num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--gold-600);
  padding-top: 12px;
}
.chapter h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--plum-900);
}
.chapter h3 em { font-style: italic; color: var(--gold-600); }
.chapter p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(20, 16, 26, 0.72);
  max-width: 520px;
  padding-top: 14px;
}

/* Feature strip — 3-up craft */
.features {
  background: var(--plum-900);
  color: var(--ivory);
  padding: 120px 40px;
}
.features-inner { max-width: 1400px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.feature-card {
  padding: 40px 32px;
  border: 1px solid rgba(245, 238, 225, 0.12);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px at var(--mx,50%) var(--my,50%), rgba(198, 162, 79, 0.10), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover { border-color: rgba(198, 162, 79, 0.5); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card .f-num { font-family: var(--font-mono); font-size: 11px; color: var(--gold-500); letter-spacing: 0.2em; margin-bottom: 20px; }
.feature-card h4 { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14.5px; color: rgba(245, 238, 225, 0.7); line-height: 1.65; }
.feature-card .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-500); color: var(--plum-900);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature-card .icon svg { width: 22px; height: 22px; }

/* ============================ CATEGORIES ============================== */
.categories { background: var(--paper); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(20, 16, 26, 0.08);
  border-top: 1px solid rgba(20, 16, 26, 0.08);
  border-bottom: 1px solid rgba(20, 16, 26, 0.08);
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--plum-900);
  cursor: pointer;
  color: var(--ivory);
}
.cat-card .cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  filter: brightness(0.55) saturate(1.1);
  transition: transform 1.2s var(--ease-out-expo), filter 0.6s;
}
.cat-card:hover .cat-img { transform: scale(1.14); filter: brightness(0.5) saturate(1.2); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 7, 27, 0.9) 100%);
}
.cat-body {
  position: absolute; left: 32px; right: 32px; bottom: 32px;
  z-index: 2;
}
.cat-body .cat-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--gold-400);
  letter-spacing: 0.2em; margin-bottom: 12px;
}
.cat-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.05;
}
.cat-body p { font-size: 13px; color: rgba(245, 238, 225, 0.75); margin-bottom: 18px; max-width: 340px; }
.cat-inquire {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-400);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-500);
  transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}
.cat-inquire:hover { gap: 14px; color: var(--gold-300); }

/* ============================ PRODUCTS SHOWCASE ============================== */
.showcase {
  background: var(--plum-950);
  color: var(--ivory);
  padding: 160px 40px;
  overflow: hidden;
}
.showcase-inner { max-width: 1400px; margin: 0 auto; }
.showcase .section-head h2, .showcase .section-head .num, .showcase .section-head .eyebrow {
  color: var(--ivory);
}
.showcase .section-head .num, .showcase .section-head .eyebrow { color: var(--gold-500); }

.showcase-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 60px;
}
.tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(245, 238, 225, 0.2);
  color: rgba(245, 238, 225, 0.75);
  font-size: 12.5px; letter-spacing: 0.04em;
  transition: all 0.3s;
}
.tab:hover { border-color: var(--gold-500); color: var(--ivory); }
.tab.active { background: var(--gold-500); border-color: var(--gold-500); color: var(--plum-900); font-weight: 600; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--plum-800);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}
.product-card:hover { transform: translateY(-6px); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--plum-700);
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
  filter: saturate(1.05) contrast(1.02);
}
.product-card:hover .product-media img { transform: scale(1.08); }
.product-media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 30%, rgba(20, 7, 27, 0.4) 90%);
  z-index: 1; pointer-events: none;
}
.product-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.product-body .p-cat {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold-400); text-transform: uppercase;
}
.product-body h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--ivory);
}
.product-body p { font-size: 12.5px; color: rgba(245, 238, 225, 0.6); line-height: 1.5; }
.product-inquire {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-400); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}
.product-inquire:hover { gap: 14px; color: var(--ivory); }
.product-inquire svg { width: 14px; height: 14px; }

/* ============================ PROCESS (parallax editorial) ============================== */
.editorial {
  padding: 200px 40px;
  background: var(--paper);
  overflow: hidden;
}
.editorial-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 160px;
}
.editorial-row:last-child { margin-bottom: 0; }
.editorial-row.reverse { direction: rtl; }
.editorial-row.reverse > * { direction: ltr; }

.editorial-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--plum-800);
  border-radius: 2px;
}
.editorial-media img {
  width: 100%; height: 110%; object-fit: cover;
  filter: saturate(1.05);
  will-change: transform;
}
.editorial-media .frame-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold-500); color: var(--plum-900);
  padding: 8px 14px; border-radius: 2px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  z-index: 2;
}

.editorial-text .num { font-family: var(--font-mono); color: var(--gold-600); font-size: 12px; letter-spacing: 0.24em; margin-bottom: 20px; }
.editorial-text h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--plum-900);
  margin-bottom: 28px;
}
.editorial-text h3 em { font-style: italic; color: var(--gold-600); }
.editorial-text p {
  font-size: 16px;
  line-height: 1.68;
  color: rgba(20, 16, 26, 0.72);
  margin-bottom: 20px;
  max-width: 480px;
}
.editorial-text ul { list-style: none; margin-top: 24px; }
.editorial-text li {
  padding: 12px 0;
  border-top: 1px solid rgba(20, 16, 26, 0.12);
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 14px;
  color: rgba(20, 16, 26, 0.85);
}
.editorial-text li:last-child { border-bottom: 1px solid rgba(20, 16, 26, 0.12); }
.editorial-text li span { font-family: var(--font-mono); font-size: 11px; color: var(--gold-600); letter-spacing: 0.1em; }

/* ============================ STATS ============================== */
.stats {
  background: var(--plum-900);
  color: var(--ivory);
  padding: 120px 40px;
}
.stats-inner { max-width: 1400px; margin: 0 auto; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px;
}
.stat {
  border-top: 1px solid rgba(245, 238, 225, 0.2);
  padding-top: 24px;
}
.stat .val {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  color: var(--gold-500);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.stat .lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 238, 225, 0.6);
  margin-top: 12px;
}

/* ============================ CERTS ============================== */
.certs {
  background: var(--paper);
  padding: 120px 40px;
}
.certs-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.certs .eyebrow { color: var(--gold-600); }
.certs h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--plum-900);
  margin: 12px 0 60px;
  letter-spacing: -0.015em;
}
.certs h2 em { font-style: italic; color: var(--gold-600); }
.cert-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px 60px;
}
.cert-item {
  font-family: var(--font-display); font-size: 26px;
  color: var(--plum-900);
  letter-spacing: 0.02em;
  position: relative; padding: 6px 4px;
}
.cert-item span { color: var(--gold-600); }

/* ============================ CTA ============================== */
.cta {
  background: var(--plum-900);
  color: var(--ivory);
  padding: 180px 40px;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1800&q=80&auto=format&fit=crop") center/cover;
  filter: brightness(0.28) saturate(1.1);
  transform: scale(1.05);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--plum-900) 0%, rgba(20, 7, 27, 0.7) 50%, var(--plum-900) 100%);
}
.cta-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; text-align: center; }
.cta .eyebrow { color: var(--gold-400); }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 20px 0 40px;
}
.cta h2 em { font-style: italic; color: var(--gold-500); }
.cta p { max-width: 540px; margin: 0 auto 40px; color: rgba(245, 238, 225, 0.75); font-size: 16px; }

.wa-big {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 22px 40px;
  background: var(--gold-500);
  color: var(--plum-900);
  border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
}
.wa-big:hover { background: var(--gold-400); transform: translateY(-3px); }
.wa-big svg { width: 22px; height: 22px; }

/* ============================ CONTACT ============================== */
.contact {
  background: var(--paper);
  padding: 160px 40px;
}
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px); font-weight: 400;
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--plum-900); margin-bottom: 30px;
}
.contact-left h2 em { font-style: italic; color: var(--gold-600); }
.contact-left p { max-width: 440px; color: rgba(20, 16, 26, 0.7); font-size: 16px; margin-bottom: 40px; }
.contact-info { list-style: none; }
.contact-info li {
  padding: 20px 0;
  border-top: 1px solid rgba(20, 16, 26, 0.12);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-size: 15px;
  color: var(--plum-900);
}
.contact-info li:last-child { border-bottom: 1px solid rgba(20, 16, 26, 0.12); }
.contact-info li span:first-child {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold-600); letter-spacing: 0.2em; text-transform: uppercase;
}
.contact-info li a { color: var(--plum-900); font-weight: 500; }
.contact-info li a:hover { color: var(--gold-600); }

.contact-form {
  background: var(--plum-900);
  padding: 50px 44px;
  border-radius: 4px;
  color: var(--ivory);
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 30px; font-weight: 400;
  margin-bottom: 30px; letter-spacing: -0.01em;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(245, 238, 225, 0.2);
  padding: 12px 0;
  color: var(--ivory); font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { -webkit-appearance: none; appearance: none; background: transparent; }
.field select option { background: var(--plum-900); color: var(--ivory); }
.form-actions { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: rgba(245, 238, 225, 0.55); }

/* ============================ FOOTER ============================== */
footer {
  background: var(--plum-950);
  color: rgba(245, 238, 225, 0.6);
  padding: 80px 40px 40px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 238, 225, 0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand .brand-mark {
  width: 64px; height: 64px; background: var(--ivory);
  border-radius: 50%; display: grid; place-items: center; overflow: hidden;
}
.footer-brand .brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.footer-brand h4 { font-family: var(--font-display); font-size: 26px; color: var(--ivory); font-weight: 500; letter-spacing: -0.01em; }
.footer-brand p { color: rgba(245, 238, 225, 0.55); font-size: 14px; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(245, 238, 225, 0.65); font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: rgba(245, 238, 225, 0.4);
  text-transform: uppercase;
}
.footer-bottom a { color: var(--gold-500); }

/* ============================ FLOATING WHATSAPP ============================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4), 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease-out-expo);
}
.wa-float:hover { transform: scale(1.08) translateY(-4px); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0.5;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.5; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

/* ============================ REVEAL ============================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
.reveal.in { opacity: 1; transform: translateY(0); }

.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease-out-expo); }
.mask-line.in > span { transform: translateY(0); }

/* ============================ PRODUCTS PAGE ============================== */
.page-hero {
  background: var(--plum-900);
  color: var(--ivory);
  padding: 200px 40px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1509358271058-acd22cc93898?w=1800&q=80&auto=format&fit=crop") center/cover;
  filter: brightness(0.3) saturate(1.1);
  opacity: 0.5;
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 156px);
  font-weight: 400; line-height: 0.94;
  letter-spacing: -0.03em; margin: 20px 0 30px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-500); }
.page-hero p { max-width: 620px; color: rgba(245, 238, 225, 0.7); font-size: 16px; }

.page-crumbs { padding: 26px 40px; background: var(--paper); border-bottom: 1px solid rgba(20,16,26,0.08); }
.page-crumbs-inner {
  max-width: 1400px; margin: 0 auto;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(20,16,26,0.6);
}
.page-crumbs-inner a { color: var(--gold-600); }

.products-page-wrap { background: var(--paper); padding: 90px 40px 160px; }
.products-page { max-width: 1400px; margin: 0 auto; }
.products-page .filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 50px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(20, 16, 26, 0.12);
}
.products-page .filter {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(20, 16, 26, 0.15);
  color: rgba(20, 16, 26, 0.75);
  font-size: 12.5px; letter-spacing: 0.03em;
  transition: all 0.3s;
}
.products-page .filter:hover { border-color: var(--gold-600); color: var(--plum-900); }
.products-page .filter.active { background: var(--plum-900); border-color: var(--plum-900); color: var(--ivory); font-weight: 500; }

.cat-block { margin-bottom: 100px; }
.cat-block h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 54px); font-weight: 400;
  color: var(--plum-900); margin-bottom: 8px; letter-spacing: -0.015em;
}
.cat-block h2 em { font-style: italic; color: var(--gold-600); }
.cat-block .cat-desc { color: rgba(20,16,26,0.6); margin-bottom: 40px; max-width: 560px; }

.product-grid-light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.p-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(20, 16, 26, 0.08);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.p-item:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(20, 7, 27, 0.25); }
.p-item .m { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream); }
.p-item .m img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.p-item:hover .m img { transform: scale(1.08); }
.p-item .b { padding: 20px 22px 22px; }
.p-item .b h4 { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--plum-900); margin-bottom: 6px; letter-spacing: -0.005em; }
.p-item .b p { font-size: 12.5px; color: rgba(20,16,26,0.6); line-height: 1.5; margin-bottom: 14px; min-height: 38px; }
.p-item .b .inq {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--plum-900); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(20,16,26,0.15);
  transition: all 0.3s;
}
.p-item .b .inq:hover { background: #25D366; color: #fff; border-color: #25D366; }
.p-item .b .inq svg { width: 14px; height: 14px; }

/* ============================ RESPONSIVE ============================== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid-light { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .editorial-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 100px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .chapter { grid-template-columns: 60px 1fr; }
  .chapter p { grid-column: 2; padding-top: 4px; }
}
@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .hero-content { padding: 0 20px 90px; }
  .hero-side { display: none; }
  .slider-ui { right: 20px; bottom: 30px; }
  .hero-dots { left: 20px; bottom: 30px; }
  .section-pad, .section-pad-lg { padding: 90px 20px; }
  .features, .stats, .cta, .editorial, .certs, .contact, .showcase { padding-left: 20px; padding-right: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid-light { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cursor { display: none; }
  .products-page-wrap { padding: 60px 20px 100px; }
  .contact-form { padding: 36px 24px; }
}
