/* =========================================================
   Core Wholesale — Global Stylesheet
   Brand: Navy #1a3c6e | Black #111111 | Gold #c9970f
   ========================================================= */

:root {
  --navy:        #1a3c6e;
  --navy-dark:   #0f2545;
  --navy-mid:    #254e8a;
  --navy-light:  #dce8f5;
  --navy-bg:     #f0f5fb;
  --gold:        #c9970f;
  --gold-dark:   #a07a0a;
  --gold-light:  #fdf3d0;
  --black:       #111111;
  --charcoal:    #1e2329;
  --mid-grey:    #58626e;
  --light-grey:  #f4f7fb;
  --white:       #ffffff;
  --border:      #d4dde9;
  --radius:      10px;
  --shadow:      0 4px 18px rgba(0,0,0,0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,37,69,.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,122,10,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 50px;
  width: auto;
  /* white bg logo — add slight bg so it pops on dark nav */
  border-radius: 6px;
  padding: 3px 6px;
  background: rgba(255,255,255,0.95);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  margin-left: 8px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 96px 24px 84px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,60,110,.45) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,151,15,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,15,.12);
  border: 1px solid rgba(201,151,15,.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.06);
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--gold);
  color: var(--black);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  letter-spacing: -.02em;
}
.stat-item .lbl {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,151,15,.2);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 560px;
  margin: 0 auto;
}

/* ── PRODUCT ICON (no-image placeholder) ────────────────── */
.prod-icon {
  width: 90px; height: 90px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  opacity: .85;
}

/* ── PRODUCT GRID ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  border-color: var(--navy-light);
}
.product-card-img {
  background: var(--navy-bg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.product-card-img img {
  height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.product-card-body {
  padding: 20px 22px 24px;
}
.product-card-body .tag {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid rgba(201,151,15,.2);
}
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 14px;
  line-height: 1.6;
}
.product-card-body .price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.product-card-body .price s {
  color: var(--mid-grey);
  font-weight: 400;
  font-size: 0.83rem;
  margin-right: 6px;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
}
.why-icon {
  width: 58px; height: 58px;
  background: var(--navy-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  border: 1px solid var(--border);
}
.why-card h3 { margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: 0.9rem; color: var(--mid-grey); }

/* ── DELIVERY AREAS ──────────────────────────────────────── */
.delivery-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.delivery-banner h2 { color: var(--white); margin-bottom: 10px; }
.delivery-banner p { color: rgba(255,255,255,.7); max-width: 480px; }

.delivery-map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  margin-bottom: 48px;
}
.delivery-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.zone-card {
  background: var(--navy-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
}
.zone-card .zone-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.zone-card .zone-day {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: .05em; }
.testi-text {
  font-size: 0.93rem;
  color: var(--mid-grey);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.75;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testi-author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.testi-author-info .biz { font-size: 0.8rem; color: var(--mid-grey); }

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  border: 1px solid var(--border);
}
.about-text .tag {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(201,151,15,.2);
}
.about-text h2 { margin-bottom: 18px; }
.about-text p {
  color: var(--mid-grey);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.values-list {
  list-style: none;
  margin: 22px 0 32px;
}
.values-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border);
}
.values-list li:last-child { border-bottom: none; }
.values-list li::before {
  content: '✓';
  background: var(--gold);
  color: var(--white);
  min-width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--mid-grey); margin-bottom: 32px; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail .label {
  font-size: 0.75rem;
  color: var(--mid-grey);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.contact-detail .value { font-weight: 600; font-size: 0.95rem; }
.contact-detail .value a { color: var(--navy); }
.contact-detail .value a:hover { color: var(--gold-dark); text-decoration: underline; }
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle, rgba(26,60,110,.5) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,151,15,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #0a0c10;
  color: rgba(255,255,255,.55);
  padding: 60px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 54px;
  margin-bottom: 18px;
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.9);
}
.footer-brand p { font-size: 0.86rem; line-height: 1.75; max-width: 240px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-bottom: 22px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,60,110,.4) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .tag {
  display: inline-block;
  background: rgba(201,151,15,.15);
  border: 1px solid rgba(201,151,15,.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 600px; line-height: 1.75; }

/* ── BG VARIANTS ─────────────────────────────────────────── */
.bg-light { background: var(--light-grey); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--black); }
.bg-navy  { background: var(--navy); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-split img { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 28px; }
  .delivery-banner { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

