/* ══════════════════════════════════════
   ZEHEMREK — GLOBAL STYLESHEET
   Palette (Arrodz-inspired):
     --bg-light:   #F4EFE6  (warm cream/off-white — primary background)
     --white:      #FFFFFF  (pure white for cards/nav)
     --red:        #C0392B  (deep warm red — accent)
     --yellow:     #D4A843  (warm amber/gold — secondary accent)
     --dark:       #1A1A1A  (near-black for text)
══════════════════════════════════════ */

:root {
  /* ── Core palette (Arrodz-inspired) ── */
  --bg-light:     #F4EFE6;   /* warm cream — main page background */
  --white:        #FFFFFF;   /* pure white — nav, cards */
  --red:          #7b180d;   /* warm deep red — primary accent */
  --red-hover:    #78180f;   /* darker red for hovers */
  --yellow:       #D4A843;   /* warm amber/gold — secondary accent */
  --yellow-light: #E8C068;   /* lighter amber */
  --dark:         #1A1A1A;   /* near-black — primary text */
  --dark-mid:     #3A3A3A;   /* medium dark — body text */
  --muted:        #7A7A7A;   /* muted gray — secondary text */
  --border-light: rgba(26,26,26,.1);   /* subtle border */
  --border-mid:   rgba(26,26,26,.18);  /* medium border */

  /* ── Semantic mappings ── */
  --bg:      var(--bg-light);
  --text:    var(--dark);
  --accent:  var(--red);
  --accent2: var(--yellow);

  /* ── Typography ── */
  --font-display: 'Oswald', sans-serif;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg-light);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR — White circle, inverts on light bg
══════════════════════════════════════ */
body { cursor: none !important; }
a, button, [onclick], .market-card, select, input, textarea,
.nav-toggle, .mobile-close, .bcard-wrapper, .market-tilt-card { cursor: none !important; }

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    width 0.22s cubic-bezier(.22,1,.36,1),
    height 0.22s cubic-bezier(.22,1,.36,1),
    opacity 0.22s ease;
  mix-blend-mode: difference;
  will-change: transform;
}
#cursor-dot {
  display: none;
}
/* Scale up on hover over interactive elements */
body.cursor-hover #cursor-ring {
  width: 44px; height: 44px;
  border-color: #ffffff;
  background: rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════
   NAV — Arrodz floating pill style
   · Starts as a translucent floating bar sitting
     inset from edges with rounded corners
   · On scroll → shrinks + fully opaque white pill
   · Inner-page (no video hero) → always solid white
══════════════════════════════════════ */

/* Outer wrapper: gives the inset gap from edges */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* padding creates the visible gap on top and sides */
  padding: 18px 24px 0;
  pointer-events: none; /* let clicks through the gap */
}

/* The actual pill bar */
.nav-main {
  pointer-events: all;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
  padding: 0 2rem;
  border-radius: 12px;

  /* Default: translucent frosted glass — visible on hero video */
  background: rgba(255,255,255,0.12);
 
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);

  transition:
    background 0.55s cubic-bezier(.4,0,.2,1),
    box-shadow 0.55s cubic-bezier(.4,0,.2,1),
    height 0.45s cubic-bezier(.4,0,.2,1),
    padding 0.45s cubic-bezier(.4,0,.2,1),
    border-color 0.55s cubic-bezier(.4,0,.2,1),
    border-radius 0.45s cubic-bezier(.4,0,.2,1),
    backdrop-filter 0.55s cubic-bezier(.4,0,.2,1);
}

/* Scrolled: solid white, slightly smaller, deeper shadow */
.nav-main.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(26,26,26,0.08);
  box-shadow:
    0 2px 0 rgba(26,26,26,0.04),
    0 8px 32px rgba(26,26,26,0.1);
  height: 56px;
}

/* Inner-page variant: always solid white pill from the start */
.nav-main.nav-solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(26,26,26,0.08);
  box-shadow:
    0 2px 0 rgba(26,26,26,0.04),
    0 8px 32px rgba(26,26,26,0.1);
}
.nav-main.nav-solid.scrolled {
  height: 52px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: .45rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  text-decoration: none;
  transition: color .3s ease;
}
/* On hero pages: text starts white, turns dark on scroll */
.nav-main.scrolled .nav-logo-text { color: var(--dark); }
/* On solid inner pages: always dark */
.nav-main.nav-solid .nav-logo-text { color: var(--dark); }
.nav-logo-text:hover { color: var(--red) !important; }
.nav-logo-img { height: 54px; width: auto; margin-right: 2px; display: block; }

/* Nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 0; list-style: none; height: 100%;
}
.nav-links li { height: 100%; display: flex; align-items: stretch; }
.nav-links a {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  display: flex; align-items: center;
  padding: 0 1.1rem;
  position: relative;
  white-space: nowrap;
  transition: color .28s ease;
}
/* Sliding underline indicator */
.nav-links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Hero pages: white text */
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

/* Scrolled state → dark text */
.nav-main.scrolled .nav-links a { color: var(--dark-mid); }
.nav-main.scrolled .nav-links a:hover { color: var(--red); }
.nav-main.scrolled .nav-links a.active { color: var(--dark); }

/* Inner-page (solid) → always dark text */
.nav-main.nav-solid .nav-links a { color: var(--dark-mid); }
.nav-main.nav-solid .nav-links a:hover { color: var(--red); }
.nav-main.nav-solid .nav-links a.active { color: var(--dark); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.9);
  display: block;
  transition: background .3s ease;
}
.nav-main.scrolled .nav-toggle span,
.nav-main.nav-solid .nav-toggle span { background: var(--dark); }

/* Mobile menu — full-screen overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600; letter-spacing: .06em;
  color: var(--dark); text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute; top: 1.8rem; right: 2rem;
  font-size: 2rem; color: var(--muted); cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: color .2s;
}
.mobile-close:hover { color: var(--red); }

/* ══════════════════════════════════════
   HERO — VIDEO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden; margin-top: 0;
  background: var(--dark);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-el {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,6,.45) 0%, rgba(10,8,6,.2) 50%, rgba(10,8,6,.65) 100%);
}

/* Hero content — LEFT aligned (Arrodz style) */
.hero-video-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  text-align: left;
  height: 100%;
  padding: 0 6rem;
  max-width: 900px;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(7); }
}

.hero-tag-center {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: #f4e5e5;
  border: none; padding: 0;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(245, 245, 244, 0.5);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(18px);
  animation: heroFadeUp 0.8s cubic-bezier(.22,1,.36,1) 0.3s forwards;
}
.hero-title-center {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem); font-weight: 600;
  line-height: .92; letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(28px);
  animation: heroFadeUp 0.9s cubic-bezier(.22,1,.36,1) 0.55s forwards;
}
.hero-sub-center {
  font-size: 1.05rem; line-height: 1.78;
  color: rgb(252, 252, 252);
  margin-bottom: 3rem; max-width: 500px;
  font-weight: 300;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.8s cubic-bezier(.22,1,.36,1) 0.8s forwards;
}
.hero-cta-center {
  display: inline-flex; gap: 1.2rem;
  opacity: 0; transform: translateY(14px);
  animation: heroFadeUp 0.8s cubic-bezier(.22,1,.36,1) 1s forwards;
  
}

/* Scroll cue */
.hero-scroll {
  position:absolute; bottom: 2.5rem; left: 90%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(192,57,43,.8), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.4);opacity:.4} }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: .9rem 2.2rem;
  text-decoration: none; display: inline-block;
  transition: background .22s, transform .22s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-2px); }

.btn-outline {
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: .9rem 2.2rem;
  text-decoration: none; display: inline-block;
  background: transparent;
  transition: border-color .22s, color .22s, background .22s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-outline-light {
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark);
  border: 2px solid var(--border-mid);
  padding: .9rem 2.2rem;
  text-decoration: none; display: inline-block;
  background: transparent;
  transition: border-color .22s, color .22s;
}
.btn-outline-light:hover { border-color: var(--red); color: var(--red); }

/* ══════════════════════════════════════
   SECTIONS BASE
══════════════════════════════════════ */
section { padding: 6rem 6rem; }
.section-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600;
  color: var(--dark); letter-spacing: .03em;
  line-height: 1; margin-bottom: 1.2rem;
}
.section-body {
  font-size: 1rem; line-height: 1.8;
  color: var(--dark-mid); max-width: 600px; font-weight: 300;
}

/* ══════════════════════════════════════
   TICKER — Cofactr-style smooth infinite marquee
══════════════════════════════════════ */
.ticker {
  background: #6b0f0f;
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
  position: relative;
  /* Black gradient overlays on edges */
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #3d0808 0%, transparent 100%);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, #3d0808 0%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  /* JS drives this via CSS custom property for precise speed */
  animation: ticker-scroll var(--ticker-duration, 32s) linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-head); font-size: .73rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250, 249, 247, 0.95);
  padding: 0 2rem;
  display: inline-flex; align-items: center; gap: 2rem;
  flex-shrink: 0;
}
.ticker-sep {
  color: rgba(232, 196, 196, 0.626);
  font-size: .55rem;
}

/* ══════════════════════════════════════
   MARKETS SECTION
══════════════════════════════════════ */
.markets {
  padding: 6rem 0 0rem;
  background: var(--white);
}
.markets .section-label,
.markets .section-title {
  padding: 0rem 6rem 0;
}
.markets .section-title { padding-bottom: 0; }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 1rem;
}
/* Market card — full height, no border-radius */
.market-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border-radius: 0;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1);
  isolation: isolate;
}
.market-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(123,24,13,0.22);
  z-index: 2;
}
.market-image {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), opacity .5s;
  opacity: .82;
}
.market-card:hover .market-image {
  transform: scale(1.07);
  opacity: 1;
}
.market-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 2rem 1.8rem;
  background: linear-gradient(to top, rgba(10,4,3,.88) 0%, rgba(10,4,3,.3) 45%, transparent 100%);
  transition: background .4s;
}
.market-card:hover .market-overlay {
  background: linear-gradient(to top, rgba(44, 2, 2, 0.85) 0%, rgba(10,4,3,.2) 55%, transparent 100%);
}
.market-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: .5rem;
}
.market-card:hover .market-name {
  transform: translateY(-2px);
}


/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why { background: var(--bg-light); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,6vw,5rem); align-items: center;
}
.why-copy[data-reveal] {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
.why-copy[data-reveal].is-revealed { opacity: 1; transform: translateX(0); }

.why-visual-arrodz {
  position: relative;
  opacity: 0; transform: translateX(48px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.why-visual-arrodz[data-reveal="right"].is-revealed { opacity: 1; transform: translateX(0); }
.why-img-arrodz-wrap {
  position: relative;
  width: 100%; height: clamp(420px, 55vw, 620px);
  overflow: hidden;
  background: var(--bg-light);
}
.why-img-arrodz-wrap:hover .why-img-arrodz { transform: scale(1.06); }
.why-img-arrodz {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.0);
  transition: transform 0.9s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.why-img-arrodz-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white);
  padding: .5rem 1rem;
  background: rgba(10,8,6,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 2px solid var(--red);
}

.why-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  transition: background .25s;
}
.why-feature:hover { background: rgba(192,57,43,.05); }
.why-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(192,57,43,.08);
  display: grid; place-items: center;
  font-size: 1rem; color: var(--red);
}
.why-feature-text strong {
  display: block;
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--dark); margin-bottom: .25rem;
}
.why-feature-text span { font-size: .88rem; color: var(--dark-mid); line-height: 1.5; }

/* ══════════════════════════════════════
   PRODUCTS (immersive)
══════════════════════════════════════ */
.products-immersive {
  position: relative; overflow: hidden;
  padding-top: 5.5rem; padding-bottom: 5.5rem;
}
.products-parallax-bg {
  position: absolute; inset: -12%;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: productsBgDrift 50s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes productsBgDrift {
  0%   { transform: scale(1.08) translate3d(0,0,0); }
  100% { transform: scale(1.16) translate3d(-2.5%,-1.5%,0); }
}
.products-parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,.9) 0%, rgba(10,8,6,.78) 40%, rgba(10,8,6,.92) 100%);
  pointer-events: none;
}
.products-inner {
  position: relative; z-index: 2;
  max-width: 920px; text-align: left;
}
.products-inner .section-title { color: var(--white); }
.products-inner .section-label { color: var(--yellow); }
.products-immersive-title { text-transform: none; }
.products-lead { margin: 0 0 2.5rem; max-width: 520px; color: rgba(255,255,255,.7); }

/* Product spotlight — remove boxy borders */
.product-spotlight {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 0; text-align: left;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  transition: box-shadow .4s, transform .4s;
}
.product-spotlight:hover {
  box-shadow: 0 32px 90px rgba(192,57,43,.2);
  transform: translateY(-4px);
}
.product-spotlight-media {
  min-height: 280px;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1000');
  background-size: cover; background-position: center;
  transition: transform 8s ease-out;
}
.product-spotlight:hover .product-spotlight-media { transform: scale(1.06); }
.product-spotlight-body {
  padding: clamp(1.75rem,4vw,2.75rem);
  display: flex; flex-direction: column; justify-content: center;
}
.product-spotlight-eyebrow {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .75rem;
}
.product-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2rem); font-weight: 500;
  color: var(--white); letter-spacing: .04em;
  margin-bottom: .85rem; line-height: 1.15;
}
.product-spotlight-desc {
  font-size: .95rem; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300;
}
.product-spotlight-cta { align-self: flex-start; }

/* ══════════════════════════════════════
   SPECS
══════════════════════════════════════ */
.specs {
  background: var(--white);
  position: relative;
}
.specs-inner {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem,5vw,4.5rem); align-items: start;
  position: relative; z-index: 1;
}
.specs-intro[data-reveal="fade"] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.specs-intro[data-reveal="fade"].is-revealed { opacity: 1; transform: translateY(0); }
.specs-cta { margin-top: 1.5rem; display: inline-block; }
.specs-grid-wrap { margin-top: .5rem; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.spec-item {
  background: var(--bg-light);
  padding: 1.65rem 1.5rem;
  position: relative;
  opacity: 0; transform: translateY(22px) scale(.98);
  transition:
    opacity .55s cubic-bezier(.22,1,.36,1),
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .3s;
  transition-delay: var(--spec-delay, 0ms);
}
.spec-item.is-spec-visible { opacity: 1; transform: translateY(0) scale(1); }
.spec-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(192,57,43,.2), transparent);
}
.spec-item:hover { box-shadow: 0 8px 30px rgba(192,57,43,.12); }
.spec-label {
  font-family: var(--font-head); font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem;
}
.spec-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem,2.5vw,1.75rem); font-weight: 500;
  color: var(--dark); letter-spacing: .03em;
  transition: color .25s, transform .25s;
}
.spec-item:hover .spec-value { color: var(--red); transform: translateX(2px); }
.spec-desc { font-size: .8rem; color: var(--muted); margin-top: .35rem; font-weight: 300; line-height: 1.5; }

/* ══════════════════════════════════════
   PARTNER LOGO TICKER — Thin black band
══════════════════════════════════════ */
.partners-strip {
  background: #111;
  padding: 0;
  overflow: visible;
  position: relative;
}
.partners-strip::before,
.partners-strip::after { display: none; }

.partners-strip-inner {
  width: 100%;
}

.partners-side-pin { display: none; }

.partners-paper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transform: none;
  transition: none;
  overflow: visible;
}
.partners-paper:hover { transform: none; box-shadow: none; }
.partners-paper::before,
.partners-paper::after { display: none; }

/* Title sits ABOVE the band */
.partners-strip-head {
  text-align: center;
  padding: 2rem 0 1.4rem;
  background: #111;
}
.partners-strip-head .section-label { display: none; }
.partners-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fdfdfd;
  margin-bottom: 0;
  line-height: 1;
}

/* The dark ticker band itself — slim */
.partners-strip .cofactr-ticker {
  background: #111;
  padding:.6rem 0;
}

/* Logo ticker inside the black band */
.logo-ticker {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logoTicker 40s linear infinite;
  padding: .9rem 0 1.2rem;
  will-change: transform;
}
.logo-ticker:hover .logo-ticker-track { animation-play-state: paused; }
@keyframes logoTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-ticker-item {
  flex: 0 0 auto;
  padding: 0 2.8rem;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: opacity .3s;
}
.logo-ticker-item:hover { opacity: 0.7; }
.logo-ticker-item img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit:fill;
  filter: brightness(1) grayscale(1);
  transition: filter .3s;
}
.logo-ticker-item:hover img {
  filter: brightness(2.5) grayscale(0.5);
}

/* ══════════════════════════════════════
   CALCULATOR
══════════════════════════════════════ */
/* ══════════════════════════════════════
   CALCULATOR — Clean White themed
══════════════════════════════════════ */
.calculator {
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
/* Fixed background image for calculator — content scrolls over it */
.calculator::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('calcbg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -3;
  pointer-events: none;
}
/* Dark overlay so text stays readable */
.calculator::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(70, 4, 2, 0.48) 0%, transparent 58%),
    rgba(4, 2, 2, 0.72);
  z-index: 0;
  pointer-events: none;
}

.calculator .section-label { color: rgba(220, 120, 110, 0.9); }
.calculator .section-title { color: #f5f0ee; }
.calculator .section-body { color: rgba(220, 210, 205, 0.78); }
.calc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.calc-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.calc-field label {
  display: block; font-family: var(--font-head);
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(200, 185, 180, 0.75); margin-bottom: .5rem;
}
.calc-field input, .calc-field select {
  width: 100%; padding: .82rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  color: #f0ebe8; font-family: var(--font-body); font-size: .95rem;
  outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,235,232,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.calc-field input { background-image: none; }
.calc-field input:focus, .calc-field select:focus {
  border-color: rgba(200, 80, 60, 0.7);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(160,30,15,.18);
}
.calc-field select option { background: #1a0808; color: #f0ebe8; }
.calc-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid rgba(190, 60, 40, 0.85);
  border-radius: 10px;
  padding: 1.8rem; margin-top: .5rem; display: none;
}
.calc-result.show { display: block; }
.calc-result-title {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(200, 185, 180, 0.65); margin-bottom: 1rem;
}
.calc-result-value {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: #f5f0ee; letter-spacing: .02em;
}
.calc-result-sub { font-size: .85rem; color: rgba(210, 198, 194, 0.72); margin-top: .3rem; font-weight: 300; }

/* Calc CTA button */
.calc-btn {
  display: inline-block;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--red);
  border: none; border-radius: 50px;
  padding: .85rem 2.2rem; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 16px rgba(123,24,13,.22);
  margin-top: .5rem;
}
.calc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,24,13,.32); }

.calc-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.calc-diagram {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3rem; text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 2px 12px rgba(120,10,5,0.15);
  backdrop-filter: blur(4px);
}
.calc-diagram-screen {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(10,3,3,0.85);
  border: 1px solid rgba(180,60,40,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--white); letter-spacing: .08em;
  margin-bottom: 1.5rem; position: relative; overflow: hidden;
}
.calc-diagram-screen::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(255,255,255,.025) 10px);
}
.calc-distance-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(200, 185, 180, 0.6);
}
.calc-distance-arrow { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; justify-content: center; }
.calc-distance-line { flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
.calc-distance-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: #f0ebe8; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: #521009;
  padding: 5rem 6rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(92, 11, 11, 0.669) 0%, transparent 70%);
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 600;
  color: var(--white); letter-spacing: .04em;
  margin-bottom: 1rem; position: relative;
}
.cta-banner-sub {
  font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 300;
  margin-bottom: 2.2rem; position: relative;
}
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; position: relative; }

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
 
}
.cta-banner .btn-primary:hover { background: var(--bg-light); border-color: var(--bg-light); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.cta-banner .btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 4rem 6rem 0;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.footer-bottom {
  padding-top: 2rem; padding-bottom: 2rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  position: relative; z-index: 1;
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  letter-spacing: .06em; color: var(--white); margin-bottom: 1rem;
}
.footer-brand-desc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.footer-contact-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.55);
  margin-bottom: .6rem; text-decoration: none;
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--yellow); }
.footer-col-title {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s; display: inline-flex; align-items: center; gap: .4rem;
}
.footer-links a::before { content: '›'; color: var(--red); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-socials { display: flex; gap: .8rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: rgba(255,255,255,.55); font-size: .9rem;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover { border-color: var(--red); color: var(--white); background: var(--red); }

/* ══════════════════════════════════════
   FOOTER WATERMARK — giant brand text stuck to bottom
══════════════════════════════════════ */
.footer-watermark {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.04);
  line-height: 0.78;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  z-index: 0;
}

/* ══════════════════════════════════════
   WHAT WE DO — full-width split: text left 50%, image right 50%
══════════════════════════════════════ */
/* what-we-do — canonical styles defined later in file */

/* ══════════════════════════════════════
   ABOUT PAGE — single seamless fixed background
   The image runs under the whole page; excluded sections
   (industries, cta-banner, footer) cover it with solid fills.
══════════════════════════════════════ */
body.about-page {
  background-image: url('https://images.pexels.com/photos/11744955/pexels-photo-11744955.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
/* Dark overlay on the body itself so text stays readable */
body.about-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(6, 2, 1, 0.52);
  z-index: 0;
  pointer-events: none;
}
/* Everything needs to sit above the body overlay */
body.about-page > * { position: relative; z-index: 1; }

/* Hero — transparent so body bg shows through seamlessly */
body.about-page .page-hero { background: transparent; }
body.about-page .page-hero-bg { display: none; }
body.about-page .page-hero-overlay { display: none; }
body.about-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body.about-page .page-hero > * { position: relative; z-index: 1; }

/* Stats band — keep its own opaque dark-red bg, covers body bg */
body.about-page .stats-band { position: relative; z-index: 1; }

body.about-page .what-we-do { background: transparent; isolation: isolate; }
body.about-page .what-we-do-overlay { display: none; }
body.about-page .what-we-do-text-col {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 80%, transparent 100%);
  padding: 2.5rem 3rem;
  border-radius: 4px;
}

/* Industries — opaque light bg covers body bg */
body.about-page .industries { background: var(--bg-light); position: relative; z-index: 1; }
body.about-page .industry-content { background: var(--white); }

/* Values — transparent, cards styled for dark bg */
body.about-page .values { background: transparent; }
body.about-page .values .cta-banner-title { color: var(--white); }
body.about-page .values .value-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
}
body.about-page .values .value-item:hover { background: #fffbf6; }
body.about-page .values .value-name { color: var(--dark); }
body.about-page .values .value-text { color: var(--dark-mid); }
body.about-page .values .value-item::before { background: var(--red); }
body.about-page .values .value-icon { color: var(--red); }

/* CTA banner — opaque, covers body bg */
body.about-page .cta-banner { position: relative; z-index: 1; }

/* Footer — opaque, covers body bg */
body.about-page footer { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   PAGE HERO (about, contact, etc)
══════════════════════════════════════ */
.page-hero {
  margin-top: 0; padding-top: 9rem; padding-bottom: 6rem; padding-left: 6rem; padding-right: 6rem;
  position: relative; overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-bg {
  position: absolute; inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&q=80&w=1600');
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,3,2,.88) 0%,
    rgba(15,5,3,.78) 45%,
    rgba(80,20,10,.55) 100%
  );
}
.page-hero > .page-hero-label,
.page-hero > .page-hero-title,
.page-hero > .page-hero-sub {
  position: relative; z-index: 2;
}
.page-hero-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--yellow); border-left: 3px solid var(--red);
  padding-left: .8rem; margin-bottom: 1rem; display: inline-block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,6vw,5rem); font-weight: 600;
  color: var(--white); letter-spacing: .03em;
  line-height: .95; margin-bottom: 1.5rem;
}
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 560px; line-height: 1.75; font-weight: 300;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-card {
  background: rgba(148, 8, 8, 0.07);
  padding: 2rem 1.5rem; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 600;
  color: var(--yellow); letter-spacing: .02em;
}
.stat-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .4rem;
}

/* STORY */
.story { background: var(--white); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text p { font-size: 1rem; line-height: 1.85; color: var(--dark-mid); font-weight: 300; margin-bottom: 1.2rem; }
.story-img { overflow: hidden; }
.story-img img { display: block; width: 100%; height: auto; }
.story-journey-image {
  position: relative; overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,.12);
  background: var(--bg-light);
}
.story-journey-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.2) 100%);
  pointer-events: none;
}
.story-journey-image img {
  display: block; width: 100%; height: min(520px,70vh); object-fit: cover;
  transform: scale(1.08); transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.story-journey-image.is-inview img { transform: scale(1); }
.story-visual { position: relative; }

/* WHAT WE DO */
/* ══════════════════════════════════════
   WHAT WE DO — fixed bg parallax, single-column text
══════════════════════════════════════ */
.what-we-do {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 7rem 6rem;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
/* The bg div is contained within the section */
.what-we-do-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/11744955/pexels-photo-11744955.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
/* Semi-transparent overlay — kept light so image shows through */
.what-we-do-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 2, 1, 0.48);
  z-index: -1;
}
/* Single-column text block — no grid, no side image */
.what-we-do-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  display: block;
}
.what-we-do .section-label { color: var(--yellow); }
.what-we-do .section-title { color: var(--white); }
.what-we-do .section-body { color: rgba(255, 255, 255, 0.88); }
.what-we-do-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.what-we-do-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(245, 236, 223, 0.85);
  font-weight: 300;
}
.what-we-do-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: .48rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .what-we-do { padding: 5rem 3rem; }
}
@media (max-width: 600px) {
  .what-we-do { padding: 4rem 2rem; min-height: 440px; }
}

/* STATS BAND */
.stats-band {
  background: #521009;
  padding: 1.2rem 3rem;
}
.stats-band .stats-row {
  margin-top: 0;
}
.stats-row-about { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-col { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-big {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 600;
  color: var(--white); letter-spacing: .02em; line-height: 1;
}
.stat-lbl {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 218, 218, 0.7); margin-top: .4rem;
}

/* INDUSTRIES */
.industries {
  background: var(--bg-light);
  position: relative;
  isolation: isolate;
}
.industries .section-title { margin-bottom: .5rem; }
.industries-intro { font-size: 1rem; line-height: 1.75; color: var(--dark-mid); max-width: 620px; margin-bottom: 3.5rem; font-weight: 300; }
.industries-list { display: flex; flex-direction: column; gap: 0; }
.industry-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 320px;
}
.industry-row:last-child { }
.industry-row.reverse { direction: rtl; }
.industry-row.reverse > * { direction: ltr; }
.industry-img { overflow: hidden; position: relative; }
.industry-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.05); transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.industry-row:hover .industry-img img { transform: scale(1); }
.industry-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,8,6,.25) 0%, transparent 100%); }
.industry-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 4rem;
  background: var(--white);
  position: relative;
}
.industry-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 600;
  color: rgba(192,57,43,.1); letter-spacing: .02em; line-height: 1; margin-bottom: .5rem;
}
.industry-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 500;
  color: var(--dark); letter-spacing: .04em; margin-bottom: 1rem;
}
.industry-desc { font-size: .92rem; color: var(--dark-mid); line-height: 1.75; font-weight: 300; max-width: 420px; }
.industry-tag {
  display: inline-block; margin-top: 1.2rem;
  font-family: var(--font-head); font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); border: 1px solid rgba(212,168,67,.35); padding: .35rem .8rem;
}

/* VALUES */
.values { background: transparent; position: relative; isolation: isolate; padding: 6rem 6rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-item {
  padding: 2rem 1.8rem;
  transition: background .25s;
  position: relative; overflow: hidden;
  background: var(--white);
}
.value-item:hover { background: #fffbf6; }
.value-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; color: var(--white);}
.value-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--dark); letter-spacing: .04em; margin-bottom: .6rem; }
.value-text { font-size: .9rem; color: var(--dark-mid); line-height: 1.65; font-weight: 300; }

/* ── Contact page — FULL PAGE FIXED BACKGROUND ── */
/* ── Contact page: no full-page fixed bg — each section has its own ── */
body.contact-page {
  background: var(--bg-light);
}
body.contact-page::before { display: none; }

/* ── Contact page hero — light architectural/interior photo ── */
.contact-page-hero {
  background-image: none;
  background: linear-gradient(
    145deg,
    #0a0202 0%,
    #120404 30%,
    hsla(0, 67%, 18%, 0.929) 55%,
    #bd5c5ce1 75%,
    #2a0505 100%
  );
  min-height: 520px;
  position: relative;
}
/* Gradient div hidden — bg is on the element itself now */
.contact-hero-gradient {
  display: none !important;
}
.contact-page-hero .page-hero-label {
  color: var(--yellow) !important;
  border-left-color: var(--red) !important;
}
.contact-page-hero .page-hero-title { color: var(--white) !important; }
.contact-page-hero .page-hero-sub { color: rgba(255,255,255,.75) !important; }
.contact-page-hero > * { position: relative; z-index: 2; }

/* Ticker — keep brand red strip */
body.contact-page .ticker {
  background: var(--red) !important;
}

/* ── Form section — fixed light parallax image, contents scroll over it ── */
.form-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 6rem;
  overflow: visible;                         /* must NOT be hidden — kills fixed bg */
  background-image: url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg') !important;
  background-size: cover !important;
  background-position: center 40% !important;
  background-attachment: fixed !important;   /* parallax: bg stays, content scrolls */
  background-repeat: no-repeat !important;
}

/* bg div off — bg is on the element itself */
.form-hero-bg { display: none !important; }

/* Dark overlay so white text stays legible over the light photo */
.form-hero-overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: rgba(6, 2, 2, 0.58);
  z-index: 1;
}

/* Inner wrapper — fully transparent, no card chrome */
.form-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  /* Frosted glass card over the fixed parallax photo */
  background: rgba(8, 3, 3, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Text colours on dark-tinted photo */
.form-hero-label {
  color: var(--yellow) !important;
  border-left-color: var(--red) !important;
}
.form-hero-title { color: var(--white) !important; }
.form-hero-sub   { color: rgba(255,255,255,.70) !important; }

/* ── Business card section — warm cream / light solid bg ── */
.bcard-section {
  background: #EDE8DF !important;
  padding: 5rem 6rem;
}
.bcard-section .section-title { color: var(--dark) !important; }
.bcard-section .section-label { color: var(--red) !important; }
.bcard-hint { color: var(--muted) !important; }

/* Footer — standard dark on contact page */
body.contact-page footer {
  background: var(--dark) !important;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ══════════════════════════════════════
   CONTACT FORM SECTION — styles merged into contact-page body above
══════════════════════════════════════ */
.form-hero-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .8rem; display: block;
}
.form-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3rem); font-weight: 600;
  color: var(--white); letter-spacing: .03em; margin-bottom: .6rem; line-height: 1;
}
.form-hero-sub { font-size: .95rem; color: rgba(255,255,255,.6); font-weight: 300; margin-bottom: 2.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-field.full { grid-column: 1/-1; }
.form-field label {
  font-family: var(--font-head); font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .85rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-family: var(--font-body); font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); }
.form-field textarea { min-height: 140px; }
.form-field select option { background: #1A1A1A; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-submit {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: .9rem 2.4rem; cursor: pointer;
  transition: background .28s ease, border-color .28s ease, transform .22s ease, box-shadow .28s ease;
  box-shadow: 0 4px 18px rgba(123,24,13,0.18);
}
.form-submit:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 14, 12, 0.32);
}
.form-note { font-size: .82rem; color: var(--muted); font-weight: 300; }

/* ── Dark-bg form field overrides: transparent fields, white text ── */
.form-field label { color: rgba(255,255,255,.6) !important; }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: var(--white) !important;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.35) !important; opacity: 1; }
.form-field select option { background: #1a0404; color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red) !important; box-shadow: 0 0 0 2px rgba(123,24,13,.25); }
.form-note { color: rgba(255,255,255,.4) !important; }

.form-success { display: none; text-align: center; padding: 3rem 0; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; color: var(--bg-light); margin-bottom: 1rem; }
.form-success-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--bg-light); margin-bottom: .5rem; }
.form-success-text { color: var(--bg-light); }

.contact-info-section {
  background: var(--bg-light);
  padding: 4rem 6rem;
}
.contact-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-block {
  background: var(--white);
  padding: 2rem 1.8rem;
  transition: box-shadow .25s;
}
.contact-info-block:hover { box-shadow: 0 8px 30px rgba(192,57,43,.1); }
.contact-info-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--red); }
.contact-info-label {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.contact-info-value { font-size: .95rem; color: var(--dark); line-height: 1.65; font-weight: 400; }

.hours-section { background: var(--white); padding: 4rem 6rem; }
.hours-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.hours-item { padding: 2rem; }
.hours-day {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.hours-time { font-family: var(--font-display); font-size: 1.3rem; color: var(--red); }
.hours-time.closed { color: var(--muted); }

/* ══════════════════════════════════════
   MARKETS PAGE
══════════════════════════════════════ */
.markets-grid-page { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.market-card-page {
  background: var(--white); overflow: hidden;
  transition: box-shadow .25s, transform .25s; cursor: pointer;
}
.market-card-page:hover { box-shadow: 0 12px 40px rgba(192,57,43,.15); transform: translateY(-4px); }
.market-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end;
  transition: transform .5s ease; overflow: hidden;
}
.market-card-page:hover .market-img { transform: scale(1.02); }
.market-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,6,.6) 0%, transparent 60%); }
.market-body { padding: 1.4rem 1.6rem 1.8rem; }
.market-icon { font-size: 1.5rem; margin-bottom: .8rem; }
.market-name-page {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--dark); letter-spacing: .04em; margin-bottom: .5rem;
}
.market-desc { font-size: .88rem; color: var(--dark-mid); line-height: 1.6; font-weight: 300; margin-bottom: 1.2rem; }
.market-link {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.market-link::after { content: '→'; }
.market-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  background: var(--white); overflow: hidden;
  transition: box-shadow .25s, transform .25s; display: flex;
}
.blog-card:hover { box-shadow: 0 10px 35px rgba(192,57,43,.12); transform: translateY(-3px); }
.blog-card-img { width: 160px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--bg-light); }
.blog-card-body {
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: center;
}
.blog-date {
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
}
.blog-title {
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  color: var(--dark); line-height: 1.45; margin-bottom: .6rem; transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--red); }
.blog-excerpt { font-size: .83rem; color: var(--dark-mid); line-height: 1.55; font-weight: 300; }

.bg-b1 { background: linear-gradient(135deg, #f0e8de, #e8ddd2); }
.bg-b2 { background: linear-gradient(135deg, #ede5da, #e4d8cc); }
.bg-b3 { background: linear-gradient(135deg, #eae0d5, #e0d4c7); }
.bg-b4 { background: linear-gradient(135deg, #ece2d8, #e3d6c9); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  font-family: var(--font-head); font-size: .9rem; font-weight: 600;
  color: var(--dark); padding: 1.4rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--red); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: .9rem; color: var(--dark-mid); line-height: 1.75; font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }

/* ══════════════════════════════════════
   RESOURCES
══════════════════════════════════════ */
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.resource-card {
  padding: 2rem 1.8rem;
  transition: box-shadow .25s, background .25s;
  position: relative; overflow: hidden; background: var(--white);
}
.resource-card:hover { box-shadow: 0 8px 30px rgba(192,57,43,.1); }
.resource-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.resource-icon { font-size: 2rem; margin-bottom: 1rem; }
.resource-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--dark); letter-spacing: .04em; margin-bottom: .5rem; }
.resource-desc { font-size: .88rem; color: var(--dark-mid); line-height: 1.6; font-weight: 300; margin-bottom: 1.2rem; }
.resource-link {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
}
.resource-link::after { content: ' →'; }

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.filter-bar {
  background: #f7eee6;
  padding: 1.2rem 6rem; display: flex; gap: .6rem; align-items: center; flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: .5rem;
}
.filter-btn {
  border: none ;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  background-color: #f7eee6; padding: .5rem 1.2rem; cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { color: var(--white); background: var(--red); }

.featured-product {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  transition: box-shadow .3s; margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.featured-product:hover { box-shadow: 0 12px 40px rgba(192,57,43,.15); }
.fp-visual {
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; position: relative; font-size: 9rem;
  flex-direction: column; gap: 1rem;
}
.fp-visual::before {
  content: 'FEATURED'; position: absolute; top: 1.2rem; left: 1.2rem;
  font-family: var(--font-head); font-size: .6rem; font-weight: 700;
  letter-spacing: .28em; color: var(--red);
  padding: .25rem .7rem;
  background: rgba(192,57,43,.08);
}
.fp-spec-strip { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: .5rem; }
.fp-spec { text-align: center; }
.fp-spec-val { font-family: var(--font-display); font-size: 1.3rem; color: var(--red); font-weight: 500; }
.fp-spec-lbl { font-family: var(--font-head); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.fp-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.fp-tag { font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }
.fp-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--dark); letter-spacing: .04em; margin-bottom: .8rem; }
.fp-desc { font-size: .9rem; color: var(--dark-mid); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.fp-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.fp-features li { font-size: .85rem; color: var(--dark); display: flex; align-items: center; gap: .7rem; }
.fp-features li::before { content: '›'; color: var(--red); font-size: 1.1rem; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.product-card {
  background: var(--white); overflow: hidden;
  transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(192,57,43,.12); transform: translateY(-4px); }
.product-card-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
  background: var(--bg-light);
}
.product-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, var(--white) 100%); }
.product-card-body { padding: 1.5rem 1.6rem 2rem; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--yellow); margin-bottom: .6rem;
}
.product-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--dark); margin-bottom: .6rem; letter-spacing: .04em; }
.product-card-desc { font-size: .88rem; color: var(--dark-mid); line-height: 1.65; margin-bottom: 1.2rem; font-weight: 300; flex: 1; }
.product-specs-mini { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.4rem; background: var(--bg-light); padding: .8rem; }
.psm-item { text-align: center; }
.psm-val { font-family: var(--font-display); font-size: 1rem; color: var(--red); font-weight: 500; }
.psm-lbl { font-family: var(--font-head); font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.product-card-link {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid transparent; transition: border-color .2s; width: fit-content;
}
.product-card-link:hover { border-color: var(--red); }
.product-card-link::after { content: '→'; }

.bg-p1 { background: linear-gradient(135deg, #f0e8de, #e8ddd2); }
.bg-p2 { background: linear-gradient(135deg, #ede5da, #e4d8cc); }
.bg-p3 { background: linear-gradient(135deg, #eae0d5, #e0d4c7); }
.bg-p4 { background: linear-gradient(135deg, #ece2d8, #e3d6c9); }
.bg-p5 { background: linear-gradient(135deg, #eee6db, #e6dacd); }

.specs-section { background: var(--bg-light); }
.specs-table-wrap { margin-top: 2.5rem; overflow-x: auto; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--border-mid); text-align: left;
  background: var(--white);
}
.specs-table td { padding: 1rem 1.4rem; border-bottom: 1px solid var(--border-light); font-size: .9rem; color: var(--dark-mid); font-weight: 300; }
.specs-table tr:hover td { background: rgba(192,57,43,.03); }
.specs-table td:first-child { font-family: var(--font-head); font-size: .8rem; font-weight: 600; color: var(--dark); }
.specs-table td.accent-val { font-family: var(--font-display); font-size: 1.05rem; color: var(--red); font-weight: 500; }

/* ══════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════ */
.product-page-hero {
  margin-top: 0; padding: 8rem 6rem 4rem;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.product-page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.12) 0%, transparent 65%);
  pointer-events: none;
}
.product-page-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--yellow); border-left: 3px solid var(--red);
  padding-left: .8rem; margin-bottom: 1rem; display: inline-block;
}
.product-page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,6vw,5rem); font-weight: 600;
  color: var(--white); letter-spacing: .03em;
  line-height: .95; margin-bottom: 1.5rem;
}
.product-page-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 560px; line-height: 1.75; font-weight: 300; }

.product-content { padding: 5rem 6rem; background: var(--bg-light); }
.product-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-content-grid p { font-size: .95rem; color: var(--dark-mid); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.product-content-grid h2 { color: var(--dark); }

.product-images { display: flex; flex-direction: column; gap: 1.5rem; }
.product-image-wrap {
  position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.product-image-wrap img { display: block; width: 100%; height: 260px; object-fit: cover; transition: transform .6s ease; }
.product-image-wrap:hover img { transform: scale(1.04); }
.product-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(10,8,6,.8), transparent);
  font-family: var(--font-head); font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--white);
}

.product-features { padding: 5rem 6rem; background: var(--white); }
.product-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.product-feature-card {
  background: var(--bg-light);
  padding: 2rem 1.8rem; transition: box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.product-feature-card:hover { box-shadow: 0 8px 30px rgba(192,57,43,.1); transform: translateY(-3px); }
.product-feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.product-feature-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.product-feature-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--dark); letter-spacing: .04em; margin-bottom: .5rem; }
.product-feature-text { font-size: .88rem; color: var(--dark-mid); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  section { padding: 5rem 3rem; }
  .nav-main { padding: 0 2rem; }
  footer { padding: 4rem 3rem; }
  .cta-banner { padding: 5rem 3rem; }
  .markets { padding: 5rem 3rem; }
  .markets-grid { grid-template-columns: repeat(4,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-spotlight { grid-template-columns: 1fr; }
  .partners-strip { padding-left: 3rem; padding-right: 3rem; }
  .nav-links a { padding: 0 .85rem; font-size: .72rem; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .industry-row { grid-template-columns: 1fr; min-height: auto; }
  .industry-row.reverse { direction: ltr; }
  .industry-content { padding: 2.5rem 3rem; }
  .industry-img { height: 280px; }
  .form-hero, .contact-info-section, .hours-section, .page-hero { padding-left: 3rem; padding-right: 3rem; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-item { }
  .filter-bar { padding-left: 3rem; padding-right: 3rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .featured-product { grid-template-columns: 1fr; }
  .markets-grid-page { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .product-content, .product-features { padding-left: 3rem; padding-right: 3rem; }
  .product-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-features-grid { grid-template-columns: 1fr 1fr; }
  .product-page-hero { padding-left: 3rem; padding-right: 3rem; }
  .what-we-do { padding: 5rem 3rem; }
  .stats-band { padding: 2rem; }
  .hero-video-content { padding: 0 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { margin-top: 0; }
  .hero-video-content { padding: 0 2rem; }
  .why-inner, .specs-inner, .calc-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-img-arrodz-wrap { height: 320px; }
  .markets-grid { grid-template-columns: repeat(2,1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 4rem 2rem; }
  .calc-row { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .what-we-do { padding: 4rem 2rem; min-height: 440px; }
  .page-hero::before { display: none; }
  .industry-content { padding: 2rem; }
  .form-hero, .contact-info-section, .hours-section, .page-hero, footer { padding-left: 2rem; padding-right: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .filter-bar { padding-left: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .markets-grid-page, .resources-grid { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 120px; }
  .product-content, .product-features { padding-left: 2rem; padding-right: 2rem; }
  .product-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-features-grid { grid-template-columns: 1fr; }
  .product-page-hero { padding-left: 2rem; padding-right: 2rem; }
  .markets { padding: 4rem 2rem; }
  .markets-grid { grid-template-columns: 1fr; }
  .market-card { height: 180px; }
}

@media (max-width: 992px) {
  .markets-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .markets-grid { grid-template-columns: 1fr; }
  .market-card { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video-el { animation: none !important; }
  .products-parallax-bg { animation: none !important; }
  .logo-ticker-track { animation: none !important; }
  .why-img-arrodz-wrap:hover .why-img-arrodz { transform: none !important; }
  .product-spotlight:hover .product-spotlight-media { transform: none; }
  .hero-scroll-line { animation: none; }
}
/* ══════════════════════════════════════
   NAV DROPDOWN — seamless hover reveal
══════════════════════════════════════ */
.nav-dropdown-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  user-select: none;
}

.nav-chevron {
  display: inline-block;
  font-size: .8em;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  opacity: .7;
}

.nav-dropdown-wrap:hover .nav-chevron {
  transform: rotate(90deg);
}

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 340px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity .45s cubic-bezier(.22,1,.36,1),
    transform .45s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .45s;
  z-index: 2000;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity .45s cubic-bezier(.22,1,.36,1),
    transform .45s cubic-bezier(.22,1,.36,1),
    visibility 0s linear 0s;
}

/* Pointing arrow */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #fff;
  border-left: 1px solid rgba(26,26,26,.08);
  border-top: 1px solid rgba(26,26,26,.08);
  rotate: 45deg;
}

.nav-dropdown-inner {
  background: rgba(15, 10, 8, 0.55);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(0,0,0,.12),
    0 20px 60px rgba(0,0,0,.45),
    0 1px 0 rgba(255,255,255,.06) inset;
  overflow: hidden;
  padding: .4rem;
}

/* Arrow also needs to match glass style */
.nav-dropdown::before {
  background: rgba(15,10,8,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}

.nav-dropdown-item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  align-items: center;
  padding: .9rem 1rem;
  border-radius: 11px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    background .3s cubic-bezier(.22,1,.36,1),
    transform .3s cubic-bezier(.22,1,.36,1);
}

/* Shimmer sweep on hover */
.nav-dropdown-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.04) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.nav-dropdown-item:hover::before {
  transform: translateX(100%);
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,.08);
  transform: translateX(3px);
}

/* Red left accent bar on hover */
.nav-dropdown-item::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-dropdown-item:hover::after { transform: scaleY(1); }

/* Staggered slide-in on reveal */
.nav-dropdown-item {
  opacity: 0;
  transform: translateY(6px) translateX(0);
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    background .3s ease;
}
.nav-dropdown-wrap:hover .nav-dropdown-item {
  opacity: 1;
  transform: translateY(0);
}
.nav-dropdown-wrap:hover .nav-dropdown-item:nth-child(1) { transition-delay: 0ms; }
.nav-dropdown-wrap:hover .nav-dropdown-item:nth-child(2) { transition-delay: 55ms; }
.nav-dropdown-wrap:hover .nav-dropdown-item:nth-child(3) { transition-delay: 110ms; }
.nav-dropdown-wrap:hover .nav-dropdown-item:nth-child(4) { transition-delay: 165ms; }

.ndi-icon {
  grid-row: 1 / 3;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: rgba(212,168,67,.12);
  border: 1px solid rgba(212,168,67,.2);
  border-radius: 9px;
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(.22,1,.36,1);
}
.nav-dropdown-item:hover .ndi-icon {
  background: rgba(212,168,67,.22);
  border-color: rgba(212,168,67,.4);
  transform: scale(1.1) rotate(-5deg);
}

.ndi-label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  line-height: 1.2;
  transition: color .25s;
}
.nav-dropdown-item:hover .ndi-label { color: var(--yellow); }

.ndi-desc {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  font-weight: 300;
  line-height: 1.4;
  margin-top: .15rem;
  transition: color .25s;
}
.nav-dropdown-item:hover .ndi-desc { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════
   SOLUTIONS / PRODUCT TICKER — New Container
══════════════════════════════════════ */
.product-board-section {
  background: #020202;
  padding: 1rem 3rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* No decorative line */
.product-board-section::before { display: none; }

/* ── Our Solutions: thin black logo band ── */
.product-board-section .pinboard-paper > .cofactr-ticker {
  background: #020202;
  padding: .7rem 0;
  margin: 0;
  border-radius: 0;
}
/* Override item dividers for black band */
.product-board-section .cofactr-ticker-item {
  border-right-color: rgba(255,255,255,0.1);
}
/* Show full-colour logos at a good visible size — no filter at all */
.product-board-section .cofactr-ticker-item img {
  filter: none !important;
  height: var(--logo-h, 58px);
}
.product-board-section .cofactr-ticker-item:hover img {
  filter: none !important;
  transform: translateY(-2px);
}
/* Text fallback colour on dark band */
.product-board-section .cti-text {
  color: rgba(255,255,255,0.85);
}

.pinboard-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
}

.pinboard-pin { display: none; }

/* Clean — no card, no shadow, no border */
.pinboard-paper {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  transform: none;
  transition: none;
  border: none;
}
.pinboard-paper:hover { transform: none; box-shadow: none; }
.pinboard-paper::before,
.pinboard-paper::after { display: none; }

.pinboard-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  border-left: none;
  padding-left: 0;
  margin-bottom: .6rem;
}

.pinboard-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fef8f8;
  letter-spacing: .04em;
  margin-bottom: 1.6rem;
  line-height: 1;
}

/* Ticker */
.product-logo-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 -1rem;
  padding: 0 1rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.product-logo-ticker::before,
.product-logo-ticker::after { display: none; }

.plt-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: plt-scroll 26s linear infinite;
  padding: .5rem 0;
  will-change: transform;
}

.plt-track:hover { animation-play-state: paused; }

@keyframes plt-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.plt-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1.4rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.plt-logo-item:hover {
  background: rgba(123,24,13,0.04);
  border-color: rgba(123,24,13,0.2);
  transform: translateY(-3px);
}
.plt-logo-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%) brightness(0.95);
  transition: filter .3s ease, transform .3s ease;
  display: block;
}
.plt-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
}

.plt-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  padding: .35rem .8rem;
  border-radius: 4px;
  transition: color .25s, background .25s;
  position: relative;
}

.plt-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.plt-item:hover { color: var(--red); }
.plt-item:hover::after { transform: scaleX(1); }

.plt-dot {
  color: var(--yellow);
  font-size: .7rem;
  opacity: .7;
  flex-shrink: 0;
}

.pinboard-sub {
  margin-top: 1.8rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
}

.pinboard-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.pinboard-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   POST-IT PIN IMAGE DISPLAY
══════════════════════════════════════ */
.postit-gallery {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0 3rem;
}

.postit-card {
  position: relative;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.postit-card:nth-child(1) { transform: rotate(-2.5deg); }
.postit-card:nth-child(2) { transform: rotate(1.8deg) translateY(10px); }

.postit-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
  z-index: 10;
}

.postit-pin {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
}

.postit-pin .pin-head {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 35%, #e53935, #b71c1c);
  margin: 0 auto;
}

.postit-pin .pin-shaft {
  width: 3px; height: 18px;
}

.postit-frame {
  background: #fff;
  padding: .8rem .8rem 2.2rem;
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 28px rgba(0,0,0,.16),
    0 1px 0 rgba(255,255,255,.8) inset;
  border-radius: 1px;
  width: 280px;
}

.postit-frame img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1px;
}

.postit-caption {
  text-align: center;
  margin-top: .9rem;
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════
   PRODUCT SUBPAGE LAYOUT
══════════════════════════════════════ */
.prod-hero {
  padding: 9rem 6rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.prod-hero-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  will-change: transform;
  transition: transform 8s ease-out;
}
.prod-hero:hover .prod-hero-bg { transform: scale(1); }

.prod-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(33, 13, 6, 0.495) 0%,
    rgba(20, 6, 3, 0.523) 50%,
    rgba(80,20,10,.55) 100%
  );
}

.prod-hero-label,
.prod-hero-title,
.prod-hero-sub {
  position: relative; z-index: 2;
}

.prod-hero-label {
  font-family: var(--font-head);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--red);
  padding-left: .75rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.prod-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: .03em;
  line-height: .95;
  margin-bottom: 1.5rem;
}

.prod-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.856);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.prod-content-section {
  background: var(--bg-light);
  padding: 5rem 6rem;
}

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

.prod-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.prod-text p {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.prod-text .btn-primary {
  margin-top: 1rem;
  display: inline-block;
}

.prod-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.prod-gallery-board {
  background: #d6c4a8;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(160,130,90,.3) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='.35' fill='rgba(80,50,20,.07)'/%3E%3C/svg%3E");
  padding: 3.5rem 2.5rem;
  border-radius: 4px;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  box-shadow: inset 0 0 40px rgba(0,0,0,.08);
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .prod-content-inner { grid-template-columns: 1fr; gap: 3rem; }
  .prod-hero { padding: 9rem 3rem 4rem; }
  .prod-content-section { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
  .prod-hero { padding: 9rem 2rem 4rem; }
  .prod-content-section { padding: 3rem 2rem; }
  .postit-gallery { gap: 3rem; }
  .postit-card:nth-child(1),
  .postit-card:nth-child(2) { transform: none; }
  .prod-gallery-board { padding: 2rem 1.5rem; gap: 1.5rem; }
  .postit-frame { width: 230px; }
  .postit-frame img { height: 180px; }
  .product-board-section { padding: 3.5rem 1.5rem; }
  .pinboard-paper { padding: 3rem 1.5rem 2rem; }
}
/* ── Product Logo Ticker — image slots ── */
.plt-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .3rem 1.2rem;
  transition: transform .3s ease, filter .3s ease;
}
.plt-logo-item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.9);
  transition: filter .3s ease, transform .3s ease;
  display: block;
}
.plt-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   PAGE HERO BG + OVERLAY DIVS
══════════════════════════════════════ */
.page-hero-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  will-change: transform;
  transition: transform 8s ease-out;
  z-index: 0;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,3,2,.88) 0%,
    rgba(15,5,3,.78) 45%,
    rgba(80,20,10,.55) 100%
  );
  z-index: 1;
}

.page-hero-label,
.page-hero-title,
.page-hero-sub {
  position: relative;
  z-index: 2;
}

/* ── Fix nav-dropdown arrow color for glass style ── */
.nav-dropdown::before {
  background: rgba(15,10,8,.55) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-left-color: rgba(255,255,255,.1) !important;
  border-top-color: rgba(255,255,255,.1) !important;
}

/* ── Partners strip responsive ── */
@media (max-width: 768px) {
  .page-hero { padding: 8rem 2rem 4rem; }
}

@media (max-width: 1100px) {
  .page-hero { padding: 9rem 3rem 5rem; }
  .partners-strip { padding: 4rem 3rem; }
}
/* ══════════════════════════════════════
   SMOOTH SCROLL — Lenis integration
   (applied via JS — lenis adds html[data-lenis-prevent] etc)
══════════════════════════════════════ */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ══════════════════════════════════════
   NAV DROPDOWN FIX — works on ALL pages
   (products pages use .nav-main without .scrolled on load,
    but dropdown needs to be always available)
══════════════════════════════════════ */
/* Ensure dropdown works whether nav is scrolled or not */
.nav-dropdown-wrap { position: relative; height: 100%; display: flex; align-items: stretch; }
/* ══════════════════════════════════════
   COFACTR-STYLE LOGO TICKER — CLEAN
   Title above · thin band · big logos
   Logo size controlled by --logo-h var
══════════════════════════════════════ */

/* Wrapper — clips and adds edge fades */
.cofactr-ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* Scrolling row */
.cofactr-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cofactr-scroll 34s linear infinite;
  will-change: transform;
  padding: .6rem 0;
}
.cofactr-ticker:hover .cofactr-ticker-track {
  animation-play-state: paused;
}

@keyframes cofactr-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each item — no backgrounds, no borders, no radius */
.cofactr-ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.4rem;
  border-right: 1px solid rgba(26,26,26,0.08);
  transition: opacity .25s ease;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cofactr-ticker-item:last-child { border-right: none; }
.cofactr-ticker-item:hover { opacity: 0.75; }

/* Logos — size driven by CSS variable so you can change one number */
.cofactr-ticker-item img {
  display: block;
  height: var(--logo-h, 56px);   /* ← change --logo-h to resize all logos */
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  transition: filter .3s ease, transform .3s ease;
}
.cofactr-ticker-item:hover img {
  filter: none;
  transform: translateY(-2px);
}

/* Text fallback */
.cti-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
}

/* Dark-band variant (Brands we work with) */
.cofactr-ticker-track--dark .cofactr-ticker-item {
  border-right-color: rgba(255,255,255,0.1);
}
.cofactr-ticker-track--dark .cofactr-ticker-item img {
  filter: none;
}
.cofactr-ticker-track--dark .cofactr-ticker-item:hover img {
  filter: none;
  transform: translateY(-2px);
}
.cofactr-ticker-track--dark .cti-text {
  color: rgb(255, 255, 255);
}

/* product-board-section ticker — inherits clean cofactr-ticker styles above */

/* partners-strip uses cofactr-ticker — inherits above */

/* ══════════════════════════════════════
   NAV DROPDOWN — UNIVERSAL FIX
   Ensures it works on all pages regardless
   of whether nav is .nav-solid or not
══════════════════════════════════════ */
/* The dropdown trigger must always be pointer */
.nav-main .nav-dropdown-wrap { cursor: pointer; }

/* On nav-solid pages the text starts dark — ensure dropdown items stay readable */
.nav-main.nav-solid .nav-dropdown-inner { background: rgba(15, 10, 8, 0.92); }

/* Ensure hover still works on nav-solid pages */
.nav-main.nav-solid .nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════
   MARKETS RESPONSIVE OVERRIDES
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .market-card { height: 360px; }
  .markets .section-label,
  .markets .section-title { padding-left: 3rem; padding-right: 3rem; }
}
@media (max-width: 768px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .market-card { height: 280px; }
  .markets .section-label,
  .markets .section-title { padding-left: 2rem; padding-right: 2rem; }
}
@media (max-width: 520px) {
  .markets-grid { grid-template-columns: 1fr; gap: 10px; }
  .market-card { height: 260px; }
}

/* ── Ensure navbar wrapper never clips the dropdown ── */
.navbar { overflow: visible !important; }
.nav-main { overflow: visible !important; }
/* ══════════════════════════════════════
   PAGE TRANSITION — ZEHEMREK SLIDE
══════════════════════════════════════ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

/* The curtain panel */
#page-transition-curtain {
  position: absolute;
  inset: 0;
  background: #0a0302;
  transform: translateY(-100%);
  will-change: transform;
}

/* The brand word */
#page-transition-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  white-space: nowrap;
  /* Subtle red underline */
}
#page-transition-label::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin-top: .5rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0s;
}

/* ── SLIDE IN: curtain drops from top ── */
@keyframes pt-curtain-in {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(0%); }
}
/* ── SLIDE OUT: curtain exits to bottom ── */
@keyframes pt-curtain-out {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}
/* ── Label fade + rise ── */
@keyframes pt-label-in {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pt-label-out {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-14px); }
}
/* ── Underline extend ── */
@keyframes pt-line-in {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Homepage entrance: label and underline animate in automatically */
#page-transition-label {
  animation: pt-label-in 0.5s cubic-bezier(.22,1,.36,1) 0.3s forwards;
}
#page-transition-label::after {
  animation: pt-line-in 0.55s cubic-bezier(.22,1,.36,1) 0.6s forwards;
}

#page-transition.pt-entering #page-transition-curtain {
  animation: pt-curtain-in 0.52s cubic-bezier(.76,0,.24,1) forwards;
}
#page-transition.pt-entering #page-transition-label {
  animation: pt-label-in 0.38s cubic-bezier(.22,1,.36,1) 0.3s forwards;
}
#page-transition.pt-entering #page-transition-label::after {
  animation: pt-line-in 0.42s cubic-bezier(.22,1,.36,1) 0.48s forwards;
}

#page-transition.pt-exiting #page-transition-curtain {
  animation: pt-curtain-out 0.55s cubic-bezier(.76,0,.24,1) forwards;
}
#page-transition.pt-exiting #page-transition-label {
  animation: pt-label-out 0.28s cubic-bezier(.22,1,.36,1) forwards;
}


/* ══════════════════════════════════════
   PRODUCT PAGES — TILT PHOTO GALLERY
   2 large cards, naturally tilted,
   hover → straightens + lifts
   Stacked / offset, right-column aligned
══════════════════════════════════════ */

/* Wide hero for indoor page */
.prod-hero-indoor {
  min-height: 620px;
}

/* Override prod-gallery to be right-aligned */
.prod-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  align-items: flex-end !important;
  padding-top: 0 !important;
  justify-content: center;
}

/* The tilt wrapper — positions two cards in a stacked offset */
.tilt-gallery {
  position: relative;
  width: 420px;
  height: 560px;
  flex-shrink: 0;
}

/* Each card */
.tilt-card {
  position: absolute;
  width: 360px;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0,0,0,.28),
    0 2px 8px rgba(0,0,0,.14);
  cursor: pointer;
  /* Transition: rotation, lift, shadow */
  transition:
    transform 0.55s cubic-bezier(.22,1,.36,1),
    box-shadow 0.55s cubic-bezier(.22,1,.36,1),
    z-index 0s;
}

/* Card 1 — top, tilted slightly clockwise, offset left */
.tilt-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-4deg) translateY(10px);
  z-index: 2;
}

/* Card 2 — bottom, tilted counter-clockwise, offset right */
.tilt-card:nth-child(2) {
  top: 260px;
  right: 0;
  transform: rotate(3.5deg) translateY(-10px);
  z-index: 1;
}

/* Hover: card snaps straight, lifts */
.tilt-card:nth-child(1):hover {
  transform: rotate(0deg) translateY(-12px) scale(1.02);
  z-index: 10;
  box-shadow:
    0 28px 60px rgba(0,0,0,.38),
    0 4px 12px rgba(0,0,0,.16);
}
.tilt-card:nth-child(2):hover {
  transform: rotate(0deg) translateY(-12px) scale(1.02);
  z-index: 10;
  box-shadow:
    0 28px 60px rgba(0,0,0,.38),
    0 4px 12px rgba(0,0,0,.16);
}

/* Image inside card */
.tilt-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}

.tilt-card:hover img {
  transform: scale(1.06);
}

/* Caption overlay */
.tilt-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

/* Legacy slide-gallery — keep for backwards compat but hide */
.slide-gallery { display: none; }

@media (max-width: 1100px) {
  .tilt-gallery { width: 340px; height: 480px; }
  .tilt-card { width: 300px; height: 220px; }
  .tilt-card:nth-child(2) { top: 220px; }
}

@media (max-width: 768px) {
  .prod-gallery { align-items: center !important; padding-top: 2rem !important; }
  .tilt-gallery { width: 320px; height: 440px; }
  .tilt-card { width: 280px; height: 200px; }
  .tilt-card:nth-child(2) { top: 200px; }
}

/* ══════════════════════════════════════
   BUTTON SLIDING COLOR FILL EFFECT
   – applies to .btn-primary and .btn-outline
   – on hover: fills left→right with new color
══════════════════════════════════════ */

/* Primary button: starts red, fills with dark on hover — smooth rounded */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 6px;
  transition: color .32s ease, transform .22s, border-color .32s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-101%);
  transition: transform .44s cubic-bezier(.76,0,.24,1);
  z-index: -1;
  border-radius: 6px;
}
.btn-primary:hover::before  { transform: translateX(0); }
.btn-primary:not(:hover)::before { transform: translateX(-101%); }
.btn-primary:hover {
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* Outline button: transparent → red fill — smooth rounded */
.btn-outline {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 6px;
  transition: color .32s ease, border-color .32s ease;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform .44s cubic-bezier(.76,0,.24,1);
  z-index: -1;
  border-radius: 6px;
}
.btn-outline:hover::before  { transform: translateX(0); }
.btn-outline:not(:hover)::before { transform: translateX(-101%); }
.btn-outline:hover {
  color: var(--white);
  border-color: var(--red);
}

/* ══════════════════════════════════════
   MARKETS — SCATTERED PHOTO COLLAGE
   Matches reference: overlapping cards,
   slight rotations, 4 top + 4 bottom,
   hover slides the card outward
══════════════════════════════════════ */
.markets-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: auto auto !important;
  gap: 10px !important;
  margin-top: 2.5rem !important;
  padding: 2rem 5rem 3rem !important;
  position: relative;
  /* allow cards to overflow into each other */
  overflow: visible !important;
}

/* Each card: wide & short, rounded corners like photos, overlapping */
.market-card {
  height: 210px !important;
  border-radius: 10px !important;
  position: relative !important;
  will-change: transform;
  isolation: isolate !important;
  box-shadow: 0 6px 24px rgba(10,4,3,0.22) !important;
  /* Pull cards inward so they overlap */
  margin: -10px -12px !important;
}

/* Base transition — override the old one */
.market-card {
  transition:
    transform .42s cubic-bezier(.22,1,.36,1),
    box-shadow .42s cubic-bezier(.22,1,.36,1),
    z-index 0s !important;
}

/* Row 1 — top 4: scattered rotations + vertical drift */
.market-card:nth-child(1) {
  transform: rotate(-3deg) translateY(10px) translateX(8px);
  z-index: 2;
}
.market-card:nth-child(2) {
  transform: rotate(2deg) translateY(-6px) translateX(-4px);
  z-index: 3;
}
.market-card:nth-child(3) {
  transform: rotate(-1.5deg) translateY(12px) translateX(6px);
  z-index: 2;
}
.market-card:nth-child(4) {
  transform: rotate(2.5deg) translateY(-8px) translateX(-6px);
  z-index: 3;
}

/* Row 2 — bottom 4 */
.market-card:nth-child(5) {
  transform: rotate(1.8deg) translateY(-4px) translateX(10px);
  z-index: 4;
}
.market-card:nth-child(6) {
  transform: rotate(-2.2deg) translateY(8px) translateX(-8px);
  z-index: 5;
}
.market-card:nth-child(7) {
  transform: rotate(1deg) translateY(-10px) translateX(4px);
  z-index: 4;
}
.market-card:nth-child(8) {
  transform: rotate(-1.8deg) translateY(6px) translateX(-4px);
  z-index: 5;
}

/* Hover: card lifts and slides out from the pile */
.market-card:nth-child(odd):hover  {
  transform: rotate(0deg) translate(-8px, -18px) scale(1.05) !important;
  z-index: 20 !important;
  box-shadow: 0 32px 64px rgba(10,4,3,.45) !important;
}
.market-card:nth-child(even):hover {
  transform: rotate(0deg) translate(8px, -18px) scale(1.05) !important;
  z-index: 20 !important;
  box-shadow: 0 32px 64px rgba(10,4,3,.45) !important;
}

/* Image fills the card fully */
.market-image {
  border-radius: 10px !important;
}

/* Overlay text */
.market-name {
  font-size: 1rem !important;
  letter-spacing: .08em !important;
}

/* Thin white border like a photo frame */
.market-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.15);
  pointer-events: none;
  z-index: 10;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 1.5rem 3rem 2rem !important;
  }
  .market-card { height: 190px !important; }
}
@media (max-width: 640px) {
  .markets-grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 1rem 1.5rem 1.5rem !important;
  }
  .market-card { height: 150px !important; margin: -6px -8px !important; }
}
/* ══════════════════════════════════════
   MARKETS — HORIZONTAL 4×2 GRID (redesigned)
══════════════════════════════════════ */
.markets-header {
  padding: 0 6rem 2rem;
}
.markets-grid-h {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}
.markets-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.market-card-h {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  isolation: isolate;
  transition: flex .5s cubic-bezier(.22,1,.36,1);
}
.market-image-h {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), opacity .5s;
  opacity: .8;
}
.market-card-h:hover .market-image-h {
  transform: scale(1.06);
  opacity: 1;
}
.market-overlay-h {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  background: linear-gradient(to top, rgba(10,4,3,.9) 0%, rgba(10,4,3,.25) 50%, transparent 100%);
  transition: background .4s;
}
.market-card-h:hover .market-overlay-h {
  background: linear-gradient(to top, rgba(123,24,13,.88) 0%, rgba(10,4,3,.15) 60%, transparent 100%);
}
.market-num-h {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .18em;
  margin-bottom: .4rem;
  transition: color .3s;
}
.market-card-h:hover .market-num-h { color: rgba(255,255,255,.7); }
.market-name-h {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.market-card-h:hover .market-name-h { transform: translateY(-4px); }
.market-arrow-h {
  font-size: 1.4rem;
  color: rgba(255,255,255,0);
  margin-top: .6rem;
  transition: color .35s, transform .35s cubic-bezier(.22,1,.36,1);
  transform: translateX(-8px);
}
.market-card-h:hover .market-arrow-h {
  color: rgba(255,255,255,.85);
  transform: translateX(0);
}

/* ══════════════════════════════════════
   MARKETS — CLEAN WHITE PHOTO GRID (index.html)
   3-col x 2-row, full-bleed images, white bg
   Custom "Explore More" cursor on hover
══════════════════════════════════════ */
.markets-grid-section {
  background: var(--white);
  padding: 5rem 0 0;
  position: relative;
}
.markets-grid-section .markets-header {
  padding: 0 4rem 2.5rem;
}
.market-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 0;
  padding: 0;
  cursor: none !important;
  width: 100%;
}
.market-grid-cell {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: none !important;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}
.market-grid-cell:nth-child(3n) { border-right: none; }
.market-grid-cell:nth-child(n+4) { border-bottom: none; }
.market-grid-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94);
  filter: grayscale(8%);
}
.market-grid-cell:hover .market-grid-img {
  transform: scale(1.07);
  filter: grayscale(0%);
}
.market-grid-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,2,1,.78) 0%,
    rgba(6,2,1,.18) 40%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.6rem 1.8rem;
  transition: background .4s ease;
}
.market-grid-cell:hover .market-grid-info {
  background: linear-gradient(to top,
    rgba(27, 2, 1, 0.92) 0%,
    rgba(30,3,2,.22) 55%,
    transparent 100%);
}
.market-grid-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
  margin-bottom: .6rem;
  width: fit-content;
  transition: background .3s, border-color .3s;
}
.market-grid-cell:hover .market-grid-tag {
  background: rgba(123,24,13,.4);
  border-color: rgba(123,24,13,.5);
  color: #fff;
}
.market-grid-num { display: none; }
.market-grid-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  display: block;
  line-height: 1.15;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.market-grid-cell:hover .market-grid-name { transform: translateY(-3px); }
.market-grid-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0);
  margin-top: .4rem;
  transition: color .35s, transform .35s cubic-bezier(.22,1,.36,1);
  transform: translateX(-8px);
  display: block;
}
.market-grid-cell:hover .market-grid-arrow {
  color: rgba(255,255,255,.75);
  transform: translateX(0);
}

/* ── Fancy "Explore More" pill cursor ── */
.market-explore-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  top: 0; left: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  padding: 0 1rem;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform .38s cubic-bezier(.22,1,.36,1),
    opacity .25s ease;
  box-shadow: 0 8px 36px rgba(123,24,13,.5);
  border: 1.5px solid rgba(255,255,255,.15);
  will-change: transform, left, top;
}
.market-explore-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 900px) {
  .market-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
    gap: 0;
  }
  .market-grid-cell:nth-child(3n) { border-right: 3px solid var(--white); }
  .market-grid-cell:nth-child(2n) { border-right: none; }
  .market-grid-cell:nth-child(n+4) { border-bottom: 3px solid var(--white); }
  .market-grid-cell:nth-child(n+5) { border-bottom: none; }
  .markets-grid-section .markets-header { padding: 0 1.5rem 2rem; }
  .market-explore-cursor { display: none; }
}
@media (max-width: 580px) {
  .market-grid-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
}

/* ══════════════════════════════════════
   BRANDS SHOWCASE — Fancy Grid (replaces ticker)
══════════════════════════════════════ */
.brands-showcase {
  background: #0a0202bb;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.brands-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brands-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #000000;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
} 
.brands-showcase-head {
  text-align: center;
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid #000000;
}
.brands-title {
  color: var(--dark) !important;
}
.brands-showcase .section-label {
  color: var(--red);
}
.brands-subtitle {
  font-family: var(--font-body);
  font-size: .9rem;
  text-align: center;
  color: rgb(26, 26, 26);
  letter-spacing: .04em;
  margin-top: .8rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  max-width: 320px;
}
/* ── BRANDS GRID — 4 logos, horizontal single row ── */
.brands-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  background: #ffffff;
}
.brand-cell {
  flex: 1;
  min-height: 160px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background .45s;
}
.brand-cell:last-child {
  border-right: none;
}
.brand-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(123,24,13,.0);
  transition: background .4s;
  pointer-events: none;
}
.brand-cell:hover { background: #f5f4f3a1; }
.brand-cell:hover::after { background: rgba(123,24,13,.04); }
.brand-cell-inner {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s;
}
.brand-cell:hover .brand-cell-inner { transform: scale(1.07); }
.brand-cell img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  /* Original colors */
  filter: none;
  opacity: 0.9;
  transition: opacity .4s, transform .4s cubic-bezier(.22,1,.36,1);
}
.brand-cell:hover img {
  opacity: 1;
  transform: scale(1.04);
  filter: none;
}
/* 1st and 4th logos — larger */
.brand-cell--large .brand-cell-inner {
  width: 85%;
}
.brand-cell--large img {
  max-height: 120px;
}

/* ══════════════════════════════════════
   BUSINESS CARD — Contact Page
══════════════════════════════════════ */
.bcard-section {
  background: var(--bg-light);
  padding: 7rem 6rem;
}
.bcard-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.bcard-heading {
  line-height: 1 !important;
  margin: 1rem 0 2rem !important;
}
.bcard-hint {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bcard-hint::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--muted);
}
.bcard-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard-wrapper {
  perspective: 1200px;
  width: 520px;
  height: 300px;
}
.bcard {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.4, 0.2, 0.2, 1);
  cursor: pointer;
}
.bcard-wrapper:hover .bcard,
.bcard-wrapper:focus-within .bcard {
  transform: rotateY(180deg);
}
.bcard-face {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT */
.bcard-front {
  background: linear-gradient(135deg, #600909 0%, #e8cdc6 55%, #480e09c3 100%);
  padding: 2.8rem 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 80px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
  border: 1px solid rgba(26,26,26,.1);
}
.bcard-front-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--dark);
}
.bcard-front-tagline {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(14, 7, 7, 0.977);
  margin-top: .25rem;
}
.bcard-front-divider {
  width: 40px;
  height: 1px;
  background: rgba(123,24,13,.4);
  margin: 1.4rem 0;
}
.bcard-front-contacts {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.bcard-front-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(26,26,26,.7);
  font-weight: 300;
}
.bcard-icon {
  font-size: .9rem;
  color: var(--red);
  width: 16px;
  flex-shrink: 0;
}
.bcard-front-corner {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  font-size: 1.2rem;
  color: rgba(26,26,26,.1);
}

/* BACK */
.bcard-back {
  background: #f9f4eb;
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(180deg);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(26,26,26,.08);
}
.bcard-back-section {
  margin-bottom: .2rem;
}
.bcard-back-label {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .3rem;
}
.bcard-back-value {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--dark-mid);
  line-height: 1.55;
  font-weight: 300;
}
.bcard-back-divider {
  width: 100%;
  height: 1px;
  background: rgba(26,26,26,.1);
  margin: .6rem 0;
}
.bcard-back-hours {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-top: .3rem;
}
.bcard-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--dark-mid);
  font-weight: 400;
}
.bcard-hours-row.closed-row span:last-child {
  color: var(--muted);
  font-style: italic;
}
.bcard-back-corner {
  position: absolute;
  bottom: 1.6rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .2em;
  color: rgba(26,26,26,.15);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .markets-row { grid-template-columns: repeat(2, 1fr); }
  .market-card-h { height: 260px; }
  .brands-grid { flex-wrap: wrap; }
  .brand-cell { flex: 1 1 45%; min-height: 130px; }
  .bcard-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bcard-wrapper { width: 100%; max-width: 480px; height: 280px; }
}
@media (max-width: 600px) {
  .markets-header { padding: 0 2rem 1.5rem; }
  .markets-row { grid-template-columns: repeat(2, 1fr); }
  .market-card-h { height: 200px; }
  .brands-showcase-inner { padding: 0 1rem; }
  .brands-showcase-head { padding: 1.2rem 1rem 1rem; }
  .brands-grid { flex-wrap: wrap; }
  .brand-cell { flex: 1 1 45%; min-height: 100px; }
  .bcard-wrapper { max-width: 340px; height: 210px; }
  .bcard-front-logo { font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   MARKETS — TILT CARD LAYOUT (4+4)
══════════════════════════════════════ */
.markets-tilt {
  background: var(--white);
  padding: 6rem 0 5rem;
}
.markets-tilt .markets-header {
  padding: 0 6rem 3.5rem;
}

.market-tilt-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 2.5rem 5rem;
  position: relative;
}
/* Alternate rows shift vertically to create staggered feel */
.market-tilt-row:first-of-type {
  padding-bottom: 1rem;
  margin-bottom: 0;
  z-index: 2;
}
.market-tilt-row:last-of-type {
  padding-top: 1rem;
  z-index: 1;
}

.market-tilt-card {
  position: relative;
  flex: 1;
  max-width: calc(25% - 21px);
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,.28),
    0 2px 8px rgba(0,0,0,.14);
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
  transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .55s cubic-bezier(.22,1,.36,1),
    z-index 0s;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.market-tilt-card:hover {
  transform: rotate(0deg) translateY(-18px) scale(1.04) !important;
  z-index: 20 !important;
  box-shadow:
    0 36px 72px rgba(0,0,0,.38),
    0 6px 16px rgba(0,0,0,.18);
}
.market-tilt-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.market-tilt-card:hover .market-tilt-img {
  transform: scale(1.07);
}
.market-tilt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,4,3,.92) 0%, rgba(10,4,3,.35) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.4rem 1.6rem;
  transition: background .4s;
}
.market-tilt-card:hover .market-tilt-overlay {
  background: linear-gradient(to top, rgba(44,2,2,.9) 0%, rgba(10,4,3,.2) 55%, transparent 100%);
}
.market-tilt-num {
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: .4rem;
}
.market-tilt-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  display: block;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .market-tilt-card { width: calc(25% - 1rem); max-width: 260px; }
}
@media (max-width: 768px) {
  .market-tilt-row { flex-wrap: wrap; padding: 1.5rem 2rem; gap: 14px; }
  .market-tilt-row:first-of-type { margin-bottom: 0; }
  .market-tilt-card { width: calc(50% - 14px); max-width: none; margin: 0; transform: none !important; }
  .markets-tilt .markets-header { padding: 0 2rem 2rem; }
}
/* ══════════════════════════════════════
   COMPREHENSIVE MOBILE & TABLET FIXES
   Added: proper responsive layout for all pages
══════════════════════════════════════ */

/* ── BRANDS GRID responsive ── */
@media (max-width: 1100px) {
  .brands-showcase-inner { padding: 0 3rem; }
}
@media (max-width: 768px) {
  .brands-showcase-inner { padding: 0 1.5rem; gap: 0; }
  .brands-showcase { padding: 3rem 0; }
  .brands-showcase-head { padding: 1.5rem 1.5rem 1.2rem; margin-bottom: 0; }
  .brands-grid { flex-wrap: wrap; }
  .brand-cell { flex: 1 1 45%; min-height: 140px; }
}
@media (max-width: 480px) {
  .brands-grid { flex-wrap: wrap; }
  .brand-cell { flex: 1 1 45%; min-height: 110px; }
}

/* ── CALCULATOR mobile ── */
@media (max-width: 768px) {
  .calc-inner { grid-template-columns: 1fr; gap: 2rem; }
  .calc-row { grid-template-columns: 1fr; }
  .calc-diagram { padding: 1.8rem; }
  .calc-visual { margin-top: 0; }
}

/* ── FOOTER watermark mobile ── */
@media (max-width: 768px) {
  footer { padding: 3rem 1.5rem 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-watermark { font-size: clamp(3rem, 22vw, 8rem); }
}

/* ── HERO mobile ── */
@media (max-width: 640px) {
  .hero-video-content { padding: 0 1.5rem; }
  .hero-title-center { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero-sub-center { font-size: .95rem; }
  .hero-cta-center { flex-direction: column; gap: .8rem; width: 100%; }
  .hero-cta-center .btn-primary, .hero-cta-center .btn-outline { text-align: center; }
}

/* ── NAV mobile ── */
@media (max-width: 640px) {
  .navbar { padding: 12px 12px 0; }
  .nav-main { padding: 0 1rem; height: 54px; }
  .nav-logo-img { height: 44px; }
  .nav-logo-text { font-size: 1.5rem; }
}

/* ── SECTIONS mobile padding ── */
@media (max-width: 640px) {
  section { padding: 3rem 1.5rem; }
  .cta-banner { padding: 3.5rem 1.5rem; }
  .page-hero { padding-top: 7rem; padding-bottom: 3.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .page-hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* ── MARKETS GRID mobile ── */
@media (max-width: 640px) {
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .market-card { height: 200px; }
}
@media (max-width: 400px) {
  .markets-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT pages mobile ── */
@media (max-width: 768px) {
  .prod-hero { min-height: 400px; padding-top: 7rem; }
  .prod-hero-title { font-size: clamp(2.2rem, 9vw, 4rem); line-height: .95; }
  .prod-content-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-content-section { padding: 3rem 1.5rem; }
  .tilt-gallery { grid-template-columns: 1fr; }
}

/* ── ABOUT page stats mobile ── */
@media (max-width: 640px) {
  .stats-row-about { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-big { font-size: 2.5rem; }
}

/* ── CONTACT BCARD mobile ── */
@media (max-width: 768px) {
  .bcard-section { padding: 4rem 1.5rem; }
  .bcard-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bcard-wrapper { max-width: 360px; height: 220px; }
}

/* ── FORM mobile ── */
@media (max-width: 640px) {
  .form-hero {
    padding: 2rem 1rem;
    background-attachment: scroll !important; /* fixed bg broken on iOS — use scroll */
  }
  .form-hero-inner {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }
  .form-hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
}

/* ── WHY section mobile ── */
@media (max-width: 640px) {
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-img-arrodz-wrap { height: 280px; }
}

/* ── SPECS mobile ── */
@media (max-width: 640px) {
  .specs-inner { grid-template-columns: 1fr; gap: 2rem; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
}

/* ── INDUSTRY ROWS mobile ── */
@media (max-width: 640px) {
  .industry-row { grid-template-columns: 1fr; min-height: auto; }
  .industry-row.reverse { direction: ltr; }
  .industry-content { padding: 2rem 1.5rem; }
  .industry-img { height: 220px; }
}

/* ── TICKER mobile ── */
@media (max-width: 640px) {
  .ticker-item { padding: 0 1.2rem; font-size: .65rem; }
}

/* ── CTA banner mobile ── */
@media (max-width: 640px) {
  .cta-banner-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-outline { text-align: center; }
}

/* ── HERO slider dots mobile ── */
@media (max-width: 640px) {
  .hero-scroll { left: 50%; bottom: 1.5rem; }
}

/* ── Market tilt cards mobile ── */
@media (max-width: 480px) {
  .market-tilt-card { width: 100%; max-width: none; }
  .market-tilt-row { padding: 1rem; }
}

/* ── Mobile menu touch targets ── */
@media (max-width: 768px) {
  .mobile-menu a { font-size: 1.8rem; padding: .3rem 0; }
  .mobile-close { font-size: 1.6rem; }
}
a
/* ── Product content pages tablet ── */
@media (max-width: 1000px) {
  .prod-content-inner { grid-template-columns: 1fr; }
  .tilt-gallery { grid-template-columns: 1fr 1fr; }
}