
/* ══════════════════════════════════════
   SSG LANDING PAGE — PREMIUM REDESIGN
   Theme: Deep Chocolate Brown + Liquid Gold
   ══════════════════════════════════════ */

:root {
  /* Gold spectrum */
  --g0: #8B6914;
  --g1: #A07820;
  --g2: #C09030;
  --g3: #D4A835;
  --g4: #E8C050;
  --g5: #F0D070;
  --g6: #FAF0C8;
  /* Brown spectrum */
  --b0: #0D0804;
  --b1: #1A1008;
  --b2: #2A1C0E;
  --b3: #3D2812;
  --b4: #5A3D1C;
  --b5: #7A5530;
  --b6: #A07850;
  /* Creams */
  --c0: #FDF8F0;
  --c1: #F8F0E0;
  --c2: #F0E4C8;
  --c3: #E8D8B0;
  /* Text */
  --tx-dark: #1A1008;
  --tx-mid: #3D2812;
  --tx-soft: #6A4A28;
  --tx-faint: #9A7850;
  /* Nav */
  --nav-h: 88px;
  --nav-bg: rgba(253,248,240,0.97);
  /* Shadows */
  --sh-gold: 0 8px 40px rgba(168,120,32,0.2);
  --sh-dark: 0 8px 40px rgba(13,8,4,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--c0);
  color: var(--tx-dark);
  overflow-x: hidden;
}

/* ─── CANVAS PARTICLES ─── */
#ptcl {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.06;
}

/* ════════════════════════════
   LANDING HEADER — standalone
   ════════════════════════════ */
#lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(168,120,32,0.18);
  display: flex; align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  transition: height .4s, box-shadow .4s, background .4s;
}
#lp-header.shrunk {
  height: 70px;
  box-shadow: 0 6px 32px rgba(13,8,4,0.08);
  background: rgba(253,248,240,0.99);
}

/* Logo area */
.hd-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.hd-logo {
  width: 58px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hd-logo img { width: 100%; height: 100%; object-fit: contain; }
.hd-text { display: flex; flex-direction: column; }
.hd-name {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; color: var(--g1);
  line-height: 1.2; text-transform: uppercase;
}
.hd-sub {
  font-size: 9px; letter-spacing: 2.5px;
  color: var(--tx-faint); margin-top: 3px;
  text-transform: uppercase; font-weight: 500;
}

/* Nav links */
.hd-nav {
  display: flex; align-items: center; gap: 0;
}
.hd-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--tx-soft); text-decoration: none;
  padding: 0 22px; height: var(--nav-h);
  display: flex; align-items: center;
  position: relative; transition: color .3s;
}
#lp-header.shrunk .hd-nav a { height: 70px; }
.hd-nav a::after {
  content: ''; position: absolute; bottom: 0;
  left: 22px; right: 22px; height: 2.5px;
  background: linear-gradient(90deg, var(--g2), var(--g4));
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.hd-nav a:hover, .hd-nav a.active { color: var(--g1); }
.hd-nav a:hover::after, .hd-nav a.active::after { transform: scaleX(1); }

/* CTA button */
.hd-right { display: flex; align-items: center; gap: 14px; }
.hd-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--g1), var(--g3));
  color: #fff; border: none;
  padding: 12px 28px; cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: opacity .3s, transform .2s, box-shadow .3s;
  text-decoration: none; display: inline-flex; align-items: center;
  box-shadow: 0 4px 20px rgba(160,120,32,0.35);
}
.hd-cta:hover {
  opacity: .9; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(160,120,32,0.45);
}

/* Burger */
.hd-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hd-burger span {
  width: 26px; height: 2px; background: var(--g2); display: block;
  transition: all .3s; border-radius: 1px;
}
.hd-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hd-burger.open span:nth-child(2) { opacity: 0; }
.hd-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.hd-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 9998;
  background: var(--nav-bg); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(168,120,32,0.15);
  display: flex; flex-direction: column; padding: 20px 28px 28px;
  transform: translateY(-110%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hd-drawer.open { transform: translateY(0); pointer-events: all; }
.hd-drawer a {
  font-size: 13px; letter-spacing: 2px; color: var(--tx-soft);
  text-decoration: none; padding: 16px 0; font-weight: 600;
  border-bottom: 1px solid rgba(168,120,32,0.1);
  text-transform: uppercase; transition: color .3s;
}
.hd-drawer a:last-of-type { border-bottom: none; }
.hd-drawer a:hover { color: var(--g1); }
.hd-drawer .hd-cta { margin-top: 20px; text-align: center; justify-content: center; }

/* ════════════════════
   HERO SECTION
   ════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--b1);
  padding: calc(var(--nav-h) + 40px) 64px 80px;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; background-size: cover;
  background-position: center 30%;
  transform: scale(1.05); transition: opacity 1s ease, transform 6s ease;
  filter: brightness(0.90) saturate(0.8) contrast(1.1);
}
.hero-slide.on { opacity: 1; transform: scale(1); }

/* Overlay gradient */
/* .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,8,4,0.85) 0%,
    rgba(26,16,8,0.6) 45%,
    rgba(13,8,4,0.2) 100%
  );
} */

/* took from chat */
.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(13,8,4,0.75) 0%,
    rgba(13,8,4,0.55) 25%,
    rgba(13,8,4,0.15) 40%,
    rgba(13,8,4,0) 55%
  );
}

/* SVG decorative lines */
.hero-deco {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0.08;
  pointer-events: none;
}

/* .hero-content {
  position: relative; z-index: 3;
  max-width: 700px;
} */

/* chat */
/* .hero-content {
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    padding: 40px 50px;
    border-radius: 0;

    width: fit-content;
    max-width: 700px;
} */

/* chat - 2 */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.20) 70%,
        rgba(0,0,0,0) 100%
    );

    border-radius: 24px;
}

.h-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(232,192,80,0.4);
  color: var(--g4); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; padding: 10px 22px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
  text-transform: uppercase; font-family: 'Cinzel', serif;
  background: rgba(232,192,80,0.06);
}
.h-dot {
  width: 7px; height: 7px; background: var(--g4); border-radius: 50%;
  flex-shrink: 0; animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 70px; line-height: 1.08; color: #fff; font-weight: 900;
  margin-bottom: 14px;
  opacity: 0; animation: fadeUp .9s .5s forwards;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.hero h1 .gold { color: var(--g4); }
.hero h1 .italic {
  font-style: italic; font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic;
  color: rgba(232,192,80,0.6); letter-spacing: 5px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .9s .62s forwards;
}

.hero-sub {
  font-size: 18px; line-height: 1.9; color: rgba(255, 255, 255, 0.997);
  max-width: 540px; margin-bottom: 52px;
  opacity: 0; animation: fadeUp .9s .75s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-btns {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .9s forwards;
}
.btn-gold {
  background: linear-gradient(135deg, var(--g1), var(--g3));
  color: #fff; border: none; padding: 18px 44px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; cursor: pointer; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: all .3s; box-shadow: 0 6px 28px rgba(160,120,32,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--g2), var(--g4));
  transform: translateY(-3px); box-shadow: 0 12px 40px rgba(160,120,32,0.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(232,192,80,0.5);
  color: var(--g4); padding: 16px 42px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; cursor: pointer; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: all .3s;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-outline:hover {
  background: rgba(232,192,80,0.1); border-color: var(--g4);
  transform: translateY(-3px); color: var(--g5);
}

/* Hero right orbit */
.hero-orbit {
  position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
  opacity: 0; animation: fadeIn 1s 1.2s forwards; z-index: 3;
}
.orbit-ring {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(232,192,80,0.12); position: relative;
  animation: spin 40s linear infinite;
}
.orbit-ring::before {
  content: ''; position: absolute; inset: 36px; border-radius: 50%;
  border: 1px solid rgba(232,192,80,0.07);
}
.orbit-dot {
  position: absolute; width: 10px; height: 10px; background: var(--g4);
  border-radius: 50%; top: -5px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(232,192,80,0.9);
}
.orbit-lbl {
  position: absolute; font-size: 12px; color: rgba(232,192,80,0.5);
  letter-spacing: 2px; font-family: 'Cinzel', serif; font-size: 11px;
}
.orbit-t { top: 10px; left: 50%; transform: translateX(-50%); }
.orbit-b { bottom: 10px; left: 50%; transform: translateX(-50%); }
.orbit-l { left: 10px; top: 50%; transform: translateY(-50%); }
.orbit-r { right: 10px; top: 50%; transform: translateY(-50%); }
.orbit-ctr {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cinzel', serif; font-size: 58px; font-weight: 900;
  color: rgba(232,192,80,0.08); letter-spacing: -2px;
}

/* Hero controls */
.hero-ctrls {
  position: absolute; right: 64px; bottom: 36px; z-index: 4;
  display: flex; align-items: center; gap: 10px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(232,192,80,0.5);
  background: rgba(13,8,4,0.4); backdrop-filter: blur(8px);
  color: var(--g4); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.hero-arrow:hover { background: var(--g3); color: var(--b1); border-color: var(--g3); }
.hero-dots { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: all .25s;
}
.hero-dot.on { background: var(--g4); transform: scale(1.3); box-shadow: 0 0 0 5px rgba(232,192,80,0.15); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 44px; left: 64px; z-index: 4;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.hs-line {
  width: 56px; height: 1.5px; background: var(--g3);
  transform-origin: left; animation: scaleX 1.5s 1.8s forwards; transform: scaleX(0);
}
.hs-txt {
  font-size: 10px; letter-spacing: 3.5px; color: rgba(232,192,80,0.45);
  text-transform: uppercase; font-family: 'Cinzel', serif;
}

/* ════════════════════
   MARQUEE
   ════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--b2), var(--b3), var(--b2));
  border-top: 1px solid rgba(168,120,32,0.25);
  border-bottom: 1px solid rgba(168,120,32,0.25);
  padding: 18px 0; position: relative; z-index: 2;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--b2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--b2), transparent); }
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 30s linear infinite; width: max-content;
}
.mq-item {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3.5px; color: var(--g3);
  font-weight: 600; white-space: nowrap; text-transform: uppercase;
}
.mq-dot { color: var(--g4); font-size: 12px; }

/* ════════════════════
   STATS BAR
   ════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--c0);
  border-top: 1px solid rgba(168,120,32,0.12);
  border-bottom: 1px solid rgba(168,120,32,0.12);
}
.stat-item {
  padding: 44px 48px; border-right: 1px solid rgba(168,120,32,0.1);
  transition: all .4s; position: relative; overflow: hidden;
  border-top: 3px solid transparent;
}
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g1), var(--g4));
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { background: var(--c1); border-top-color: var(--g2); transform: translateY(-3px); box-shadow: var(--sh-gold); }
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Cinzel', serif;
  font-size: 54px; font-weight: 700; color: var(--g1);
  display: block; line-height: 1;
}
.stat-lbl {
  font-size: 10px; letter-spacing: 3px; color: var(--tx-faint);
  margin-top: 10px; display: block; text-transform: uppercase;
  font-weight: 600; font-family: 'Inter', sans-serif;
}

/* ════════════════════
   IMAGE STRIP
   ════════════════════ */
.img-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; height: 280px; }
.is-item { overflow: hidden; position: relative; }
.is-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.95) saturate(0.7) sepia(0.15);
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .6s;
}
.is-item:hover img { transform: scale(1.08); filter: brightness(0.95) saturate(0.95); }
.is-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(13,8,4,0.9), transparent);
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2.5px;
  color: var(--g4); text-transform: uppercase; font-weight: 600;
  opacity: 0; transition: opacity .4s;
}
.is-item:hover .is-lbl { opacity: 1; }

/* ════════════════════
   ABOUT SPLIT
   ════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.ab-img { height: 600px; position: relative; overflow: hidden; }
.ab-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.85) saturate(0.75) sepia(0.1);
  transition: transform .8s cubic-bezier(.4,0,.2,1), filter .6s;
}
.ab-img:hover img { transform: scale(1.04); filter: brightness(1) saturate(0.9); }
/* Corner accents */
.ab-img .ca { position: absolute; width: 26px; height: 26px; border-color: var(--g3); border-style: solid; }
.ca-tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.ca-tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.ca-bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
.ca-br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.ab-body {
  padding: 80px 68px; display: flex; flex-direction: column;
  justify-content: center; background: var(--c0);
}
.ab-body h2 { font-size: 44px; margin-bottom: 22px; }
.ab-body p { font-size: 16px; color: var(--tx-mid); line-height: 1.9; margin-bottom: 16px; }
.ab-pts { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 38px; }
.ab-pt { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; color: var(--tx-mid); line-height: 1.8; }
.ab-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 2px solid var(--g2); display: flex; align-items: center;
  justify-content: center; color: var(--g1); font-size: 14px;
  font-weight: 700; clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* ════════════════════
   SECTION UTILITY
   ════════════════════ */
.section { padding: 50px 64px; position: relative; }
.section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,144,48,0.4), transparent);
}
.s-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 5px; color: var(--g2);
  display: block; margin-bottom: 14px; text-transform: uppercase;
}
.s-title {
  font-family: 'Cinzel', serif;
  font-size: 50px; font-weight: 700; color: var(--tx-dark); line-height: 1.15;
}
.s-title em {
  color: var(--g2); font-style: italic;
  font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 400;
}
.s-center { text-align: center; margin-bottom: 30px; }
.divider {
  display: flex; align-items: center; gap: 16px;
  margin: 16px auto 0; max-width: 180px;
}
.divider::before,.divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g3));
}
.divider::after { background: linear-gradient(90deg, var(--g3), transparent); }
.divider i { width: 8px; height: 8px; background: var(--g2); transform: rotate(45deg); display: block; flex-shrink: 0; }

.bg-cream { background: var(--c0); }
.bg-cream2 { background: var(--c1); }
.bg-dark { background: var(--b1); }

/* ════════════════════
   WHY US GRID
   ════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(168,120,32,0.12); margin-top: 64px;
}
.why-card {
  background: var(--c0); padding: 52px 44px;
  position: relative; overflow: hidden; transition: all .4s;
  border-top: 3px solid transparent;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g4));
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.why-card:hover { background: var(--c1); border-top-color: var(--g2); transform: translateY(-4px); box-shadow: var(--sh-gold); }
.why-card:hover::before { transform: scaleX(1); }
.why-num { font-family: 'Cinzel', serif; font-size: 68px; color: var(--c2); line-height: 1; margin-bottom: 18px; font-weight: 900; transition: color .4s; }
.why-card:hover .why-num { color: var(--c3); }
.why-title { font-family: 'Cinzel', serif; font-size: 17px; color: var(--tx-dark); font-weight: 700; margin-bottom: 14px; line-height: 1.4; }
.why-desc { font-size: 14.5px; color: var(--tx-soft); line-height: 1.85; }
.why-arr { display: inline-block; color: var(--g2); font-size: 24px; margin-top: 24px; transition: transform .3s, opacity .3s; opacity: 0; font-weight: 700; }
.why-card:hover .why-arr { transform: translateX(10px); opacity: 1; }

/* ════════════════════
   SERVICES GRID
   ════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(168,120,32,0.12); margin-top: 64px;
}
.svc-card {
  background: var(--c1); padding: 52px 34px;
  border-top: 3px solid transparent; transition: all .4s; position: relative;
}
.svc-card:hover { background: var(--c0); border-top-color: var(--g2); transform: translateY(-4px); box-shadow: var(--sh-gold); }
.svc-num { font-family: 'Cinzel', serif; font-size: 62px; color: var(--c2); line-height: 1; margin-bottom: 18px; font-weight: 900; }
.svc-title { font-family: 'Cinzel', serif; font-size: 16px; color: var(--tx-dark); font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.svc-desc { font-size: 14px; color: var(--tx-soft); line-height: 1.85; }
.svc-arr { display: inline-block; color: var(--g2); font-size: 22px; margin-top: 20px; transition: transform .3s, opacity .3s; opacity: 0; }
.svc-card:hover .svc-arr { transform: translateX(10px); opacity: 1; }

/* ════════════════════
   FORMS
   ════════════════════ */
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.form-card {
  background: var(--c0); border: 1px solid rgba(168,120,32,0.18);
  padding: 52px 48px; position: relative; overflow: hidden;
  transition: border-color .4s, transform .4s, box-shadow .4s;
  border-radius: 2px;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--g1), var(--g4));
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.form-card:hover::before { transform: scaleX(1); }
.form-card:hover { border-color: rgba(168,120,32,0.35); transform: translateY(-4px); box-shadow: var(--sh-gold); }

.fc-tag {
  font-family: 'Cinzel', serif;
  font-size: 22px; letter-spacing: 4px; color: var(--g2);
  margin-bottom: 16px; display: block; text-transform: uppercase;
  font-weight: 700;
}
.form-card.seller-card .fc-tag { color: var(--b4); }
.form-card h3 {
  font-family: 'Cinzel', serif; font-size: 28px; color: var(--tx-dark);
  margin-bottom: 10px; font-weight: 700; line-height: 1.3;
}
.form-card > p { font-size: 14.5px; color: var(--tx-soft); line-height: 1.85; margin-bottom: 32px; }

.f-fields { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fw input, .fw select, .fw textarea {
  width: 100%; background: var(--c1);
  border: 1.5px solid rgba(168,120,32,0.2);
  color: var(--tx-dark); padding: 14px 18px; font-size: 14.5px;
  outline: none; font-family: 'Inter', sans-serif;
  transition: border-color .3s, box-shadow .3s, background .3s;
  -webkit-appearance: none; appearance: none; border-radius: 2px;
  resize: none;
}
.fw input::placeholder, .fw textarea::placeholder { color: var(--tx-faint); font-size: 14px; }
.fw select { color: var(--tx-soft); cursor: pointer; }
.fw input:focus, .fw select:focus, .fw textarea:focus {
  border-color: var(--g2); box-shadow: 0 0 0 3px rgba(160,120,32,0.1);
  background: var(--c0);
}

/* Form buttons */
.btn-form-gold {
  width: 100%; background: linear-gradient(135deg, var(--g1), var(--g3));
  color: #fff; border: none; padding: 16px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; margin-top: 8px;
  transition: all .3s; text-transform: uppercase; border-radius: 2px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 4px 20px rgba(160,120,32,0.3);
}
.btn-form-gold:hover {
  background: linear-gradient(135deg, var(--g2), var(--g4));
  transform: translateY(-2px); box-shadow: 0 10px 32px rgba(160,120,32,0.4);
}
.btn-form-gold:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-form-dark {
  width: 100%; background: transparent; border: 2px solid var(--b3);
  color: var(--tx-mid); padding: 14px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; margin-top: 8px;
  transition: all .3s; text-transform: uppercase; border-radius: 2px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-form-dark:hover {
  background: var(--b2); color: var(--g4); border-color: var(--b2);
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,16,8,0.25);
}
.btn-form-dark:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form messages */
.form-msg {
  padding: 14px 18px; font-size: 14px; font-weight: 500;
  margin-bottom: 16px; line-height: 1.5; border-radius: 2px;
}
.form-msg.success { background: #e8f4ec; color: #2a6040; border: 1px solid #a8d0b8; }
.form-msg.error   { background: #fce8e6; color: #9e2a1c; border: 1px solid #f2b5ae; }

/* ════════════════════
   FOOTER — STANDALONE
   ════════════════════ */
#lp-footer {
  background: var(--b0);
  position: relative; z-index: 2;
  overflow: hidden;
}
#lp-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--g3), var(--g4), var(--g3), transparent);
}

.ft-main { padding: 90px 64px 60px; }
.ft-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 72px; margin-bottom: 64px; }

/* Footer logo block */
.ft-logo-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.ft-logo-img { width: 64px; height: 58px; flex-shrink: 0; }
.ft-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.ft-logo-text { display: flex; flex-direction: column; }
.ft-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 16px; letter-spacing: 2.5px; color: var(--g4);
  font-weight: 700; display: block; line-height: 1.3;
}
.ft-brand-sub {
  font-size: 9px; letter-spacing: 2px; color: rgba(255, 255, 255, 0.942);
  display: block; margin-top: 4px; text-transform: uppercase;
}
.ft-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: rgba(232,192,80,0.5); margin-bottom: 18px;
  letter-spacing: 1.5px;
}
.ft-desc {
  font-size: 14px; color: rgba(255, 255, 255, 0.921); line-height: 1.95;
  max-width: 280px;
}

/* Footer columns */
.ft-col { display: flex; flex-direction: column; }
.ft-col-ttl {
  font-family: 'Cinzel', serif;
  font-size: 16px; letter-spacing: 3px; color: var(--g4);
  margin-bottom: 24px; display: block; text-transform: uppercase;
}
.ft-col a {
  font-size: 14px; color: rgba(255, 255, 255, 0.867); text-decoration: none;
  margin-bottom: 13px; transition: color .3s, padding-left .3s;
  display: block;
}
.ft-col a:hover { color: var(--g4); padding-left: 8px; }

/* Contact column special */
.ft-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.ft-contact-icon {
  width: 22px; height: 22px; border: 1px solid rgba(232,192,80,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--g3); font-size: 10px; flex-shrink: 0; margin-top: 1px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.ft-contact-item a {
  font-size: 14px; color: rgba(255, 255, 255, 0.962); text-decoration: none;
  transition: color .3s; margin-bottom: 0;
}
.ft-contact-item a:hover { color: var(--g4); }

/* Footer divider + bottom */
.ft-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}
.ft-bottom {
  padding: 28px 64px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  background: rgba(0,0,0,0.2);
}
.ft-bottom span { font-size: 11.5px; color: rgba(255,255,255,0.2); letter-spacing: 0.8px; }
.ft-bottom-links { display: flex; gap: 28px; }
.ft-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color .3s; letter-spacing: 0.5px; }
.ft-bottom-links a:hover { color: var(--g4); }

/* Social icons in footer */
.ft-social { display: flex; gap: 10px; margin-top: 22px; }
.ft-soc-btn {
  width: 38px; height: 38px; border: 1px solid rgba(232,192,80,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232, 176, 22, 0.918); font-size: 14px;
  transition: all .3s; cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  background: rgba(255,255,255,0.03); text-decoration: none;
}
.ft-soc-btn:hover { border-color: var(--g3); color: var(--g3); background: rgba(232,192,80,0.08); }

/* ════════════════════
   SCROLL REVEAL
   ════════════════════ */
.rv  { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.rvL { opacity: 0; transform: translateX(-34px); transition: opacity .8s ease, transform .8s ease; }
.rvR { opacity: 0; transform: translateX(34px);  transition: opacity .8s ease, transform .8s ease; }
.rv.on,.rvL.on,.rvR.on { opacity: 1; transform: translate(0); }
.d1{transition-delay:0.1s} .d2{transition-delay:0.22s}
.d3{transition-delay:0.34s} .d4{transition-delay:0.46s}

/* ════════════════════
   KEYFRAMES
   ════════════════════ */
@keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes scaleX   { to{transform:scaleX(1)} }
@keyframes pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(160,120,32,0.5)} 50%{box-shadow:0 0 0 10px rgba(160,120,32,0)} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════
   RESPONSIVE
   ════════════════════ */
@media(max-width:1100px){
  #lp-header { padding: 0 28px; }
  .hd-nav, .hd-cta { display: none; }
  .hd-burger { display: flex; }
  .section { padding: 80px 36px; }
  .about-split { grid-template-columns: 1fr; }
  .ab-img { height: 380px; }
  .ab-body { padding: 52px 36px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .forms-grid { grid-template-columns: 1fr; }
  .fc-tag { font-size: 18px !important; }
  .form-card { padding: 28px 18px; }
  .f-row { grid-template-columns: 1fr; }
  .fw input, .fw select, .fw textarea { font-size: 16px; padding: 13px 14px; }
  .btn-form-gold, .btn-form-dark { font-size: 12px; padding: 15px; }
  .img-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .is-item { height: 200px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(168,120,32,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(168,120,32,0.1); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .ft-main { padding: 64px 36px 48px; }
  .ft-bottom { padding: 24px 36px; }
  .hero-orbit { display: none; }
  .hero { padding: calc(var(--nav-h) + 30px) 36px 80px; }
  .hero h1 { font-size: 60px; }
  .hero h1 .italic { font-size: 68px; }
}
@media(max-width:768px){
  :root { --nav-h: 72px; }
  #lp-header { padding: 0 18px; height: 72px; }
  .hero { padding: calc(var(--nav-h) + 20px) 20px 72px; min-height: 100svh; }
  .hero h1 { font-size: 44px; }
  .hero h1 .italic { font-size: 50px; }
  .hero-tag { font-size: 18px; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-ctrls { right: 18px; bottom: 18px; }
  .hero-scroll { left: 20px; }
  /* Mobile banner: anchor images to top-center so subjects stay in frame */
  .hero-slide {
    background-position: center top;
    background-size: cover;
    /* Prevent layout thrash from scale animation on low-end devices */
    will-change: opacity;
    transform: none !important;
    transition: opacity 1s ease;
  }
  /* Lazy-load non-visible slides on mobile to save bandwidth */
  .hero-slide:not(.on) { content-visibility: auto; }
  .hero-content { padding: 28px 20px; max-width: 100%; }
  .hero-content::before { inset: 0; border-radius: 0; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-gold, .btn-outline { text-align: center; justify-content: center; }
  .ab-body { padding: 44px 20px; }
  .ab-body h2 { font-size: 34px; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .form-card { padding: 34px 22px; }
  .img-strip { grid-template-columns: 1fr 1fr; }
  .is-item { height: 150px; }
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-main { padding: 48px 20px 40px; }
  .ft-bottom { flex-direction: column; text-align: center; padding: 22px 20px; }
  .section { padding: 64px 20px; }
  .s-title { font-size: 36px; }
  .s-title em { font-size: 42px; }
  .stat-item { padding: 30px 24px; }
  .stat-val { font-size: 44px; }
}
@media(max-width:480px){
  .svc-grid { grid-template-columns: 1fr; }
  .s-title { font-size: 28px; }
  .s-title em { font-size: 34px; }
  .stat-val { font-size: 36px; }
  .btn-gold, .btn-outline { padding: 15px 26px; font-size: 10px; }
}

/* ══════════════════════════════════════
   IMPORT / EXPORT PAGE — v2 (ANIMATED)
   ══════════════════════════════════════ */

/* Scroll progress bar */
#ieScrollBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--g1), var(--g4), var(--g2));
  background-size: 200% 100%;
  z-index: 10002; transition: width .1s linear;
  animation: ieShine 3s linear infinite;
}
@keyframes ieShine { 0%{background-position:0% 0;} 100%{background-position:200% 0;} }

/* ── Banner ── */
.ie-banner {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--b1);
  padding: calc(var(--nav-h) + 40px) 64px 80px;
}
.ie-banner-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 40%;
  filter: brightness(1) saturate(0.85) contrast(1.05);
}
/* @keyframes ieBgDrift {
  0%   { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%, -1%); }
} */
/* .ie-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,8,4,0.4) 0%, rgba(13,8,4,0.6) 55%, rgba(13,8,4,0.95) 100%);
} */
.ie-spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(232,192,80,0.14), transparent 70%);
  transition: opacity .4s;
}
.ie-banner:hover .ie-spot { opacity: 1; }
.ie-banner-deco {
  position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
}
.ie-banner-deco .ring1 { animation: spin 50s linear infinite; transform-origin: 960px 420px; }
.ie-banner-deco .ring2 { animation: spin 70s linear infinite reverse; transform-origin: 960px 420px; }

/* Floating grain dots */
/* .ie-float { position: absolute; z-index: 1; pointer-events: none; opacity: 0.5; }
.ie-float span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--g4); box-shadow: 0 0 10px rgba(232,192,80,0.7);
  animation: ieFloat 7s ease-in-out infinite;
} */
.ie-float span:nth-child(1){ left:8%;  top:70%; animation-delay: 0s;   }
.ie-float span:nth-child(2){ left:18%; top:30%; animation-delay: 1.1s; width:4px; height:4px;}
.ie-float span:nth-child(3){ left:82%; top:65%; animation-delay: 2.3s; }
.ie-float span:nth-child(4){ left:90%; top:25%; animation-delay: .6s;  width:5px; height:5px;}
.ie-float span:nth-child(5){ left:50%; top:15%; animation-delay: 1.8s; width:3px; height:3px;}
.ie-float span:nth-child(6){ left:70%; top:80%; animation-delay: 3s;   }
@keyframes ieFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: .35; }
  50%     { transform: translateY(-22px) scale(1.3); opacity: .9; }
}

.ie-banner-content { position: relative; z-index: 2; max-width: 800px; }
.ie-banner-content .h-badge {
  margin: 0 auto 26px; opacity: 0; animation: ieUp .8s .15s forwards;
  background: linear-gradient(120deg, var(--g2), var(--g4) 45%, var(--g3));
  background-size: 200% auto;
  border: 1px solid rgba(255,235,180,0.9);
  border-radius: 40px;
  color: #1a1103;
  font-weight: 800;
  padding: 12px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 4px rgba(232,192,80,0.12);
  animation: ieUp .8s .15s forwards, badgeShine 3.5s linear infinite;
}
.ie-banner-content .h-badge .h-dot { background: #1a1103; }
@keyframes badgeShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.ie-banner-content h1 {
  font-family: 'Cinzel', serif; font-weight: 900; color: #fff;
  font-size: 68px; line-height: 1.12; text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.ie-banner-content h1 .word { display: inline-block; opacity: 0; animation: ieUp .8s forwards; }
.ie-banner-content h1 .word:nth-child(1){ animation-delay: .3s; }
.ie-banner-content h1 .word:nth-child(2){ animation-delay: .42s; }
.ie-banner-content h1 .word:nth-child(3){ animation-delay: .54s; }
.ie-banner-content h1 .gold { color: var(--g4); }
.ie-banner-content .hero-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px;
  font-weight: 700;
  color: #fff6df; letter-spacing: 2.5px; margin-top: 20px;
  opacity: 0; animation: ieUp .8s .66s forwards;
  display: inline-flex; align-items: center; gap: 16px; justify-content: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, rgba(232,192,80,0.28), rgba(160,120,32,0.14));
  border: 1px solid rgba(232,192,80,0.6);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ie-banner-content .hero-tag span.tag-text {
  background: linear-gradient(180deg, #fff6df, #E8C050);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 4px 20px rgba(232,192,80,0.5);
}
.ie-banner-content p.ie-sub {
  font-size: 18px; line-height: 1.9; color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 22px auto 0;
  opacity: 0; animation: ieUp .8s .78s forwards;
}
@keyframes ieUp { from{ opacity:0; transform: translateY(18px);} to{ opacity:1; transform: translateY(0);} }

.ie-crumbs {
  margin-top: 30px; display: flex; gap: 10px; align-items: center; justify-content: center;
  opacity: 0; animation: ieUp .8s .9s forwards;
}
.ie-crumbs a, .ie-crumbs span {
  font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(232,192,80,0.6); text-decoration: none; transition: color .25s;
}
.ie-crumbs a:hover { color: var(--g4); }
.ie-crumbs i { color: rgba(232,192,80,0.4); font-style: normal; font-size: 13px; }

.ie-scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: ieUp 1s 1.1s forwards;
}
.ie-scroll-cue .mouse {
  width: 22px; height: 34px; border: 1.5px solid rgba(232,192,80,0.55); border-radius: 12px;
  position: relative;
}
.ie-scroll-cue .mouse::before {
  content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px;
  background: var(--g4); border-radius: 2px; transform: translateX(-50%);
  animation: ieScrollDot 1.6s ease-in-out infinite;
}
@keyframes ieScrollDot { 0%{opacity:1; top:6px;} 70%{opacity:0; top:18px;} 100%{opacity:0; top:6px;} }
.ie-scroll-cue span { font-size: 12px; letter-spacing: 3px; color: rgba(232,192,80,0.5); text-transform: uppercase; font-family:'Cinzel',serif;}

/* ── country marquee under banner ── */
.ie-marquee-wrap {
  overflow: hidden; background: linear-gradient(90deg, var(--b2), var(--b3), var(--b2));
  border-bottom: 1px solid rgba(168,120,32,0.25); padding: 14px 0; position: relative;
}
.ie-marquee-wrap::before, .ie-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.ie-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--b2), transparent); }
.ie-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--b2), transparent); }
.ie-marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 26s linear infinite; }
.ie-mq-item { font-family:'Cinzel',serif; font-size: 13px; letter-spacing: 2.2px; color: var(--g3); font-weight: 600; text-transform: uppercase; white-space: nowrap; }
.ie-mq-dot { color: var(--g4); font-size: 13px; }

/* ── tabs ── */
.ie-tabs-wrap { background: var(--c0); padding: 46px 24px 10px; text-align: center; }
.ie-tabs {
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  background: var(--c1); padding: 8px; border: 1px solid rgba(168,120,32,0.15);
}
.ie-tab {
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 15px 32px; border: none; background: transparent; color: var(--tx-soft);
  cursor: pointer; text-decoration: none; display: inline-block; font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .3s, color .3s;
}
.ie-tab.active, .ie-tab:hover {
  background: linear-gradient(135deg, var(--g1), var(--g3)); color: #fff;
}

/* ── section intro ── */
.ie-intro {
  max-width: 680px; margin: 20px auto 0; text-align: center;
  color: var(--tx-soft); font-size: 17px; line-height: 1.9;
}

/* ── gallery grid, 1:1 images ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px;
}
.gallery-card {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(168,120,32,0.2); background: var(--c2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  opacity: 0; transform: translateY(34px) scale(.96);
  transition: opacity .7s ease, transform .7s ease, box-shadow .4s ease;
  transform-style: preserve-3d; will-change: transform;
}
.gallery-card.on { opacity: 1; transform: translateY(0) scale(1); }
.gallery-card:nth-child(1){ transition-delay: .02s; }
.gallery-card:nth-child(2){ transition-delay: .1s; }
.gallery-card:nth-child(3){ transition-delay: .18s; }
.gallery-card:nth-child(4){ transition-delay: .26s; }
.gallery-card:nth-child(5){ transition-delay: .34s; }
.gallery-card:nth-child(6){ transition-delay: .42s; }
.gallery-card::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(232,192,80,0.55), transparent 30%, transparent 70%, rgba(232,192,80,0.4)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.gallery-card:hover::after { opacity: 1; }
.gallery-card:hover { box-shadow: 0 20px 50px rgba(13,8,4,0.35), var(--sh-gold); }
.gc-index {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1px; font-weight: 700;
  color: var(--g5); background: rgba(13,8,4,0.5); border: 1px solid rgba(232,192,80,0.35);
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.gc-shimmer {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, var(--c2) 30%, var(--c3) 50%, var(--c2) 70%);
  background-size: 250% 100%; animation: ieShimmer 1.6s linear infinite;
  transition: opacity .4s;
}
.gallery-card.loaded .gc-shimmer { opacity: 0; pointer-events: none; }
@keyframes ieShimmer { 0%{background-position: 200% 0;} 100%{background-position: -50% 0;} }
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1;
  transition: transform .7s ease, filter .4s ease; filter: saturate(0.95);
}
.gallery-card:hover img { transform: scale(1.1); filter: saturate(1.12); }
.gallery-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 22px;
  background: linear-gradient(180deg, transparent 35%, rgba(13,8,4,0.9) 120%);
}
.gallery-overlay > div { transform: translateY(6px); transition: transform .4s ease; }
.gallery-card:hover .gallery-overlay > div { transform: translateY(0); }
.gallery-name {
  display: block; font-family: 'Cinzel', serif; color: #fff; font-size: 17px;
  letter-spacing: 1.5px; font-weight: 700; text-transform: uppercase;
}
.gallery-sub {
  display: block; font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--g5); font-size: 15px; margin-top: 6px;
}
.gallery-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(13,8,4,0.55); border: 1px solid rgba(232,192,80,0.45); color: var(--g4);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  backdrop-filter: blur(4px); opacity: 0; transform: scale(.8) rotate(-20deg); transition: all .35s;
}
.gallery-card:hover .gallery-zoom { opacity: 1; transform: scale(1) rotate(0deg); }

/* ── lightbox ── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 10005; background: rgba(9,6,3,0.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s ease; padding: 40px 24px;
}
.lb-overlay.open { opacity: 1; pointer-events: all; }
.lb-box {
  position: relative; max-width: 780px; width: 100%; text-align: center;
  opacity: 0; transform: scale(.92) translateY(10px); transition: opacity .4s ease, transform .4s ease;
}
.lb-overlay.open .lb-box { opacity: 1; transform: scale(1) translateY(0); }
.lb-frame { position: relative; }
.lb-box img {
  max-width: 100%; max-height: 62vh; aspect-ratio: 1/1; object-fit: cover; display: block; margin: 0 auto;
  border: 1px solid rgba(232,192,80,0.3); background: #050302;
}
.lb-caption {
  margin-top: 22px; font-family: 'Cinzel', serif; color: var(--g5);
  letter-spacing: 2px; font-size: 21px; text-transform: uppercase; font-weight: 700;
}
.lb-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: rgba(255,255,255,0.65); margin-top: 10px; font-size: 17px;
}
.lb-counter {
  margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 2.5px;
  color: rgba(232,192,80,0.5); text-transform: uppercase;
}
.lb-close {
  position: absolute; top: -50px; right: 0; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(232,192,80,0.4); color: var(--g4);
  font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.lb-close:hover { background: var(--g3); color: var(--b1); transform: rotate(90deg); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(13,8,4,0.45); border: 1px solid rgba(232,192,80,0.4); color: var(--g4);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: all .25s; z-index: 4;
}
.lb-nav:hover { background: var(--g3); color: var(--b1); }
.lb-prev { left: -22px; }
.lb-next { right: -22px; }
@media (max-width: 700px) {
  .lb-prev { left: 4px; } .lb-next { right: 4px; }
}

/* ── divider band ── */
.ie-divider-band {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 30px 0; background: var(--b1); position: relative; overflow: hidden;
}
.ie-divider-band span.label {
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 3px; color: var(--g3);
  text-transform: uppercase; white-space: nowrap; position: relative; z-index: 2;
}
.ie-divider-band .line { height: 1px; width: 100px; background: linear-gradient(90deg, transparent, var(--g3), transparent); position: relative; overflow: hidden; }
.ie-divider-band .line::after {
  content: ''; position: absolute; top: -2px; width: 6px; height: 5px; border-radius: 50%;
  background: var(--g4); box-shadow: 0 0 8px rgba(232,192,80,0.8);
  animation: ieDotTravel 3.2s ease-in-out infinite;
}
@keyframes ieDotTravel { 0%{ left:-6px; } 50%{ left:100%; } 100%{ left:-6px; } }

/* ── CTA strip before footer ── */
.ie-cta-strip {
  position: relative; overflow: hidden; padding: 70px 24px; text-align: center;
  background: linear-gradient(120deg, var(--b1), var(--b3), var(--b2), var(--b1));
  background-size: 300% 300%; animation: ieGradientShift 12s ease infinite;
}
@keyframes ieGradientShift { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
.ie-cta-strip h3 {
  font-family: 'Cinzel', serif; color: #fff; font-size: 30px; font-weight: 700;
}
.ie-cta-strip h3 em { color: var(--g4); font-style: italic; font-family:'Cormorant Garamond',serif; font-weight:400; font-size: 34px; }
.ie-cta-strip p {
  color: rgba(255,255,255,0.75); max-width: 560px; margin: 16px auto 32px; font-size: 17px; line-height: 1.85;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ie-banner-content h1 { font-size: 52px; }
  .lb-box { max-width: 92vw; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ie-banner { min-height: 100svh; padding: calc(var(--nav-h) + 20px) 20px 72px; }
  .ie-banner-content h1 { font-size: 40px; }
  .ie-tabs { flex-direction: column; width: 100%; }
  .ie-tab { width: 100%; }
  .lb-close { top: -44px; right: 4px; }
  .gc-index { width: 28px; height: 28px; font-size: 11px; top: 8px; left: 8px; }
}

/* ── readability bump: page-specific label sizing ── */
.ie-banner-content .h-badge,
.ie-tabs-wrap .h-badge { font-size: 13px; letter-spacing: 3px; }
#agri-products .s-tag, #spices .s-tag { font-size: 13px; letter-spacing: 4px; }
.stats-bar .stat-lbl { font-size: 12.5px; letter-spacing: 2px; }
.stats-bar .stat-val { font-size: 46px; }
@media (max-width: 560px) {
  .stats-bar .stat-val { font-size: 34px; }
}


/* ══════════════════════════════════════
   NEW: CATEGORY CARDS (Import/Export hub)
   ══════════════════════════════════════ */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 60px;
}
.cat-card {
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(168,120,32,0.18);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease, box-shadow .4s ease, border-color .4s ease;
}
.cat-card.on { opacity: 1; transform: translateY(0); }
.cat-card:nth-child(1){ transition-delay: .05s; }
.cat-card:nth-child(2){ transition-delay: .18s; }
.cat-card:nth-child(3){ transition-delay: .31s; }
.cat-card .cat-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; flex-shrink: 0; }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card:hover { box-shadow: 0 20px 50px rgba(90,60,15,0.18); border-color: var(--g3); }
.cat-body {
  position: relative; flex: 1;
  padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(160deg, #fff 0%, var(--c1) 100%);
}
.cat-num {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3.5px;
  color: var(--g1); text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.cat-num::before { content: ''; width: 22px; height: 1px; background: var(--g2); display: inline-block; }
.cat-title {
  font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; color: var(--tx-dark);
  line-height: 1.15;
}
.cat-title em { font-style: italic; font-weight: 400; font-family: 'Cormorant Garamond', serif; color: var(--g1); font-size: 29px; }
.cat-desc {
  font-size: 14px; color: var(--tx-soft); line-height: 1.7;
}
.cat-cta {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--g1); font-weight: 700;
}
.cat-cta .arr { transition: transform .3s; display: inline-block; }
.cat-card:hover .cat-cta .arr { transform: translateX(8px); }
.cat-lock {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(168,120,32,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--g1); font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card .cat-img-wrap { aspect-ratio: 1 / 1; }
}

/* ══════════════════════════════════════
   NEW: AGE GATE (Alcoholic Beverages)
   ══════════════════════════════════════ */
.age-gate {
  position: fixed; inset: 0; z-index: 20000;
  background: radial-gradient(circle at 50% 30%, var(--b3), var(--b0) 75%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 1; transition: opacity .5s ease, visibility .5s;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate-box {
  max-width: 480px; width: 100%; text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(232,192,80,0.25);
  padding: 56px 40px; position: relative;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  animation: ieUp .7s ease forwards;
}
.age-gate-icon {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  border: 1.5px solid var(--g4); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--g4); animation: pulse 2.4s infinite;
}
.age-gate-box h2 {
  font-family: 'Cinzel', serif; color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 12px;
}
.age-gate-box p {
  color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.8; margin-bottom: 30px;
}
.age-gate-form { display: flex; flex-direction: column; gap: 16px; }
.age-gate-row { display: flex; gap: 10px; }
.age-gate-row input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(232,192,80,0.25);
  color: #fff; padding: 14px 12px; text-align: center; font-size: 16px;
  border-radius: 2px; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .3s;
}
.age-gate-row input:focus { border-color: var(--g4); }
.age-gate-row input::placeholder { color: rgba(255,255,255,0.35); }
.age-gate-msg {
  font-size: 13.5px; padding: 12px; border-radius: 2px; display: none; line-height: 1.6;
}
.age-gate-msg.show { display: block; }
.age-gate-msg.err { background: rgba(200,60,50,0.15); border: 1px solid rgba(200,60,50,0.4); color: #ffb3ab; }
.age-gate-disclaimer {
  margin-top: 26px; font-size: 11.5px; color: rgba(255,255,255,0.35); line-height: 1.7;
}

/* ══════════════════════════════════════
   NEW: PRODUCT DETAIL PAGE
   ══════════════════════════════════════ */
.pd-wrap {
  max-width: 1160px; margin: 0 auto; padding: calc(var(--nav-h) + 50px) 24px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start;
}
.pd-img-side {
  position: sticky; top: calc(var(--nav-h) + 24px);
  opacity: 0; transform: translateX(-30px); animation: pdInL .8s .1s forwards;
}
@keyframes pdInL { to { opacity: 1; transform: translateX(0); } }
.pd-img-frame {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid rgba(168,120,32,0.25); background: var(--c2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.pd-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 16px; }
.pd-thumbs .t { width: 64px; height: 64px; border: 1.5px solid rgba(168,120,32,0.2); overflow: hidden; cursor: pointer; opacity: .6; transition: opacity .25s, border-color .25s; }
.pd-thumbs .t.active, .pd-thumbs .t:hover { opacity: 1; border-color: var(--g2); }
.pd-thumbs .t img { width: 100%; height: 100%; object-fit: cover; }
.pd-body { opacity: 0; transform: translateX(30px); animation: pdInR .8s .25s forwards; }
@keyframes pdInR { to { opacity: 1; transform: translateX(0); } }
.pd-eyebrow { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 4px; color: var(--g2); text-transform: uppercase; }
.pd-title { font-family: 'Cinzel', serif; font-size: 40px; font-weight: 700; color: var(--tx-dark); margin: 12px 0 6px; line-height: 1.15; }
.pd-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--tx-soft); margin-bottom: 22px; }
.pd-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.pd-badge {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 30px;
  background: rgba(160,120,32,0.1); border: 1px solid rgba(160,120,32,0.3); color: var(--g1);
}
.pd-desc { font-size: 15.5px; line-height: 1.95; color: var(--tx-mid); margin-bottom: 30px; }
.pd-divider { display: flex; align-items: center; gap: 14px; margin: 30px 0 20px; }
.pd-divider::before, .pd-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--g3)); }
.pd-divider::after { background: linear-gradient(90deg, var(--g3), transparent); }
.pd-divider span { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; color: var(--g2); text-transform: uppercase; white-space: nowrap; }
.pd-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 10px; }
.pd-spec-item { border-left: 2px solid var(--g3); padding: 4px 0 4px 16px; }
.pd-spec-label { display: block; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--tx-faint); font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.pd-spec-value { display: block; font-size: 14.5px; color: var(--tx-dark); font-weight: 600; }
.pd-sizes { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 26px; }
.pd-size-chip {
  padding: 10px 20px; border: 1.5px solid rgba(168,120,32,0.3); font-size: 13.5px;
  font-family: 'Inter', sans-serif; font-weight: 600; color: var(--tx-mid);
  cursor: pointer; transition: all .25s; border-radius: 2px;
}
.pd-size-chip:hover, .pd-size-chip.active { background: linear-gradient(135deg, var(--g1), var(--g3)); color: #fff; border-color: transparent; }
.pd-ingredients { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.pd-ingredients li { font-size: 14.5px; color: var(--tx-mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.7; }
.pd-ingredients li::before { content: '◆'; color: var(--g2); font-size: 8px; margin-top: 7px; flex-shrink: 0; }
.pd-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx-soft); text-decoration: none; margin-bottom: 30px; transition: color .25s; font-family: 'Inter', sans-serif; font-weight: 600; }
.pd-back:hover { color: var(--g1); }
.pd-warning { margin-top: 30px; padding: 16px 18px; background: rgba(160,40,30,0.06); border: 1px solid rgba(160,40,30,0.2); border-radius: 2px; font-size: 12.5px; color: #8a3a30; line-height: 1.7; }
@media (max-width: 860px) {
  .pd-wrap { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 70px; }
  .pd-img-side { position: static; }
  .pd-title { font-size: 30px; }
  .pd-specs { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   NEW: PROMINENT VENTURE BANNER (Landing page)
   ══════════════════════════════════════ */
.venture-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--b0), var(--b2), var(--b1), var(--b0));
  background-size: 300% 300%; animation: ieGradientShift 14s ease infinite;
  padding: 54px 24px; text-align: center;
  border-top: 1px solid rgba(232,192,80,0.25);
  border-bottom: 1px solid rgba(232,192,80,0.25);
}
.venture-band::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background:
    radial-gradient(circle at 15% 30%, rgba(232,192,80,0.12), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(232,192,80,0.1), transparent 45%);
}
.venture-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 4px; font-weight: 600;
  color: rgba(232,192,80,0.65); text-transform: uppercase; margin-bottom: 14px;
  opacity: 0; animation: vbUp .8s .1s forwards;
}
.venture-title {
  position: relative; z-index: 2;
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(26px, 4.6vw, 54px); line-height: 1.22;
  letter-spacing: 1px; text-transform: uppercase;
  background: linear-gradient(100deg, #fff6df 0%, var(--g5) 30%, var(--g3) 50%, var(--g5) 70%, #fff6df 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: vbUp .9s .25s forwards, badgeShine 6s linear infinite 1.1s;
  opacity: 0;
  text-shadow: 0 0 40px rgba(232,192,80,0.25);
}
.venture-title .brand { color: #fff; -webkit-text-fill-color: #fff; }
@keyframes vbUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.venture-sub {
  position: relative; z-index: 2; margin-top: 16px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px;
  color: rgba(255,255,255,0.65); letter-spacing: 1px;
  opacity: 0; animation: vbUp .9s .45s forwards;
}
@media (max-width: 600px) {
  .venture-band { padding: 40px 18px; }
  .venture-sub { font-size: 14px; }
}

/* ══════════════════════════════════════
   CATEGORY FILTER CARDS — bigger images (Alcoholic Beverages)
   ══════════════════════════════════════ */
.cat-filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin: 0 auto 56px; max-width: 1100px; padding: 0 24px;
}
.cat-chip {
  position: relative; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; padding: 0;
  width: 170px; height: 200px; overflow: hidden;
  border: 2px solid rgba(168,120,32,0.2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  opacity: 0; transform: translateY(16px); animation: pillIn .55s ease forwards;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.cat-chip:nth-child(1) { animation-delay: .02s; }
.cat-chip:nth-child(2) { animation-delay: .07s; }
.cat-chip:nth-child(3) { animation-delay: .12s; }
.cat-chip:nth-child(4) { animation-delay: .17s; }
.cat-chip:nth-child(5) { animation-delay: .22s; }
.cat-chip:nth-child(6) { animation-delay: .27s; }
.cat-chip:nth-child(7) { animation-delay: .32s; }
.cat-chip:nth-child(8) { animation-delay: .37s; }
@keyframes pillIn { to { opacity: 1; transform: translateY(0); } }
.cat-chip-img {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; border-radius: 0;
}
.cat-chip-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(0.8) saturate(0.95);
}
.cat-chip::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,8,4,0.05) 0%, rgba(13,8,4,0.35) 55%, rgba(13,8,4,0.85) 100%);
}
.cat-chip:hover { transform: translateY(-4px); border-color: var(--g2); }
.cat-chip:hover .cat-chip-img img { transform: scale(1.08); filter: brightness(0.7) saturate(1.05); }
.cat-chip-label {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.cat-chip.active {
  border-color: var(--g3);
  box-shadow: 0 12px 30px rgba(160,120,32,0.35), 0 0 0 3px rgba(212,168,53,0.25);
}
.cat-chip.active::before {
  background: linear-gradient(180deg, rgba(160,90,20,0.15) 0%, rgba(13,8,4,0.4) 55%, rgba(13,8,4,0.88) 100%);
}
.cat-chip.active .cat-chip-label { color: var(--g5); }
.cat-chip.active::after {
  content: ''; position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--g3); color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gallery-card.filtered-out {
  display: none;
}
@media (max-width: 700px) {
  .cat-filter-bar { gap: 12px; }
  .cat-chip { width: 130px; height: 155px; }
  .cat-chip-label { font-size: 12px; bottom: 10px; }
}
@media (max-width: 420px) {
  .cat-chip { width: 105px; height: 130px; }
}

/* ══════════════════════════════════════
   COMPACT CATEGORY PAGE HEADER (no banner)
   ══════════════════════════════════════ */
.cat-page-head {
  max-width: 1100px; margin: 0 auto; padding: calc(var(--nav-h) + 44px) 24px 20px;
  text-align: center;
}
.cat-page-head .ie-crumbs { justify-content: center; margin-bottom: 18px; }
.cat-page-head h1 {
  font-family: 'Cinzel', serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px); color: var(--tx-dark); letter-spacing: 1px;
  opacity: 0; transform: translateY(14px); animation: vbUp .6s .05s forwards;
}
.cat-page-head p {
  max-width: 620px; margin: 14px auto 0; color: var(--tx-soft);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; line-height: 1.7;
  opacity: 0; transform: translateY(14px); animation: vbUp .6s .15s forwards;
}
.cat-page-back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--tx-soft); text-decoration: none; transition: color .25s;
}
.cat-page-back:hover { color: var(--g1); }
@keyframes vbUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════
   BIGGER 3-COLUMN GRID (category product listing)
   ══════════════════════════════════════ */
.gallery-grid-lg {
  max-width: 1160px; margin: 20px auto 0; padding: 0 24px;
  grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.gallery-grid-lg .gallery-card { aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .gallery-grid-lg { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .gallery-grid-lg { grid-template-columns: 1fr; gap: 22px; padding: 0 20px; }
  .cat-page-head { padding-top: calc(var(--nav-h) + 30px); }
}

/* ══════════════════════════════════════
   SPIRIT CATEGORY CARDS — big 3-col grid
   (Alcoholic Beverages hub page)
   ══════════════════════════════════════ */
.cat-filter-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin: 0 auto 10px; max-width: 1160px; padding: 0 24px;
}
.spirit-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; background: #fff; border: 1px solid rgba(168,120,32,0.18);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  opacity: 0; transform: translateY(36px); animation: pillIn .7s ease forwards;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.spirit-card:nth-child(1){ animation-delay: .02s; }
.spirit-card:nth-child(2){ animation-delay: .09s; }
.spirit-card:nth-child(3){ animation-delay: .16s; }
.spirit-card:nth-child(4){ animation-delay: .23s; }
.spirit-card:nth-child(5){ animation-delay: .30s; }
.spirit-card:nth-child(6){ animation-delay: .37s; }
.spirit-card:nth-child(7){ animation-delay: .44s; }
.spirit-card .spirit-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; flex-shrink: 0; }
.spirit-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.spirit-card:hover img { transform: scale(1.08); }
.spirit-card:hover { box-shadow: 0 18px 44px rgba(90,60,15,0.18); border-color: var(--g3); }
.spirit-card-body {
  position: relative; flex: 1;
  padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(160deg, #fff 0%, var(--c1) 100%);
}
.spirit-card-num {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px;
  color: var(--g1); font-weight: 700;
}
.spirit-card-title {
  font-family: 'Cinzel', serif; font-size: 23px; font-weight: 700; color: var(--tx-dark);
  text-transform: uppercase; letter-spacing: 1px;
}
.spirit-card-desc { font-size: 13.5px; color: var(--tx-soft); line-height: 1.65; margin-top: 2px; }
.spirit-card-cta {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--g1);
}
.spirit-card-cta .arr { transition: transform .3s; display: inline-block; }
.spirit-card:hover .spirit-card-cta .arr { transform: translateX(8px); }
@media (max-width: 900px) {
  .cat-filter-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .spirit-card .spirit-img-wrap { aspect-ratio: 1 / 1; }
}
@media (max-width: 560px) {
  .cat-filter-bar { grid-template-columns: 1fr; gap: 18px; }
}

/* ══════════════════════════════════════
   WARM SPIRIT BACKGROUND — header + product grid
   (elegant cream/gold, not dark)
   ══════════════════════════════════════ */
.spirit-page-bg {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(212,168,53,0.16), transparent 42%),
    radial-gradient(circle at 90% 12%, rgba(160,120,32,0.12), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(212,168,53,0.14), transparent 45%),
    linear-gradient(160deg, var(--c0) 0%, var(--c2) 50%, var(--c1) 100%);
  padding-bottom: 70px;
}
.spirit-page-bg::before {
  content: ''; position: absolute; inset: 0; opacity: 0.55; pointer-events: none;
  background-image:
    linear-gradient(rgba(160,120,32,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,120,32,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.spirit-page-bg .cat-page-head,
.spirit-page-bg .gallery-grid-lg { position: relative; z-index: 1; }
.spirit-page-bg .gallery-card {
  border-color: rgba(168,120,32,0.28); background: #fff;
  box-shadow: 0 6px 24px rgba(90,60,15,0.1);
}
.cat-page-head { position: relative; }
.cat-page-head::after {
  content: ''; position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
  width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--g3), transparent);
}

/* ══════════════════════════════════════
   SIMPLE BANNER — title only, dark bg, no subtext
   (Agri Products / Spices / Alcoholic Beverages pages)
   ══════════════════════════════════════ */
.ie-banner-simple {
  min-height: 46vh;
  padding: calc(var(--nav-h) + 20px) 24px 20px;
}
.ie-banner-overlay-dark {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,8,4,0.45) 0%, rgba(13,8,4,0.72) 100%);
}
.ie-banner-content-simple {
  position: relative; z-index: 2;
}
.ie-banner-title-simple {
  font-family: 'Cinzel', serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(34px, 6vw, 68px); color: #fff; letter-spacing: 3px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(16px); animation: vbUp .8s .1s forwards;
}
.ie-banner-title-simple em {
  font-style: italic; font-weight: 400; font-family: 'Cormorant Garamond', serif;
  color: var(--g4);
}
@media (max-width: 600px) {
  .ie-banner-simple { min-height: 36vh; }
}

/* ══════════════════════════════════════
   DECORATIVE BROWN BANNER (no photo)
   Agri Products / Spices / Alcoholic Beverages
   ══════════════════════════════════════ */
.ie-banner-simple {
  background: linear-gradient(140deg, var(--b3) 0%, var(--b4) 50%, var(--b3) 100%);
  background-size: 200% 200%;
  animation: ieGradientShift 20s ease infinite;
}
.ie-banner-glitter {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.ie-banner-glitter::before,
.ie-banner-glitter::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, var(--g4) 1.5px, transparent 1.5px),
    radial-gradient(circle, var(--g5) 1px, transparent 1px),
    radial-gradient(circle, var(--g4) 2px, transparent 2px),
    radial-gradient(circle, var(--g3) 1px, transparent 1px),
    radial-gradient(circle, var(--g5) 1.5px, transparent 1.5px);
  background-size: 180px 180px, 130px 130px, 260px 260px, 90px 90px, 210px 210px;
  background-position: 10% 20%, 70% 10%, 30% 70%, 85% 60%, 50% 90%;
  animation: ieTwinkle 4s ease-in-out infinite alternate;
}
.ie-banner-glitter::after {
  background-size: 220px 220px, 160px 160px, 300px 300px, 110px 110px, 240px 240px;
  background-position: 90% 30%, 15% 55%, 60% 85%, 40% 15%, 5% 80%;
  animation-delay: 1.4s;
  opacity: 0.7;
}
@keyframes ieTwinkle {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.95; }
  100% { opacity: 0.55; }
}
.ie-banner-pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.ie-banner-pattern::before,
.ie-banner-pattern::after {
  content: none;
}
.ie-banner-ring {
  position: absolute; z-index: 1; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%; pointer-events: none;
}
.ie-banner-ring.r1 { width: 340px; height: 340px; top: -120px; left: -100px; }
.ie-banner-ring.r2 { width: 220px; height: 220px; bottom: -90px; right: -60px; border-color: rgba(255,255,255,0.22); }
.ie-banner-simple .ie-banner-content-simple {
  position: relative; z-index: 2;
}
.ie-banner-simple .ie-banner-title-simple {
  position: relative; display: inline-block; padding-bottom: 20px;
}
.ie-banner-simple .ie-banner-title-simple::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 70px; height: 2px; background: linear-gradient(90deg, transparent, var(--g3), transparent);
}
@media (max-width: 600px) {
  .ie-banner-ring.r1 { width: 200px; height: 200px; }
  .ie-banner-ring.r2 { width: 140px; height: 140px; }
}
