/* =============================================
   1. Variables & Base Reset
============================================= */
:root {
  /* ── Brand colours ── */
  --navy:      #0A1628;
  --navy-mid:  #112240;
  --navy-soft: #1a3358;
  --gold:      #C9A84C;
  --gold-text: #7A6019; /* darkened gold for text on light backgrounds — passes WCAG AA */
  --gold-light:#E8C96A;
  --gold-pale: #f5e9c8;
  --cream:     #F7F3ED;
  --green:     #2D7D46;
  --white:     #FFFFFF;
  --text:      #2a2a2a;
  --text-muted:#6b7280;

  /* ── Typography ── */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* ── Layout ── */
  --header-h:   76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Colour transparencies (used throughout) ── */
  --navy-05:  rgba(10,22,40,0.05);
  --navy-08:  rgba(10,22,40,0.08);
  --navy-12:  rgba(10,22,40,0.12);
  --navy-15:  rgba(10,22,40,0.15);
  --navy-20:  rgba(10,22,40,0.20);
  --gold-05:  rgba(201,168,76,0.05);
  --gold-10:  rgba(201,168,76,0.10);
  --gold-12:  rgba(201,168,76,0.12);
  --gold-20:  rgba(201,168,76,0.20);
  --gold-25:  rgba(201,168,76,0.25);
  --gold-30:  rgba(201,168,76,0.30);
  --gold-35:  rgba(201,168,76,0.35);
  --white-05: rgba(255,255,255,0.05);
  --white-10: rgba(255,255,255,0.10);
  --white-25: rgba(255,255,255,0.25);
  --white-45: rgba(255,255,255,0.45);
  --white-75: rgba(255,255,255,0.75);

  /* ── Shadow scale ── */
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);

  /* ── Spacing scale ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10:120px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Inline SVG icon system (replaces Font Awesome CDN) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}

/* Suppress all transitions during initial page load to prevent flinch */
html.no-trans * { transition: none !important; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* =============================================
   2. Typography
============================================= */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-text);
  flex-shrink: 0;
}

/* .light variant is used on dark/navy backgrounds — keep full gold there */
.section-tag.light { color: var(--gold); }
.section-tag.light::before { background: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--navy); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-text);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
}

.text-link:hover { gap: 14px; }

/* =============================================
   3. Layout Utilities
============================================= */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 36px 0;
  border: none;
}

.section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 64px;
}

/* =============================================
   4. Buttons
============================================= */

/* Primary — gold fill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-25);
}

.btn-primary .icon { font-size: 0.75rem; }

/* Secondary — navy fill */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-secondary:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--navy-20);
}

.btn-secondary .icon { font-size: 0.75rem; }

/* Outline — transparent with border (light backgrounds) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  border: 2px solid rgba(10,22,40,0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-08);
}

/* Ghost — bottom-border underline (dark backgrounds) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}

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

/* Ghost white — outlined border (dark backgrounds) */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-ghost-white:hover {
  border-color: var(--white);
  background: var(--white-10);
  transform: translateY(-2px);
}

/* Contact form submit */
.btn-submit {
  display: block;
  width: 100%;
  padding: 18px 32px;
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px var(--gold-35);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: scale(0.99);
  box-shadow: none;
}

/* =============================================
   5. Section Utilities (shared)
============================================= */

/* Export page: section-header is centered with larger bottom margin */
#page-export .section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* Export page: section-tag has lines on BOTH sides */
#page-export .section-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}


/* =============================================
   6. Header & Navigation
============================================= */

/* Shared header base */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}

#page-contact .header.scrolled {
  box-shadow: none;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo — index/about/products/export */
.logo-link {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.logo-link span { color: var(--gold); }


/* Desktop nav — index/about/export */
.nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-list a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
}

.nav-list a.active {
  border-bottom: 1px solid var(--gold);
}


/* =============================================
   7. Mobile Navigation
============================================= */

/* Hamburger — shared across all pages */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Open state (products & contact pages) */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Full-screen wrapper with backdrop — all pages ── */
div.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

div.mobile-nav.open { display: block; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(4px);
}

/* Index page: .mobile-nav-panel nested inside div.mobile-nav */
div.mobile-nav .mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--navy-mid);
  padding: 100px 48px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(201,168,76,0.15);
}

div.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-list a {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active { color: var(--gold); }

/* =============================================
   8. Footer
============================================= */

.footer {
  background: var(--navy);
  padding: 80px 80px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand column */
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline,
.footer-brand-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-brand-tagline {
  margin-bottom: 28px;
}

.footer-gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Column headings */
.footer-col-title {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

/* Index — .footer-links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* Contact items — shared across all pages */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-item .icon {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Social icons — shared across all pages */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-10);
}

/* Footer bottom row — shared across all pages */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* Preview badge — shared */
.footer-preview-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 12px;
  border-radius: 2px;
}

/* =============================================
   9. Animations & Keyframes
============================================= */

/* Scrolling image columns — index hero */
@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Marquee strip — index */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About hero scroll line */
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Export hero scroll dot */
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* =============================================
   10. Scroll Reveal Classes
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Index delay classes */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* About/Export/Products delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }


/* =============================================
   11. ── HOME PAGE ──
============================================= */

/* Home hero */
#page-home .hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--navy);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

#page-home .hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 120px 64px 80px 80px;
}

#page-home .hero-left-inner { max-width: 580px; }

#page-home .hero-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#page-home .hero-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

#page-home .hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

#page-home .hero-title .premium-text {
  font-style: italic;
  color: var(--gold);
}

#page-home .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Right panel — scrolling image columns */
#page-home .hero-right {
  position: relative;
  overflow: hidden;
}

#page-home .hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(10,22,40,0.3) 18%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

#page-home .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 12%, transparent 88%, var(--navy) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  padding: 0 12px 0 20px;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.hero-col-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-col:nth-child(1) .hero-col-track { animation: scrollUp 28s linear infinite; }
.hero-col:nth-child(2) .hero-col-track { animation: scrollDown 32s linear infinite; }
.hero-col:nth-child(3) .hero-col-track { animation: scrollUp 24s linear infinite; }

.hero-col-track img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}

/* Marquee Strip */
.marquee-strip {
  background: var(--cream);
  border-top: 1px solid rgba(10,22,40,0.08);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 35s linear infinite;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  padding: 0 28px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

/* Story Section */
.story {
  background: var(--cream);
  padding: 120px 80px;
}

.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.story-image-wrap { position: relative; }

/* Index story — left gold accent bar */
.story-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 2px 0 0 2px;
}

.story-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.story-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 32px;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.story-image-badge strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.story-num {
  font-family: var(--ff-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(10,22,40,0.05);
  line-height: 1;
  margin-bottom: -30px;
  user-select: none;
}

.story-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.story-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.story-body p:last-child { margin-bottom: 0; }

/* Featured Products */
.products {
  background: var(--navy);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: 'PRODUCTS';
  position: absolute;
  top: 50px;
  right: -20px;
  font-family: var(--ff-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

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

/* Index product card (dark variant — scoped to home page) */
#page-home .product-card {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s ease;
}

#page-home .product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

#page-home .product-card:hover { transform: translateY(-4px); }
#page-home .product-card:hover::after { transform: scaleX(1); }

#page-home .product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

#page-home .product-card:hover .product-card-img { transform: scale(1.04); }

#page-home .product-card-body {
  padding: 32px 36px 40px;
}

#page-home .product-card-num {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(201,168,76,0.5);
  margin-bottom: 12px;
}

#page-home .product-card-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

#page-home .product-card-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

#page-home .product-card-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
  transition: width 0.4s ease;
}

#page-home .product-card:hover .product-card-rule { width: 56px; }

.products-footer {
  text-align: center;
  margin-top: 56px;
}

/* Why Section */
.why {
  background: var(--cream);
  padding: 120px 80px;
}

.why-inner { max-width: 1400px; margin: 0 auto; }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.why-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
}

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

.why-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.why-card:hover { background: var(--gold-pale); }

.why-card-num {
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(10,22,40,0.05);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.why-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.why-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.why-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 28px;
  transition: width 0.4s ease;
}

.why-card:hover .why-rule { width: 64px; }

/* CTA Strip — Home */
.cta-strip {
  background: var(--gold);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: 'EXPORT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(10,22,40,0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(10,22,40,0.65);
  margin-bottom: 48px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* =============================================
   12. ── ABOUT PAGE ──
============================================= */

/* About hero overrides — different from index hero */
/* About uses grid-template-columns: 52% 48%, min-height: 700px, no background on .hero itself */
/* (index .hero already defined in section 11; about differs in left panel) */
/* .hero on about has no explicit background — left panel carries var(--navy) */
/* Resolved by .hero-left having background: var(--navy) on about */
/* We redeclare only the differing properties here */

/* .hero-left on about: align-items flex-end + clip-path */
/* These would conflict if the same page loaded both, but pages are separate. */
/* The about page responsive (900px) removes clip-path — see section 16. */

/* About page hero */
#page-about .hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}

#page-about .hero-left {
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

#page-about .hero-left-inner { max-width: 560px; }

#page-about .hero-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#page-about .hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

#page-about .hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
}

#page-about .hero-title em {
  font-style: italic;
  color: var(--gold);
}

#page-about .hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 48px;
}

#page-about .hero-right {
  position: relative;
  overflow: hidden;
}

#page-about .hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#page-about .hero-right:hover img { transform: scale(1.0); }

#page-about .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}


/* Stats Strip */
.stats-strip {
  background: var(--gold);
  padding: 0;
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 48px;
  border-right: 1px solid rgba(10,22,40,0.15);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.65);
}

/* About story — accent image */
.story-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* About story title em */
.story-title em {
  font-style: italic;
  color: var(--green);
}

/* About hero scroll indicator */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* About hero year badge */
.hero-year {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  text-align: right;
}

.hero-year-num {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.9;
}

.hero-year-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Principles */
.principles {
  background: var(--navy);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.principles::before {
  content: 'VALUES';
  position: absolute;
  top: 60px;
  right: -20px;
  font-family: var(--ff-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.principles-inner { max-width: 1400px; margin: 0 auto; }

.principles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.principles-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 500px;
}

.principles-title em {
  font-style: italic;
  color: var(--gold);
}

.principles-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
}

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

.principle-card {
  background: var(--navy-mid);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}

.principle-card:hover { background: var(--navy-soft); }

.principle-card::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.principle-card:hover::before { color: rgba(201,168,76,0.07); }

.principle-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.4s;
}

.principle-card:hover .principle-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.principle-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.principle-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.principle-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 32px;
  transition: width 0.4s ease;
}

.principle-card:hover .principle-rule { width: 64px; }

/* Philosophy Strip */
.philosophy {
  background: var(--cream);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy::before,
.philosophy::after {
  content: '"';
  font-family: var(--ff-display);
  font-size: 24rem;
  color: rgba(10,22,40,0.04);
  position: absolute;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.philosophy::before { top: -60px; left: 40px; }
.philosophy::after  { bottom: -120px; right: 40px; }

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 40px;
}

.philosophy-quote strong { color: var(--green); font-style: normal; }

.philosophy-attr {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.philosophy-attr::before {
  content: '— ';
  color: var(--gold);
}

/* Origin Section */
.origin {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.origin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.origin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.70) 50%,
    rgba(10,22,40,0.40) 100%
  );
}

.origin-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.origin-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}

.origin-title span { color: var(--gold); }

.origin-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.origin-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.origin-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.origin-img-wrap {
  overflow: hidden;
  border-radius: 2px;
}

.origin-img-wrap:first-child { grid-row: span 2; }

.origin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.origin-img-wrap:hover img { transform: scale(1.05); }

/* About CTA Section */
.cta-section {
  background: var(--gold);
  padding: 100px 80px;
  text-align: center;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(10,22,40,0.65);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* =============================================
   13. ── PRODUCTS PAGE ──
============================================= */

/* Products page hero */
#page-products .hero {
  position: relative;
  min-height: 65vh;
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}

#page-products .hero-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 64px 80px 80px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}

#page-products .hero-left-inner { max-width: 540px; }

#page-products .hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#page-products .hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

#page-products .hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

#page-products .hero-title em {
  font-style: italic;
  color: var(--gold);
}

#page-products .hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin-bottom: 48px;
}

#page-products .hero-right {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}

#page-products .hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}

#page-products .hero-right:hover img { transform: scale(1.0); }

#page-products .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(10,22,40,0.2) 35%, transparent 60%);
}

/* Products page .product-card — white variant (scoped to products page) */
#page-products .product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  cursor: default;
}

#page-products .product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}

#page-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

#page-products .product-card:hover::before { transform: scaleX(1); }

#page-products .product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#page-products .product-card:hover .product-card-img { transform: scale(1.04); }

#page-products .product-card-body {
  padding: 28px 32px 32px;
}

#page-products .product-card-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

#page-products .product-card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}


/* Products page mobile nav: fullscreen centered with direct <a> children */
#page-products .mobile-nav {
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

#page-products .mobile-nav.open { transform: translateX(0); }

#page-products .mobile-nav > a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

#page-products .mobile-nav > a:hover,
#page-products .mobile-nav > a.active { color: var(--gold); }

/* IQF Quality Bar */
.iqf-bar {
  background: var(--navy-mid);
  padding: 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.iqf-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.iqf-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.iqf-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.iqf-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
}

.iqf-fact:not(:last-child) {
  border-right: 1px solid rgba(201,168,76,0.3);
}

.iqf-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.iqf-fact-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* French Fries Section */
.fries-section {
  background: var(--cream);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.fries-section::before {
  content: 'FRIES';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--ff-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(10,22,40,0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.fries-inner { max-width: 1400px; margin: 0 auto; }

.fries-section .section-num { color: rgba(10,22,40,0.07); }

.fries-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

/* Products page 3-column grid */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Products page card sub-elements (img-wrap, overlay, tag, footer, brand, icon) */
.product-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.product-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

#page-products .product-card:hover .product-card-img-overlay { opacity: 1; }

.product-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 10px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(10,22,40,0.07);
}

.product-card-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.35);
}

.product-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: background 0.25s, color 0.25s;
}

#page-products .product-card:hover .product-card-icon {
  background: var(--gold);
  color: var(--navy);
}

/* Frozen Vegetables Section */
.veg-section {
  background: var(--navy);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.veg-section::before {
  content: 'VEGETABLES';
  position: absolute;
  top: 30px;
  left: -20px;
  font-family: var(--ff-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.veg-inner { max-width: 1400px; margin: 0 auto; }

.veg-section .section-num { color: rgba(255,255,255,0.04); }

.veg-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.product-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-card-dark {
  background: var(--navy-mid);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card-dark:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.product-card-dark-img-wrap {
  overflow: hidden;
  position: relative;
}

.product-card-dark-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}

.product-card-dark:hover .product-card-dark-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.product-card-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
}

.product-card-dark-body { padding: 22px 24px 26px; }

.product-card-dark-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 8px;
}

.product-card-dark-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.product-card-dark-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.product-card-dark:hover .product-card-dark-line { width: 48px; }

/* Frozen Fruits Section */
.fruits-section {
  background: var(--cream);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.fruits-section::before {
  content: 'FRUITS';
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-family: var(--ff-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(10,22,40,0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.fruits-inner { max-width: 1400px; margin: 0 auto; }

.fruits-section .section-num { color: rgba(10,22,40,0.07); }

.fruits-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

/* B2B Order Timeline */
.timeline-section {
  background: var(--navy-mid);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.timeline-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}

.timeline-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.timeline-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.timeline-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 72px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
  gap: 0;
}

.timeline-step {
  text-align: center;
  padding: 0 16px;
}

.timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.timeline-step:hover .timeline-num {
  background: var(--gold);
  color: var(--navy);
}

.timeline-step-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.timeline-step-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.timeline-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.timeline-dash {
  width: 100%;
  height: 1px;
  border-top: 2px dashed rgba(201,168,76,0.35);
}

/* Quality Promo */
.promo-section {
  background: var(--cream);
  padding: 100px 80px;
}

.promo-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.promo-img-wrap { position: relative; }

.promo-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.promo-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 4px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
  transition: transform 0.4s ease;
}

.promo-img-frame:hover::before {
  transform: translate(6px, 6px);
}

.promo-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.promo-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.promo-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Products CTA Strip */
.cta-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-strip-sub {
  font-size: 1rem;
  color: rgba(10,22,40,0.65);
  margin-bottom: 40px;
}

/* Hero chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(247,243,237,0.1);
  color: var(--cream);
  border: 1px solid rgba(247,243,237,0.25);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hero-chip:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}


/* =============================================
   14. ── EXPORT PAGE ──
============================================= */

/* Export page hero — cinematic full-screen */
#page-export .hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

#page-export .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 100px;
}

#page-export .hero-label .icon { font-size: 0.75rem; }

#page-export .hero-label::before { display: none; }

#page-export .hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

#page-export .hero-title em {
  font-style: italic;
  color: var(--gold);
}

#page-export .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 48px;
}

/* Export stats strip — 3-column, padding: 48px 56px */
#page-export .stats-strip {
  background: var(--gold);
  padding: 0;
}

#page-export .stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#page-export .stat-item {
  padding: 48px 56px;
  border-right: 1px solid rgba(10,22,40,0.12);
}

#page-export .stat-item:last-child { border-right: none; }

#page-export .stat-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

#page-export .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.6);
}

/* Cinematic full-screen hero background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.75) 60%,
    rgba(10,22,40,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Export scroll indicator */
.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero-scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* Export Capabilities */
.capabilities {
  background: var(--cream);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.capabilities::before {
  content: 'EXPORT';
  position: absolute;
  top: 60px;
  right: -30px;
  font-family: var(--ff-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(10,22,40,0.04);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.capabilities-inner { max-width: 1400px; margin: 0 auto; }

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

.capability-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-left-width 0.35s ease;
  border-left: 0px solid var(--gold);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 100%;
  background: rgba(201,168,76,0.05);
  transition: width 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.12);
  border-left: 4px solid var(--gold);
}

.capability-card:hover::before { width: 100%; }

.capability-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 28px;
  transition: all 0.35s;
}

.capability-card:hover .capability-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.capability-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.capability-text {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.capability-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 28px;
  transition: width 0.35s ease;
}

.capability-card:hover .capability-rule { width: 56px; }

/* Markets */
.markets {
  background: var(--navy);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.markets::before {
  content: 'GLOBAL';
  position: absolute;
  bottom: 40px;
  left: -20px;
  font-family: var(--ff-display);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.06em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.markets-inner { max-width: 1400px; margin: 0 auto; }

.markets-header {
  text-align: center;
  margin-bottom: 72px;
}

.markets-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.markets-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.market-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  cursor: default;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.market-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 60px rgba(201,168,76,0.15);
}

.market-flag-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.market-flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.market-card:hover .market-flag-wrap img { transform: scale(1.06); }

.market-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding: 20px 16px 22px;
  letter-spacing: 0.04em;
}

/* Export Process Steps */
.process {
  background: var(--cream);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.process-inner { max-width: 1400px; margin: 0 auto; }

.process-header {
  text-align: center;
  margin-bottom: 88px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0px,
    var(--gold) 8px,
    transparent 8px,
    transparent 18px
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}

.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  transform: scale(1.08);
}

.step-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Quote Banner */
.quote-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.82);
}

.quote-banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 40px;
}

.quote-banner-content::before,
.quote-banner-content::after {
  font-family: var(--ff-display);
  font-size: 18rem;
  color: rgba(201,168,76,0.07);
  position: absolute;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-banner-content::before {
  content: '\201C';
  top: -40px;
  left: -20px;
}

.quote-banner-content::after {
  content: '\201D';
  bottom: -120px;
  right: -20px;
}

.quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.quote-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}


/* =============================================
   15. ── CONTACT PAGE ──
============================================= */

/* Contact page mobile nav: top-anchored drop panel with <ul><li><a> structure */
#page-contact .mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 40px 40px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

#page-contact .mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#page-contact .mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#page-contact .mobile-nav ul li a {
  display: block;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
  text-decoration: none;
}

#page-contact .mobile-nav ul li a:hover,
#page-contact .mobile-nav ul li a.active { color: var(--gold); }

/* Split Contact Layout */
.contact-split {
  display: flex;
  min-height: 100vh;
}

.split-left {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 80px 80px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.split-left::after {
  content: 'CONTACT';
  position: absolute;
  bottom: -10px;
  right: -20px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--white);
  opacity: 0.03;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contact-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.contact-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.contact-headline em {
  font-style: italic;
  color: var(--gold);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 52px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background var(--transition), border-color var(--transition);
}

.contact-info-item:hover .info-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.5);
}

.info-text {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  padding-top: 10px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

.split-right {
  flex: 1;
  background: var(--cream);
  padding: calc(var(--header-h) + 60px) 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 10px;
}

.form-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.25;
}

.contact-form {
  width: 100%;
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,22,40,0.2);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

/* Custom select dropdown */
.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,22,40,0.2);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: rgba(10,22,40,0.35);
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: border-color var(--transition), color var(--transition);
}

.custom-select__trigger.has-value {
  color: var(--text);
}

.custom-select__trigger:focus {
  border-bottom: 2px solid var(--gold);
}

.custom-select__chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.custom-select[aria-expanded="true"] .custom-select__chevron {
  transform: rotate(180deg);
}

.custom-select__options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.12);
  list-style: none;
  margin: 0;
  padding: 6px;
  overflow: hidden;
}

.custom-select[aria-expanded="true"] .custom-select__options {
  display: block;
  animation: selectFadeIn 0.18s ease;
}

@keyframes selectFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition);
}

.custom-select__option:hover {
  background: rgba(201,168,76,0.08);
}

.custom-select__option.selected {
  background: rgba(201,168,76,0.12);
}

.custom-select__opt-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(10,22,40,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.custom-select__option:hover .custom-select__opt-icon,
.custom-select__option.selected .custom-select__opt-icon {
  background: var(--gold);
  color: #fff;
}

.custom-select__opt-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-select__opt-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.custom-select__opt-text small {
  font-size: 0.75rem;
  color: rgba(10,22,40,0.45);
  line-height: 1.2;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10,22,40,0.3);
  font-size: 0.88rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom: 2px solid var(--gold);
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.form-group:focus-within::after { width: 100%; }

/* Info Strip */
.info-strip {
  background: var(--cream);
  border-top: 1px solid rgba(10,22,40,0.08);
  padding: 72px 40px;
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,22,40,0.08);
}

.info-card {
  background: var(--cream);
  padding: 52px 44px;
  text-align: center;
  position: relative;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold);
}

.info-card .card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.info-card p {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}


/* =============================================
   16. Responsive / Media Queries
============================================= */

/* ── Index page ── */
@media (max-width: 1024px) {
  #page-home .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  #page-home .hero-right { display: none; }

  #page-home .hero-left {
    padding: 140px 40px 80px;
    align-items: flex-start;
  }

  .story-inner,
  .why-header {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image-wrap { max-width: 480px; }

  .products-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .story,
  .products,
  .why,
  .cta-strip {
    padding: 80px 40px;
  }

  .footer { padding: 64px 40px 0; }

  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }

  #page-home .hero-left { padding: 120px 24px 60px; }

  .header { padding: 0 24px; }

  .story,
  .products,
  .why,
  .cta-strip {
    padding: 64px 24px;
  }

  .footer { padding: 48px 24px 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .products-grid { gap: 16px; }

  .why-grid { gap: 12px; }
}

/* ── About page ── */
@media (max-width: 1100px) {
  #page-about .hero { grid-template-columns: 55% 45%; }
  #page-about .hero-left { padding: 80px 48px 80px 48px; }
  .principles { padding: 100px 48px; }
  .philosophy { padding: 80px 48px; }
  .origin-inner { padding: 80px 48px; }
  #page-about .cta-section { padding: 80px 48px; }
  #page-about .story { padding: 100px 48px; }
  #page-about .story-inner { gap: 60px; }
}

@media (max-width: 900px) {
  #page-about .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  #page-about .hero-left {
    clip-path: none;
    padding: 120px 40px 60px;
    min-height: 65vh;
    align-items: center;
  }
  #page-about .hero-right { height: 40vh; }
  #page-about .stats-inner { grid-template-columns: repeat(2, 1fr); }
  #page-about .stat-item:nth-child(2) { border-right: none; }
  .story-image-accent { display: none; }
  .principles-grid { grid-template-columns: 1fr; gap: 2px; }
  .principles-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .principles-desc { text-align: left; }
  .origin-inner { grid-template-columns: 1fr; gap: 40px; }
  .origin-right { display: none; }
}

@media (max-width: 640px) {
  #page-about .hero-left { padding: 100px 24px 48px; }
  .principles { padding: 80px 24px; }
  .philosophy { padding: 80px 24px; }
  .origin-inner { padding: 80px 24px; }
  #page-about .cta-section { padding: 80px 24px; }
  #page-about .story { padding: 80px 24px; }
  #page-about .stats-inner { grid-template-columns: 1fr 1fr; }
  #page-about .stat-item { padding: 28px 20px; }
  .header { padding: 0 24px; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
}

/* ── Products page ── */
@media (max-width: 1100px) {
  #page-products .hero-left { padding: 120px 40px 60px 40px; clip-path: none; }
  .fries-section,
  .veg-section,
  .fruits-section,
  .timeline-section,
  .promo-section { padding-left: 40px; padding-right: 40px; }

  .promo-inner { gap: 60px; }
}

@media (max-width: 900px) {
  #page-products .hero { grid-template-columns: 1fr; min-height: auto; }
  #page-products .hero-left {
    clip-path: none;
    padding: 120px 32px 60px;
    align-items: flex-start;
  }
  #page-products .hero-right { height: 50vw; min-height: 300px; }

  .product-grid-3 { grid-template-columns: 1fr 1fr; }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-connector { display: none; }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .promo-img-frame::before { display: none; }
}

@media (max-width: 600px) {
  .header { padding: 0 20px; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  /* Products page mobile nav: show as flex (JS toggles open class) */
  #page-products .mobile-nav { display: flex; }

  #page-products .hero-left { padding: 100px 20px 48px; }
  .fries-section,
  .veg-section,
  .fruits-section,
  .timeline-section,
  .promo-section,
  .cta-strip { padding-left: 20px; padding-right: 20px; }

  .hero-chips { gap: 8px; }
  .hero-chip { font-size: 0.65rem; padding: 8px 16px; }

  .product-grid-3 { grid-template-columns: 1fr; }
  .product-grid-auto { grid-template-columns: 1fr 1fr; }

  .iqf-fact { padding: 0 20px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Export page ── */
@media (max-width: 1100px) {
  .capabilities { padding: 100px 48px; }
  .markets { padding: 100px 48px; }
  .process { padding: 100px 48px; }
  #page-export .cta-section { padding: 80px 48px; }
  #page-export .header { padding: 0 24px; }
}

@media (max-width: 900px) {
  .capabilities-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  #page-export .stats-inner { grid-template-columns: 1fr; }
  #page-export .stat-item { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.12); }
  #page-export .stat-item:last-child { border-bottom: none; }
  #page-export .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .capabilities { padding: 80px 24px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .markets { padding: 80px 24px; }
  .markets-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  #page-export .hero-content { padding: 0 24px; }
  #page-export .hero-scroll { display: none; }
  #page-export .stat-item { padding: 32px 24px; }
  #page-export .cta-section { padding: 80px 24px; }
  .quote-banner-content::before,
  .quote-banner-content::after { display: none; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  #page-export .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  #page-export .footer { padding: 60px 24px 0; }
}

/* ── Contact page ── */
@media (max-width: 1100px) {
  .split-left { padding: calc(var(--header-h) + 40px) 60px 60px; width: 48%; }
  .split-right { padding: calc(var(--header-h) + 40px) 60px 60px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header-inner { padding: 0 24px; }
  .hamburger { display: flex; }
  #page-contact .mobile-nav { display: none; /* shown via JS .open class */ }

  .contact-split {
    flex-direction: column;
    min-height: auto;
  }

  .split-left {
    width: 100%;
    padding: calc(var(--header-h) + 28px) 28px 52px;
    min-height: auto;
  }

  .split-left::after { font-size: 5rem; }

  .contact-headline { font-size: 2.2rem; }
  .contact-social { margin-top: 40px; }

  .split-right { padding: calc(var(--header-h) + 20px) 28px 64px; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-strip { padding: 52px 24px; }
  .info-strip-inner {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .info-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .split-left { padding: calc(var(--header-h) + 20px) 22px 44px; }
  .contact-headline { font-size: 1.9rem; }
  .split-right { padding: calc(var(--header-h) + 16px) 22px 56px; }
}

/* ── Shared footer (all pages) ── */
@media (max-width: 1100px) {
  .footer { padding: 60px 48px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
}

@media (max-width: 768px) {
  .footer { padding: 56px 24px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 0 32px;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 12px;
  }
}
