/* ═══════════════════════════════════════════════════════════
   LAXMI GLOBAL — v3 "TRADING HOUSE"
   Direction: Deep Navy · Brushed Silver · Cool Ivory
   Typography: Cormorant Garamond (display) + Outfit (UI)
   Vibe: Premium commodity trading firm — serious, warm, human
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Obsidian Navy & Ice Blue palette */
  --forest:     #10192a;
  --forest-mid: #17253b;
  --forest-lt:  #203050;
  --moss:       #3d6690;
  --moss-lt:    #eaf1f8;
  --brass:      #4da3e0;
  --brass-lt:   #e9f3fb;
  --brass-md:   #7cc0ef;
  --parchment:  #f7f8fa;
  --parchment-dk:#edf0f4;
  --tan:        #dde3ea;
  --ink:        #10151d;
  --ink-mid:    #333e4c;
  --ink-soft:   #667180;
  --white:      #ffffff;

  /* RGB triplets — for rgba() shadows/glows that need alpha */
  --forest-rgb: 16,25,42;
  --brass-rgb:  77,163,224;
  --moss-rgb:   61,102,144;
  --ink-rgb:    16,21,29;

  /* UI */
  --border:     rgba(16,21,29,0.08);
  --border-md:  rgba(16,21,29,0.14);
  --border-dk:  rgba(16,21,29,0.22);

  /* Type */
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Outfit', system-ui, sans-serif;

  /* Radius */
  --r:    8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 26px;

  /* Motion */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --swift:  cubic-bezier(0.32, 0.72, 0, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--parchment);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRAIN (fixed, GPU safe) ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ══════════════════════════════════════
   NAVIGATION — Minimal floating split
══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 62px;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest);
  text-decoration: none;
}
.nav-logo .dot { color: var(--brass); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active {
  font-weight: 500;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--brass);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  background: var(--forest);
  color: var(--parchment);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.22s var(--swift), transform 0.15s;
}
.nav-cta:hover { background: var(--moss); }
.nav-cta:active { transform: scale(0.97); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 11px;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hamburger span {
  width: 20px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: all 0.25s var(--swift);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s var(--swift), opacity 0.25s var(--swift), padding 0.32s var(--swift);
}
.mobile-menu a {
  font-size: 15.5px;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 14px 2px;
  border-bottom: 1px solid var(--border);
  display: block;
  font-weight: 400;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--forest); }
.mobile-menu.open {
  max-height: 80vh;
  opacity: 1;
  padding: 6px 5% 16px;
  overflow-y: auto;
}
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════
   HERO — Dark cinematic full bleed
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92dvh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 72px;
  overflow: hidden;
}

/* Background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 78% 18%, rgba(var(--brass-rgb),0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 92% 55%, rgba(var(--brass-rgb),0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 12% 85%, rgba(var(--moss-rgb),0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--moss-rgb),0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Background image overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1493946740644-2d8a1f1a6aff?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.12;
  filter: grayscale(40%) contrast(1.1);
}

/* Animated grain on hero */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' fill='white'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--brass);
}
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(250,248,243,0.95);
  margin-bottom: 28px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.hero-h1 em {
  font-style: italic;
  color: var(--brass-md);
}

.hero-sub {
  font-size: 16px;
  color: rgba(250,248,243,0.55);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.btn-primary {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  background: var(--brass);
  color: var(--forest);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 2px rgba(var(--forest-rgb),0.06);
  transition: background 0.22s var(--swift), transform 0.25s var(--spring), box-shadow 0.3s var(--swift);
}
.btn-primary:hover { background: var(--brass-md); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(var(--brass-rgb),0.35); }
.btn-primary:active { transform: scale(0.97) translateY(0); }

.btn-ghost {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 24px;
  background: transparent;
  color: rgba(250,248,243,0.75);
  border: 1px solid rgba(250,248,243,0.2);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(250,248,243,0.45);
  color: rgba(250,248,243,0.95);
  background: rgba(255,255,255,0.05);
}
.wa-dot { width: 7px; height: 7px; background: #25D366; border-radius: 50%; flex-shrink: 0; }

/* Hero trust strip */
.hero-trust-row {
  display: flex;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(250,248,243,0.1);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.htrust {
  font-size: 12px;
  color: rgba(250,248,243,0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(250,248,243,0.1);
  line-height: 1.4;
  padding-bottom: 8px;
}
.htrust:last-child { border-right: none; }
.htrust-dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: var(--forest-lt);
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250,248,243,0.55);
  text-transform: uppercase;
}
.marquee-item-dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border);
}
.section.dark {
  background: var(--forest);
  border-bottom-color: rgba(255,255,255,0.07);
}
.section.alt { background: var(--white); }
.section.tan { background: var(--parchment-dk); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--brass); }
.section.dark .section-label { color: var(--brass-md); }
.section.dark .section-label::before { background: var(--brass-md); }

.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 640px;
}
.section.dark .section-title { color: rgba(250,248,243,0.94); }
.section-title em { font-style: italic; color: var(--brass); }
.section.dark .section-title em { color: var(--brass-md); }

.section-sub {
  font-size: 15.5px;
  color: var(--ink-mid);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 48px;
}
.section.dark .section-sub { color: rgba(250,248,243,0.5); }

/* ══════════════════════════════════════
   WHAT WE DO — Accordion grid
══════════════════════════════════════ */
.svc-accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 8px;
}
.svc-item {
  background: var(--white);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  transition: background 0.25s var(--swift);
  position: relative;
}
.svc-item:hover { background: var(--parchment); }
.svc-item:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--brass);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  opacity: 0.7;
}
.svc-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.svc-body {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--forest);
  background: var(--moss-lt);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 16px;
  letter-spacing: 0.02em;
  width: fit-content;
}
.svc-badge::before { content: ''; width: 5px; height: 5px; background: var(--moss); border-radius: 50%; }
.svc-arrow {
  position: absolute;
  top: 24px; right: 22px;
  font-size: 18px;
  color: var(--brass);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.25s var(--spring);
}

/* ══════════════════════════════════════
   COMMITMENT — Dark bento
══════════════════════════════════════ */
.commit-bento {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.commit-card {
  padding: 28px;
  background: var(--forest-mid);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.commit-card:hover { background: var(--forest-lt); }
.commit-card.featured {
  grid-row: 1 / 3;
  background: var(--forest-lt);
  border-right: 1px solid rgba(255,255,255,0.08);
  justify-content: flex-end;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.commit-card.featured::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--display);
  font-size: 160px;
  line-height: 1;
  color: rgba(var(--brass-rgb),0.08);
  pointer-events: none;
  font-weight: 600;
}
.commit-quote {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: rgba(250,248,243,0.88);
  line-height: 1.5;
  max-width: 300px;
  position: relative;
  z-index: 1;
}
.commit-cite {
  font-size: 11.5px;
  color: rgba(250,248,243,0.35);
  letter-spacing: 0.05em;
  font-family: var(--body);
  position: relative;
  z-index: 1;
}
.commit-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(var(--brass-rgb),0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-md);
  flex-shrink: 0;
}
.commit-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: rgba(250,248,243,0.92);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.commit-body {
  font-size: 13px;
  color: rgba(250,248,243,0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* ══════════════════════════════════════
   PROCESS — Vertical timeline
══════════════════════════════════════ */
.process-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.process-sticky {
  position: sticky;
  top: 88px;
}
.process-sticky-title {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.process-sticky-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-md);
}
.process-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 0 0 32px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.step-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3px;
  position: relative;
  z-index: 2;
}
.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--parchment-dk);
  border: 1.5px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass);
  font-family: var(--display);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover .step-dot {
  background: var(--brass-lt);
  border-color: rgba(var(--brass-rgb),0.35);
}
.step-content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.step-content p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 10px;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.step-tag {
  font-size: 11px;
  background: var(--parchment-dk);
  color: var(--ink-mid);
  border: 1px solid var(--border-md);
  padding: 3px 9px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   PRODUCTS — Category cards (no change to data.js)
══════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 1px 2px rgba(var(--forest-rgb),0.04), 0 0 0 1px rgba(var(--forest-rgb),0.02);
  transition: border-color 0.22s var(--swift), transform 0.22s var(--swift), box-shadow 0.3s var(--swift);
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--swift);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(var(--forest-rgb),0.12), 0 0 0 1px rgba(var(--brass-rgb),0.15); border-color: rgba(var(--brass-rgb),0.3); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover .cat-arrow { transform: translateX(4px); color: var(--brass); }
.cat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
/* Larger photo-based category icon */
.cat-icon-photo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}
.cat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.cat-card h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cat-card .cat-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 300;
}
.cat-footer { display: flex; align-items: center; justify-content: space-between; }
.cat-count {
  font-size: 11px;
  color: var(--ink-soft);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-weight: 400;
}
.cat-arrow {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s, transform 0.25s var(--spring);
}

/* ══════════════════════════════════════
   CTA BAND — Dark with brass
══════════════════════════════════════ */
.cta-band {
  background: var(--forest);
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 80% 50%, rgba(var(--brass-rgb),0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-left { max-width: 560px; position: relative; z-index: 1; }
.cta-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: rgba(250,248,243,0.95);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.cta-title em { font-style: italic; color: var(--brass-md); }
.cta-sub {
  font-size: 15px;
  color: rgba(250,248,243,0.45);
  font-weight: 300;
  line-height: 1.8;
}
.cta-right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }
.btn-brass {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  background: var(--brass);
  color: var(--forest);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--swift), transform 0.15s;
}
.btn-brass:hover { background: var(--brass-md); }
.btn-brass:active { transform: scale(0.97); }
.btn-outline-light {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 22px;
  background: transparent;
  color: rgba(250,248,243,0.7);
  border: 1px solid rgba(250,248,243,0.18);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(250,248,243,0.4);
  color: rgba(250,248,243,0.95);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--ink); font-weight: 500; }

.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { padding-top: 0; }
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-bar { background: var(--brass); border-radius: 2px; }
.value-item h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.value-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tag {
  font-size: 12px;
  background: var(--moss-lt);
  color: var(--forest);
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(var(--moss-rgb),0.2);
  font-weight: 500;
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.svc-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: 0 1px 3px rgba(var(--forest-rgb),0.04);
  transition: border-color 0.22s, box-shadow 0.3s var(--swift), transform 0.22s var(--swift);
  position: relative;
  overflow: hidden;
}
.svc-page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--swift);
}
.svc-page-card:hover { border-color: rgba(var(--brass-rgb),0.35); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(var(--forest-rgb),0.1), 0 0 0 1px rgba(var(--brass-rgb),0.12); }
.svc-page-card:hover::before { transform: scaleX(1); }
.svc-page-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-page-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; font-weight: 300; }
.svc-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--forest);
  background: var(--moss-lt);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.svc-page-badge::before { content: ''; width: 5px; height: 5px; background: var(--moss); border-radius: 50%; }

/* NSI block */
.nsi-block {
  margin-top: 20px;
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.nsi-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 90% 50%, rgba(var(--brass-rgb),0.08) 0%, transparent 65%);
}
.nsi-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.nsi-left h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: rgba(250,248,243,0.95);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.nsi-left p { font-size: 14px; color: rgba(250,248,243,0.5); line-height: 1.75; font-weight: 300; max-width: 400px; }
.nsi-right { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Contact info side */
.cinfo-stack { display: flex; flex-direction: column; gap: 0; }
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo-item:first-child { padding-top: 0; }
.cinfo-icon {
  width: 36px; height: 36px;
  background: var(--brass-lt);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.cinfo-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.cinfo-value { font-size: 15px; color: var(--ink); font-weight: 500; text-decoration: none; }
.cinfo-value:hover { color: var(--brass); }
.cinfo-value a { color: inherit; text-decoration: none; }
.cinfo-value a:hover { color: var(--brass); }

.wa-block {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-top: 20px;
}
.wa-block h3 { font-family: var(--display); font-size: 20px; font-weight: 500; color: rgba(250,248,243,0.95); margin-bottom: 8px; letter-spacing: -0.01em; }
.wa-block p { font-size: 13.5px; color: rgba(250,248,243,0.5); line-height: 1.75; font-weight: 300; margin-bottom: 20px; }
.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa-big:hover { background: #1da855; }
.btn-wa-big:active { transform: scale(0.97); }

/* Form */
.inquiry-panel h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.inq-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; font-weight: 300; }

.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 14px;
  margin-top: 4px;
}
.form-divider { height: 1px; background: var(--border); margin: 20px 0; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-mid); }
.req { color: var(--brass); }
.opt { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(var(--brass-rgb),0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.btn-submit {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--forest);
  color: var(--parchment);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--moss); }
.btn-submit:active { transform: scale(0.97); }
.form-wa { display: flex; align-items: center; gap: 10px; }
.form-wa-sep { font-size: 12px; color: var(--ink-soft); }
.btn-wa-form {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: #1a7a3c;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 100px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-wa-form:hover { background: #dcfce7; }
.form-note { font-size: 12px; color: var(--ink-soft); line-height: 1.6; width: 100%; }
.form-success {
  display: none;
  padding: 32px;
  text-align: center;
  background: var(--parchment-dk);
  border-radius: var(--r-xl);
}
.form-success h3 { font-family: var(--display); font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* Page hero (inner pages) */
.page-hero {
  padding: 64px 5% 56px;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(var(--brass-rgb),0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .hero-tag-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-md);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.page-hero .hero-tag-alt::before { content: ''; width: 24px; height: 1px; background: var(--brass-md); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: rgba(250,248,243,0.95);
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 680px;
  text-wrap: balance;
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--brass-md); }
.page-hero p {
  font-size: 15px;
  color: rgba(250,248,243,0.5);
  margin-top: 14px;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.85;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   PRODUCT CATALOGUE DETAIL (data.js rendered)
══════════════════════════════════════ */
.cat-detail-hero {
  padding: 36px 5% 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
  cursor: pointer; margin-bottom: 20px;
  background: none; border: none;
  font-family: var(--body);
  transition: color 0.2s; padding: 0;
}
.back-btn:hover { color: var(--forest); }
.cat-detail-inner { display: flex; align-items: flex-start; gap: 16px; }
.cat-detail-icon { width: 48px; height: 48px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-detail-inner h1 { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.cat-detail-inner p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; max-width: 560px; font-weight: 300; }
.cat-detail-meta { display: flex; gap: 20px; margin-top: 12px; flex-wrap: wrap; }
.cat-detail-stat { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--ink-soft); }
.cat-detail-stat strong { color: var(--brass); font-weight: 600; }

/* Search + filter */
.search-bar-wrap { padding: 20px 5% 4px; }
.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 10px 20px;
  max-width: 440px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus-within { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(var(--brass-rgb),0.12); }
.search-bar input { border: none; outline: none; font-family: var(--body); font-size: 14px; color: var(--ink); background: transparent; flex: 1; }
.search-bar svg { color: var(--ink-soft); flex-shrink: 0; }
.filter-row { padding: 12px 5%; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  font-size: 12px; padding: 5px 14px;
  border-radius: 100px; border: 1px solid var(--border-md);
  background: var(--white); color: var(--ink-mid);
  cursor: pointer; transition: all 0.2s; font-weight: 500;
}
.filter-pill:hover, .filter-pill.active { background: var(--forest); color: var(--parchment); border-color: var(--forest); }

/* Product cards */
.catalogue-layout { padding: 20px 5% 56px; }
.prod-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 12px; align-items: stretch; }
.cat-block { margin-bottom: 32px; }
.cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-md); }
.cat-stripe { width: 3px; height: 20px; border-radius: 2px; flex-shrink: 0; }
.cat-block-title { font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.cat-block-subtitle { font-size: 11px; color: var(--ink-soft); font-family: 'DM Mono', monospace; margin-left: auto; white-space: nowrap; }

.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s var(--swift), box-shadow 0.2s var(--swift);
  display: flex; flex-direction: column;
}
.prod-card:hover { border-color: rgba(var(--brass-rgb),0.35); box-shadow: 0 4px 24px rgba(var(--forest-rgb),0.1), 0 0 0 1px rgba(var(--brass-rgb),0.08); }

.zone-photo {
  height: 192px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--parchment-dk);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.zone-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s cubic-bezier(0.32,0.72,0,1); }
.zone-photo:hover img { transform: scale(1.04); }
.zone-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.zone-photo-empty { background: var(--parchment); }
.zone-photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; width: 100%; height: 100%; }
.zone-photo-placeholder svg { opacity: 0.18; }
.zone-photo-placeholder span { font-size: 10px; font-family: 'DM Mono', monospace; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }

/* View Details button on product cards */
.prod-detail-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--parchment);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}
.prod-detail-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: var(--brass-lt);
}
.prod-detail-btn svg { transition: transform 0.18s; }
.prod-detail-btn:hover svg { transform: translateX(2px); }


.card-top { height: 56px; padding: 0 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; flex-shrink: 0; overflow: hidden; }
.card-title-wrap { flex: 1; min-width: 0; overflow: hidden; }
.card-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-hsn {
  font-family: 'DM Mono', monospace; font-size: 10px;
  padding: 3px 7px;
  background: var(--brass-lt); color: var(--brass);
  border-radius: 4px; border: 1px solid rgba(var(--brass-rgb),0.2);
  white-space: nowrap; flex-shrink: 0; line-height: 1;
}
.card-sku { display: none; }

.zone-grades { height: 130px; padding: 12px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0; overflow: hidden; }
.zone-label { font-size: 9px; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 6px; }
.grades-list { display: flex; flex-wrap: wrap; gap: 4px; overflow: hidden; max-height: 90px; }
.grade-item { font-size: 11px; color: var(--ink); background: var(--parchment); border: 1px solid var(--border); padding: 3px 8px; border-radius: 3px; white-space: nowrap; }

.zone-certs { height: 150px; padding: 12px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0; overflow: hidden; }
.certs-list { display: flex; flex-wrap: wrap; gap: 4px; overflow: hidden; max-height: 110px; }
.cert-item { font-size: 11px; color: var(--ink-soft); background: var(--parchment-dk); border: 1px solid var(--border); padding: 3px 8px; border-radius: 3px; white-space: nowrap; }
.cert-item.cert-highlight { background: var(--brass-lt); color: var(--brass); border-color: rgba(var(--brass-rgb),0.2); }

.zone-meta { padding: 12px 14px; flex: 1; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.meta-item { font-size: 11.5px; color: var(--ink-soft); }
.meta-item strong { color: var(--ink-mid); font-weight: 600; }
.zone-footer { padding: 12px 14px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.prod-inquiry { font-size: 12px; font-weight: 600; color: var(--brass); text-decoration: none; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.prod-inquiry:hover { gap: 7px; }
.prod-origin { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--ink-soft); }
.warn-tag { font-size: 10px; background: #fff4f0; color: #c0350a; border: 1px solid #ffd5c8; padding: 2px 7px; border-radius: 3px; font-weight: 600; white-space: nowrap; }

.zone-btn { padding: 12px 14px; border-top: 1px solid var(--border); flex-shrink: 0; }
.card-inq-btn {
  width: 100%; font-family: var(--body);
  font-size: 12.5px; font-weight: 600;
  padding: 9px 14px;
  background: var(--parchment-dk);
  color: var(--forest);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
  letter-spacing: 0.01em;
}
.card-inq-btn:hover { background: var(--forest); color: var(--parchment); border-color: var(--forest); }

/* Catalogue inquiry footer */
.custom-note {
  background: var(--parchment-dk);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
}
.catalogue-inq-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-top: 16px;
}
.inq-text { font-size: 14px; color: rgba(250,248,243,0.6); font-weight: 300; max-width: 440px; line-height: 1.7; }
.inq-text strong { color: rgba(250,248,243,0.9); font-weight: 500; display: block; margin-bottom: 4px; }
.catalogue-inq-btn {
  font-size: 13.5px; font-weight: 600;
  color: var(--forest); background: var(--brass);
  padding: 11px 22px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.catalogue-inq-btn:hover { background: var(--brass-md); }

/* No results */
.no-results-msg { text-align: center; padding: 48px 24px; color: var(--ink-soft); }
.no-results-msg h3 { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }

/* Result count */
#cat-result-count { font-size: 13px; color: var(--ink-soft); }

/* Product detail modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(var(--forest-rgb),0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 36px;
  transform: translateY(16px);
  transition: transform 0.25s var(--spring);
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-icon { width: 40px; height: 40px; background: var(--moss-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.modal-box h3 { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.modal-box p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.modal-detail { background: var(--parchment); border-radius: var(--r-md); padding: 16px 20px; margin: 16px 0; }
.modal-close { font-family: var(--body); font-size: 14px; font-weight: 600; padding: 11px 24px; background: var(--forest); color: var(--parchment); border: none; border-radius: 100px; cursor: pointer; transition: background 0.2s; }
.modal-close:hover { background: var(--moss); }

/* Grade spec pages */
.grade-spec-page { padding: 32px 5% 56px; max-width: 960px; }
.grade-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); margin-bottom: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(var(--forest-rgb),0.04); }
.grade-card-head { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.grade-card-head h3 { font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--ink); }
.grade-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em; }
.grade-badge.premium { background: #fef3c7; color: #92400e; }
.grade-badge.standard { background: var(--brass-lt); color: var(--brass); }
.grade-badge.export { background: var(--moss-lt); color: var(--forest); }
.grade-spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.grade-spec-table th { background: var(--parchment-dk); padding: 9px 14px; text-align: left; font-weight: 600; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.grade-spec-table td { padding: 9px 14px; border-top: 1px solid var(--border); color: var(--ink-mid); vertical-align: top; }
.grade-spec-table tr:hover td { background: var(--parchment); }
.compliance-warn { background: #fff8f0; border: 1px solid #ffd5a8; border-radius: var(--r-md); padding: 12px 16px; margin: 14px; font-size: 13px; color: #8a4a0f; display: flex; align-items: flex-start; gap: 10px; }

/* Data tags */
.data-tag { font-size: 11px; padding: 2px 8px; border-radius: 3px; display: inline-flex; align-items: center; gap: 4px; }
.data-tag.cert { background: var(--moss-lt); color: var(--forest); border: 1px solid rgba(var(--moss-rgb),0.2); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--forest);
  color: var(--parchment);
  padding: 60px 5% 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: rgba(250,248,243,0.95);
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.footer-logo .dot { color: var(--brass-md); }
.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(250,248,243,0.4);
  line-height: 1.8;
  margin-bottom: 22px;
  font-weight: 300;
  max-width: 280px;
}
.footer-badge-row { display: flex; flex-direction: column; gap: 7px; }
.footer-badge {
  font-size: 11.5px;
  color: rgba(250,248,243,0.4);
  display: flex; align-items: center; gap: 8px;
}
.footer-badge::before { content: ''; width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13.5px;
  color: rgba(250,248,243,0.55);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: var(--brass-md); }
.footer-address-block h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-address-line {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 13.5px;
  color: rgba(250,248,243,0.55); font-weight: 300;
}
.footer-address-line svg { flex-shrink: 0; margin-top: 2px; }
.footer-address-line a { color: rgba(250,248,243,0.55); text-decoration: none; transition: color 0.2s; }
.footer-address-line a:hover { color: var(--brass-md); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom-right a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   STICKY WHATSAPP
══════════════════════════════════════ */
.sticky-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  background: #25D366; color: white;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  padding: 11px 18px 11px 14px;
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.22s var(--spring), box-shadow 0.22s;
}
.sticky-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.sticky-wa:active { transform: scale(0.97); }


/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
══════════════════════════════════════ */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; margin-bottom: 28px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--brass); }
.back-link svg { flex-shrink: 0; }

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0,420px) 1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.pdp-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--parchment-dk);
  box-shadow: 0 10px 32px rgba(var(--forest-rgb),0.1), 0 0 0 1px rgba(var(--forest-rgb),0.04);
}
.pdp-cert-block {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(var(--forest-rgb),0.04);
}
.pdp-cert-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 12px;
}
.pdp-cert-row { display: flex; flex-wrap: wrap; gap: 8px; }

.pdp-right { display: flex; flex-direction: column; }
.pdp-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-soft); margin-bottom: 18px;
}
.pdp-breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.pdp-breadcrumb a:hover { color: var(--brass); }
.pdp-breadcrumb .sep { opacity: 0.5; }

.pdp-name {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pdp-hsn-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pdp-hsn-badge {
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--forest);
  background: var(--moss-lt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--r);
}
.pdp-spec-tag {
  font-size: 12px; font-weight: 500;
  color: var(--brass);
  background: var(--brass-lt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--r);
}

.pdp-desc {
  font-size: 15px; line-height: 1.8; font-weight: 300;
  color: var(--ink-mid);
  max-width: 560px;
  margin-bottom: 28px;
}
.pdp-divider { height: 1px; background: var(--border); margin: 0 0 28px; }

.pdp-section { margin-bottom: 32px; }
.pdp-section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 14px;
}
.pdp-section-label::before { content:''; width:16px; height:1px; background: var(--brass); }

.pdp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pdp-pill {
  font-size: 13px; font-weight: 500; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-md);
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
}
.pdp-pill.grade:hover { border-color: var(--brass); background: var(--brass-lt); }

.pdp-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pdp-spec-box {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color 0.22s var(--swift), box-shadow 0.22s var(--swift);
}
.pdp-spec-box:hover { border-color: rgba(var(--brass-rgb),0.3); box-shadow: 0 4px 16px rgba(var(--forest-rgb),0.06); }
.pdp-spec-box-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 6px;
}
.pdp-spec-box-val { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.5; }

.pdp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pdp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--parchment);
  font-size: 14px; font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s var(--swift);
}
.pdp-btn-primary:hover { background: var(--forest-lt); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(var(--forest-rgb),0.25); }
.pdp-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--border-md);
  font-size: 14px; font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--swift);
}
.pdp-btn-wa:hover { border-color: #25D366; transform: translateY(-2px); }

.pdp-inq-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 12px;
}
.pdp-inq-eyebrow::before { content:''; width:24px; height:1px; background: var(--brass); }
.pdp-inq-title {
  font-family: var(--display); font-size: clamp(26px,2.6vw,34px);
  font-weight: 500; color: var(--ink); margin-bottom: 10px;
}
.pdp-inq-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; }

.success-ring {
  width: 44px; height: 44px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  position: relative;
}
.success-ring::after {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%; background: var(--brass);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--swift), transform 0.65s var(--swift);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   Breakpoints: 1024 (tablet/nav switch) → 900 (layout collapse)
   → 768 (small tablet) → 640 (phone) → 480 (small phone) → 380 (compact)
══════════════════════════════════════ */

/* ── TABLET & BELOW — nav becomes hamburger here to avoid the
   centered nav-links overlapping the logo/CTA on narrower screens ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links { position: static; transform: none; }

  .commit-bento { grid-template-columns: 1fr 1fr; }
  .commit-card.featured { grid-row: auto; min-height: 280px; }
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .svc-accordion { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .svc-page-grid { grid-template-columns: 1fr; }
  .pdp-layout { grid-template-columns: 1fr; gap: 36px; }
  .pdp-photo { max-width: 420px; margin: 0 auto; }
}

/* ── SMALL TABLET / LARGE PHONE ── */
@media (max-width: 768px) {
  .section { padding: 64px 5%; }
  .hero { padding: 0 5% 60px; }
  .nsi-inner { flex-direction: column; align-items: flex-start; }
  .nsi-right { width: 100%; }
  .nsi-right a { flex: 1; text-align: center; }
  .catalogue-inq-footer { flex-direction: column; align-items: flex-start; }
  .catalogue-inq-btn { width: 100%; text-align: center; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-right { width: 100%; }
  .cta-right a, .cta-right button { flex: 1; text-align: center; justify-content: center; }
}

/* ── PHONE ── */
@media (max-width: 640px) {
  .hero { padding: 0 5% 52px; min-height: 88dvh; }
  .hero-h1 { font-size: 40px; }
  .hero-sub { max-width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions a, .hero-actions button { flex: 1; text-align: center; justify-content: center; }
  .section { padding: 56px 5%; }
  .section-sub { max-width: 100%; }
  .svc-accordion { grid-template-columns: 1fr; }
  .commit-bento { grid-template-columns: 1fr; }
  .commit-card.featured { min-height: auto; }
  .commit-quote { max-width: 100%; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-right { flex-wrap: wrap; gap: 14px 20px; }
  .htrust { border-right: none; padding-right: 0; margin-right: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-wa { justify-content: center; }
  .sticky-wa span { display: none; }
  .sticky-wa { padding: 13px; bottom: 18px; right: 18px; }
  .prod-card-grid { grid-template-columns: 1fr; }
  .nsi-block { padding: 24px 20px; }
  .nsi-right { flex-direction: column; }
  .cta-band { padding: 56px 5%; }
  .cta-left { max-width: 100%; }
  .cta-right { flex-direction: column; align-items: stretch; }
  .pdp-spec-grid { grid-template-columns: 1fr; }
  .pdp-cta { flex-direction: column; align-items: stretch; }
  .pdp-btn-primary, .pdp-btn-wa { justify-content: center; }
  .pdp-desc { max-width: 100%; }
  .about-text p, .cat-detail-inner p { max-width: 100%; }
  .cat-detail-inner { gap: 14px; }
  .contact-layout { gap: 32px; }
  .modal-box { padding: 26px; max-height: 82vh; }
  .catalogue-inq-footer { padding: 22px 20px; }
  .inq-text { max-width: 100%; }
  /* Prevent iOS Safari auto-zoom on focus (inputs need >=16px font) */
  .field input, .field select, .field textarea { font-size: 16px; }
}

/* ── SMALL PHONE ── */
@media (max-width: 480px) {
  nav { padding: 0 4%; height: 58px; }
  .nav-logo { font-size: 19px; }
  .mobile-menu { padding-left: 4%; padding-right: 4%; }
  .hero { padding: 0 4% 44px; min-height: 90dvh; }
  .hero-h1 { font-size: 32px; }
  .hero-sub { font-size: 14.5px; }
  .hero-eyebrow-text { font-size: 10px; }
  .hero-trust-row { gap: 6px 0; }
  .htrust { font-size: 11px; padding-bottom: 6px; margin-right: 16px; padding-right: 0; }
  .section { padding: 48px 4%; }
  .section-title { font-size: 26px; }
  .marquee-item { padding: 0 20px; font-size: 11px; }
  .svc-item { padding: 22px 18px 20px; }
  .commit-card { padding: 22px; }
  .commit-card.featured::before { font-size: 110px; }
  .cta-title { font-size: 24px; }
  .page-hero { padding: 48px 4% 44px; }
  .grade-spec-page, .catalogue-layout, .search-bar-wrap, .filter-row { padding-left: 4%; padding-right: 4%; }
  .cat-detail-hero { padding: 28px 4% 22px; }
  .zone-photo { height: 168px; }
  .modal-box { padding: 22px; }
  .pdp-name { font-size: 28px; }
  .footer-bottom-right { gap: 10px 16px; }
  footer { padding: 48px 4% 0; }
}

/* ── COMPACT PHONE (iPhone SE / older Android) ── */
@media (max-width: 380px) {
  .hero-h1 { font-size: 28px; }
  .section-title { font-size: 23px; }
  .btn-primary, .btn-ghost, .btn-brass, .btn-outline-light { padding: 12px 18px; font-size: 13px; }
  .commit-quote { font-size: 18px; }
  .pdp-name { font-size: 25px; }
  .cat-detail-inner h1 { font-size: 23px; }
}

/* Respect device notches / home indicator on iOS */
@supports (padding: max(0px)) {
  .sticky-wa { right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); }
  nav { padding-left: max(5%, env(safe-area-inset-left)); padding-right: max(5%, env(safe-area-inset-right)); }
}
