@charset "UTF-8";

/* ============================================================
   JA CATFISH MASTERS — MASTER STYLESHEET v3
   Merged: Multi-page V1 + FromFauna V2 structure
   ============================================================ */

/* ── FONTS ── */
@font-face { font-family:"SuisseIntl"; src:url("assets/fonts/SuisseIntl-Light-WebS.woff") format("woff"); font-weight:300; }
@font-face { font-family:"SuisseIntl"; src:url("assets/fonts/SuisseIntl-Book-WebS.woff") format("woff"); font-weight:400; }
@font-face { font-family:"SuisseIntl"; src:url("assets/fonts/SuisseIntl-Medium-WebS.woff") format("woff"); font-weight:500; }
@font-face { font-family:"SuisseIntl"; src:url("assets/fonts/SuisseIntl-SemiBold-WebS.woff") format("woff"); font-weight:600; }
@font-face { font-family:"SuisseIntl"; src:url("assets/fonts/SuisseIntl-Bold-WebS.woff") format("woff"); font-weight:700; }

/* ── VARIABLES ── */
:root {
  --green:      #1f5f3b;
  --green-dark: #163f28;
  --green-light:#2d7a4e;
  --gold:       #e6b422;
  --gold-light: #f0c84a;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --ink:        #0d1a0f;
  --ink-mid:    #2a3a2d;
  --muted:      #6b7c6e;
  --border:     rgba(13,26,15,0.10);
  --font:       "SuisseIntl","Helvetica Neue",sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body.menu-open { overflow: hidden; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
ul { list-style:none; }
button { cursor:pointer; font-family:var(--font); border:none; }
::selection { background:var(--green); color:var(--white); }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.loaded { opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo {
  width:140px; height:130px; border-radius:8px; overflow:hidden;
  margin:0 auto 24px; background:transparent;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-logo img { width:100%; height:100%; object-fit:contain; }
.loader-txt {
  font-size:11px; letter-spacing:0.35em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); text-align:center;
}
.loader-txt span { color:rgba(255,255,255,0.75); }
@keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.06);opacity:0.6} }

/* ============================================================
   ★ HAMBURGER NAVIGATION — Fixed & Polished
   ============================================================ */

/* ══════════════════════════════════════
   HAMBURGER BUTTON — Full rewrite
   ══════════════════════════════════════ */
.nav-hamburger {
  /* Reset button defaults */
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  /* Positioning */
  position: fixed;
  top: 28px; right: 32px;
  z-index: 1000;
  /* Size & layout */
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Circle border */
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.55);
  transition: box-shadow 0.4s ease, background 0.3s ease;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.07);
}
/* When on a light-background section (scrolled) */
.nav-hamburger.nav-scrolled {
  box-shadow: 0 0 0 1.5px rgba(13,26,15,0.3);
}
/* When menu is open */
.menu-open .nav-hamburger {
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.25) !important;
  background: transparent !important;
}

/* ── Three bars inside button ── */
.nav-hamburger-bars {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 20px;
  /* No absolute positioning — naturally centred by flex parent */
}
.nav-hamburger-bars span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.92);
  transition:
    transform   0.45s cubic-bezier(0.19,1,0.22,1),
    opacity     0.3s ease,
    width       0.35s ease,
    background  0.4s ease;
}
.nav-hamburger-bars span:nth-child(1) { width: 20px; }
.nav-hamburger-bars span:nth-child(2) { width: 20px; }
.nav-hamburger-bars span:nth-child(3) { width: 12px; } /* shorter bottom bar */

/* Dark bars when nav-scrolled */
.nav-hamburger.nav-scrolled .nav-hamburger-bars span {
  background: var(--ink);
}

/* ── ✕ close animation ── */
.menu-open .nav-hamburger .nav-hamburger-bars span:nth-child(1) {
  width: 20px;
  transform: translateY(6.5px) rotate(45deg);
  background: #fff !important;
}
.menu-open .nav-hamburger .nav-hamburger-bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-open .nav-hamburger .nav-hamburger-bars span:nth-child(3) {
  width: 20px;
  transform: translateY(-6.5px) rotate(-45deg);
  background: #fff !important;
}

/* Hide the ring div — we use box-shadow on the button itself now */
.nav-hamburger-ring { display: none; }

/* ── Full-screen overlay ── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 900;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}
.menu-open .nav-overlay {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}

/* Overlay links */
.nav-overlay-links {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  margin-bottom: 48px;
}
.nav-overlay-links a {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.menu-open .nav-overlay-links a {
  opacity: 1; transform: translateY(0);
}
/* stagger each link */
.menu-open .nav-overlay-links a:nth-child(1) { transition-delay: 0.05s; }
.menu-open .nav-overlay-links a:nth-child(2) { transition-delay: 0.10s; }
.menu-open .nav-overlay-links a:nth-child(3) { transition-delay: 0.15s; }
.menu-open .nav-overlay-links a:nth-child(4) { transition-delay: 0.20s; }
.menu-open .nav-overlay-links a:nth-child(5) { transition-delay: 0.25s; }
.menu-open .nav-overlay-links a:nth-child(6) { transition-delay: 0.30s; }
.nav-overlay-links a:hover { color: var(--gold); letter-spacing: 0.04em; }
.nav-overlay-links a.active-page { color: var(--gold); }

/* Social links in overlay */
.nav-overlay-social {
  display: flex; gap: 24px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}
.menu-open .nav-overlay-social { opacity: 1; transform: translateY(0); }
.nav-overlay-social a {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.nav-overlay-social a:hover { color: var(--gold); }

/* ── Fixed logo (top-left) ── */
.nav-logo-fixed {
  position: fixed;
  top: 28px; left: 36px;
  z-index: 1000;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-fixed-img {
  width: 52px; height: 48px;
  border-radius: 4px; overflow: hidden;
  border: none;
  transition: opacity 0.3s;
  flex-shrink: 0;
  background: transparent;
}
.nav-scrolled .nav-logo-fixed-img { opacity: 0.9; }
.nav-logo-fixed-img img { width:100%; height:100%; object-fit:contain; }
.nav-logo-fixed-text {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); line-height:1.2;
  transition: color 0.5s;
}
.nav-scrolled .nav-logo-fixed-text { color: var(--ink); }
.nav-logo-fixed-text span {
  display: block; font-weight:300;
  font-size: 9px; letter-spacing:0.12em;
  color: rgba(255,255,255,0.45);
  transition: color 0.5s;
}
.nav-scrolled .nav-logo-fixed-text span { color: var(--muted); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0;
  width:100%; height:100%; object-fit:cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,26,15,0.45) 0%,
    rgba(13,26,15,0.15) 45%,
    rgba(13,26,15,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px;
}
.hero-eyebrow {
  font-size:11px; font-weight:600; letter-spacing:0.3em;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:28px;
  opacity:0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-headline {
  font-size: clamp(52px,10vw,128px);
  font-weight: 300; line-height: 0.94;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-headline em {
  font-style:normal; display:block;
  opacity:0;
}
.hero-headline em:nth-child(1) { animation: fadeUp 0.8s ease 0.5s forwards; }
.hero-headline em:nth-child(2) { animation: fadeUp 0.8s ease 0.7s forwards; }
.hero-headline em:nth-child(3) { animation: fadeUp 0.8s ease 0.9s forwards; }
.hero-sub {
  font-size:16px; font-weight:300;
  color:rgba(255,255,255,0.72); max-width:460px;
  margin:0 auto 44px; line-height:1.65;
  opacity:0; animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-actions {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation: fadeUp 0.8s ease 1.3s forwards;
}
.hero-scroll {
  position:absolute; bottom:36px; left:50%;
  transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,0.45);
  font-size:9px; letter-spacing:0.25em; text-transform:uppercase;
  opacity:0; animation: fadeUp 0.8s ease 1.6s forwards;
}
.hero-scroll-line {
  width:1px; height:44px;
  background:rgba(255,255,255,0.2); overflow:hidden; position:relative;
}
.hero-scroll-line::after {
  content:''; position:absolute;
  top:-100%; width:100%; height:100%; background:var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0%{top:-100%} 100%{top:200%} }
@keyframes fadeUp {
  from{opacity:0;transform:translateY(22px)}
  to{opacity:1;transform:translateY(0)}
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:15px 34px; background:var(--gold); color:var(--ink);
  transition:background 0.2s, transform 0.2s;
}
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-green {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:15px 34px; background:var(--green); color:var(--white);
  transition:background 0.2s, transform 0.2s;
}
.btn-green:hover { background:var(--green-light); transform:translateY(-2px); }
.btn-ghost-white {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:15px 34px;
  border:1px solid rgba(255,255,255,0.38);
  color:var(--white); background:transparent;
  transition:border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color:#fff; background:rgba(255,255,255,0.07); }
.btn-ghost-dark {
  display:inline-flex; align-items:center;
  font-size:11px; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:15px 34px;
  border:1px solid var(--border);
  color:var(--ink); background:transparent;
  transition:background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-ghost-dark:hover { background:var(--green); color:#fff; border-color:var(--green); }

/* ============================================================
   CHAPTER NAV BAR (sticky)
   ============================================================ */
.chapter-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
}
.chapter-nav-inner {
  display:flex; overflow-x:auto; scrollbar-width:none;
}
.chapter-nav-inner::-webkit-scrollbar { display:none; }
.chapter-item {
  flex-shrink:0; padding:18px 0; margin-right:44px;
  font-size:10px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--muted);
  border-bottom:2px solid transparent;
  cursor:pointer; white-space:nowrap;
  display:flex; align-items:center; gap:10px;
  transition:color 0.2s, border-color 0.2s;
}
.chapter-item.active { color:var(--green); border-bottom-color:var(--gold); }
.chapter-item:hover { color:var(--green); }
.chapter-num { font-size:9px; opacity:0.5; }

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
.section { padding:110px 60px; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-label {
  font-size:10px; font-weight:600;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
}
.section-headline {
  font-size:clamp(30px,4vw,54px);
  font-weight:300; line-height:1.1;
  letter-spacing:-0.01em; color:var(--ink);
  margin-bottom:28px;
}
.section-headline strong { font-weight:600; color:var(--green); }
.section-body {
  font-size:17px; line-height:1.78;
  color:var(--ink-mid); max-width:620px;
}
.section-body p+p { margin-top:18px; }
.divider {
  width:44px; height:2px;
  background:var(--gold); margin:28px 0;
}

/* ============================================================
   HOME — VISION SECTION
   ============================================================ */
.vision-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.vision-media {
  aspect-ratio:4/3; background:var(--green);
  border-radius:2px; overflow:hidden; position:relative;
}
.vision-media video,
.vision-media img { width:100%; height:100%; object-fit:cover; }
.vision-placeholder {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.3);
  font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
  flex-direction:column; gap:12px;
}
.vision-placeholder-icon {
  width:48px; height:48px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
}

/* ============================================================
   HOME — PILLARS
   ============================================================ */
.pillars-section { background:var(--ink); }
.pillars-intro { text-align:center; margin-bottom:72px; }
.pillars-intro .section-label { color:var(--gold); }
.pillars-intro .section-headline { color:var(--white); max-width:640px; margin:0 auto; }
.pillars-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.07);
}
.pillar { padding:56px 40px; background:var(--ink); transition:background 0.3s; }
.pillar:hover { background:rgba(31,95,59,0.18); }
.pillar-word {
  font-size:10px; font-weight:600; letter-spacing:0.3em;
  text-transform:uppercase; color:var(--gold); margin-bottom:20px;
}
.pillar-stat {
  font-size:clamp(34px,5vw,70px);
  font-weight:300; line-height:1; color:var(--white); margin-bottom:8px;
}
.pillar-stat-label {
  font-size:10px; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
}
.pillar-text { font-size:15px; line-height:1.7; color:rgba(255,255,255,0.55); }

/* ============================================================
   DISCOVER SECTION
   ============================================================ */
.discover-section {
  padding:130px 60px; background:var(--cream); text-align:center;
}
.discover-inner { max-width:680px; margin:0 auto; }
.discover-quote {
  font-size:clamp(20px,3vw,36px);
  font-weight:300; line-height:1.35;
  color:var(--ink); margin-bottom:44px;
  letter-spacing:-0.01em;
}
.discover-quote em { font-style:italic; color:var(--green); }

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.process-hero {
  min-height:58vh; background:var(--green-dark);
  display:flex; align-items:center;
  padding:140px 60px 90px; position:relative; overflow:hidden;
}
.process-hero-video {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:0.2;
}
.process-hero-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; width:100%; }
.process-hero .section-label { color:var(--gold); }
.process-hero-headline {
  font-size:clamp(36px,6vw,78px);
  font-weight:300; color:var(--white);
  line-height:1.05; letter-spacing:-0.02em; max-width:680px;
}
.process-step {
  display:grid; grid-template-columns:72px 1fr 1fr;
  gap:56px; padding:90px 60px;
  border-bottom:1px solid var(--border);
  align-items:start; max-width:1200px; margin:0 auto;
}
.process-step:nth-child(even) { background:rgba(31,95,59,0.03); }
.step-num {
  font-size:10px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); padding-top:6px;
}
.step-word {
  font-size:clamp(34px,5vw,62px);
  font-weight:300; color:var(--ink);
  letter-spacing:-0.02em; line-height:1;
  margin-bottom:20px;
}
.step-text { font-size:16px; line-height:1.78; color:var(--ink-mid); }
.step-media {
  aspect-ratio:4/3; background:var(--green);
  border-radius:2px; overflow:hidden; position:relative;
}
.step-media video,
.step-media img { width:100%; height:100%; object-fit:cover; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  min-height:48vh; background:var(--ink);
  display:flex; align-items:flex-end;
  padding:140px 60px 70px;
}
.products-hero-content { max-width:1200px; margin:0 auto; width:100%; }
.products-hero .section-label { color:var(--gold); }
.products-hero-headline {
  font-size:clamp(38px,7vw,88px);
  font-weight:300; color:var(--white);
  letter-spacing:-0.02em; line-height:1;
}
.products-section { padding:90px 60px; }
.products-category-label {
  font-size:10px; font-weight:600;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--green); margin-bottom:44px;
  padding-bottom:14px; border-bottom:1px solid var(--border);
}
.products-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2px; background:var(--border); margin-bottom:72px;
}
.product-card {
  background:var(--cream); padding:44px 32px;
  transition:background 0.25s;
}
.product-card:hover { background:var(--white); }
.product-card:hover .product-arrow { transform:translateX(4px); }
.product-img {
  aspect-ratio:3/2; margin-bottom:28px;
  overflow:hidden; position:relative; border-radius:1px;
}
.product-img img { width:100%; height:100%; object-fit:cover; }
.product-img-placeholder {
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:10px;
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.45);
}
.product-img-filename {
  font-size:9px; letter-spacing:0.08em;
  color:rgba(255,255,255,0.25); margin-top:4px;
  font-family:monospace;
}
.product-tag {
  font-size:9px; font-weight:600;
  letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:10px;
}
.product-name {
  font-size:21px; font-weight:400;
  color:var(--ink); margin-bottom:10px;
  letter-spacing:-0.01em;
}
.product-desc {
  font-size:14px; line-height:1.65;
  color:var(--muted); margin-bottom:24px;
}
.product-link {
  display:inline-flex; align-items:center; gap:8px;
  font-size:10px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--green);
}
.product-arrow { transition:transform 0.2s; }

/* ============================================================
   SUSTAINABILITY PAGE
   ============================================================ */
.sustain-hero {
  min-height:58vh; background:var(--green);
  display:flex; align-items:center;
  padding:140px 60px 90px; position:relative; overflow:hidden;
}
.sustain-hero-headline {
  font-size:clamp(44px,8vw,108px);
  font-weight:300; color:var(--white);
  letter-spacing:-0.02em; line-height:1;
  position:relative; z-index:2;
  max-width:1200px; margin:0 auto; width:100%;
}
.sustain-hero-headline strong { display:block; color:var(--gold); }
.sustain-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--border);
}
.stat-card {
  background:var(--cream); padding:72px 44px;
  transition:background 0.25s;
}
.stat-card:hover { background:var(--white); }
.stat-number {
  font-size:clamp(48px,7vw,92px);
  font-weight:300; color:var(--green);
  line-height:1; margin-bottom:10px;
}
.stat-unit { font-size:clamp(22px,3vw,46px); color:var(--gold); }
.stat-label {
  font-size:10px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--ink-mid); margin-bottom:16px;
}
.stat-desc { font-size:15px; line-height:1.65; color:var(--muted); }
.sustain-pledge { padding:110px 60px; background:var(--ink); }
.sustain-pledge-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:90px; align-items:start;
}
.sustain-pledge-left .section-label { color:var(--gold); }
.sustain-pledge-left .section-headline { color:var(--white); }
.sustain-pledge-left .section-body { color:rgba(255,255,255,0.55); }
.pledge-list { display:flex; flex-direction:column; gap:0; margin-top:44px; }
.pledge-item {
  padding:22px 0; border-bottom:1px solid rgba(255,255,255,0.07);
  display:flex; gap:20px; align-items:flex-start;
}
.pledge-icon {
  width:30px; height:30px;
  border:1px solid rgba(230,180,34,0.35); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; flex-shrink:0; margin-top:2px;
}
.pledge-text { font-size:15px; line-height:1.65; color:rgba(255,255,255,0.55); }
.pledge-text strong { color:var(--white); font-weight:500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height:65vh; background:var(--cream);
  display:flex; align-items:center;
  padding:140px 60px 90px; border-bottom:1px solid var(--border);
}
.about-hero-inner { max-width:1200px; margin:0 auto; width:100%; }
.about-hero-headline {
  font-size:clamp(38px,6vw,80px);
  font-weight:300; color:var(--ink);
  letter-spacing:-0.02em; line-height:1.05; max-width:780px;
}
.about-hero-headline strong { font-weight:600; color:var(--green); }
.about-story { padding:110px 60px; }
.about-story-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1.5fr;
  gap:90px;
}
.about-sticky { position:sticky; top:90px; }
.about-body {
  font-size:17px; line-height:1.82; color:var(--ink-mid);
}
.about-body p+p { margin-top:26px; }
.about-body strong { color:var(--ink); font-weight:500; }
.values-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:2px; background:var(--border); margin-top:72px;
}
.value-item { background:var(--cream); padding:44px 36px; transition:background 0.2s; }
.value-item:hover { background:var(--white); }
.value-num {
  font-size:9px; font-weight:600;
  letter-spacing:0.2em; color:var(--gold); margin-bottom:14px;
}
.value-title { font-size:21px; font-weight:400; color:var(--ink); margin-bottom:10px; }
.value-text { font-size:14px; line-height:1.65; color:var(--muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height:42vh; background:var(--green-dark);
  display:flex; align-items:center;
  padding:140px 60px 72px;
}
.contact-hero-inner { max-width:1200px; margin:0 auto; width:100%; }
.contact-hero .section-label { color:var(--gold); }
.contact-hero-headline {
  font-size:clamp(38px,7vw,88px);
  font-weight:300; color:var(--white);
  letter-spacing:-0.02em; line-height:1;
}
.contact-body { padding:90px 60px; }
.contact-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1.2fr; gap:90px;
}
.contact-info-item { padding:28px 0; border-bottom:1px solid var(--border); }
.contact-info-label {
  font-size:9px; font-weight:600;
  letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:6px;
}
.contact-info-value { font-size:16px; color:var(--ink); line-height:1.5; }
.contact-info-value a:hover { color:var(--green); }
.social-links-row {
  display:flex; gap:12px; flex-wrap:wrap; margin-top:36px;
}
.social-btn {
  display:inline-flex; align-items:center; gap:7px;
  font-size:10px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:10px 18px;
  border:1px solid var(--border); color:var(--ink);
  transition:background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover { background:var(--green); color:#fff; border-color:var(--green); }
.map-wrap {
  height:340px; border-radius:2px;
  overflow:hidden; background:#e5e5e5; margin-bottom:36px;
}
.map-wrap iframe { width:100%; height:100%; border:0; display:block; }
.form-group { margin-bottom:22px; }
.form-label {
  display:block; font-size:9px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--muted); margin-bottom:8px;
}
.form-input,.form-textarea,.form-select {
  width:100%; padding:13px 0;
  background:transparent; border:none;
  border-bottom:1px solid var(--border);
  font-family:var(--font); font-size:16px;
  color:var(--ink); outline:none;
  transition:border-color 0.2s;
  appearance:none; border-radius:0;
}
.form-input:focus,.form-textarea:focus,.form-select:focus {
  border-bottom-color:var(--green);
}
.form-textarea { resize:vertical; min-height:110px; }
.form-select { cursor:pointer; }
.form-submit {
  width:100%; padding:17px;
  background:var(--green); color:var(--white);
  font-family:var(--font); font-size:11px; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  transition:background 0.2s, transform 0.2s;
}
.form-submit:hover { background:var(--green-light); transform:translateY(-1px); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position:fixed; inset:0;
  background:rgba(13,26,15,0.88); z-index:800;
  display:flex; align-items:center; justify-content:center;
  padding:40px;
  opacity:0; visibility:hidden;
  transition:opacity 0.4s ease, visibility 0.4s ease;
}
.modal-backdrop.open { opacity:1; visibility:visible; }
.modal-box {
  background:var(--cream); max-width:660px; width:100%;
  max-height:82vh; overflow-y:auto;
  padding:60px; position:relative;
  transform:translateY(28px);
  transition:transform 0.4s ease;
}
.modal-backdrop.open .modal-box { transform:translateY(0); }
.modal-close {
  position:absolute; top:20px; right:20px;
  width:40px; height:40px;
  background:none; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:17px; color:var(--ink); cursor:pointer;
  transition:background 0.2s, color 0.2s;
}
.modal-close:hover { background:var(--ink); color:#fff; }
.modal-label {
  font-size:9px; font-weight:600;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:16px;
}
.modal-title {
  font-size:30px; font-weight:300;
  color:var(--ink); letter-spacing:-0.01em;
  line-height:1.2; margin-bottom:28px;
}
.modal-body { font-size:16px; line-height:1.78; color:var(--ink-mid); }
.modal-body p+p { margin-top:18px; }
.modal-body strong { color:var(--ink); font-weight:500; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity:0; transform:translateY(30px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background:var(--ink);
  padding:72px 60px 36px;
}
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:56px; padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.07);
  margin-bottom:36px;
}
.footer-brand-logo {
  display:flex; align-items:center; gap:13px; margin-bottom:18px;
}
.footer-brand-logo-img {
  width:56px; height:52px; border-radius:4px;
  overflow:hidden; background:transparent; flex-shrink:0;
}
.footer-brand-logo-img img { width:100%; height:100%; object-fit:contain; }
.footer-brand-name {
  font-size:12px; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--white); line-height:1.2;
}
.footer-brand-name span {
  display:block; font-weight:300;
  font-size:9px; color:rgba(255,255,255,0.35);
}
.footer-tagline {
  font-size:13px; color:rgba(255,255,255,0.38);
  line-height:1.6; max-width:270px;
}
.footer-col-title {
  font-size:9px; font-weight:600;
  letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:18px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col a {
  font-size:14px; color:rgba(255,255,255,0.45);
  transition:color 0.2s;
}
.footer-col a:hover { color:var(--white); }
.footer-social-link {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,0.45);
  transition:color 0.2s;
}
.footer-social-link:hover { color:var(--gold); }
.footer-bottom {
  display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-copy { font-size:12px; color:rgba(255,255,255,0.22); }
.footer-built {
  font-size:12px; color:rgba(255,255,255,0.22);
}
.footer-built a {
  color:var(--gold); opacity:0.7;
  transition:opacity 0.2s;
}
.footer-built a:hover { opacity:1; }

/* Footer contact links (phone/email) */
.footer-contact-link {
  font-size:13px;
  color:rgba(255,255,255,0.45);
  transition:color 0.2s;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.footer-contact-link:hover { color:var(--gold); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 400;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg {
  width: 28px; height: 28px; fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 400;
  width: 44px; height: 44px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.25s, background 0.2s;
  box-shadow: 0 4px 16px rgba(31,95,59,0.35);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green-light); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; fill: #fff; }

/* SEO meta description helper (hidden) */
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

/* ============================================================
   IMAGE PLACEHOLDER UTILITY
   ============================================================ */
.img-placeholder {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
  background:var(--green);
}
.img-placeholder-icon {
  font-size:24px; opacity:0.5;
}
.img-placeholder-name {
  font-size:9px; font-family:monospace;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.35);
  text-align:center; padding:0 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .section { padding:80px 40px; }
  .vision-grid { grid-template-columns:1fr; gap:40px; }
  .pillars-grid { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:1fr 1fr; }
  .sustain-stats { grid-template-columns:1fr; }
  .sustain-pledge-inner { grid-template-columns:1fr; gap:44px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:36px; }
  .about-story-inner { grid-template-columns:1fr; gap:44px; }
  .about-sticky { position:static; }
  .contact-grid { grid-template-columns:1fr; gap:56px; }
  .process-step { grid-template-columns:56px 1fr; }
  .step-media { display:none; }
  .values-grid { grid-template-columns:1fr; }
  .chapter-nav { padding:0 24px; }
}
@media (max-width:768px) {
  .section { padding:64px 24px; }
  .nav-logo-fixed { top:20px; left:20px; }
  .nav-hamburger { top:20px; right:20px; }
  .hero-content { padding:0 24px; }
  .products-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  footer { padding:56px 24px 28px; }
  .modal-box { padding:36px 24px; }
  .process-hero { padding:110px 24px 56px; }
  .process-step { padding:56px 24px; grid-template-columns:1fr; gap:16px; }
  .products-hero { padding:110px 24px 56px; }
  .sustain-hero { padding:110px 24px 56px; }
  .contact-hero { padding:110px 24px 56px; }
  .contact-body { padding:56px 24px; }
  .about-hero { padding:110px 24px 56px; }
  .about-story { padding:56px 24px; }
  .sustain-pledge { padding:56px 24px; }
  .discover-section { padding:72px 24px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* ── STICKY CONTACT BAR ── */
.sticky-contact-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.sticky-contact-bar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.sticky-contact-bar a:hover { opacity: 0.8; }
.sticky-phone strong { font-size: 14px; letter-spacing: 0.03em; }
.sticky-wa { color: #9be09b !important; }
.sticky-sep { opacity: 0.35; font-size: 16px; }
@media (max-width: 600px) {
  .sticky-email { display: none; }
}
/* body padding removed — using in-flow header now */

/* ── MOMO PAYMENT BOX ── */
.momo-box {
  background: #fff3cd;
  border: 1.5px solid #ffcc00;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 6px;
  max-width: 320px;
}
.momo-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.momo-badge {
  background: #ffcc00;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.momo-network {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.momo-number {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
  line-height: 1;
}
.momo-name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.momo-note {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 10px;
}

/* ── HERO VIDEO for inner pages ── */
.about-hero,
.products-hero,
.contact-hero,
.gallery-hero,
.process-hero,
.sustain-hero {
  position: relative;
  overflow: hidden;
}
.about-hero .hero-video,
.products-hero .hero-video,
.contact-hero .hero-video,
.gallery-hero .hero-video,
.process-hero .hero-video,
.sustain-hero .hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.about-hero .hero-overlay,
.products-hero .hero-overlay,
.contact-hero .hero-overlay,
.gallery-hero .hero-overlay,
.process-hero .hero-overlay,
.sustain-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.82) 100%);
  z-index: 1;
}

/* ============================================================
   ★ HORIZONTAL HEADER — Matches live site design
   ============================================================ */

/* Reset old fixed-nav body padding now replaced by header height */
body { padding-top: 0; }

/* ── TOP CONTACT BAR ── */
.top-contact-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  position: relative;
  z-index: 2000;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.top-bar-link:hover { color: #fff; }
.top-bar-sep { opacity: 0.3; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-social {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.top-bar-social:hover { color: #fff; }

/* ── MAIN HEADER ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(13,26,15,0.10);
  position: sticky;
  top: 0;
  z-index: 1900;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-img {
  width: 46px;
  height: 42px;
  overflow: hidden;
  flex-shrink: 0;
}
.header-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.header-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.header-nav-link:hover { color: var(--green); }
.header-nav-link.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Order button */
.header-order-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 20px;
  height: 44px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  margin-left: 12px;
}
.header-order-btn:hover { background: var(--green-dark); }

/* ── MOBILE HAMBURGER ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-order-btn {
  background: var(--green) !important;
  color: #fff !important;
  text-align: center;
  padding: 14px 0 !important;
  border-radius: 4px;
  margin-top: 12px;
  border: none !important;
  letter-spacing: 0.08em !important;
}
.mobile-nav.open { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .header-order-btn { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 640px) {
  .top-bar-link:last-child { display: none; }
  .header-inner { padding: 0 18px; }
  .top-bar-inner { padding: 7px 18px; }
}

/* ── Remove old sticky-contact-bar if it still exists ── */
.sticky-contact-bar { display: none !important; }
.nav-logo-fixed { display: none !important; }
.nav-hamburger { display: none !important; }
.nav-overlay { display: none !important; }

/* ============================================================
   ★★★ REDESIGN OVERRIDE — Clean Grey Theme v4
   Light background, prominent logo, clean hero overlays
   ============================================================ */

/* ── 1. GLOBAL BACKGROUND → LIGHT GREY ── */
:root {
  --page-bg: #f5f5f5;
  --section-bg: #f5f5f5;
  --section-alt: #ffffff;
  --hero-overlay-color: rgba(20,30,22,0.38);
}

body {
  background: var(--page-bg) !important;
}

/* ── 2. HEADER — white, clean ── */
.top-contact-bar {
  background: var(--green-dark) !important; /* keep green on top bar only — matches screenshot */
}
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

/* ── 3. LOGO — make it bigger and more prominent ── */
.header-logo-img {
  width: 64px !important;
  height: 60px !important;
}
.header-logo-text {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}
.header-logo-text span {
  color: #888 !important;
  font-size: 10px !important;
}

/* ── 4. HERO — lighten the overlay dramatically ── */
.hero-overlay,
.about-hero .hero-overlay,
.products-hero .hero-overlay,
.contact-hero .hero-overlay,
.gallery-hero .hero-overlay,
.process-hero .hero-overlay,
.sustain-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,20,12,0.30) 0%,
    rgba(10,20,12,0.22) 50%,
    rgba(10,20,12,0.45) 100%
  ) !important;
}
.hero-video,
.about-hero .hero-video,
.products-hero .hero-video,
.contact-hero .hero-video,
.gallery-hero .hero-video,
.process-hero .hero-video,
.sustain-hero .hero-video {
  opacity: 0.75 !important; /* let more of the video show through */
}

/* ── 5. HERO TEXT — always white over video ── */
.hero-content,
.about-hero-inner,
.products-hero-content,
.contact-hero-inner,
.gallery-hero-inner,
.process-hero-content,
.sustain-hero-headline {
  color: #fff !important;
}

/* ── 6. SECTION BACKGROUNDS — replace dark/green with grey/white ── */
.pillars-section {
  background: #1f5f3b !important; /* keep green on this ONE section — it's the "For the people" block which looks great dark */
}
.pillar {
  background: rgba(255,255,255,0.06) !important;
}

/* All other sections → light grey */
.section,
.about-story,
.about-hero,
.products-section,
.contact-body {
  background: var(--page-bg) !important;
}

/* Cream sections → white */
.discover-section,
[style*="background:var(--cream)"],
[style*="background: var(--cream)"] {
  background: #ffffff !important;
}

/* Dark ink sections → light grey */
[style*="background:var(--ink)"],
[style*="background: var(--ink)"] {
  background: #f5f5f5 !important;
  color: var(--ink) !important;
}

/* ── 7. STATS GRID DARK BOX ── */
/* The 2x2 stats grid — make it look clean */
[style*="background:var(--green);padding:36px"] {
  background: var(--green) !important; /* keep one green stat box */
}

/* ── 8. CATFISH/SNAIL DARK SECTION ── */
.section[style*="background:var(--ink)"] {
  background: #1a1a1a !important; /* keep dark for contrast on about page */
}

/* ── 9. PROCESS HERO & SUSTAINABILITY HERO → video only, no solid bg ── */
.process-hero,
.sustain-hero {
  background: #1f5f3b !important; /* fallback while video loads */
}

/* ── 10. CONTACT HERO → same ── */
.contact-hero {
  background: #163f28 !important;
}

/* ── 11. PRODUCT CARDS → white on grey ── */
.product-card {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
}

/* ── 12. FOOTER — keep dark, it looks right ── */
footer {
  background: var(--ink) !important;
}

/* ── 13. MOBILE — top bar shows phone + social, hide email if needed ── */
@media (max-width: 640px) {
  .top-bar-link { font-size: 11px !important; }
  .header-logo-img { width: 52px !important; height: 48px !important; }
  .header-logo-text { font-size: 12px !important; }
}

/* ── 14. SECTION TEXT COLOUR FIX — when section bg is light, text must be dark ── */
.section .section-label,
.about-story .section-label {
  color: var(--gold) !important;
}
.section .section-headline,
.about-story .section-headline,
.about-story .section-body {
  color: var(--ink) !important;
}

/* ── 15. LOADER — keep dark ── */
#loader { background: var(--ink) !important; }

/* ── 16. CHAPTER NAV → light version ── */
.chapter-nav {
  background: #ffffff !important;
  border-bottom: 1px solid #e8e8e8 !important;
  border-top: 1px solid #e8e8e8 !important;
}
.chapter-item {
  color: #666 !important;
}
.chapter-item.active,
.chapter-item:hover {
  color: var(--green) !important;
}


/* ── ABOUT HERO headline strong → white when over video ── */
.about-hero-headline strong {
  color: #fff !important;
}

/* ── Product hero text colour fix ── */
.products-hero-headline,
.products-hero .section-label,
.products-hero .section-body {
  color: #fff !important;
}

/* ── About story section — light background, dark text ── */
.about-story {
  background: #f5f5f5 !important;
}
.about-sticky .section-label { color: var(--gold) !important; }
.about-sticky .section-headline { color: var(--ink) !important; }

/* ── Value items — white cards on grey ── */
.value-item {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
}

/* ── The dark "Catfish & Snails" section on about — keep it tastefully dark ── */
.section[style*="background:var(--ink)"] {
  background: #111 !important;
}

/* ── Gallery hero text ── */
.gallery-hero-inner .section-label { color: var(--gold) !important; }

/* ── Process steps section bg ── */
.process-steps,
.process-timeline {
  background: #f5f5f5 !important;
}

/* ── Sustainability pledge section — keep green-dark, it looks purposeful ── */
.sustain-pledge { background: #163f28 !important; }
.pledge-text { color: rgba(255,255,255,0.85) !important; }
.pledge-icon { color: var(--gold) !important; }

/* ── Contact left panel ── */
.contact-info-label { color: var(--green) !important; }

/* ── Mobile nav background ── */
.mobile-nav { background: #ffffff !important; }

/* ── Back to top ── */
.back-to-top {
  background: var(--green) !important;
}


/* ============================================================
   ★★★ FINAL POLISH — Logo prominence, text clarity, video fit
   ============================================================ */

/* ── 1. HEADER: taller, logo much bigger ── */
.site-header { box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important; }

.header-inner {
  height: 84px !important;
  gap: 24px !important;
  padding: 0 36px !important;
}

/* Logo image: BIG and prominent */
.header-logo-img {
  width: 76px !important;
  height: 76px !important;
  background: transparent !important;
  overflow: visible !important;
}
.header-logo-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Logo text: larger, bolder */
.header-logo-text {
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  color: #111 !important;
  line-height: 1.25 !important;
}
.header-logo-text span {
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #888 !important;
  letter-spacing: 0.15em !important;
  margin-top: 1px !important;
}

/* ── 2. TOP CONTACT BAR: bigger phone number ── */
.top-contact-bar {
  padding: 0 !important;
}
.top-bar-inner {
  padding: 9px 36px !important;
}
.top-bar-link {
  font-size: 13px !important;
  font-weight: 600 !important;
  gap: 7px !important;
}
/* Phone number — largest and boldest */
.top-bar-left .top-bar-link:first-child {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}
.top-bar-left .top-bar-link:first-child svg {
  width: 16px !important;
  height: 16px !important;
}

/* ── 3. HERO text: always crystal clear over any background ── */
.hero-content *,
.hero-content h1,
.hero-content p,
.hero-content .hero-eyebrow,
.hero-content .hero-sub {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4) !important;
}
.hero-headline em {
  color: #ffffff !important;
  font-style: normal !important;
}

/* Inner page hero headings — always white + readable */
.about-hero-inner h1,
.about-hero-inner p,
.about-hero-inner .section-label,
.products-hero-content h1,
.products-hero-content p,
.products-hero-content .section-label,
.contact-hero-inner h1,
.contact-hero-inner p,
.contact-hero-inner .section-label,
.gallery-hero-inner h1,
.gallery-hero-inner p,
.gallery-hero-inner .section-label,
.process-hero-content h1,
.process-hero-content p,
.process-hero-content .section-label,
.sustain-hero-headline,
.sustain-hero-headline span,
.sustain-hero-headline strong {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4) !important;
}

/* ── 4. VIDEOS: always fill their container cleanly ── */
video,
.hero-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Vision media video (homepage "Who We Are" section) */
.vision-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}
.vision-media video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ── 5. IMAGES: always fill their containers too ── */
.product-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e8e8;
}
.product-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}

/* Gallery images */
.gallery-img,
.gallery-item img,
.gallery-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Process step images */
.step-img img,
.step-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ── 6. HERO OVERLAY: just enough to read text, video still clear ── */
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.08) 40%,
    rgba(0,0,0,0.35) 100%
  ) !important;
}
.about-hero .hero-overlay,
.products-hero .hero-overlay,
.contact-hero .hero-overlay,
.gallery-hero .hero-overlay,
.process-hero .hero-overlay,
.sustain-hero .hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.40) 100%
  ) !important;
}

/* ── 7. MOBILE: logo still big, phone number prominent ── */
@media (max-width: 960px) {
  .header-inner {
    height: 72px !important;
    padding: 0 18px !important;
    gap: 14px !important;
  }
  .header-logo-img {
    width: 62px !important;
    height: 62px !important;
  }
  .header-logo-text {
    font-size: 13px !important;
  }
  .top-bar-left .top-bar-link:first-child {
    font-size: 14px !important;
  }
  /* Hide email on small screens, keep phone prominent */
  .top-bar-link + .top-bar-sep,
  .top-bar-link:nth-child(3) {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .header-logo-img {
    width: 54px !important;
    height: 54px !important;
  }
  .header-logo-text {
    font-size: 12px !important;
  }
  .top-bar-inner {
    padding: 8px 14px !important;
  }
  .top-bar-left .top-bar-link:first-child {
    font-size: 13px !important;
  }
}


/* ============================================================
   ★★★ v5 — BIG LOGO · BIG PHONE · CLEAN HEADER · FIT MEDIA
   ============================================================ */

/* ── HEADER HEIGHT — taller to fit big logo ── */
.site-header { background: #ffffff !important; box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important; }
.header-inner {
  height: 84px !important;
  padding: 0 36px !important;
  gap: 24px !important;
}

/* ── LOGO — large, no cropping, no filter ── */
.header-logo { gap: 14px !important; }
.header-logo-img {
  width: 72px !important;
  height: 68px !important;
  background: transparent !important;
  overflow: visible !important;
}
.header-logo-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  opacity: 1 !important;
  display: block !important;
}
.header-logo-text {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111 !important;
  letter-spacing: 0.06em !important;
}
.header-logo-text span {
  font-size: 10px !important;
  color: #888 !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
}

/* ── TOP BAR — phone number BIG and bold ── */
.top-contact-bar { background: #1a3d28 !important; padding: 0 !important; }
.top-bar-inner { padding: 10px 36px !important; }
.top-bar-left { gap: 20px !important; }
.top-bar-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.03em !important;
}
.top-bar-link:first-child {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}
.top-bar-link:first-child svg { width: 16px !important; height: 16px !important; }
.top-bar-sep { opacity: 0.25 !important; font-size: 18px !important; }

/* ── NAV LINKS ── */
.header-nav-link {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  padding: 6px 10px !important;
  color: #222 !important;
}
.header-nav-link.active { color: var(--green) !important; border-bottom-color: var(--green) !important; }
.header-nav-link:hover { color: var(--green) !important; }

/* ── ORDER NOW button ── */
.header-order-btn {
  height: 46px !important;
  padding: 0 22px !important;
  font-size: 11px !important;
  border-radius: 4px !important;
  background: var(--green) !important;
}

/* ── VIDEOS — fill container properly, no black bars ── */
.hero-video,
.about-hero .hero-video,
.products-hero .hero-video,
.contact-hero .hero-video,
.gallery-hero .hero-video,
.process-hero .hero-video,
.sustain-hero .hero-video {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 0.82 !important;
}

/* ── IMAGES — fill product cards properly ── */
.product-img {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
  background: #e8e8e8 !important;
}
.product-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* ── VISION MEDIA video (Who We Are section) ── */
.vision-media {
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
  border-radius: 4px !important;
  background: #1a1a1a !important;
  position: relative !important;
}
.vision-media video,
.vision-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* ── ABOUT farm image ── */
.about-sticky img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* ── PROCESS step images ── */
.step-media,
.step-img {
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  border-radius: 4px !important;
}
.step-media img, .step-img img,
.step-media video, .step-img video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ── HERO OVERLAY — lighter so video shows clearly ── */
.hero-overlay,
.about-hero .hero-overlay,
.products-hero .hero-overlay,
.contact-hero .hero-overlay,
.gallery-hero .hero-overlay,
.process-hero .hero-overlay,
.sustain-hero .hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(5,15,8,0.18) 0%,
    rgba(5,15,8,0.28) 60%,
    rgba(5,15,8,0.50) 100%
  ) !important;
}

/* ── MOBILE ── */
@media (max-width: 960px) {
  .header-inner { height: 70px !important; padding: 0 18px !important; }
  .header-logo-img { width: 58px !important; height: 54px !important; }
  .header-logo-text { font-size: 13px !important; }
  .top-bar-link:first-child { font-size: 15px !important; }
  .top-bar-inner { padding: 9px 18px !important; }
}
@media (max-width: 640px) {
  .header-logo-img { width: 50px !important; height: 46px !important; }
  .top-bar-link:last-child { display: none !important; } /* hide email on small screens */
  .top-bar-link:first-child { font-size: 14px !important; }
}


/* ============================================================
   ★★★★ FINAL DEFINITIVE OVERRIDES v5
   Large logo · Big phone · Full-bleed videos · Clear contrast
   ============================================================ */

/* ── 1. SITE HEADER — taller to fit big logo ── */
.site-header {
  background: #fff !important;
  border-bottom: 1px solid #e0e0e0 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}
.header-inner {
  height: 80px !important;
  padding: 0 40px !important;
  max-width: 1400px !important;
  gap: 24px !important;
}

/* ── 2. LOGO — BIG and dominant ── */
.header-logo {
  gap: 14px !important;
  flex-shrink: 0 !important;
}
.header-logo-img {
  width: 72px !important;
  height: 68px !important;
  flex-shrink: 0 !important;
}
.header-logo-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
.header-logo-text {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #111 !important;
  line-height: 1.25 !important;
}
.header-logo-text span {
  font-size: 10px !important;
  font-weight: 400 !important;
  color: #888 !important;
  letter-spacing: 0.12em !important;
}

/* ── 3. NAV LINKS ── */
.header-nav-link {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  color: #333 !important;
  padding: 8px 10px !important;
}
.header-nav-link:hover,
.header-nav-link.active {
  color: #1f5f3b !important;
  border-bottom-color: #1f5f3b !important;
}

/* ── 4. ORDER NOW BUTTON — big phone number visible ── */
.header-order-btn {
  height: 50px !important;
  padding: 0 24px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  gap: 8px !important;
  background: #1f5f3b !important;
  border-radius: 4px !important;
}

/* ── 5. HOMEPAGE HERO — full bleed video, no blur, crisp text ── */
.hero {
  height: 100vh !important;
  min-height: 620px !important;
  background: #111 !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;         /* FULL video — no dimming */
  filter: none !important;       /* NO blur */
}
.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.60) 100%
  ) !important;
}
.hero-content {
  position: relative !important;
  z-index: 3 !important;
  color: #fff !important;
}
.hero-eyebrow { color: #e6b422 !important; }
.hero-headline { color: #fff !important; text-shadow: 0 2px 20px rgba(0,0,0,0.4) !important; }
.hero-sub { color: rgba(255,255,255,0.88) !important; text-shadow: 0 1px 8px rgba(0,0,0,0.35) !important; }

/* ── 6. INNER PAGE HEROES — full bleed video, white text ── */
.about-hero,
.products-hero,
.contact-hero,
.gallery-hero,
.process-hero,
.sustain-hero {
  position: relative !important;
  overflow: hidden !important;
}
/* Every inner hero video fills 100% */
.about-hero .hero-video,
.products-hero .hero-video,
.contact-hero .hero-video,
.gallery-hero .hero-video,
.process-hero .hero-video,
.sustain-hero .hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 0 !important;
}
/* Overlay for legibility */
.about-hero .hero-overlay,
.products-hero .hero-overlay,
.contact-hero .hero-overlay,
.gallery-hero .hero-overlay,
.process-hero .hero-overlay,
.sustain-hero .hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.28) 50%,
    rgba(0,0,0,0.58) 100%
  ) !important;
  z-index: 1 !important;
}
/* Inner content above video */
.about-hero-inner,
.products-hero-content,
.contact-hero-inner,
.gallery-hero-inner,
.process-hero-content,
.sustain-hero-headline {
  position: relative !important;
  z-index: 2 !important;
  color: #fff !important;
}
/* All text in hero areas → white */
.about-hero-headline,
.about-hero-headline strong,
.about-hero .section-label,
.about-hero .section-body,
.about-hero .divider,
.products-hero-headline,
.products-hero .section-label,
.products-hero .section-body,
.contact-hero-headline,
.contact-hero .section-label,
.gallery-hero-inner h1,
.gallery-hero-inner .section-label,
.gallery-hero-inner .section-body,
.process-hero-headline,
.process-hero .section-label,
.process-hero .section-body,
.sustain-hero-headline span,
.sustain-hero-headline strong {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4) !important;
}
.about-hero .section-label,
.products-hero .section-label,
.contact-hero .section-label,
.gallery-hero-inner .section-label,
.process-hero .section-label {
  color: #e6b422 !important;
  text-shadow: none !important;
}

/* ── 7. VISION MEDIA VIDEO (index section 1) — fills container ── */
.vision-media {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 4px !important;
  min-height: 360px !important;
}
.vision-media video,
.vision-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  object-fit: cover !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}

/* ── 8. PRODUCT IMAGES — fill cards ── */
.product-img {
  position: relative !important;
  overflow: hidden !important;
  background: #e8e8e8 !important;
}
.product-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── 9. STEP/PROCESS IMAGES — fill ── */
.step-media,
.process-step-img {
  overflow: hidden !important;
}
.step-media img,
.step-media video,
.process-step-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── 10. GALLERY IMAGES — fill ── */
.gallery-item,
.gallery-img {
  overflow: hidden !important;
}
.gallery-item img,
.gallery-item video,
.gallery-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── 11. BIG PHONE NUMBER — in contact page ── */
.contact-info-value a[href^="tel"] {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1f5f3b !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
}
/* Also make the footer phone big */
.footer-contact-link {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.03em !important;
}

/* ── 12. TOP BAR — phone big and clear ── */
.top-bar-link {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ── 13. ABOUT STORY — light background, dark readable text ── */
.about-story {
  background: #f5f5f5 !important;
}
.about-body {
  color: #333 !important;
}

/* ── 14. RESPONSIVE LOGO ── */
@media (max-width: 960px) {
  .header-inner { height: 72px !important; padding: 0 20px !important; }
  .header-logo-img { width: 60px !important; height: 56px !important; }
  .header-logo-text { font-size: 13px !important; }
}
@media (max-width: 480px) {
  .header-logo-img { width: 52px !important; height: 48px !important; }
  .header-logo-text { font-size: 12px !important; }
  .contact-info-value a[href^="tel"] { font-size: 26px !important; }
}

