/* ═══════════════════════════════════════════════
   MULTI STRETCH — STYLES
   ═══════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --black:      #0a0a0a;
  --dark:       #111214;
  --dark2:      #1a1c20;
  --dark3:      #22252b;
  --green:      #b5e745;
  --green2:     #8fca1e;
  --white:      #f4f4f0;
  --grey:       #8a8d94;
  --border:     rgba(181,231,69,0.15);
  --radius:     4px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ─── PAGE SYSTEM ─── */
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   LUCIDE ICON DEFAULTS
   ═══════════════════════════════════════════════ */
[data-lucide], svg.lucide {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.75;
}
.why-icon    [data-lucide], .why-icon    svg { width: 22px; height: 22px; color: var(--green); }
.product-icon [data-lucide], .product-icon svg { width: 34px; height: 34px; color: var(--green); }
.contact-icon [data-lucide], .contact-icon svg { width: 20px; height: 20px; color: var(--green); }
.big-product-card .icon [data-lucide],
.big-product-card .icon svg               { width: 46px; height: 46px; color: var(--green); }
.feature-bullet [data-lucide],
.feature-bullet svg                       { width: 15px; height: 15px; color: var(--black); }
.location-strip [data-lucide],
.location-strip svg                       { width: 14px; height: 14px; color: var(--black); vertical-align: -2px; }
.sustain-list [data-lucide],
.sustain-list svg                         { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; cursor: pointer; flex-shrink: 0;
}
.nav-logo img { height: 42px; object-fit: contain; display: block; }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a, .nav-links button {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); background: none; border: none;
  padding: 8px 14px; cursor: pointer;
  transition: color var(--transition); text-decoration: none;
}
.nav-links a:hover, .nav-links button:hover { color: var(--white); }
.nav-links a.active, .nav-links button.active { color: var(--green); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 8px 0;
  min-width: 210px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(6px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;

  z-index: 100;
}

/* invisible hover bridge */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);

  transition-delay: 0s;
}
.nav-dropdown-menu button {
  display: block; width: 100%; padding: 10px 18px; text-align: left; font-size: 12px;
}

/* CTA button */
.nav-cta {
  background: var(--green)  !important; color: var(--black) !important;
  font-weight: 700          !important; padding: 9px 20px  !important;
  border-radius: var(--radius) !important; letter-spacing: 0.06em;
}
.nav-cta:hover { background: var(--green2) !important; color: var(--black) !important; }

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px; flex-shrink: 0;
}
.nav-hamburger [data-lucide], .nav-hamburger svg { width: 26px; height: 26px; color: var(--white); }

/* Mobile full-screen nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 998;
  flex-direction: column; padding: 32px 28px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--grey); background: none; border: none;
  padding: 14px 0; cursor: pointer;
  border-bottom: 1px solid var(--border);
  text-align: left; transition: color var(--transition);
  width: 100%;
}
.mobile-nav-item:hover { color: var(--white); }
.mobile-nav-item.highlight {
  color: var(--green);
}

.mobile-nav-section {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey); margin-top: 24px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav-section::before {
  content: ''; width: 20px; height: 2px; background: var(--green); display: block;
}

.mobile-nav-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--grey); background: none; border: none;
  padding: 10px 0; cursor: pointer;
  border-bottom: 1px solid var(--border);
  text-align: left; transition: color var(--transition);
  width: 100%;
}
.mobile-nav-sub:hover { color: var(--green); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(181,231,69,0.025) 60px, rgba(181,231,69,0.025) 61px
  );
}
.hero-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--green);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--green); display: block; }
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--grey); line-height: 1.7; max-width: 420px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--green); color: var(--black);
  border: none; cursor: pointer; padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-2px); }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  padding: 16px 36px; border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* Hero right visual */
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
}
.hero-visual { width: 100%; max-width: 480px; aspect-ratio: 1; position: relative; }
.hero-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  border: 1px solid var(--border);
}
.hero-stat-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; height: 100%; padding: 40px;
}
.hero-stat {
  background: var(--dark); border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px; transition: background var(--transition);
}
.hero-stat:hover { background: var(--dark3); }
.hero-stat:first-child { background: var(--green); }
.hero-stat:first-child .stat-num,
.hero-stat:first-child .stat-label { color: var(--black); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 800; line-height: 1; color: var(--white); margin-bottom: 6px;
}
.stat-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey);
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); z-index: 2;
}
.hero-scroll::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--grey);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
section { padding: 100px 80px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--green); display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 800;
  text-transform: uppercase; line-height: 0.95; margin-bottom: 20px;
}
.section-sub {
  font-size: 16px; font-weight: 300;
  color: var(--grey); line-height: 1.7; max-width: 540px;
}

/* ═══════════════════════════════════════════════
   WHY GRID
   ═══════════════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
}
.why-card {
  background: var(--dark2); border: 1px solid var(--border);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: background var(--transition), transform 0.25s; cursor: default;
}
.why-card:hover { background: var(--dark3); transform: translateY(-4px); }
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(181,231,69,0.1); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.why-card p { font-size: 13px; font-weight: 300; color: var(--grey); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   PRODUCTS GRID (HOME TEASER)
   ═══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.product-card {
  background: var(--dark2); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  cursor: pointer; transition: background var(--transition);
}
.product-card:hover { background: var(--dark3); }
.product-card-inner { padding: 48px 36px 36px; }
.product-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 16px; right: 20px; pointer-events: none;
}
.product-icon { display: block; margin-bottom: 20px; }
.product-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.product-card p {
  font-size: 13px; font-weight: 300;
  color: var(--grey); line-height: 1.6; margin-bottom: 28px;
}
.product-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 8px;
  transition: gap var(--transition);
}
.product-card:hover .product-link { gap: 14px; }
.product-link::after { content: '→'; }

/* ═══════════════════════════════════════════════
   SUSTAINABILITY BAND
   ═══════════════════════════════════════════════ */
.sustain-band {
  margin: 0 80px; background: var(--dark2); border: 1px solid var(--border);
  padding: 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.sustain-band::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: var(--green);
}
.sustain-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 4vw, 48px); font-weight: 800;
  text-transform: uppercase; line-height: 0.95;
}
.sustain-band h2 span { color: var(--green); }
.sustain-list { list-style: none; }
.sustain-list li {
  font-size: 14px; font-weight: 300; color: var(--grey);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}

/* ═══════════════════════════════════════════════
   LOCATION STRIP
   ═══════════════════════════════════════════════ */
.location-strip {
  background: var(--green); color: var(--black);
  padding: 20px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.location-strip p {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.location-strip p span { font-weight: 300; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-logo img { height: 36px; object-fit: contain; display: block; }
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: var(--grey); line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li button {
  background: none; border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--grey); cursor: pointer; padding: 0;
  transition: color var(--transition);
}
.footer-col ul li button:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--grey);
}
.footer-bottom span b { color: var(--green); }

/* ═══════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════ */
.page-header {
  padding: 120px 80px 60px; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: attr(data-title);
  position: absolute; right: 60px; bottom: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 140px; font-weight: 800; text-transform: uppercase;
  color: rgba(255,255,255,0.03); pointer-events: none; white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-hero {
  padding: 140px 80px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-timeline { padding: 0 80px 100px; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border);
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--green);
}
.timeline-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px;
}
.timeline-content p { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.value-card { background: var(--dark2); border: 1px solid var(--border); padding: 40px; }
.value-card .v-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(181,231,69,0.12); line-height: 1; margin-bottom: -10px;
}
.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px; color: var(--green);
}
.value-card p { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.65; }

/* Stats band on About */
.stats-band { padding: 0 80px 80px; background: var(--dark2); }
.stats-band-inner { padding: 60px 0; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stat-box {
  background: var(--dark); border: 1px solid var(--border); padding: 36px;
}
.stat-box-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800; color: var(--green); line-height: 1;
}
.stat-box-label { font-size: 13px; color: var(--grey); margin-top: 8px; }

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════ */
.product-hero {
  padding: 140px 80px 80px;
  display: grid;
  grid-template-columns: 2.2fr 1.2fr;
  gap: 60px;
  align-items: start;

  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.product-specs {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  padding: 40px;
  position: sticky;
  top: 90px;

  border-radius: 10px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 0;
  position: relative;

  font-size: 13px;
}

/* soft gradient line instead of harsh border */
.spec-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(181, 231, 69, 0.25),
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

/* remove last line */
.spec-row:last-child::after {
  display: none;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-key { color: var(--grey); font-weight: 400; }
.spec-row .spec-val { font-weight: 600; color: var(--white); }
.product-features {
  padding: 0 20px 100px;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FULL WIDTH HORIZONTAL CARD */
.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;

  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;

  padding: 40px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  background: var(--dark3);
}
.feature-bullet {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px;
}
.feature-item p { font-size: 13px; font-weight: 300; color: var(--grey); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   ALL PRODUCTS MENU
   ═══════════════════════════════════════════════ */
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;

  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}
.big-product-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  border-radius: 14px;

  padding: 48px 36px;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.big-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(181,231,69,0.35);
}
.big-product-card .icon { margin-bottom: 24px; }
.big-product-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px;
}
.big-product-card p {
  font-size: 14px; font-weight: 300;
  color: var(--grey); line-height: 1.65; flex: 1; margin-bottom: 28px;
}
.big-product-card .arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 10px;
  transition: gap var(--transition);
}
.big-product-card:hover .arrow { gap: 18px; }
.arrow::after { content: '→'; }
.ghost-num {
  position: absolute; right: 20px; bottom: -10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px; font-weight: 800;
  color: rgba(255,255,255,0.03); pointer-events: none; line-height: 1;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-layout {
  padding: 140px 80px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 800;
  text-transform: uppercase; line-height: 0.95; margin-bottom: 24px;
}
.contact-info h2 span { color: var(--green); }
.contact-info > p {
  font-size: 16px; font-weight: 300;
  color: var(--grey); line-height: 1.7; margin-bottom: 48px;
}
.contact-detail { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(181,231,69,0.1); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.contact-detail-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: block; margin-bottom: 4px;
}
.contact-detail-text span { font-size: 14px; font-weight: 300; color: var(--grey); }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark2); border: 1px solid var(--border); padding: 48px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.form-title::before {
  content: ''; display: block; width: 4px; height: 22px; background: var(--green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey);
}
.form-control {
  background: var(--dark); border: 1px solid var(--border);
  color: var(--white); padding: 14px 16px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: border-color var(--transition);
  border-radius: var(--radius); resize: none; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--green); }
.form-control::placeholder { color: rgba(138,141,148,0.5); }
.form-control option { background: var(--dark2); color: var(--white); }

.form-submit {
  width: 100%; margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--green); color: var(--black);
  border: none; cursor: pointer; padding: 18px;
  border-radius: var(--radius); transition: background var(--transition);
  min-height: 56px;
}
.form-submit:hover { background: var(--green2); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  display: none; margin-top: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
}
.form-feedback.success {
  display: block;
  background: rgba(181,231,69,0.1); border: 1px solid var(--green);
  color: var(--green);
}
.form-feedback.error {
  display: block;
  background: rgba(220,60,60,0.1); border: 1px solid rgba(220,60,60,0.5);
  color: #f87878;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero-left { padding: 80px 40px 80px 40px; }
  section { padding: 80px 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .sustain-band { margin: 0 40px; padding: 50px 40px; }
  .location-strip { padding: 20px 40px; }
  footer { padding: 60px 40px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { padding: 120px 40px 80px; gap: 48px; }
  .about-hero { padding: 120px 40px 60px; gap: 48px; }
  .about-timeline { padding: 0 40px 80px; }
  .product-hero { padding: 120px 40px 60px; gap: 48px; }
  .product-features { padding: 0 40px 60px; }
  .page-header { padding: 110px 40px 50px; }
  .stats-band { padding: 0 40px 60px; }
  .all-products-grid { grid-template-columns: 1fr 1fr; }
  .big-product-card { padding: 48px 36px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — PHONE  (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav-overlay { top: 64px; }
  .nav-logo img { height: 36px; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 0px);
    padding-top: 64px;
  }
  .hero-right { display: none; }
  .hero-left {
    padding: 56px 24px 60px;
    justify-content: center;
  }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); margin-bottom: 20px; }
  .hero-sub { font-size: 15px; margin-bottom: 36px; max-width: 100%; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: 13px; }
  .hero-scroll { display: none; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 18px; }

  /* Sections */
  section { padding: 60px 20px; }
  .section-title { font-size: clamp(28px, 9vw, 48px); }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
  .why-card { padding: 24px 18px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 12px; }

  /* Products grid */
  .products-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .product-card-inner { padding: 32px 24px 28px; }

  /* Sustain band */
  .sustain-band {
    margin: 0 20px; padding: 40px 28px;
    grid-template-columns: 1fr; gap: 32px;
  }

  /* Location strip */
  .location-strip {
    padding: 24px 20px;
    flex-direction: column; align-items: flex-start; gap: 12px;
  }
  .location-strip p { font-size: 12px; }

  /* Footer */
  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* About */
  .about-hero {
    grid-template-columns: 1fr; padding: 100px 20px 48px; gap: 40px;
  }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 24px; }
  .about-timeline { padding: 0 20px 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; }
  .stats-band { padding: 0 20px 48px; }
  .stats-row { grid-template-columns: 1fr; }

  /* Product detail */
  .product-hero { grid-template-columns: 1fr; padding: 100px 20px 48px; gap: 32px; }
  .product-specs { position: static; }
  .product-features { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .feature-item { padding: 24px; }

  /* Page header */
  .page-header { padding: 90px 20px 40px; }
  .page-header::after { font-size: 80px; right: 20px; }

  /* All products */
  .all-products-grid { grid-template-columns: 1fr; }
  .big-product-card { padding: 40px 28px; }
  .big-product-card h2 { font-size: 28px; }
  .ghost-num { font-size: 80px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ═══════════════════════════════════════════════
   PALLET WRAP TABLE SECTIONS
═══════════════════════════════════════════════ */

.pallet-range-section {
  width: 100%;
  margin-top: 40px;
}

/* SECTION BLOCK */
.range-block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;

  background: #101010;
  overflow: hidden;

  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Reverse Layout */
.range-block.reverse .range-image {
  order: 2;
}

/* IMAGE */
.range-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #0b0b0b;
}

.range-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.range-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.range-content h2 {
  color: var(--green2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0 28px;
}

/* TABLE */
.size-table {
  width: 100%;
  border-collapse: collapse;
  background: #0b0b0b;
  font-size: 14px;
}

.size-table th {
  background: var(--green);
  color: #000;
  text-align: left;
  padding: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.size-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #d5d5d5;
  font-size: 14px;
}

.size-table tr:hover td {
  background: rgba(255,255,255,.03);
}

/* HAND ROLL SECTION */
.handroll-section {
  width: 100%;
  position: relative;
}

.handroll-section img {
  width: 100%;
  height: auto; /* SHOW FULL IMAGE */
  object-fit: contain;
  display: block;
  background: #0b0b0b;
}

.handroll-heading {
  position: absolute;
  bottom: 30px;
  left: 40px;

  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;

  letter-spacing: .04em;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.size-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 320px;
}

.size-item {
  padding: 10px 14px;
  background: var(--black);
  font-size: 14px;
  transition: 0.2s ease;
  position: relative;
  border-radius: 8px;
}

/* divider line */
.size-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #e6e6e6;
}
.bubble-size {
  margin-top: 10px;
  font-size: 14px;
  color: #d5d5d5;
  letter-spacing: 0.04em;
}

/* MOBILE */
@media (max-width: 900px) {

  .range-block {
    grid-template-columns: 1fr;
  }

  .range-block.reverse .range-image {
    order: 0;
  }

  .range-content {
    padding: 28px 20px;
  }

  

  .size-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .handroll-section img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
  }

  .handroll-heading {
    left: 20px;
    bottom: 20px;
    font-size: 36px;
  }

}
/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  (≤ 390px)
   ═══════════════════════════════════════════════ */
@media (max-width: 390px) {
  nav { padding: 0 16px; }
  .hero-left { padding: 48px 16px 48px; }
  .hero h1 { font-size: 40px; }
  section { padding: 48px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .sustain-band { margin: 0 16px; padding: 32px 20px; }
  .location-strip { padding: 20px 16px; }
  footer { padding: 40px 16px 28px; }
  .about-hero { padding: 90px 16px 40px; }
  .about-timeline { padding: 0 16px 48px; }
  .stats-band { padding: 0 16px 40px; }
  .product-hero { padding: 90px 16px 40px; }
  .product-features { padding: 0 16px 40px; }
  .page-header { padding: 80px 16px 32px; }
  .contact-layout { padding: 90px 16px 48px; }
  .contact-form-wrap { padding: 28px 18px; }
  .big-product-card { padding: 32px 20px; }
  .all-products-grid { gap: 2px; }
}

/* ═══════════════════════════════════════════════
   UNIVERSAL PHONE FIX (ALL MOBILE DEVICES)
   ═══════════════════════════════════════════════ */

/* prevent horizontal scroll on ALL screens */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* force all grids to never overflow */
* {
  min-width: 0;
}

/* make images always responsive */
img {
  max-width: 100%;
  height: auto;
}

/* fix big padding leftovers */
@media (max-width: 768px) {
  section,
  .hero-left,
  .hero-right,
  .contact-layout,
  .about-hero,
  .product-hero,
  footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* force ALL grids to single column */
  .why-grid,
  .products-grid,
  .values-grid,
  .stats-row,
  .footer-top,
  .all-products-grid {
    grid-template-columns: 1fr !important;
  }

  /* fix large headings overflow */
  h1, h2 {
    word-break: break-word;
    hyphens: auto;
  }

  /* tables MUST scroll instead of breaking layout */
  .size-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  /* prevent sticky/spec overlap issues */
  .product-specs {
    position: relative !important;
    top: auto !important;
  }
}

/* extra small phones (iPhone SE / small Android) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 38px !important;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  nav {
    padding: 0 14px;
  }
}