/* ============================================================
   ZS BANQUET SUPPLY — DEEP NAVY + GOLD THEME
   StyleNations-inspired layout · Built June 2026
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; color: #e8e0d0; background: #0a1628; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── COLOUR TOKENS ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f1e35;
  --navy-light:  #162840;
  --navy-card:   #1a2f48;
  --gold:        #c8a96e;
  --gold-light:  #e0c896;
  --gold-pale:   #f5ecd8;
  --gold-deep:   #9a7a3e;
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d4;
  --white:       #ffffff;
  --ink:         #1a1008;
  --text-dark:   #2c2010;
  --text-mid:    #5a4e38;
  --text-muted:  rgba(232,224,208,.6);
  --border-dark: rgba(200,169,110,.15);
  --border-light:#ddd5c0;
  --max-w:       1300px;
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

/* ── TYPOGRAPHY ── */
.f-royal  { font-family: 'Cinzel', serif; }
.f-serif  { font-family: 'EB Garamond', Georgia, serif; }
.f-sans   { font-family: 'Raleway', sans-serif; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media(max-width:768px){ .container { padding: 0 20px; } }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left span {
  font-size: 11px; color: var(--text-muted); letter-spacing: .5px; display: flex; align-items: center; gap: 6px;
}
.topbar-left span i { color: var(--gold); font-size: 10px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a {
  font-size: 11px; color: var(--text-muted); letter-spacing: .5px; transition: color .2s;
}
.topbar-right a:hover { color: var(--gold); }
.topbar-right .sep { color: var(--border-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo img { height: 56px; width: auto; filter: brightness(1.1); }

/* Desktop Nav */
.header-nav { display: flex; }
.header-nav > ul { display: flex; align-items: center; gap: 2px; }
.header-nav > ul > li { position: relative; }
.header-nav > ul > li > a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(232,224,208,.8);
  padding: 28px 16px;
  display: block;
  transition: color .2s;
}
.header-nav > ul > li > a:hover,
.header-nav > ul > li > a.active { color: var(--gold); }
.header-nav > ul > li > a i { font-size: 8px; margin-left: 3px; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: all .22s var(--ease);
  z-index: 200;
}
.header-nav > ul > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 20px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(232,224,208,.75);
  border-bottom: 1px solid var(--border-dark);
  transition: all .18s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold); background: rgba(200,169,110,.06); padding-left: 26px; }

/* Mega dropdown */
.mega-drop {
  position: absolute; top: 100%; left: -120px;
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-width: 560px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: all .22s var(--ease);
  z-index: 200;
}
.header-nav > ul > li:hover .mega-drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.mega-col { padding: 20px; border-right: 1px solid var(--border-dark); }
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.mega-col a {
  display: block; font-size: 11px; letter-spacing: .5px;
  color: rgba(232,224,208,.7); padding: 7px 0;
  border-bottom: 1px solid rgba(200,169,110,.06);
  transition: all .18s;
}
.mega-col a:last-child { border-bottom: none; }
.mega-col a:hover { color: var(--gold); padding-left: 6px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a { color: rgba(232,224,208,.7); font-size: 15px; transition: color .2s; }
.header-actions a:hover { color: var(--gold); }
.btn-quote {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 22px;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-quote:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all .3s; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--navy);
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--gold);
  font-size: 28px; cursor: pointer;
}
.mobile-nav a {
  display: block; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(232,224,208,.8);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mob-cta {
  margin-top: 28px; background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; text-align: center; display: block;
}

@media(max-width:1024px){
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ============================================================
   HERO — FULL BLEED
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .28;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.95) 0%, rgba(10,22,40,.6) 55%, rgba(10,22,40,.2) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
}
.hero-pretag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-pretag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400; line-height: 1.15;
  color: var(--white); letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: italic; font-family: 'EB Garamond', serif; }
.hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245,240,232,.7);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 560px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.hero-pill {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(200,169,110,.35);
  color: rgba(200,169,110,.9);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold); color: var(--navy);
  transition: background .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(200,169,110,.5); color: var(--gold);
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: rgba(200,169,110,.08); border-color: var(--gold); }

/* Hero stats strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: rgba(10,22,40,.85);
  border-top: 1px solid var(--border-dark);
  backdrop-filter: blur(8px);
}
.hero-stats .container {
  display: flex; justify-content: space-between; align-items: stretch;
  padding-top: 0; padding-bottom: 0;
}
.hero-stat {
  flex: 1; padding: 22px 28px;
  border-right: 1px solid var(--border-dark);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 26px; color: var(--gold); line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-dark  { background: var(--navy-mid); }
.section-navy  { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-card  { background: var(--navy-card); }

.section-pad   { padding: 96px 0; }
.section-pad-sm{ padding: 64px 0; }

.pretitle {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.pretitle-dark { color: var(--gold-deep); }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400; line-height: 1.2; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--ink); }
.section-title em { font-style: italic; font-family: 'EB Garamond', serif; color: var(--gold); }
.section-title.dark em { color: var(--gold-deep); }

.section-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px; line-height: 1.8;
  color: var(--text-muted); max-width: 580px;
}
.section-sub.dark { color: var(--text-mid); }

.divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
}
.divider-line { flex: 1; max-width: 48px; height: 1px; background: var(--gold); opacity: .5; }
.divider-diamond {
  width: 6px; height: 6px;
  border: 1px solid var(--gold); transform: rotate(45deg);
}

/* ============================================================
   MARQUEE BAR
   ============================================================ */
.marquee-bar {
  background: var(--gold); padding: 12px 0; overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); padding: 0 36px;
  display: flex; align-items: center; gap: 36px;
}
.marquee-item::after { content: '◆'; font-size: 8px; opacity: .6; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   SPLIT SECTIONS (StyleNations pattern)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative; overflow: hidden; min-height: 0;
  min-height: 400px;
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
  transition: transform .8s var(--ease);
}
.split-img:hover img { transform: scale(1.04); }
.split-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.3), transparent);
}
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 52px;
}
.split-badge {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,169,110,.3);
  padding: 6px 14px; margin-bottom: 24px;
}
.split-badge.dark { color: var(--gold-deep); border-color: rgba(154,122,62,.3); }
.split-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400; line-height: 1.25; letter-spacing: .5px;
  margin-bottom: 16px; color: var(--white);
}
.split-content.on-cream h2 { color: var(--ink); }
.split-content h2 em { font-style: italic; font-family: 'EB Garamond', serif; color: var(--gold); }
.split-content.on-cream h2 em { color: var(--gold-deep); }
.split-content p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 16px;
}
.split-content.on-cream p { color: var(--text-mid); }
.split-list { margin: 16px 0 28px; }
.split-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; letter-spacing: .5px;
  color: var(--text-muted); padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center; gap: 10px;
}
.split-list.on-cream li { color: var(--text-mid); border-color: var(--border-light); }
.split-list li i { color: var(--gold); font-size: 11px; flex-shrink: 0; }
.split-list.on-cream li i { color: var(--gold-deep); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
}
.cat-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(10,22,40,.1) 60%);
  transition: background .4s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%, rgba(10,22,40,.3) 60%);
}
.cat-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.cat-card-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: block;
}
.cat-card-title {
  font-family: 'Cinzel', serif;
  font-size: 18px; color: var(--white); font-weight: 400;
  margin-bottom: 10px;
}
.cat-card-link {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(200,169,110,.8);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.cat-card:hover .cat-card-link { gap: 10px; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.product-card {
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.product-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--navy-light);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.6);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay a {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 9px 18px;
  font-family: 'Raleway', sans-serif; font-weight: 600;
}
.overlay-view { background: var(--gold); color: var(--navy); }
.overlay-quote { border: 1px solid var(--gold); color: var(--gold); }
.product-card-info { padding: 20px 22px; }
.product-card-cat {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.product-card-name {
  font-family: 'Cinzel', serif;
  font-size: 15px; font-weight: 400; color: var(--white);
  margin-bottom: 10px; line-height: 1.35;
}
.product-card-meta {
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: 12px;
}
.product-card-meta span { display: flex; align-items: center; gap: 4px; }
.product-card-meta i { color: var(--gold); font-size: 9px; }
.product-card.hidden { display: none; }

/* Filter bar */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px;
}
.filter-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-muted); cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.filter-count {
  font-size: 11px; letter-spacing: .5px;
  color: var(--text-muted); margin-top: 16px;
}

/* ============================================================
   TRUST / STATS SECTION
   ============================================================ */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-dark); margin-top: 56px;
}
.trust-item {
  background: var(--navy-card);
  padding: 36px 28px; text-align: center;
}
.trust-num {
  font-family: 'Cinzel', serif;
  font-size: 40px; font-weight: 400; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.trust-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); line-height: 1.5;
}

/* ============================================================
   EXPORT PROOF SECTION
   ============================================================ */
.export-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.export-img-big { grid-row: 1/3; }
.export-img-big img, .export-img-sm img {
  width: 100%; height: 100%; object-fit: cover;
}
.export-img-big { aspect-ratio: auto; min-height: 500px; }
.export-img-sm  { aspect-ratio: 3/2; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border-dark); margin-top: 48px;
}
.process-step {
  background: var(--navy-card);
  padding: 36px 24px; text-align: center;
  position: relative;
}
.process-step-num {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 16px;
}
.process-step-icon {
  font-size: 24px; color: rgba(200,169,110,.4);
  margin-bottom: 16px;
}
.process-step-title {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 400; color: var(--white);
  letter-spacing: .5px; margin-bottom: 10px;
}
.process-step-desc {
  font-size: 11px; color: var(--text-muted); line-height: 1.7;
}
.process-step-time {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 14px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-wrap {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 72px 0;
}
.testimonial-quote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.7; color: var(--white); font-style: italic;
  margin-bottom: 32px;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); }
.testimonial-author {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.testimonial-location { color: var(--text-muted); margin-top: 4px; font-size: 11px; }

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-grid {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 80px; align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.founder-img-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--gold); padding: 20px 24px; text-align: center;
}
.founder-img-badge strong {
  font-family: 'Cinzel', serif;
  font-size: 22px; color: var(--navy); display: block; line-height: 1;
}
.founder-img-badge span {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); opacity: .8;
}
.founder-credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 28px 0;
}
.cred-item {
  border: 1px solid var(--border-dark);
  padding: 14px 16px;
}
.cred-item i { color: var(--gold); font-size: 16px; margin-bottom: 8px; display: block; min-width: 16px; }
.cred-item span {
  font-size: 11px; letter-spacing: .5px; color: var(--text-muted); line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gold); padding: 80px 0; text-align: center;
}
.cta-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--navy); font-weight: 400; letter-spacing: 1px;
  margin-bottom: 16px;
}
.cta-section p {
  font-family: 'EB Garamond', serif;
  font-size: 19px; color: rgba(10,22,40,.7);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-dark {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--navy); color: var(--gold);
  transition: background .2s;
  display: inline-block;
}
.btn-cta-dark:hover { background: var(--navy-mid); }
.btn-cta-outline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--navy); color: var(--navy);
  transition: all .2s; display: inline-block;
}
.btn-cta-outline:hover { background: rgba(10,22,40,.1); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-dark);
  padding: 56px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 48px);
  color: var(--white); font-weight: 400; letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-banner h1 em { font-style: italic; font-family: 'EB Garamond', serif; color: var(--gold); }
.breadcrumb-nav {
  font-size: 11px; letter-spacing: 1px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-about p {
  font-size: 12px; line-height: 1.9; color: var(--text-muted); margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px;
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-dark);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: .5px; transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '—'; color: var(--gold); font-size: 10px; opacity: .5; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start;
}
.footer-contact i { color: var(--gold); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.footer-contact span { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p {
  font-size: 11px; letter-spacing: .5px; color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start; padding: 72px 0;
}
.product-detail-img-main {
  aspect-ratio: 1/1; overflow: hidden; background: var(--navy-light);
}
.product-detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-tag {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.product-detail-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--white); font-weight: 400; line-height: 1.25;
  margin-bottom: 20px;
}
.product-spec-table { width: 100%; margin: 24px 0; }
.product-spec-table tr { border-bottom: 1px solid var(--border-dark); }
.product-spec-table td {
  padding: 11px 0; font-size: 12px; vertical-align: top;
}
.product-spec-table td:first-child {
  font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  font-size: 10px; color: var(--text-muted); width: 140px;
}
.product-spec-table td:last-child { color: var(--white); }
.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.swatch-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s, border-color .18s;
}
.swatch-dot:hover, .swatch-dot.active {
  transform: scale(1.2); border-color: var(--gold);
}
.moq-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border-dark); margin: 20px 0;
}
.moq-cell {
  background: var(--navy-card); padding: 14px 12px; text-align: center;
}
.moq-cell-label {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.moq-cell-val { font-size: 14px; font-weight: 600; color: var(--white); }
.moq-cell.highlight { background: var(--gold); }
.moq-cell.highlight .moq-cell-label { color: rgba(10,22,40,.7); }
.moq-cell.highlight .moq-cell-val { color: var(--navy); }
.product-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.btn-get-quote {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 28px; background: var(--gold); color: var(--navy);
  text-align: center; transition: background .2s; display: block;
}
.btn-get-quote:hover { background: var(--gold-light); }
.btn-whatsapp {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 28px; background: #25D366; color: #fff;
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity .2s;
}
.btn-whatsapp:hover { opacity: .9; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--white); font-weight: 400; margin-bottom: 16px;
}
.contact-info p { font-family: 'EB Garamond', serif; font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; flex-shrink: 0;
}
.contact-detail-text span {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 3px;
}
.contact-detail-text p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.form-box { background: var(--navy-card); border: 1px solid var(--border-dark); padding: 40px 36px; }
.form-box h3 {
  font-family: 'Cinzel', serif; font-size: 18px;
  color: var(--white); font-weight: 400; margin-bottom: 28px; letter-spacing: .5px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: 'Raleway', sans-serif; font-size: 13px;
  padding: 12px 16px;
  background: var(--navy-light); color: var(--white);
  border: 1px solid var(--border-dark);
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--navy-card); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 32px; background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; width: 100%; transition: background .2s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px){
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { min-height: 360px; }
  .split-content { padding: 48px 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img-wrap img { aspect-ratio: 4/3; object-position: center top; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px){
  .section-pad { padding: 64px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 16px 20px; }
  .hero-stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split-content { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .founder-credentials { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .trust-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-pills { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* ── GAP FIXES ── */
.split { align-items: stretch; }
.split-img { min-height: 420px; }
.split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Make split content not create excessive height */
.split-content { padding: 52px 56px; }

/* Founder section - ensure grid rows work */
.founder-grid { gap: 56px; }

/* Remove any accidental min-heights on split */
.split > * { min-height: 0; }
.split-img { min-height: 420px !important; }

/* Hero bg fix for file:// */
.hero { background-color: var(--navy); }
.hero-bg { background-size: cover !important; background-position: center center !important; opacity: 0.3 !important; }

/* Category card improvements */
.cat-card { min-height: 280px; }
.cat-card img { object-position: center center; }
.cat-card[style*="grid-column"] { min-height: 320px; }

/* Product card grid gap */
.products-grid { gap: 20px; }
.product-card-img { min-height: 240px; }

/* Trust grid in export section */
.trust-grid { border: 1px solid var(--border-dark); }

/* Process grid uniform height */
.process-step { min-height: 200px; }

/* Reduce section padding slightly */  
.section-pad { padding: 80px 0; }

/* Founder credentials - ensure icons show */
.cred-item { display: flex; flex-direction: column; }
.cred-item > *:first-child { margin-bottom: 8px; }

/* ══ FINAL GAP ELIMINATION ══ */

/* Split layout - images always fill */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 0;
}
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.split-img img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
}

/* Buttons - fix outline button on dark bg showing wrong color */
.btn-outline {
  border: 1px solid rgba(200,169,110,.6) !important;
  color: var(--gold) !important;
}
.split-content.on-cream .btn-primary {
  background: var(--gold-deep);
  color: var(--white);
}
.split-content.on-cream .btn-primary:hover {
  background: var(--gold);
}

/* Trust grid inside split - fix teal color */
.trust-item {
  background: rgba(255,255,255,.06) !important;
  border: none;
}

/* Category cards */
.cat-card {
  min-height: 260px;
}

/* Remove any orphan spaces between sections */
section + section { margin-top: 0; }
div.section-dark + section { margin-top: 0; }

/* Founder section on cream bg */
.founder-grid .cred-item {
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(154,122,62,.25);
}

/* ══ CATEGORY GRID - NO GAPS FIX ══ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
  margin-top: 48px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  aspect-ratio: unset !important;
  cursor: pointer;
  display: block;
}
.cat-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform .6s ease;
  display: block;
}
.cat-card:hover img { transform: scale(1.06); }

/* Stage card spans cols 1-3 in second row */
.cat-card-stage {
  grid-column: 1 / -1;
  min-height: 300px;
}

/* ── USA VENUES GALLERY ── */
.usa-gallery-img:hover { transform: scale(1.05) !important; }
section a:hover img { transform: scale(1.05); }

/* ── HEADER FIXES ── */
.btn-quote {
  font-family: 'Raleway', sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  padding: 12px 28px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  cursor: pointer !important;
  box-shadow: 0 0 16px rgba(200,169,110,.35) !important;
  transition: all .2s !important;
}
.btn-quote:hover {
  background: transparent !important;
  color: var(--gold) !important;
  box-shadow: 0 0 24px rgba(200,169,110,.5) !important;
}
.header-logo img {
  height: 56px !important;
  width: auto !important;
}
.site-header {
  border-bottom: 1px solid rgba(200,169,110,.2) !important;
}

/* ── FOUNDER CREDENTIALS FIX — visible on cream background ── */
.founder-grid .cred-item {
  background: rgba(154,122,62,.08) !important;
  border: 1px solid rgba(154,122,62,.3) !important;
}
.founder-grid .cred-item span {
  color: var(--text-dark) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}
.founder-grid .cred-item i,
.founder-grid .cred-item .fas {
  color: var(--gold-deep) !important;
  font-size: 18px !important;
}
/* Also fix on about.html which has same section */
.founder-layout .cred-item span {
  color: var(--text-dark) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}
.founder-layout .cred-item i {
  color: var(--gold-deep) !important;
}

/* ============================================================
   MOBILE RESPONSIVENESS — COMPLETE FIX
   ============================================================ */

/* ── TOPBAR ── */
@media(max-width:768px){
  .topbar { display: none; } /* hide on mobile — too cluttered */
}

/* ── HEADER ── */
@media(max-width:1024px){
  .header-inner { height: 60px; }
  .header-logo img { height: 42px !important; }
  .header-actions .btn-quote { display: none; } /* hide on tablet, show in mobile nav */
}
@media(max-width:480px){
  .header-logo img { height: 36px !important; }
}

/* ── MOBILE NAV ── */
.mobile-nav { display: flex; } /* always in DOM, hidden by transform */
@media(max-width:1024px){
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO SLIDESHOW ── */
@media(max-width:768px){
  .hero-slider { height: 100svh; min-height: 560px; max-height: 760px; }
  .hero-content-wrap h1 { font-size: clamp(26px,7vw,42px); }
  .hero-sub { font-size: 16px; margin-bottom: 20px; }
  .hero-pills { display: none; } /* hide pills on small screens */
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas a { text-align: center; padding: 14px 24px; }
  .hero-pretag { margin-bottom: 12px; }
  .hero-stats .container { flex-wrap: wrap; gap: 0; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border-dark); }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-num { font-size: 20px; }
  .hero-dots { bottom: 130px; }
}
@media(max-width:480px){
  .hero-stat { min-width: 50%; padding: 12px 10px; }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-label { font-size: 8px; }
  .hero-slide-caption { display: none; }
}

/* ── SAMPLE ORDER CTA BAR ── */
@media(max-width:768px){
  .container > div[style*="justify-content:space-between"][style*="flex-wrap:wrap"] {
    flex-direction: column;
    text-align: center;
  }
}

/* ── CATEGORY GRID ── */
@media(max-width:900px){
  .cat-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .cat-card-stage { grid-column: auto !important; }
  .cat-card { min-height: 220px; }
}
@media(max-width:560px){
  .cat-grid {
    grid-template-columns: 1fr !important;
  }
  .cat-card { min-height: 200px; }
}

/* ── PRODUCTS GRID ── */
@media(max-width:900px){
  .products-grid { grid-template-columns: repeat(2,1fr) !important; gap: 14px; }
}
@media(max-width:560px){
  .products-grid { grid-template-columns: 1fr !important; }
}

/* ── TRUST GRID ── */
@media(max-width:768px){
  .trust-grid { grid-template-columns: 1fr 1fr !important; }
  .trust-num { font-size: 28px; }
}
@media(max-width:400px){
  .trust-grid { grid-template-columns: 1fr !important; }
}

/* ── SPLIT SECTIONS ── */
@media(max-width:900px){
  .split { grid-template-columns: 1fr !important; direction: ltr !important; }
  .split-img { min-height: 280px !important; }
  .split-content { padding: 36px 24px !important; }
}

/* ── PROCESS GRID ── */
@media(max-width:900px){
  .process-grid { grid-template-columns: repeat(3,1fr) !important; }
}
@media(max-width:600px){
  .process-grid { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:380px){
  .process-grid { grid-template-columns: 1fr !important; }
}

/* ── FOUNDER SECTION ── */
@media(max-width:900px){
  .founder-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .founder-img-wrap img { aspect-ratio: 3/2 !important; }
  .founder-credentials { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:480px){
  .founder-credentials { grid-template-columns: 1fr !important; }
}

/* ── EXPORT GRID ── */
@media(max-width:768px){
  .export-grid { grid-template-columns: 1fr !important; }
  .export-img-big { grid-row: auto !important; min-height: 260px; }
  .export-img-sm { aspect-ratio: 4/3; }
}

/* ── CONTACT FORM ── */
@media(max-width:900px){
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
}
@media(max-width:600px){
  .form-box { padding: 28px 20px !important; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* ── FOOTER ── */
@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
}
@media(max-width:560px){
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ── PRODUCT DETAIL PAGES (new white layout) ── */
@media(max-width:768px){
  .product-wrapper { grid-template-columns: 1fr !important; gap: 24px !important; padding: 0 16px !important; margin: 24px auto !important; }
  .product-image-box { position: static !important; top: auto !important; }
  .product-title { font-size: 22px !important; }
  .cta-row { flex-direction: column !important; }
  .cta-row a { min-width: unset !important; width: 100%; text-align: center; }
  .tag-row { gap: 4px; }
  .specs-table td { padding: 9px 10px !important; font-size: 13px; }
}

/* ── CATEGORY PRODUCT PAGES ── */
@media(max-width:900px){
  .cat-products-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
}
@media(max-width:560px){
  .cat-products-grid { grid-template-columns: 1fr !important; }
  .filter-btn { font-size: 10px !important; padding: 7px 12px !important; }
}

/* ── PRODUCTION FACILITY VIDEOS ── */
@media(max-width:1100px){
  .shorts-grid { grid-template-columns: repeat(3,1fr) !important; }
}
@media(max-width:768px){
  .shorts-grid { grid-template-columns: 1fr 1fr !important; }
  .process-steps { grid-template-columns: repeat(3,1fr) !important; }
}
@media(max-width:500px){
  .shorts-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr 1fr !important; }
  .facility-hero { height: 320px !important; }
  .fstat-num { font-size: 24px !important; }
}

/* ── FACILITY PHOTO GRID ── */
@media(max-width:768px){
  .facility-photo-grid { grid-template-columns: 1fr 1fr !important; }
  .facility-photo-grid .tall { grid-row: auto !important; }
  .facility-stats { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:480px){
  .facility-photo-grid { grid-template-columns: 1fr !important; }
  .facility-stats { grid-template-columns: 1fr 1fr !important; }
}

/* ── CUSTOM ORDERS PAGE ── */
@media(max-width:768px){
  .cform-wrap { padding: 24px 16px !important; }
}

/* ── US EXPORTS PAGE — testimonials grid ── */
@media(max-width:900px){
  div[style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ── LINKEDIN LANDING PAGE ── */
@media(max-width:768px){
  .reasons { grid-template-columns: 1fr !important; }
  .proof-strip { grid-template-columns: 1fr 1fr !important; }
  .lp-hero-content { padding: 60px 0 40px; }
  .lp-headline { font-size: clamp(24px,6vw,36px); }
  .lp-sub { font-size: 17px; }
  .lp-ctas { flex-direction: column; }
  .lp-ctas a { text-align: center; }
  .trust-pills { gap: 6px; }
}
@media(max-width:480px){
  .proof-strip { grid-template-columns: 1fr !important; }
  .lp-flag { font-size: 36px; }
  .concern-list li { flex-direction: column; gap: 8px; }
}

/* ── PAYMENT METHODS GRID ── */
@media(max-width:900px){
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:480px){
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ── IMPORTER FAQ GRID ── */
@media(max-width:768px){
  div[style*="grid-template-columns:1fr 1fr"]:not(.form-row) { grid-template-columns: 1fr !important; }
}

/* ── TESTIMONIAL BOXES ── */
@media(max-width:900px){
  .testimonial-box { margin: 0 !important; }
}

/* ── SECTION PADDING ── */
@media(max-width:768px){
  .section-pad { padding: 56px 0 !important; }
  .section-pad-sm { padding: 40px 0 !important; }
}

/* ── GENERAL TOUCH TARGETS ── */
@media(max-width:768px){
  .btn-primary, .btn-outline, .btn-cta-dark, .btn-cta-outline,
  .btn-get-quote, .btn-whatsapp, .form-submit {
    min-height: 48px;
    font-size: 12px !important;
  }
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 22px; }
}

/* ── OVERFLOW PROTECTION ── */
html, body { overflow-x: hidden; max-width: 100vw; }
* { min-width: 0; }
img { max-width: 100%; height: auto; }
