/* ════════════════════════════════════════════
   ATHIVEX · style.css · v2.0
   Supreme Engineering Intelligence Platform
   ════════════════════════════════════════════ */

:root {
  --gold: #E5C158;
  --gold-light: #FFF099;
  --gold-pale: #FFF7DB;
  --gold-deep: #B59325;
  --sky: #7DD3FC;
  --sky-light: #E0F7FF;
  --sky-deep: #0284C7;
  --rose: #FB7185;
  --rose-light: #FFE0EB;
  --rose-deep: #E11D48;
  --cream: #FAF7F0;
  --cream-2: #F2EDE0;
  --warm-white: #FEFCF8;
  --ink: #0c0f17;
  --ink-light: #161b26;
  --text-dark: #090d16;
  --text-mid: #15243f;
  --text-light: #283e65;
  --rule: rgba(201,168,76,0.2);
  --hero-banner-url: none;
  --hero-overlay-opacity: 0.65;
  --hero-grid-cols: 1.2fr 0.8fr;
  --nav-h: 70px;
}

/* ── RESET ── */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ════════════════════════════════
   NAVIGATION — fully rebuilt
   ════════════════════════════════ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s, background 0.3s;
  gap: 0;
}

nav.scrolled {
  background: rgba(250,247,240,0.98);
  box-shadow: 0 2px 40px rgba(28,35,51,0.1);
}

/* Logo */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.5px;
  text-decoration: none; flex-shrink: 0; margin-right: 48px;
}
.nav-logo .l-gold { color: var(--gold-deep); }
.nav-logo .l-sky  { color: var(--sky-deep); }
.nav-logo .l-rose { color: var(--rose-deep); }
.nav-logo:hover .l-gold { color: var(--gold); }

/* Nav links */
.nav-links {
  display: flex; gap: 4px; list-style: none;
  flex: 1; align-items: center;
}

.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px; border-radius: 4px;
  transition: all 0.2s; white-space: nowrap;
  position: relative;
}
.nav-links > li > a:hover { color: var(--gold-deep); background: rgba(229,193,88,0.08); }
.nav-links > li > a.active { color: var(--gold-deep); }
.nav-links > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 1px;
}

/* Chevron for dropdown trigger */
.nav-chevron {
  font-size: 8px; transition: transform 0.25s;
  display: inline-block;
}
.nav-dropdown-wrapper:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown-wrapper { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  /* top: 100% with NO gap — zero space between trigger and menu */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(254,252,248,0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(28,35,51,0.16);
  list-style: none;
  /* Top padding bridges the tiny visual gap without a physical gap */
  padding: 8px 12px 12px 12px;
  width: 260px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 300;
}

/* Open state — toggled by JS */
.nav-dropdown-wrapper.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

/* Invisible hover bridge — fills the gap so mouse can travel down */
.nav-dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px; /* covers any micro-gap */
  background: transparent;
}

/* Dropdown arrow tip */
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: rgba(254,252,248,0.99);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu li { width: 100%; }

.nav-dropdown-menu a {
  display: block; padding: 8px 12px;
  border-radius: 6px; text-decoration: none;
  color: var(--text-dark);
  font-size: 14px; font-weight: 500;
  transition: all 0.15s;
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown-menu a:hover { background: var(--cream-2); color: var(--gold-deep); }

.nav-dropdown-menu a strong {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-deep); margin-bottom: 2px;
}

.nav-dropdown-menu a.sub-item {
  padding-left: 20px; font-size: 13px;
  color: var(--text-mid);
}
.nav-dropdown-menu a.sub-item::before {
  content: '↳ '; font-size: 10px; color: var(--text-light);
}

.dropdown-divider {
  height: 1px; background: var(--cream-2);
  margin: 6px 4px; list-style: none;
}

/* Nav right side */
.nav-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto;
}

/* Mobile menu toggle (hidden on desktop) */
.nav-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text-dark);
  font-size: 20px;
}

/* CTA button */
.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 9px 22px;
  background: var(--gold); color: var(--ink);
  text-decoration: none; border-radius: 3px;
  transition: all 0.2s; white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-deep); color: var(--cream); transform: translateY(-1px); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--text-light); text-transform: uppercase;
  margin-top: var(--nav-h);
}
.breadcrumb a { color: var(--gold-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-logo { margin-right: auto; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left:0; right:0; bottom:0; flex-direction: column; background: var(--warm-white); padding: 24px 24px 40px; gap: 4px; overflow-y: auto; z-index: 199; align-items: flex-start; }
  .nav-links.mobile-open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { font-size: 16px; padding: 12px 16px; }
  .nav-dropdown-menu { position: static; transform: none !important; opacity: 1; pointer-events: all; box-shadow: none; border: none; background: var(--cream); padding: 4px 0 4px 16px; width: 100%; display: none; }
  .nav-dropdown-wrapper.mob-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu::before { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-right { margin-left: 0; }
  .nav-cta { font-size: 10px; padding: 8px 14px; }
  .breadcrumb { padding: 10px 20px; }
}

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(26,31,46,var(--hero-overlay-opacity)), rgba(26,31,46,var(--hero-overlay-opacity))),
    var(--hero-banner-url);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 60px 80px;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(126,200,227,0.10) 0%, transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(232,145,163,0.07) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid-wrapper {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: var(--hero-grid-cols, 1.2fr 0.8fr);
  gap: 60px; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.hero-text-col { max-width: 100% !important; }

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700; line-height: 0.9; letter-spacing: -3px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hw-gold { color: var(--gold-light); text-shadow: 0 0 30px rgba(212,175,55,0.5); }
.hw-sky  { color: var(--sky-light);  text-shadow: 0 0 30px rgba(94,196,236,0.5); }
.hw-rose { color: var(--rose-light); text-shadow: 0 0 30px rgba(240,122,150,0.5); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.45;
  max-width: 680px; margin-bottom: 44px;
  border-left: 3px solid var(--gold); padding-left: 22px;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-image-col {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
}

.hero-feature-card {
  position: relative; width: 100%; max-width: 400px;
  aspect-ratio: 1; border-radius: 20px;
  background: rgba(26,31,46,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.15);
  padding: 12px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: all 0.4s;
  animation: float 6s ease-in-out infinite;
}
.hero-feature-card:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(212,175,55,0.5); }
.hero-feature-card img { width:100%; height:100%; object-fit:cover; border-radius:12px; z-index:2; transition:transform 0.5s; }
.hero-feature-card:hover img { transform: scale(1.05); }
.glow-overlay {
  position: absolute; inset: 0; z-index:1; pointer-events:none;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.15), transparent 70%);
}

.hero-stats {
  position: absolute; bottom: 50px; right: 60px; z-index: 2;
  display: flex; gap: 48px;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 700; line-height: 1; margin-bottom: 4px;
}
.stat-item:nth-child(1) .stat-num { color: var(--gold); }
.stat-item:nth-child(2) .stat-num { color: var(--sky); }
.stat-item:nth-child(3) .stat-num { color: var(--rose); }
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.15em;
  color: rgba(250,247,240,0.7); text-transform: uppercase;
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 50vh !important;
  padding: calc(var(--nav-h) + 50px) 60px 60px !important;
}
.page-hero .hero-wordmark { font-size: clamp(48px, 7vw, 80px); }

/* ── THREE-COLOUR BAND ── */
.colour-band { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 5px; }
.cb-gold { background: var(--gold); }
.cb-sky  { background: var(--sky); }
.cb-rose { background: var(--rose); }

/* ═══════════════════
   SECTION COMMONS
   ═══════════════════ */
section { padding: 96px 60px; }

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--gold);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 20px; color: var(--text-dark);
}
.section-heading em { color: var(--gold-deep); font-style: italic; }

.section-sub {
  font-size: 18px; font-weight: 500;
  color: var(--text-mid); line-height: 1.7;
  max-width: 680px;
}

/* ═══════════════════
   BUTTONS
   ═══════════════════ */
.btn-primary {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 32px;
  background: var(--gold); color: var(--ink);
  text-decoration: none; border-radius: 3px;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(229,193,88,0.3); }

.btn-outline {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 32px;
  border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold-pale);
  text-decoration: none; border-radius: 3px;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-dark {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 32px;
  background: var(--ink); color: var(--gold-pale);
  text-decoration: none; border-radius: 3px;
  transition: all 0.2s; display: inline-block;
}
.btn-dark:hover { background: var(--ink-light); transform: translateY(-2px); }

/* ═══════════════════
   VISION / MISSION
   ═══════════════════ */
.vm-section {
  background: var(--cream); position: relative; overflow: hidden;
}
.vm-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 56px; }

.vm-card { padding: 52px 48px; position: relative; overflow: hidden; }
.vm-vision-card  { background: var(--ink); }
.vm-mission-card { background: var(--ink-light); }

.vm-card-accent { width: 48px; height: 4px; margin-bottom: 26px; border-radius: 2px; }
.vm-vision-card  .vm-card-accent { background: var(--gold); }
.vm-mission-card .vm-card-accent { background: var(--sky); }

.vm-card-type {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 18px;
}
.vm-vision-card  .vm-card-type { color: var(--gold); }
.vm-mission-card .vm-card-type { color: var(--sky); }

.vm-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.65; color: rgba(255,255,255,0.93);
}
.vm-vision-card  .vm-card-text strong { color: var(--gold-light); font-style: normal; font-weight: 600; }
.vm-mission-card .vm-card-text strong { color: var(--sky-light);  font-style: normal; font-weight: 600; }

.vm-card-bg-num {
  position: absolute; bottom: -20px; right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700; line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -6px;
}
.vm-vision-card  .vm-card-bg-num { color: rgba(201,168,76,0.05); }
.vm-mission-card .vm-card-bg-num { color: rgba(126,200,227,0.05); }

/* ═══════════════════
   PROBLEM SECTION
   ═══════════════════ */
.problem-section { background: var(--warm-white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 56px; }

.prob-card { padding: 48px 44px; }
.prob-before { background: #FFF5F5; border: 1px solid rgba(232,100,100,0.2); }
.prob-after  { background: #F0FAF5; border: 1px solid rgba(46,158,114,0.2); }

.prob-header { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }

.prob-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.prob-before .prob-icon { background: rgba(220,50,50,0.1);  color: #C0392B; }
.prob-after  .prob-icon { background: rgba(46,158,114,0.15); color: #1D9E75; }

.prob-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; }
.prob-before .prob-title { color: #A32D2D; }
.prob-after  .prob-title { color: #085041; }

.prob-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.prob-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; font-weight: 400; color: var(--text-mid); line-height: 1.5;
}

.prob-dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 10px; font-weight: 700;
}
.prob-before .prob-dot { background: rgba(220,50,50,0.12); color: #C0392B; }
.prob-after  .prob-dot { background: rgba(46,158,114,0.15); color: #1D9E75; }

.prob-stat { margin-top: 36px; padding: 20px 24px; border-radius: 4px; }
.prob-before .prob-stat { background: rgba(220,50,50,0.08); }
.prob-after  .prob-stat { background: rgba(46,158,114,0.1); }

.prob-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; line-height: 1; }
.prob-before .prob-stat-num { color: #C0392B; }
.prob-after  .prob-stat-num { color: #1D9E75; }
.prob-stat-label { font-size: 13px; font-weight: 500; color: var(--text-mid); margin-top: 4px; }

/* ═══════════════════
   PRODUCTS
   ═══════════════════ */
.products-section {
  background: var(--cream); overflow: hidden; position: relative;
}
.products-section::after {
  content: ''; position: absolute; bottom: -150px; left: 50%;
  transform: translateX(-50%); width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(126,200,227,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.products-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 60px;
}

.products-list { display: flex; flex-direction: column; gap: 3px; }

.product-row {
  display: grid; grid-template-columns: 220px 1fr 1.2fr 180px;
  background: var(--warm-white); transition: all 0.28s;
  cursor: pointer; text-decoration: none; color: inherit;
  border-left: 4px solid transparent;
  border-bottom: 1px solid var(--cream-2);
}
.product-row:last-child { border-bottom: none; }
.product-row:hover { transform: translateX(6px); background: #FFFDF6; }
.product-row:nth-child(1):hover { border-left-color: #E85D26; }
.product-row:nth-child(2):hover { border-left-color: #2E9E72; }
.product-row:nth-child(3):hover { border-left-color: #3A7BD5; }
.product-row:nth-child(4):hover { border-left-color: #7B5EA7; }
.product-row:nth-child(5):hover { border-left-color: var(--gold-deep); }

/* "Go →" indicator on hover */
.product-row::after {
  content: '→'; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%) translateX(-8px);
  font-size: 18px; color: var(--gold); opacity: 0;
  transition: all 0.25s; pointer-events: none;
}
.product-row { position: relative; }
.product-row:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.prod-identity { padding: 28px 24px 28px 28px; border-right: 1px solid var(--cream-2); }

.prod-color-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 12px; }
.product-row:nth-child(1) .prod-color-dot { background: #E85D26; }
.product-row:nth-child(2) .prod-color-dot { background: #2E9E72; }
.product-row:nth-child(3) .prod-color-dot { background: #3A7BD5; }
.product-row:nth-child(4) .prod-color-dot { background: #7B5EA7; }
.product-row:nth-child(5) .prod-color-dot { background: var(--gold-deep); }

.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px;
}
.product-row:nth-child(1) .prod-name { color: #E85D26; }
.product-row:nth-child(2) .prod-name { color: #2E9E72; }
.product-row:nth-child(3) .prod-name { color: #3A7BD5; }
.product-row:nth-child(4) .prod-name { color: #7B5EA7; }
.product-row:nth-child(5) .prod-name { color: var(--gold-deep); }

.prod-full { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }

.prod-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 9px; display: inline-block; border-radius: 2px;
}
.product-row:nth-child(1) .prod-type { background: rgba(232,93,38,0.1);  color: #E85D26; }
.product-row:nth-child(2) .prod-type { background: rgba(46,158,114,0.1); color: #2E9E72; }
.product-row:nth-child(3) .prod-type { background: rgba(58,123,213,0.1); color: #3A7BD5; }
.product-row:nth-child(4) .prod-type { background: rgba(123,94,167,0.1); color: #7B5EA7; }
.product-row:nth-child(5) .prod-type { background: rgba(201,168,76,0.12); color: var(--gold-deep); }

.prod-origin { padding: 28px 24px; border-right: 1px solid var(--cream-2); }
.prod-origin-label { font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; margin-bottom: 8px; }
.prod-origin-text { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; font-weight: 500; color: var(--text-mid); line-height: 1.55; }

.prod-story { padding: 28px 40px 28px 24px; }
.prod-story-label { font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; margin-bottom: 8px; }
.prod-story-text { font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.6; margin-bottom: 8px; }
.prod-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; font-weight: 500; color: var(--text-light); }

.prod-preview {
  padding: 20px 18px; display: flex; align-items: center;
  justify-content: center; border-left: 1px solid var(--cream-2);
}
.prod-preview img {
  width: 100%; height: 110px; object-fit: cover;
  border-radius: 6px; border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: all 0.3s;
}
.product-row:hover .prod-preview img { transform: scale(1.04); border-color: var(--gold-light); }

/* ═══════════════════
   VALUES
   ═══════════════════ */
.values-section { background: var(--warm-white); }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; margin-top: 56px; }

.value-card {
  padding: 36px 24px; background: var(--cream);
  border-top: 3px solid transparent; transition: all 0.3s;
  overflow: hidden;
}
.value-card:nth-child(1) { border-top-color: var(--gold); }
.value-card:nth-child(2) { border-top-color: var(--sky); }
.value-card:nth-child(3) { border-top-color: var(--rose); }
.value-card:nth-child(4) { border-top-color: var(--gold); }
.value-card:nth-child(5) { border-top-color: var(--sky); }

.value-card:hover { background: var(--ink); }
.value-card:hover .val-name  { color: var(--gold-light); }
.value-card:hover .val-desc  { color: rgba(250,247,240,0.65); }
.value-card:hover .val-icon-wrap { background: rgba(201,168,76,0.15); color: var(--gold); }

.val-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--text-mid); margin-bottom: 20px;
  transition: all 0.3s;
}
.val-name {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; transition: color 0.3s; line-height: 1.2;
}
.val-desc { font-size: 13px; font-weight: 400; color: var(--text-mid); line-height: 1.6; transition: color 0.3s; }

/* ═══════════════════
   PATTERN BAND
   ═══════════════════ */
.pattern-band {
  padding: 80px 60px; background: var(--ink);
  position: relative; overflow: hidden;
}
.pattern-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-60deg, rgba(126,200,227,0.03) 0px, rgba(126,200,227,0.03) 1px, transparent 1px, transparent 40px);
}

.pattern-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }

.pattern-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 96px); font-weight: 700;
  letter-spacing: -2px; line-height: 1; margin-bottom: 22px;
}
.pw-gold { color: var(--gold-light); text-shadow: 0 0 25px rgba(212,175,55,0.6); }
.pw-sky  { color: var(--sky-light);  text-shadow: 0 0 25px rgba(94,196,236,0.6); }
.pw-rose { color: var(--rose-light); text-shadow: 0 0 25px rgba(240,122,150,0.6); }

.pattern-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85);
  line-height: 1.6; margin-bottom: 36px;
}

.colour-dots { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; }
.cdot { width: 12px; height: 12px; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.cdot-gold { background: var(--gold); animation-delay: 0s; }
.cdot-sky  { background: var(--sky);  animation-delay: 0.3s; }
.cdot-rose { background: var(--rose); animation-delay: 0.6s; }

/* ═══════════════════
   INSIGHTS
   ═══════════════════ */
.blog-section { background: var(--cream); }

.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; }
.blog-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-deep);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 14px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

.blog-card {
  background: var(--warm-white); padding: 32px 28px;
  transition: transform 0.25s; border-top: 3px solid transparent;
  text-decoration: none; color: inherit; display: block;
}
.blog-card:nth-child(1) { border-top-color: var(--gold); }
.blog-card:nth-child(2) { border-top-color: var(--sky); }
.blog-card:nth-child(3) { border-top-color: var(--rose); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(28,35,51,0.08); }

.blog-cat { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card:nth-child(1) .blog-cat { color: var(--gold-deep); }
.blog-card:nth-child(2) .blog-cat { color: var(--sky-deep); }
.blog-card:nth-child(3) .blog-cat { color: var(--rose-deep); }

.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; line-height: 1.25; color: var(--text-dark); margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.blog-meta { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--text-light); letter-spacing: 0.1em; }

.blog-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.12);
  background: var(--ink);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

/* Skeleton Loading Shimmer */
.blog-card.skeleton {
  pointer-events: none;
  background: var(--warm-white);
  border-top-color: var(--cream-2);
}
.skeleton-shimmer {
  background: linear-gradient(90deg, var(--cream-2) 25%, var(--warm-white) 50%, var(--cream-2) 75%);
  background-size: 200% 100%;
  animation: blog-skeleton-shimmer 1.5s infinite linear;
  border-radius: 4px;
}
.skeleton-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.skeleton-cat {
  height: 12px;
  width: 30%;
  margin-bottom: 12px;
}
.skeleton-title {
  height: 24px;
  width: 90%;
  margin-bottom: 16px;
}
.skeleton-text {
  height: 14px;
  width: 100%;
  margin-bottom: 8px;
}
.skeleton-text.short {
  width: 75%;
  margin-bottom: 20px;
}
.skeleton-meta {
  height: 10px;
  width: 45%;
}

@keyframes blog-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.blog-integration-note {
  margin-top: 36px; padding: 20px 28px;
  background: var(--warm-white); border: 1px dashed rgba(201,168,76,0.4);
  border-radius: 4px; display: flex; align-items: center; gap: 18px;
}
.bin-icon { font-size: 26px; color: var(--gold); flex-shrink: 0; }
.bin-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.bin-text strong { color: var(--text-dark); font-weight: 600; }

/* ═══════════════════
   CONTACT SECTION
   ═══════════════════ */
.cta-section {
  background: var(--ink-light); padding: 96px 60px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--rule);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px); font-weight: 700;
  color: var(--gold-light); line-height: 1.15; margin-bottom: 18px;
}
.cta-sub {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.82);
  margin-bottom: 36px; max-width: 600px; line-height: 1.6;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.contact-info-col { display: flex; flex-direction: column; justify-content: center; }
.contact-form-col {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 36px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-group { margin-bottom: 18px; }
.contact-form-label {
  display: block; font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 7px;
}

.contact-form-input, .contact-form-select, .contact-form-textarea {
  width: 100%; background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  padding: 11px 14px; color: #fff;
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 500;
  transition: all 0.3s;
}
.contact-form-input:focus, .contact-form-select:focus, .contact-form-textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,0.35);
  box-shadow: 0 0 10px rgba(229,193,88,0.2);
}
.contact-form-select option { background: var(--ink); color: #fff; }
.contact-form-textarea { resize: vertical; min-height: 110px; }

.contact-submit-btn {
  width: 100%; padding: 15px; background: var(--gold); color: var(--ink);
  border: none; border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.contact-submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(229,193,88,0.3); }
.contact-submit-btn.loading { background: rgba(229,193,88,0.5); pointer-events: none; }
.contact-spinner { width: 18px; height: 18px; border: 2px solid rgba(12,15,23,0.2); border-top-color: var(--ink); border-radius: 50%; animation: spin 1s linear infinite; }

/* ═══════════════════
   FOOTER
   ═══════════════════ */
footer { background: var(--ink); padding: 70px 60px 36px; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px;
}
.fbg { color: var(--gold-light); }
.fbs { color: var(--sky-light); }
.fbr { color: var(--rose-light); }

.footer-brand-desc { font-size: 14px; color: rgba(250,247,240,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  text-decoration: none; transition: all 0.2s;
}
.fsoc:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.footer-col-title { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(250,247,240,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(250,247,240,0.3); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(201,168,76,0.5); }

/* ═══════════════════
   INNER PAGE LAYOUTS
   ═══════════════════ */
.product-detail-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: flex-start; margin-top: 40px;
}
.product-detail-img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid var(--cream-2); }
.product-detail-info h3 { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.1em; }
.product-detail-info p { font-size: 17px; line-height: 1.7; color: var(--text-mid); margin-bottom: 22px; }
.product-spec-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.product-spec-item { display: flex; gap: 12px; font-size: 15px; color: var(--text-dark); }
.product-spec-item strong { width: 150px; flex-shrink: 0; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--text-light); }

.category-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.category-card {
  background: var(--warm-white); border: 1px solid var(--cream-2);
  border-radius: 8px; padding: 36px 28px; transition: all 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.category-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 25px rgba(229,193,88,0.1); }

.blog-article-content { max-width: 800px; margin: 0 auto; font-size: 18px; line-height: 1.8; color: var(--text-dark); }
.blog-article-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; margin: 36px 0 18px; }
.blog-article-content p { margin-bottom: 22px; }
.blog-article-content blockquote { border-left: 4px solid var(--gold); padding-left: 22px; font-style: italic; color: var(--text-light); margin: 28px 0; }

/* ═══════════════════
   CUSTOMIZER (unchanged)
   ═══════════════════ */
.customizer-trigger {
  position: fixed; bottom: 24px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.customizer-trigger:hover { transform: rotate(45deg) scale(1.1); background: var(--gold-light); }
.customizer-panel {
  position: fixed; bottom: 88px; right: 24px;
  width: 340px; max-width: calc(100vw - 48px);
  max-height: calc(100vh - 120px); overflow-y: auto;
  background: rgba(26,31,46,0.88); backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); padding: 22px;
  z-index: 999; transform: translateY(20px) scale(0.95); opacity: 0;
  pointer-events: none; transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
}
.customizer-panel.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.customizer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(201,168,76,0.2); padding-bottom: 10px; margin-bottom: 18px; }
.customizer-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--gold-light); }
.customizer-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 18px; cursor: pointer; transition: color 0.2s; }
.customizer-close:hover { color: var(--rose); }
.customizer-section { margin-bottom: 18px; }
.customizer-section-title { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.theme-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.theme-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 7px 10px; border-radius: 4px; font-size: 11px; font-family: 'Rajdhani', sans-serif; font-weight: 600; cursor: pointer; transition: all 0.2s; text-align: left; display: flex; align-items: center; gap: 7px; }
.theme-btn:hover { background: rgba(255,255,255,0.1); }
.theme-btn.active { border-color: var(--gold); background: rgba(212,175,55,0.15); color: var(--gold-light); }
.theme-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.preset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 10px; }
.preset-thumb { position: relative; height: 48px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; background-size: cover; background-position: center; }
.preset-thumb:hover { border-color: rgba(255,255,255,0.5); }
.preset-thumb.active { border-color: var(--gold); }
.preset-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: #fff; font-size: 8px; text-align: center; padding: 2px 0; font-family: 'Space Mono', monospace; }
.customizer-input-group { margin-top: 8px; }
.customizer-label { display: block; font-size: 10px; color: rgba(255,255,255,0.7); margin-bottom: 5px; font-weight: 500; }
.customizer-text-input { width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 7px 10px; border-radius: 4px; font-size: 11px; font-family: inherit; transition: border-color 0.2s; }
.customizer-text-input:focus { outline: none; border-color: var(--gold); }
.customizer-file-label { display: block; width: 100%; background: rgba(0,0,0,0.3); border: 1px dashed rgba(201,168,76,0.4); border-radius: 4px; padding: 9px; text-align: center; font-size: 11px; color: var(--gold-pale); cursor: pointer; transition: all 0.2s; }
.customizer-file-label:hover { background: rgba(212,175,55,0.05); border-color: var(--gold); }
.customizer-file-input { display: none; }
.range-slider-wrap { display: flex; align-items: center; gap: 10px; }
.range-slider { flex-grow: 1; accent-color: var(--gold); height: 4px; cursor: pointer; }
.slider-val { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--gold-light); width: 32px; text-align: right; }
.customizer-actions { display: flex; gap: 8px; margin-top: 14px; }
.customizer-btn { flex-grow: 1; padding: 9px; border-radius: 4px; font-size: 10px; font-weight: 700; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border: none; }
.btn-save-cfg { background: var(--gold); color: var(--ink); }
.btn-save-cfg:hover { background: var(--gold-light); }
.btn-reset-cfg { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-reset-cfg:hover { background: rgba(255,255,255,0.15); }
.btn-export-css { background: transparent; color: var(--sky-light); border: 1px solid var(--sky-deep); }
.btn-export-css:hover { background: rgba(42,143,184,0.15); }

.toast-msg {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(21,28,42,0.97); border: 1px solid var(--gold);
  color: var(--gold-pale); padding: 11px 22px; border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; z-index: 2000; box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  opacity: 0; transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); pointer-events: none;
}
.toast-msg.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Leads */
#leadsListContainer { max-height: 180px; overflow-y: auto; background: rgba(0,0,0,0.3); padding: 9px; border-radius: 4px; font-size: 11px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.1); }

/* ═══════════════════
   BACK TO TOP BUTTON
   ═══════════════════ */
.back-to-top {
  position: fixed; bottom: 84px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(250,247,240,0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--rule); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; cursor: pointer;
  z-index: 998; opacity: 0; pointer-events: none;
  transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

/* ═══════════════════
   PROGRESS BAR
   ═══════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 300; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.sp-gold { background: var(--gold); transform-origin: left; transform: scaleX(0); transition: transform 0.1s linear; }
.sp-sky  { background: var(--sky);  transform-origin: left; transform: scaleX(0); transition: transform 0.1s linear; }
.sp-rose { background: var(--rose); transform-origin: left; transform: scaleX(0); transition: transform 0.1s linear; }

/* ═══════════════════
   ANIMATIONS
   ═══════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-15px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* staggered children */
.reveal-children > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.reveal-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.18s; }
.reveal-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.26s; }
.reveal-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.34s; }

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 1100px) {
  .product-row { grid-template-columns: 200px 1fr 1fr; }
  .prod-preview { display: none; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 60px 24px; }
  .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .page-hero { padding: calc(var(--nav-h) + 30px) 24px 50px !important; }
  .hero-grid-wrapper { grid-template-columns: 1fr !important; gap: 32px; text-align: center; }
  .hero-image-col { order: -1; }
  .hero-feature-card { max-width: 260px; }
  .hero-tagline { border-left: none; padding-left: 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { position: relative; right: auto; bottom: auto; justify-content: center; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
  .stat-item { text-align: center; }
  .vm-grid, .problem-grid, .products-intro { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .prod-preview { display: none; }
  .prod-identity, .prod-origin, .prod-story { border-right: none; border-bottom: 1px solid var(--cream-2); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 10px 20px; }
  .pattern-band { padding: 60px 24px; }
  footer { padding: 50px 24px 28px; }
}
/* Product Banner Section — added to style.css */
.product-banner-section {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

.product-banner-wrap {
  width: 100%;
  position: relative;
  background: #0c1220;
}

/* The banner image — full width, never cropped horizontally */
.product-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;       /* show full image, no cropping */
  object-position: center;
  max-height: none;          /* no height cap */
}

/* On very wide screens keep it from stretching too thin */
@media (min-width: 1600px) {
  .product-banner-img { max-width: 1400px; margin: 0 auto; display: block; }
  .product-banner-wrap { display: flex; justify-content: center; }
}

/* On mobile, allow horizontal scroll if needed */
@media (max-width: 600px) {
  .product-banner-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .product-banner-img { width: 900px; max-width: none; }
}

/* ══════════════════════════════════════
   PRODUCT BANNER — full-width display
   ══════════════════════════════════════ */

/* Force hero to single column when image-col is removed */
.hero-grid-wrapper {
  grid-template-columns: 1fr !important;
}

.product-banner-outer {
  width: 100%;
  background: #0c1020;
  line-height: 0; /* remove gap below img */
  overflow: hidden;
}

.product-banner-full {
  display: block;
  width: 100%;
  height: auto;
  /* Show the complete image — no cropping ever */
  object-fit: contain;
  /* Natural aspect ratio of the image (1307x809) */
  /* On all screens the full width is used and height scales naturally */
}

/* On very wide screens, cap it so it doesn't stretch too tall */
@media (min-width: 1400px) {
  .product-banner-full {
    max-height: 700px;
    object-fit: cover; /* use cover only when we have plenty of width */
    object-position: center top; /* keep the top (product names) always visible */
  }
}

/* On narrow screens, make it scrollable horizontally
   so no text gets cut off */
@media (max-width: 700px) {
  .product-banner-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-banner-full {
    width: 900px; /* fixed minimum width to keep all 5 columns readable */
    max-width: none;
  }
}
