:root{
  --navy:#163826;
  --navy-dark:#0e2619;
  --gold:#c9a227;
  --gold-dark:#a3821c;
  --ink:#20291f;
  --muted:#5c6b60;
  --header-bg:#0e2619;
  --page-bg:#faf7ee;
  --cream:#f7f2e3;
  --line:#e4ddc9;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{font-family:'Poppins', 'Segoe UI', Roboto, Arial, sans-serif; color:var(--ink); background:var(--page-bg);}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
.container{max-width:1200px; margin:0 auto; padding:0 24px;}

/* HEADER */
header.site-header{
  padding:0; border-bottom:1px solid rgba(201,162,39,.25);
  position:sticky; top:0; background:var(--header-bg); z-index:50;
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 24px;}
.brand{display:flex; align-items:center; gap:10px;}
.brand img.logo-img{border-radius:0; object-fit:contain; width:auto; max-width:220px;}
.brand .logo-mark{
  width:40px; height:40px; border-radius:50%;
  background:radial-gradient(circle, #1d4a32, #0e2619);
  border:1.5px solid var(--gold);
  position:relative; overflow:hidden; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.brand .logo-mark::after{content:"👑"; font-size:16px;}
.brand-text{line-height:1.05;}
.brand-text .name{font-family:'Playfair Display', serif; font-size:20px; font-weight:700; letter-spacing:.5px; color:var(--gold);}
.brand-text .name span{color:#fff;}
.brand-text .sub{font-size:8.5px; letter-spacing:2.5px; color:#a9c4b3; font-weight:600;}

nav.main-nav ul{display:flex; gap:28px; align-items:center;}
nav.main-nav a{font-size:14px; font-weight:500; color:#e9ecea; padding:6px 2px;}
nav.main-nav a.active{color:var(--gold); border-bottom:2px solid var(--gold); padding-bottom:8px;}
.header-right{display:flex; align-items:center; gap:16px;}
.btn-cta{background:transparent; color:#fff; padding:10px 20px; border-radius:6px; font-weight:600; font-size:13.5px; white-space:nowrap; border:1.5px solid var(--gold);}
.hamburger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; z-index:70;}
.hamburger span{width:24px; height:2.5px; background:var(--gold); border-radius:2px;}

.nav-overlay{display:none; position:fixed; inset:0; background:rgba(7,58,54,.4); z-index:59;}
.nav-overlay.open{display:block;}
.mobile-nav{
  display:flex; flex-direction:column; position:fixed; top:0; right:0; bottom:0; width:78%; max-width:300px;
  background:#fff; padding:24px 24px 24px; z-index:60; gap:4px; overflow-y:auto;
  transform:translateX(100%); transition:transform .28s ease; box-shadow:-6px 0 18px rgba(0,0,0,.12);
}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav a{padding:14px 4px; font-size:16px; font-weight:600; color:var(--navy); border-bottom:1px solid var(--line);}
.mobile-nav a.active{color:var(--gold-dark);}

/* HERO — classic banner style (About/Certification/Export Markets inner pages) */
.hero{position:relative; min-height:300px; display:flex; align-items:center; overflow:hidden; color:#fff;
  background-image:url('../img/pchero.png'); background-size:cover; background-position:center center;}
.hero::before{content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(14,38,25,.72) 10%, rgba(14,38,25,.4) 55%, rgba(14,38,25,.25) 80%);}
.hero-content{position:relative; z-index:2; padding:50px 24px; max-width:640px; text-align:left;}
.hero-content h1{font-family:'Playfair Display', serif; font-size:34px; line-height:1.2; font-weight:700; color:#fff; text-align:left;}
.hero-content p{margin-top:12px; font-size:15px; color:#e8efe9; text-align:left;}
@media(max-width:700px){
  .hero{min-height:200px; background-image:url('../img/mobhero.png');}
  .hero-content{padding:24px 30px;}
  .hero-content h1{font-size:22px;}
  .hero-content p{font-size:12px;}
}

/* HOME HERO — full-bleed photo, text overlay only (gold accent words) */
.home-hero{
  position:relative; min-height:460px; display:flex; align-items:center; overflow:hidden; color:#fff;
  background-image:url('../img/pchero.png'); background-size:cover; background-position:center center;
}
.home-hero::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(14,38,25,.78) 15%, rgba(14,38,25,.4) 55%, rgba(14,38,25,.12) 85%);
}
.hero-text{position:relative; z-index:2; padding:50px 24px; max-width:600px; text-align:left;}
.hero-text h1{font-family:'Playfair Display', serif; font-size:42px; line-height:1.22; font-weight:700; color:#fff;}
.hero-text h1 .accent{color:var(--gold);}
.hero-text p{margin-top:16px; font-size:15px; color:#eef2ec; max-width:440px; line-height:1.6;}
.hero-actions{display:flex; align-items:center; gap:20px; margin-top:26px; flex-wrap:wrap;}
.btn-gold{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#1c2417; font-weight:700; padding:14px 24px; border-radius:6px; font-size:14px;
}

@media(max-width:700px){
  .home-hero{min-height:280px; align-items:flex-start; background-image:url('../img/mobhero.png');}
  .hero-text{text-align:center; margin:0 auto; padding:30px 24px; max-width:100%;}
  .hero-text h1{font-size:24px;}
  .hero-text p{font-size:12.5px; margin-left:auto; margin-right:auto;}
  .hero-actions{justify-content:center;}
}

.hero-sm{min-height:260px;}
@media(max-width:700px){
  .hero-sm{min-height:180px; align-items:flex-start;}
  .hero-sm .hero-content{padding-top:26px;}
  .hero-sm .hero-content p{margin-top:4px;}
}

/* PAGE HEADER (inner pages) */
.page-head{background:var(--navy); color:#fff; padding:44px 0; text-align:center;}
.page-head h1{font-size:28px; font-weight:800;}
.page-head .crumb{margin-top:8px; font-size:13px; color:#bfe0da;}

/* SECTION ROW (title + View All link) */
.section-row{display:flex; align-items:center; justify-content:space-between; margin:60px 0 6px;}
.section-row h2{font-family:'Playfair Display', serif; font-size:26px; font-weight:700; color:var(--navy);}
.section-row .view-all, .view-all{font-size:13px; font-weight:700; color:var(--gold-dark); white-space:nowrap;}
.section-eyebrow{text-align:center; color:var(--gold-dark); font-size:12.5px; font-weight:700; letter-spacing:3px; margin:60px 0 8px;}
.section-heading{text-align:center; font-family:'Playfair Display', serif; font-size:30px; font-weight:700; color:var(--navy); margin-bottom:10px;}
.section-divider{display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:10px;}
.section-divider::before, .section-divider::after{content:""; height:1px; width:60px; background:var(--line);}
.section-divider span{color:var(--gold); font-size:13px;}

/* SECTION TITLES */
.section-title{text-align:center; margin:50px 0 28px; display:flex; align-items:center; justify-content:center; gap:16px;}
.section-title span{font-size:13px; font-weight:800; letter-spacing:2.5px; color:var(--navy);}
.section-title::before, .section-title::after{content:""; height:1px; width:70px; background:var(--gold);}

/* HOMEPAGE PRODUCT GRID (v2 — matches reference design) */
.product-grid-v2{display:grid; grid-template-columns:repeat(auto-fill, minmax(270px,1fr)); gap:26px; margin-top:10px;}
.prod-card-v2{background:#fff; border:1.5px solid #ddd6bf; border-radius:14px; overflow:hidden; box-shadow:0 6px 18px rgba(14,38,25,.06); transition:transform .2s ease, box-shadow .2s ease;}
.prod-card-v2:hover{transform:translateY(-5px); box-shadow:0 16px 32px rgba(14,38,25,.14);}
.prod-card-v2 .thumb{height:160px; overflow:hidden; background:linear-gradient(135deg,#eef2ea,#f7f5ea);}
.prod-card-v2 .thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.prod-card-v2 .body{padding:16px 18px 18px;}
.prod-card-v2 h3{font-size:16px; color:var(--navy); font-weight:700; margin-bottom:12px;}
.prod-card-v2 .book-btn{
  display:block; text-align:center; background:var(--navy); color:#fff; font-weight:600;
  padding:11px; border-radius:6px; font-size:13.5px; transition:background .2s ease;
}
.prod-card-v2 .book-btn:hover{background:var(--gold-dark);}

/* FEATURE STRIP (bottom dark band) */
.feature-strip{background:var(--navy-dark); padding:44px 0; margin-top:70px;}
.feature-strip .container{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.feature-strip-item{
  background:rgba(255,255,255,.06); border:1px solid rgba(201,162,39,.25); border-radius:12px;
  padding:20px 18px; display:flex; flex-direction:column; align-items:flex-start; gap:10px; color:#fff;
  transition:background .2s ease;
}
.feature-strip-item:hover{background:rgba(255,255,255,.1);}
.feature-strip-item .ic{
  width:42px; height:42px; border-radius:50%; background:rgba(201,162,39,.15);
  display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--gold);
}
.feature-strip-item h4{font-size:14.5px; font-weight:700;}
.feature-strip-item p{font-size:12px; color:#c7d6cb; line-height:1.4;}
@media(max-width:900px){
  .feature-strip .container{grid-template-columns:1fr 1fr;}
  .product-grid-v2{grid-template-columns:1fr;}
}

/* GRID CARDS (product listing pages) */
.grid-cats{display:grid; grid-template-columns:repeat(auto-fill, minmax(150px,1fr)); gap:16px; margin-top:10px;}

/* PRODUCT CARDS (products.php listing) */
.product-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(230px,1fr)); gap:22px; margin:24px 0 60px;}
.product-card{border:1.5px solid #d8e6e2; border-radius:10px; overflow:hidden; background:#fff; box-shadow:0 2px 8px rgba(11,79,74,.08); display:flex; flex-direction:column; transition:transform .18s ease, box-shadow .18s ease;}
.product-card:hover{transform:translateY(-4px); box-shadow:0 10px 22px rgba(11,79,74,.16);}
.product-card .thumb{height:150px; overflow:hidden; background:linear-gradient(135deg,#e2f0ed,#f2f9f7);}
.product-card .thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.product-card .body{padding:16px; display:flex; flex-direction:column; gap:8px; flex:1;}
.product-card h3{font-size:16px; color:var(--navy);}
.product-card .origin{font-size:12.5px; color:var(--muted);}
.product-card .desc{font-size:13px; color:var(--muted); line-height:1.45; flex:1;}
.product-card .btn-detail{margin-top:auto; text-align:center; background:var(--navy); color:#fff; padding:10px; border-radius:6px; font-weight:700; font-size:13.5px;}

/* PRODUCTS SEARCH BAR */
.products-search{display:flex; gap:10px; margin:30px 0 6px; max-width:480px;}
.products-search input{flex:1; padding:12px 14px; border:1.5px solid #d8e6e2; border-radius:6px; font-size:14px;}
.products-search button{background:var(--navy); color:#fff; padding:12px 22px; border-radius:6px; font-weight:700; font-size:14px; border:none; cursor:pointer;}

/* PRODUCT DETAIL PAGE */
.detail-wrap{display:grid; grid-template-columns:1fr 1fr; gap:40px; margin:40px 0 60px;}
.detail-wrap-single{grid-template-columns:1fr 1fr;}
.detail-img{border-radius:10px; overflow:hidden; border:1.5px solid #d8e6e2; background:#e2f0ed; min-height:320px; background-size:cover; background-position:center;}
.detail-card{border:1.5px solid #d8e6e2; border-radius:10px; padding:26px; background:#fff; box-shadow:0 2px 8px rgba(11,79,74,.06);}
.detail-card h1{font-size:26px; color:var(--navy); margin-bottom:6px;}
.detail-card .cat-pill{display:inline-block; background:var(--header-bg); color:var(--navy); font-size:12px; font-weight:700; padding:4px 12px; border-radius:20px; margin-bottom:14px;}
.detail-row{display:flex; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); font-size:14px;}
.detail-row .k{width:130px; color:var(--muted); font-weight:600; flex-shrink:0;}
.detail-row .v{color:var(--ink);}
.detail-desc{margin:16px 0; font-size:14px; line-height:1.6; color:var(--ink);}
.btn-book{display:inline-block; margin-top:10px; background:var(--gold); color:#fff; font-weight:700; padding:13px 28px; border-radius:6px; font-size:14.5px; border:none; cursor:pointer;}

/* BOOKING FORM PAGE */
.form-card{max-width:560px; margin:40px auto 60px; border:1.5px solid #d8e6e2; border-radius:10px; padding:30px; background:#fff; box-shadow:0 2px 8px rgba(11,79,74,.06);}
.form-card h2{color:var(--navy); font-size:20px; margin-bottom:4px;}
.form-card .sub{color:var(--muted); font-size:13.5px; margin-bottom:20px;}
.form-group{margin-bottom:16px;}
.form-group label{display:block; font-size:13.5px; font-weight:600; color:var(--navy); margin-bottom:6px;}
.form-group input, .form-group textarea, .form-group select{
  width:100%; padding:11px 13px; border:1.5px solid #d8e6e2; border-radius:6px; font-size:14px; font-family:inherit;
}
.form-group textarea{min-height:90px; resize:vertical;}
.btn-submit{width:100%; background:var(--gold); color:#fff; font-weight:700; padding:13px; border-radius:6px; font-size:14.5px; border:none; cursor:pointer;}

/* WHY CHOOSE US */
.why{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin:40px 0 60px;}
.why-item{
  background:#fff; border:1.5px solid #d8e6e2; border-radius:12px; padding:26px 20px;
  text-align:center; box-shadow:0 3px 10px rgba(11,79,74,.06);
  border-top:3px solid var(--gold); transition:transform .18s ease, box-shadow .18s ease;
}
.why-item:hover{transform:translateY(-5px); box-shadow:0 10px 24px rgba(11,79,74,.14);}
.why-icon{
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), #157f74);
  color:var(--gold); display:flex; align-items:center; justify-content:center;
  font-size:24px; margin:0 auto 16px;
}
.why-item h4{font-size:15.5px; color:var(--navy); margin-bottom:6px; font-weight:800;}
.why-item p{font-size:13px; color:var(--muted); line-height:1.5;}

/* GENERIC CONTENT PAGE */
.content-page{max-width:850px; margin:40px auto 60px; font-size:15px; line-height:1.75; color:var(--ink);}
.content-page h2{color:var(--navy); font-size:20px; margin:24px 0 10px;}

/* ABOUT PAGE */
.about-wrap{display:grid; grid-template-columns:1.4fr 1fr; gap:40px; align-items:start; margin-bottom:40px;}
.about-story .content-page{font-size:14.5px; line-height:1.8; color:var(--muted); margin:0;}
.story-card{
  background:#fff; border:1px solid #d8e6e2; border-radius:12px; padding:28px;
  box-shadow:0 3px 12px rgba(11,79,74,.08); border-top:3px solid var(--gold);
}
.about-cards{display:flex; flex-direction:column; gap:16px; margin-top:44px;}
.about-card{background:#fff; border:1px solid #d8e6e2; border-left:4px solid var(--gold); border-radius:10px; padding:20px; box-shadow:0 3px 10px rgba(11,79,74,.06);}
.about-card .ic{font-size:26px; margin-bottom:8px;}
.about-card h4{color:var(--navy); font-size:15.5px; margin-bottom:6px;}
.about-card p{font-size:13px; color:var(--muted); line-height:1.55;}
.stat-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:0 0 60px; background:var(--navy); border-radius:12px; padding:30px 20px;}
.stat-strip-item{text-align:center; color:#fff;}
.stat-strip-item .n{font-size:26px; font-weight:800; color:var(--gold);}
.stat-strip-item .l{font-size:12.5px; color:#cdeae4; margin-top:4px;}

/* CERTIFICATES */
.cert-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); gap:20px; margin:24px 0 60px;}
.cert-card{background:#fff; border:1px solid #d8e6e2; border-top:3px solid var(--gold); border-radius:10px; overflow:hidden; box-shadow:0 3px 10px rgba(11,79,74,.08); transition:transform .18s ease;}
.cert-card:hover{transform:translateY(-4px);}
.cert-card .thumb{height:160px; background:linear-gradient(135deg,#e2f0ed,#f2f9f7); display:flex; align-items:center; justify-content:center; overflow:hidden;}
.cert-card .thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.cert-placeholder{font-size:40px; opacity:.4;}
.cert-card .body{padding:16px;}
.cert-card h4{color:var(--navy); font-size:15px; margin-bottom:4px;}
.cert-card p{font-size:12.5px; color:var(--muted); line-height:1.5;}

/* EXPORT MARKETS */
.country-row{display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin:26px 0 60px;}
.country-card{
  display:flex; align-items:center; gap:12px; background:#fff; border:1px solid #d8e6e2; border-top:3px solid var(--gold);
  border-radius:12px; padding:14px 22px 14px 14px; min-width:170px;
  box-shadow:0 4px 14px rgba(11,79,74,.09); transition:transform .18s ease, box-shadow .18s ease;
}
.country-card:hover{transform:translateY(-4px); box-shadow:0 10px 24px rgba(11,79,74,.17);}
.flag-badge{
  width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,#eaf6f3,#dcece8);
  display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0;
  box-shadow:inset 0 0 0 1px rgba(11,79,74,.1);
}
.country-name{font-weight:700; color:var(--navy); font-size:14.5px;}

/* FOOTER */
footer.site-footer{background:var(--navy-dark); color:#dcece8; padding:50px 0 0; margin-top:20px;}
.footer-grid{display:grid; grid-template-columns:1fr 1fr 1.3fr; gap:40px; padding-bottom:36px;}
footer h3{color:#fff; font-size:17px; margin-bottom:18px;}
.footer-contact li{display:flex; gap:10px; align-items:center; margin-bottom:14px; font-size:14px;}
.flags{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px;}
.flag{padding:5px 10px; border-radius:3px; background:#1d4a32; font-size:11px; color:#fff;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px;}
.form-grid input, footer textarea{width:100%; padding:12px 14px; border-radius:5px; border:none; background:#1d4a32; color:#fff; font-size:13.5px; font-family:inherit;}
footer textarea{width:100%; min-height:80px; margin-bottom:14px; resize:vertical;}
.form-grid input::placeholder, footer textarea::placeholder{color:#a9d2cb;}
.btn-send{background:var(--gold); color:#fff; font-weight:700; padding:13px; border-radius:5px; width:100%; text-align:center; border:none; font-size:14px; cursor:pointer;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1); padding:16px 0; font-size:12.5px; display:flex; justify-content:space-between; color:#a9d2cb;}
.footer-bottom a{margin-left:16px; color:#a9d2cb;}

.alert{padding:12px 16px; border-radius:6px; margin:16px 0; font-size:14px;}
.alert-success{background:#e4f7ec; color:#1e7e42; border:1px solid #b7e6c9;}
.alert-error{background:#fdeceb; color:#b02a25; border:1px solid #f3c1bd;}

@media(max-width:900px){
  nav.main-nav{display:none;}
  .header-right .btn-cta{display:none;}
  .hamburger{display:flex;}
  .grid-cats{grid-template-columns:repeat(3,1fr);}
  .product-grid{grid-template-columns:repeat(auto-fill, minmax(160px,1fr));}
  .why{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .detail-wrap{grid-template-columns:1fr;}
  .about-wrap{grid-template-columns:1fr;}
  .stat-strip{grid-template-columns:1fr 1fr;}
  .hero h1{font-size:30px;}
}
