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

:root{
  --blue:#075CBF;
  --blue-dark:#064B99;
  --green:#4B8F16;
  --green-dark:#176B2C;
  --gold:#F2B400;
  --gold-dark:#D99A00;
  --cream:#F7FAF4;
  --text:#242424;
  --muted:#66706A;
  --white:#FFFFFF;
  --line:#E2E7E1;
}

html{scroll-behavior:smooth}
body{font-family:"DM Sans",Arial,sans-serif;color:var(--text);line-height:1.7;background:#fff}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,92%);margin:auto}

/* ================= HEADER ================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid #E8ECE8;
  box-shadow:0 2px 16px rgba(0,0,0,.05);
}

.nav-wrap{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Uses the actual supplied Vanick Foods logo */
.brand{
  display:block;
  width:300px;
  height:76px;
  flex:0 0 300px;
  background:url("images/logo.png") left center/contain no-repeat;
}

.brand-mark,.brand strong,.brand small{display:none}

.nav{
  display:flex;
  align-items:center;
  gap:29px;
  font-size:13px;
  font-weight:600;
}

.nav a{
  color:#26352B;
  transition:.2s;
}

.nav a:hover{color:var(--blue)}

.nav-cta{
  padding:12px 21px;
  background:var(--blue);
  color:#fff!important;
  border-radius:5px;
  box-shadow:0 5px 14px rgba(7,92,191,.18);
}

.nav-cta:hover{
  background:var(--green-dark)!important;
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  border:0;
  background:none;
  font-size:26px;
  color:var(--blue);
  cursor:pointer;
}

/* ================= HERO ================= */

.hero{
  min-height:720px;
  display:flex;
  align-items:center;
  position:relative;
  background-image:url("images/hero.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(5,35,20,.90) 0%,
    rgba(5,35,20,.72) 38%,
    rgba(5,35,20,.25) 72%,
    rgba(5,35,20,.08) 100%
  );
}

.hero-content{
  position:relative;
  color:#fff;
  padding-top:92px;
  max-width:850px;
  margin-left:max(4%,calc((100% - 1160px)/2));
}

.eyebrow{
  font-size:11px;
  letter-spacing:2.4px;
  font-weight:700;
  color:var(--gold);
  margin-bottom:14px;
}

.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(42px,6vw,72px);
  line-height:1.07;
  max-width:780px;
  margin-bottom:22px;
}

.hero p{
  font-size:18px;
  max-width:650px;
  color:#F0F5F1;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:14px 24px;
  border-radius:5px;
  font-size:13px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s;
}

.btn-primary{
  background:var(--gold);
  color:#15351F;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#FFC52D;
}

.btn-light{
  border-color:rgba(255,255,255,.75);
  color:#fff;
}

.btn-light:hover{
  background:#fff;
  color:var(--blue);
}

.hero-trust{
  display:flex;
  gap:32px;
  margin-top:65px;
  flex-wrap:wrap;
  color:#DCE8DF;
  font-size:11px;
  letter-spacing:.6px;
}

.hero-trust b{
  display:block;
  color:#fff;
  font-size:17px;
  letter-spacing:0;
}

/* ================= STATS ================= */

.stats{
  background:linear-gradient(90deg,var(--blue-dark),var(--blue));
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:30px 0;
}

.stats-grid div{
  padding:0 24px;
  border-right:1px solid rgba(255,255,255,.22);
}

.stats-grid div:first-child{padding-left:0}
.stats-grid div:last-child{border:0}

.stats-grid strong{
  display:block;
  font-family:"Playfair Display",Georgia,serif;
  font-size:28px;
  color:#FFD04A;
}

.stats-grid span{
  font-size:11px;
  color:#E1ECF8;
}

/* ================= GENERAL SECTIONS ================= */

.section{padding:105px 0}
.section-soft{background:var(--cream)}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.split.reverse{grid-template-columns:1fr 1fr}

.section-image,.trade-image{
  min-height:550px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border-radius:5px;
}

.image-about{background-image:url("images/about.jpg")}

.section-copy h2,
.section-heading h2,
.contact-grid h2,
.cta-box h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(34px,4vw,52px);
  line-height:1.15;
  color:var(--green-dark);
  margin-bottom:20px;
}

.section-copy p,
.section-heading p,
.contact-grid>div>p{
  color:var(--muted);
  margin-bottom:18px;
  font-size:15px;
}

.feature-list{margin-top:30px}

.feature-list>div{
  display:flex;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.feature-list span{
  color:var(--blue);
  font-weight:700;
}

.feature-list b,.feature-list small{display:block}
.feature-list small{
  color:var(--muted);
  font-size:12px;
  margin-top:3px;
}

.section-heading{
  max-width:700px;
  margin-bottom:48px;
}

.centered{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

/* ================= PRODUCTS ================= */

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

.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--green);
  transition:.25s;
  overflow:hidden;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(7,92,191,.10);
}

.product-image{
  height:270px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.oil{background-image:url("images/oil.jpg")}
.produce{background-image:url("images/produce.jpg")}
.spices{background-image:url("images/spices.jpg")}

.product-body{padding:25px}

.number{
  color:var(--gold-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
}

.product-body h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
  color:var(--blue);
  margin:8px 0;
}

.product-body p{
  font-size:13px;
  color:var(--muted);
}

/* ================= IMPORT & TRADING ================= */

.trade-section{background:#F8FBF7}

.trade-image{
  background-image:url("images/shipping.jpg");
}

.trade-points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:28px 0;
}

.trade-points span{
  font-size:11px;
  padding:8px 12px;
  border:1px solid #D8E1D9;
  color:var(--green-dark);
  background:#fff;
  border-radius:3px;
}

.text-link{
  font-weight:700;
  font-size:13px;
  color:var(--blue);
  border-bottom:2px solid var(--gold);
  padding-bottom:5px;
}

/* ================= COMPLIANCE ================= */

.compliance{
  background:linear-gradient(135deg,#064887,#075CBF);
  color:#fff;
}

.compliance .section-heading h2{color:#fff}
.compliance .section-heading p{color:#DCE9F7}

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

.compliance-card{
  padding:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:5px;
}

.icon{
  width:44px;
  height:44px;
  border:1px solid var(--gold);
  color:#FFD04A;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  font-weight:700;
  border-radius:50%;
}

.compliance-card h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:23px;
  margin-bottom:10px;
}

.compliance-card p{
  color:#DCE9F7;
  font-size:13px;
}

.license-box{
  margin-top:45px;
  padding:34px;
  background:#063B72;
  border:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
  border-radius:5px;
}

.license-box h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:32px;
  color:#fff;
}

.license-box p{
  font-size:12px;
  color:#C9DCEC;
}

.license-details{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:300px;
}

.license-details span{
  font-size:12px;
  color:#DCE9F7;
}

.license-details b{
  color:#FFD04A;
  margin-right:8px;
}

/* ================= CTA ================= */

.cta-section{
  padding:65px 0;
  background:var(--cream);
}

.cta-box{
  background:#fff;
  padding:45px 55px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  border-left:5px solid var(--blue);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cta-box h2{
  font-size:38px;
  margin-bottom:8px;
}

.cta-box p{
  color:var(--muted);
  font-size:14px;
}

/* ================= CONTACT ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.contact-info{margin-top:35px}

.contact-info>div{
  padding:17px 0;
  border-bottom:1px solid var(--line);
}

.contact-info span{
  display:block;
  color:var(--blue);
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
}

.contact-info a{
  color:var(--green-dark);
  font-weight:700;
}

.contact-info p{
  font-size:13px;
  color:var(--muted);
  max-width:500px;
  margin-top:5px;
}

.contact-form{
  background:var(--cream);
  padding:35px;
  border-top:4px solid var(--gold);
}

.contact-form h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:28px;
  color:var(--green-dark);
  margin-bottom:22px;
}

.contact-form label{
  display:block;
  font-size:11px;
  font-weight:700;
  color:var(--green-dark);
  margin-bottom:14px;
}

.contact-form input,
.contact-form textarea{
  display:block;
  width:100%;
  border:1px solid #D9E0D9;
  background:#fff;
  padding:13px;
  margin-top:6px;
  font:inherit;
  font-size:13px;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--blue);
}

.contact-form textarea{resize:vertical}
.contact-form .btn{border:0;width:100%;margin-top:5px}

.form-note{
  font-size:10px!important;
  color:#8B918D;
  margin-top:12px;
}

/* ================= FOOTER ================= */

.footer{
  background:#063E7C;
  color:#D9E7F4;
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:60px;
  padding-bottom:45px;
}

.footer-brand{
  display:block;
  width:270px;
  height:70px;
  background:url("images/logo.png") left center/contain no-repeat;
  filter:brightness(0) invert(1);
}

.footer-grid p{
  font-size:12px;
  color:#C1D3E3;
  margin-top:18px;
}

.footer-grid h4{
  color:#FFD04A;
  font-size:11px;
  letter-spacing:2px;
  margin-bottom:15px;
}

.footer-grid>div:not(:first-child) a,
.footer-grid>div:not(:first-child) span{
  display:block;
  font-size:12px;
  margin:7px 0;
  color:#D9E7F4;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
  color:#B7CCDE;
  font-size:10px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .nav{gap:15px}
  .split,.split.reverse{gap:45px}
  .product-grid{grid-template-columns:1fr 1fr}
  .contact-grid{gap:40px}
  .hero{min-height:650px}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .stats-grid div:nth-child(2){border:0}
  .stats-grid div{padding:10px 15px}
  .brand{width:250px;flex-basis:250px}
}

@media(max-width:720px){
  .nav-wrap{height:78px}
  .brand{width:235px;height:62px;flex-basis:235px}
  .menu-toggle{display:block}

  .nav{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fff;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 15px 25px rgba(0,0,0,.08);
  }

  .nav.open{display:flex}
  .nav-cta{width:100%;text-align:center}

  .hero-content{
    margin:auto;
    padding-top:80px;
  }

  .hero h1{font-size:43px}
  .hero-trust{margin-top:38px;gap:18px}

  .section{padding:75px 0}

  .split,.split.reverse,.contact-grid{
    grid-template-columns:1fr;
  }

  .section-image,.trade-image{min-height:390px}

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

  .license-box,.cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
  }

  .license-details{min-width:0}

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

  .footer-grid>div:first-child{grid-column:1/-1}
}

@media(max-width:480px){
  .brand{width:205px;height:56px;flex-basis:205px}
  .hero h1{font-size:37px}
  .hero p{font-size:15px}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stats-grid strong{font-size:23px}
  .footer-grid{grid-template-columns:1fr}
  .footer-grid>div:first-child{grid-column:auto}
}
