/* ==========================================================================
   ETERNAL IMPEX — CINEMATIC SCROLL-STORY DESIGN SYSTEM v3
   Background: #16391F (preserved) | Deep: #0D2414 | Gold: #D9A441 | Cream: #F4EDD8
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --bg-primary:   #16391F;
  --bg-deep:      #0D2414;
  --bg-light:     #1D4727;
  --bg-card:      #112d18;
  --bg-surface:   #09180d;

  --gold:         #D9A441;
  --gold-dim:     rgba(217, 164, 65, 0.22);
  --gold-dark:    #b07e24;
  --gold-glow:    rgba(217, 164, 65, 0.45);

  --cream:        #F4EDD8;
  --cream-muted:  #c4b89a;

  --text-hi:      rgba(244, 237, 216, 0.97);
  --text-mid:     rgba(244, 237, 216, 0.65);
  --text-lo:      rgba(244, 237, 216, 0.30);
  --text-muted:   #3e6648;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:   cubic-bezier(0.76, 0, 0.24, 1);

  --pad-x:        clamp(20px, 5vw, 80px);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--bg-primary);
  color: var(--text-hi);
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

ul, ol { list-style: none; }
img    { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
a      { text-decoration: none; color: inherit; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

::-webkit-scrollbar             { width: 6px; }
::-webkit-scrollbar-track       { background: var(--bg-deep); }
::-webkit-scrollbar-thumb       { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --------------------------------------------------------------------------
   UTILITY LABELS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.chapter-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 6px;
}

.chapter-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-mid);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.custom-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }

.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s ease;
  z-index: 9999;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(217, 164, 65, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-expo), height 0.35s var(--ease-expo), border-color 0.3s;
  z-index: 9998;
}

.custom-cursor.is-hovering .cursor-ring { width: 54px; height: 54px; border-color: var(--gold); }
.custom-cursor.is-hovering .cursor-dot  { transform: translate(-50%, -50%) scale(1.6); }

@media (hover: none) { .custom-cursor { display: none; } }

/* --------------------------------------------------------------------------
   PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
}

.preloader-content {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.preloader-brand { display: flex; align-items: center; gap: 12px; }

.preloader-logo-mark { width: 28px; height: 28px; color: var(--gold); }
.preloader-logo-mark svg { width: 100%; height: 100%; }

.preloader-name {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.preloader-tagline {
  font-family: var(--font-serif);
  font-size: 15px; font-style: italic;
  color: var(--text-mid);
}

.preloader-bar-wrap { width: 200px; height: 1px; background: rgba(255,255,255,0.1); overflow: hidden; }
.preloader-bar      { height: 100%; width: 0; background: var(--gold); transition: width 0.15s ease; }
.preloader-pct      { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.12em; color: var(--text-lo); }

/* --------------------------------------------------------------------------
   CHAPTER NAV (right side indicator)
   -------------------------------------------------------------------------- */
.chapter-nav {
  position: fixed;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.chapter-nav.visible { opacity: 1; }

.chapter-nav-list  { display: flex; flex-direction: column; gap: 0; }
.chapter-nav-item  { position: relative; }

.chapter-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; background: none; border: none; cursor: pointer; direction: rtl;
}

.chapter-nav-line {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-lo);
  transition: width 0.4s var(--ease-expo), background 0.4s ease;
}

.chapter-nav-label {
  direction: ltr;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-lo); opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  white-space: nowrap; pointer-events: none;
}

.chapter-nav-item:hover .chapter-nav-label,
.chapter-nav-item.active .chapter-nav-label { opacity: 1; transform: translateX(0); color: var(--gold); }

.chapter-nav-item.active .chapter-nav-line { width: 36px; background: var(--gold); }
.chapter-nav-item:hover  .chapter-nav-line { width: 28px; background: var(--cream-muted); }

@media (max-width: 900px) { .chapter-nav { display: none; } }

/* --------------------------------------------------------------------------
   SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 68px;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 36, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(217, 164, 65, 0.15);
}

.site-logo { display: flex; align-items: center; }
.site-logo-img { height: 45px; width: auto; }

.site-nav-list { display: flex; gap: 36px; align-items: center; }

.site-nav-link {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s ease;
  position: relative;
}

.site-nav-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: #2B9568;
  transition: width 0.35s var(--ease-expo);
}

.site-nav-link:hover,
.site-nav-link.active { color: var(--cream); }

.site-nav-link:hover::after,
.site-nav-link.active::after { width: 100%; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--gold); color: var(--bg-deep);
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease-expo), box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 164, 65, 0.25);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  border: 1px solid rgba(244, 237, 216, 0.25);
  color: var(--text-mid);
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--cream); }

.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #2B9568; color: var(--bg-deep);
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.3s ease, transform 0.25s ease;
}

.nav-cta-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   MOBILE MENU
   -------------------------------------------------------------------------- */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}

.mobile-menu-btn span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-expo), opacity 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  z-index: 850;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-expo);
}

.mobile-nav-overlay.open { transform: translateY(0); }

.mobile-nav { display: flex; align-items: center; justify-content: center; height: 100%; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 42px); font-weight: 400;
  color: var(--text-hi);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover { color: var(--gold); }

.mobile-quote-btn {
  display: inline-flex; padding: 14px 36px;
  background: var(--gold); color: var(--bg-deep);
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-cta-btn { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* --------------------------------------------------------------------------
   CHAPTER 0 — THE LAND (Controlled Scrollytelling Hero)
   -------------------------------------------------------------------------- */
.hero-scroll-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-sticky-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(13,36,20,0.85) 100%);
  z-index: 3; pointer-events: none;
}

.hero-atmo {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,36,20,0.3) 0%, transparent 30%, transparent 65%, rgba(13,36,20,0.75) 100%);
  z-index: 4; pointer-events: none;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  z-index: 5; pointer-events: none;
}

.hero-exit-veil {
  position: absolute; inset: 0;
  background: var(--bg-primary);
  opacity: 0;
  z-index: 8; pointer-events: none;
}

.hero-story-layer {
  position: absolute; inset: 0;
  z-index: 6; pointer-events: none;
}

/* Story stages */
.story-stage {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.story-stage.active { pointer-events: auto; }

.stage-center {
  left: 50%; top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: min(720px, 90vw);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.stage-left {
  left: var(--pad-x); top: 50%;
  transform: translateY(-50%);
  width: min(540px, 90vw);
  display: flex; flex-direction: column; gap: 16px;
}

.stage-right {
  right: var(--pad-x); top: 50%;
  transform: translateY(-50%);
  width: min(540px, 90vw);
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}

.stage-eyebrow {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(13,36,20,0.6);
}

.story-headline--final {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600; letter-spacing: 0.01em; text-transform: uppercase;
}

.story-sub {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.5vw, 15px); line-height: 1.65;
  color: var(--text-mid); max-width: 460px;
}

.stage-center .story-sub { text-align: center; }

.seed-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 520px; }

.seed-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(217, 164, 65, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.2);
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-mid);
}

.seed-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

.stage-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.stage-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(244, 237, 216, 0.15);
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-mid);
}

.stage-pill svg { width: 12px; height: 12px; color: var(--gold); }

.hero-cta-row {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 7;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.scroll-hint-track { width: 120px; height: 1px; background: rgba(244, 237, 216, 0.12); overflow: hidden; }
.scroll-hint-thumb { height: 100%; width: 0; background: var(--gold); }
.scroll-hint-label { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-lo); }

/* --------------------------------------------------------------------------
   CHAPTER 1 — ABOUT US  (Smooth low-opacity to high-opacity progressive reveal)
   -------------------------------------------------------------------------- */
.chapter-farm {
  background: var(--bg-primary);
  position: relative;
}

.chapter-farm-sticky {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px var(--pad-x) 100px;
  background: var(--bg-primary);
}

.about-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.about-reveal-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(244, 237, 216, 0.2);
  text-align: center;
  max-width: 860px;
}

.about-reveal-text .word {
  display: inline;
  color: rgba(244, 237, 216, 0.2);
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 16px;
  opacity: 0.2;
  transform: translateY(20px);
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(244, 237, 216, 0.08);
  background: rgba(244, 237, 216, 0.02);
  text-align: left;
}

.about-pillar-tag {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}

.about-pillar-desc {
  font-family: var(--font-sans);
  font-size: 13px; line-height: 1.5;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .about-pillars { grid-template-columns: 1fr; gap: 12px; }
}

/* --------------------------------------------------------------------------
   CHAPTER 2 — OUR PRODUCTS (Nakula-Inspired Editorial Visual Product Story)
   Layout: Huge Display Index (01.) + Vertical Menu + Title/Desc/Specs + Full Image Canvas
   -------------------------------------------------------------------------- */
.chapter-products {
  background: #07150a;
  position: relative;
  overflow: visible;
}

.prod-scroll-wrapper {
  position: relative;
  width: 100%;
}

.prod-sticky {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: #07150a;
}

/* ==================== LEFT COLUMN: EDITORIAL TYPOGRAPHY ==================== */
.prod-left {
  padding: 50px 48px 45px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(244, 237, 216, 0.07);
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(135deg, rgba(13, 36, 20, 0.5) 0%, rgba(7, 21, 10, 0.95) 100%);
}

/* Top Meta: Huge Number */
.prod-top-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.prod-huge-num {
  font-family: var(--font-sans);
  font-size: clamp(88px, 9vw, 136px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(244, 237, 216, 0.22);
  user-select: none;
  transition: color 0.3s ease;
}

.prod-section-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 8px;
}

/* Middle: Vertical Navigation Menu */
.prod-menu {
  margin: 8px 0 12px 0;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 14px;
}

.prod-menu::-webkit-scrollbar { width: 3px; }
.prod-menu::-webkit-scrollbar-thumb { background: rgba(217, 164, 65, 0.3); border-radius: 2px; }

.prod-menu-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prod-menu-item {
  position: relative;
}

.prod-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 237, 216, 0.35);
  transition: color 0.25s ease, transform 0.25s ease;
  text-align: left;
}

.prod-menu-dash {
  font-size: 14px;
  opacity: 0.35;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.prod-menu-item:hover .prod-menu-btn {
  color: var(--cream);
  transform: translateX(4px);
}

.prod-menu-item.active .prod-menu-btn {
  color: var(--cream);
  font-weight: 700;
  transform: translateX(4px);
}

.prod-menu-item.active .prod-menu-dash {
  opacity: 1;
  color: var(--gold);
}

/* Bottom: Active Product Content Panels */
.prod-bottom-area {
  position: relative;
  min-height: 225px;
}

.prod-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.prod-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.prod-cat-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.prod-main-title {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.prod-short-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 460px;
}

.prod-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 8px 0;
  border-top: 1px solid rgba(244, 237, 216, 0.08);
}

.pm-spec {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--text-lo);
}

.pm-spec strong {
  color: var(--cream-muted);
  font-weight: 600;
}

.prod-action-row {
  margin-top: 4px;
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.prod-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 65, 0.25);
}

/* ==================== RIGHT COLUMN: CINEMATIC VISUAL SHOWCASE ==================== */
.prod-right {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 60% 50%, #173822 0%, #061109 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.prod-right::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.prod-img-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
}

.prod-img-wrap.active {
  opacity: 1;
}

.prod-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(244, 237, 216, 0.12);
  position: relative;
  background: #0d2414;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.6s var(--ease-expo);
}

.prod-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 10, 0.5) 0%, transparent 45%);
  pointer-events: none;
}

/* Individual Product Image Styling Enhancements */
.prod-img-wrap[data-img="0"] .prod-img { object-position: center 35%; }
.prod-img-wrap[data-img="1"] .prod-img { object-position: center 40%; }
.prod-img-wrap[data-img="2"] .prod-img { object-position: center 50%; }
.prod-img-wrap[data-img="3"] .prod-img { object-position: center 45%; }
.prod-img-wrap[data-img="4"] .prod-img { object-position: center 50%; }
.prod-img-wrap[data-img="5"] .prod-img { object-position: center 40%; }
.prod-img-wrap[data-img="6"] .prod-img { object-position: center 55%; }
.prod-img-wrap[data-img="7"] .prod-img { object-position: center 45%; }
.prod-img-wrap[data-img="8"] .prod-img { object-position: center 50%; }
.prod-img-wrap[data-img="9"] .prod-img { object-position: center 40%; }

/* Responsive adjustments */
@media (max-width: 960px) {
  .prod-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    position: relative;
  }

  .prod-left {
    padding: 50px var(--pad-x) 35px;
    border-right: none;
    border-bottom: 1px solid rgba(244, 237, 216, 0.08);
  }

  .prod-menu { max-height: 180px; }

  .prod-right {
    min-height: 52vh;
    padding: 20px var(--pad-x) 50px;
  }

  .prod-panel {
    position: relative;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: none;
  }

  .prod-panel.active { display: flex; }
}

/* --------------------------------------------------------------------------
   CHAPTER 3 — THE QUALITY
   -------------------------------------------------------------------------- */
.chapter-quality { background: var(--bg-primary); }

.quality-inner {
  padding: 140px var(--pad-x);
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 100px;
}

.quality-header-block {
  display: flex; flex-direction: column; gap: 8px; max-width: 640px;
}

.quality-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--cream); margin-top: 12px;
}

.quality-subtext {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.65;
  color: var(--text-mid); margin-top: 16px;
}

.quality-cert-list { display: flex; flex-direction: column; gap: 0; }

.quality-cert {
  display: grid; grid-template-columns: 80px 1fr 60px;
  align-items: start; gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(244, 237, 216, 0.07);
  opacity: 0; transform: translateX(-30px);
}

.quality-cert:last-child { border-bottom: 1px solid rgba(244, 237, 216, 0.07); }

.quality-cert-left { padding-top: 4px; }

.cert-num { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--text-lo); }

.cert-name { font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 32px); font-weight: 500; color: var(--cream); margin-bottom: 10px; letter-spacing: -0.01em; }
.cert-detail { font-family: var(--font-sans); font-size: 13px; line-height: 1.65; color: var(--text-mid); }

.quality-cert-right { display: flex; align-items: center; justify-content: flex-end; padding-top: 4px; }
.cert-icon { width: 28px; height: 28px; color: var(--gold); opacity: 0.7; }

/* Industries */
.industries-block {
  display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start;
}

@media (max-width: 900px) { .industries-block { grid-template-columns: 1fr; gap: 40px; } }

.industries-header { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 12px; }

.industries-title { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.2; color: var(--cream); letter-spacing: -0.01em; }

.industries-list { display: flex; flex-direction: column; }

.industry-row { border-top: 1px solid rgba(244, 237, 216, 0.07); overflow: hidden; }
.industry-row:last-child .industry-divider { border-bottom: 1px solid rgba(244, 237, 216, 0.07); }

.industry-row-top { display: flex; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; }

.industry-num { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.15em; color: var(--text-lo); flex-shrink: 0; }

.industry-name { font-family: var(--font-serif); font-size: clamp(18px, 2.2vw, 26px); font-weight: 400; color: var(--cream); flex: 1; letter-spacing: -0.005em; transition: color 0.3s ease; }

.industry-row:hover .industry-name,
.industry-row.active .industry-name { color: var(--gold); }

.industry-arrow { width: 24px; height: 24px; color: var(--text-lo); transition: transform 0.4s var(--ease-expo), color 0.3s ease; flex-shrink: 0; }
.industry-row.active .industry-arrow { transform: rotate(90deg); color: var(--gold); }

.industry-row-expand { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-expo), padding 0.5s ease; }
.industry-row.active .industry-row-expand { max-height: 120px; padding-bottom: 20px; }
.industry-row-expand p { font-family: var(--font-sans); font-size: 13px; line-height: 1.7; color: var(--text-mid); padding-left: 40px; }
.industry-divider { height: 0; }

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.chapter-testimonials { background: var(--bg-deep); padding: 140px var(--pad-x); }

.testimonials-inner { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }

.testimonials-header { display: flex; flex-direction: column; gap: 16px; }

.testimonials-headline { font-family: var(--font-serif); font-size: clamp(24px, 3.5vw, 44px); font-weight: 300; line-height: 1.35; color: var(--cream); letter-spacing: -0.01em; }

.testimonials-stage { display: flex; flex-direction: column; gap: 40px; }

.testimonials-carousel { position: relative; min-height: 220px; }

.testimonial-slide { display: none; flex-direction: column; gap: 24px; }
.testimonial-slide.active { display: flex; }

.testimonial-quote-mark { font-family: var(--font-serif); font-size: 80px; color: var(--gold); line-height: 0.5; opacity: 0.4; }

.testimonial-text { font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 26px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--cream); letter-spacing: -0.005em; }

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-dim); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--gold); flex-shrink: 0; }

.testimonial-name { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text-hi); }
.testimonial-role { font-family: var(--font-sans); font-size: 12px; color: var(--text-mid); margin-top: 2px; }

.testimonials-controls { display: flex; align-items: center; gap: 20px; }

.testimonial-btn { width: 40px; height: 40px; border: 1px solid rgba(244, 237, 216, 0.12); display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: border-color 0.3s ease, color 0.3s ease; cursor: pointer; }
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold); }

.testimonial-dots { display: flex; gap: 8px; }
.tdot { width: 20px; height: 2px; background: rgba(244, 237, 216, 0.12); border: none; cursor: pointer; transition: background 0.3s ease, width 0.3s ease; }
.tdot.active { background: var(--gold); width: 36px; }

/* --------------------------------------------------------------------------
   CHAPTER 4 — THE FUTURE
   -------------------------------------------------------------------------- */
.chapter-future {
  background: var(--bg-deep);
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.chapter-future::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(217, 164, 65, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.future-inner {
  width: 100%; max-width: 1000px; margin: 0 auto;
  padding: 140px var(--pad-x);
  display: flex; flex-direction: column; gap: 32px;
}

.future-chapter-label { display: flex; flex-direction: column; gap: 4px; }

.future-statement { display: flex; flex-direction: column; gap: 36px; }

.future-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--cream);
}

.future-word { display: inline-block; will-change: transform, opacity; margin-right: 0.25em; }

.future-word--em {
  display: block; width: 0; margin: 0;
  color: var(--gold); font-style: italic;
}

.future-sub { font-family: var(--font-sans); font-size: clamp(13px, 1.5vw, 16px); line-height: 1.7; color: var(--text-mid); max-width: 520px; }

/* --------------------------------------------------------------------------
   CHAPTER 5 — CONTACT
   -------------------------------------------------------------------------- */
.chapter-contact { background: var(--bg-primary); padding: 140px var(--pad-x); }

.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 60px; } }

.contact-left { display: flex; flex-direction: column; gap: 24px; }

.contact-headline { font-family: var(--font-serif); font-size: clamp(32px, 4.5vw, 58px); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--cream); }

.contact-sub { font-family: var(--font-sans); font-size: 14px; line-height: 1.7; color: var(--text-mid); max-width: 420px; }

.contact-right { padding-top: 16px; }

.contact-info-block { display: flex; flex-direction: column; gap: 24px; padding: 36px; border: 1px solid rgba(244, 237, 216, 0.07); background: rgba(244, 237, 216, 0.02); }

.contact-info-title { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--cream); }

.contact-address { font-family: var(--font-sans); font-size: 13px; line-height: 1.75; color: var(--text-mid); font-style: normal; }

.contact-detail { display: flex; flex-direction: column; gap: 3px; }

.contact-detail-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-lo); }

.contact-detail-val { font-family: var(--font-sans); font-size: 13px; color: var(--text-mid); }

.contact-email { color: var(--gold); transition: opacity 0.2s ease; }
.contact-email:hover { opacity: 0.75; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid rgba(244, 237, 216, 0.06); }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 80px var(--pad-x) 40px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 237, 216, 0.06);
}

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } }
@media (max-width: 520px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-icon { width: 20px; height: 20px; color: var(--gold); }
.footer-brand-name { font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: var(--cream); }
.footer-brand-desc { font-family: var(--font-sans); font-size: 13px; line-height: 1.65; color: var(--text-mid); max-width: 300px; }

.footer-col-title { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-lo); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-family: var(--font-sans); font-size: 13px; color: var(--text-mid); transition: color 0.3s ease; }
.footer-link:hover { color: var(--gold); }
.footer-link--text { cursor: default; }
.footer-link--text:hover { color: var(--text-mid); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-family: var(--font-sans); font-size: 12px; color: var(--text-lo); }
.footer-legal { display: flex; gap: 20px; }

/* --------------------------------------------------------------------------
   QUOTE DRAWER
   -------------------------------------------------------------------------- */
.quote-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(13, 36, 20, 0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 9500;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  display: flex; align-items: stretch; justify-content: flex-end;
}

.quote-modal-backdrop.open { opacity: 1; visibility: visible; }

.quote-drawer {
  width: min(540px, 100vw);
  background: var(--bg-deep);
  border-left: 1px solid rgba(244, 237, 216, 0.07);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding: 48px 40px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-expo);
}

.quote-modal-backdrop.open .quote-drawer { transform: translateX(0); }

.drawer-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 36px; }

.drawer-eyebrow { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.drawer-title { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--cream); }

.close-drawer-btn { width: 36px; height: 36px; border: 1px solid rgba(244, 237, 216, 0.12); display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: border-color 0.3s ease, color 0.3s ease; flex-shrink: 0; }
.close-drawer-btn:hover { border-color: var(--gold); color: var(--cream); }

#quote-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }

.form-control {
  width: 100%; padding: 12px 14px;
  background: rgba(244, 237, 216, 0.04);
  border: 1px solid rgba(244, 237, 216, 0.1);
  color: var(--cream);
  font-family: var(--font-sans); font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  appearance: none; -webkit-appearance: none;
}

.form-control:focus { border-color: var(--gold); background: rgba(217, 164, 65, 0.04); }
.form-control::placeholder { color: var(--text-lo); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}

select.form-control option { background: var(--bg-deep); color: var(--cream); }
textarea.form-control { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 28px;
  background: var(--gold); color: var(--bg-deep);
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease-expo), box-shadow 0.3s ease;
  margin-top: 8px;
}

.form-submit-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217, 164, 65, 0.2); }

/* --------------------------------------------------------------------------
   REDUCED MOTION OVERRIDES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .story-stage { position: static !important; opacity: 1 !important; transform: none !important; pointer-events: auto !important; width: 100% !important; text-align: left !important; align-items: flex-start !important; }

  .about-reveal-text .word { color: var(--cream) !important; }

  .prod-panel { position: relative !important; opacity: 1 !important; pointer-events: auto !important; display: flex !important; }

  .prod-img-wrap { opacity: 1 !important; }

  .quality-cert { opacity: 1 !important; transform: none !important; }

  .future-word { opacity: 1 !important; transform: none !important; }
}