/* ========== TOKENS ========== */
:root {
  --navy:    #1A2640;
  --gold:    #C9A84C;
  --gold-lt: #E8D5A3;
  --cream:   #F7F4EE;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --dark:    #111827;
  --border:  #E5DDD0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== LOGO ========== */
.logo-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text-main { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; line-height: 1.1; }
.logo-text-sub  { font-family: var(--font-body); font-size: 0.6rem; font-weight: 500; color: var(--gold-lt); letter-spacing: 0.18em; text-transform: uppercase; }

/* ========== NAV ========== */
header { position: sticky; top: 0; z-index: 100; background: var(--navy); box-shadow: 0 2px 16px rgba(0,0,0,.18); }
nav { max-width: 1280px; margin: auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > span {
  display: block; padding: 0 1rem; height: 70px; line-height: 70px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); cursor: pointer; white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li.active > a { color: var(--gold); background: rgba(255,255,255,.04); }
.dropdown { position: absolute; top: 70px; left: 0; min-width: 200px; background: var(--navy); border-top: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .2s, transform .2s; z-index: 200; }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: .75rem 1.25rem; font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,.8); letter-spacing: 0.04em; transition: color .15s, padding-left .15s; }
.dropdown a:hover { color: var(--gold); padding-left: 1.6rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ========== SECTION COMMON ========== */
section { padding: 5rem 2rem; }
.container { max-width: 1280px; margin: auto; }
.section-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem; }
.section-lead { font-size: 1.05rem; color: var(--gray); max-width: 620px; }
.divider { width: 52px; height: 3px; background: var(--gold); margin: 1.2rem 0 2rem; }

/* ========== PAGE HERO ========== */
.page-hero { background: var(--navy); padding: 5rem 2rem 4rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin-top: .75rem; font-size: 1rem; }
.page-hero .breadcrumb { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

/* ========== BUTTONS ========== */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: .2s; border: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #e0ba5e; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #243348; }

/* ========== CARDS ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--cream); border-bottom: 3px solid var(--border); padding: 2rem 1.75rem; transition: .25s; }
.service-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.2rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--gray); }

/* ========== WHY SECTION ========== */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-card { border: 1px solid rgba(201,168,76,.25); padding: 1.75rem; }
.why-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: .5; margin-bottom: .5rem; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ========== CTA BAND ========== */
.cta-band { background: var(--gold); padding: 3.5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.cta-band p { color: rgba(26,38,64,.75); max-width: 520px; margin: 0 auto 2rem; }

/* ========== TWO COL ========== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { margin-bottom: 1.1rem; color: var(--gray); font-size: .96rem; }
.about-text strong { color: var(--navy); }

/* ========== FOUNDER ========== */
.founder-card { background: var(--cream); padding: 2.5rem; border-left: 4px solid var(--gold); }
.founder-card .name { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: .25rem; }
.founder-card .title { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.founder-card p { font-size: .92rem; color: var(--gray); }

/* ========== VALUES ========== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-item { padding: 1.5rem; border: 1px solid var(--border); }
.value-item h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.value-item p { font-size: .88rem; color: var(--gray); }

/* ========== CHECKLIST ========== */
.checklist { list-style: none; margin-top: 1.5rem; }
.checklist li { padding: .55rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .75rem; font-size: .93rem; color: var(--gray); }
.checklist li::before { content: '✦'; color: var(--gold); font-size: .7rem; margin-top: .2rem; flex-shrink: 0; }

/* ========== STEPS ========== */
.partner-steps { margin-top: 2rem; }
.step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.step-num { background: var(--gold); color: var(--navy); font-weight: 700; font-size: .9rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h3 { font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.step-body p { font-size: .9rem; color: var(--gray); }

/* ========== TESTIMONIALS ========== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.testimonial { background: var(--cream); padding: 2rem; position: relative; }
.testimonial::before { content: '"'; position: absolute; top: .5rem; right: 1.25rem; font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: .25; line-height: 1; }
.testimonial p { font-size: .95rem; color: var(--gray); font-style: italic; margin-bottom: 1rem; }
.testimonial .author { font-weight: 600; color: var(--navy); font-size: .85rem; }
.testimonial .role { font-size: .78rem; color: var(--gold); }

/* ========== INDUSTRIES ========== */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.industry-tag { padding: .85rem 1.25rem; background: var(--cream); border: 1px solid var(--border); font-size: .85rem; font-weight: 500; color: var(--navy); text-align: center; }

/* ========== FORM ========== */
.get-started-form { background: var(--cream); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); background: var(--white); font-family: var(--font-body); font-size: .93rem; color: var(--dark); outline: none; transition: border .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ========== PRODUCTS ========== */
.product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.product-cat { background: var(--navy); padding: 2.5rem 2rem; transition: .25s; }
.product-cat:hover { transform: translateY(-4px); }
.product-cat h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: .6rem; }
.product-cat p { font-size: .88rem; color: rgba(255,255,255,.65); }
.product-cat .cat-icon { font-size: 2.2rem; margin-bottom: 1rem; }

/* ========== SOURCING REGIONS ========== */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2rem; }
.region { background: var(--white); border: 1px solid var(--border); padding: 1.25rem; }
.region .flag { font-size: 1.6rem; margin-bottom: .5rem; }
.region h4 { font-size: .9rem; font-weight: 600; color: var(--navy); }
.region p { font-size: .78rem; color: var(--gray); }

/* ========== NEWS ========== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.news-card { border: 1px solid var(--border); }
.news-card-img { height: 180px; background: linear-gradient(135deg, var(--navy), #2a4a6b); display: flex; align-items: center; justify-content: center; }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.news-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.news-card p { font-size: .88rem; color: var(--gray); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon { width: 44px; height: 44px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.contact-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-val { font-size: .95rem; color: var(--navy); font-weight: 500; }

/* ========== FOOTER ========== */
footer { background: #0d1a2b; padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1280px; margin: auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
footer p, footer li { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }
footer h4 { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .4rem; }
footer ul li a { color: rgba(255,255,255,.55); transition: color .2s; }
footer ul li a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: 1280px; margin: auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1rem 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > span { height: auto; line-height: 1; padding: .9rem 1.5rem; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--gold); margin-left: 1.5rem; }
  .hamburger { display: flex; }
  nav { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
}
