
:root{
  --green-900:#06301a;
  --green-800:#0a4a26;
  --green-700:#24773c;
  --green-600:#2f9149;
  --green-100:#e7f2e6;
  --orange-600:#f38c23;
  --orange-500:#f7a94f;
  --black:#0a0a0a;
  --cream:#faf8f2;
  --ink:#12160f;
  --ink-soft:#4a5245;
  --line:#dfe3d6;
  --white:#ffffff;

  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--line);
  --nav-bg: rgba(10,10,10,0.92);
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0d1310;
    --surface:#131a15;
    --text:#eef2ea;
    --text-soft:#aab5a2;
    --border:#243026;
    --nav-bg: rgba(6,10,7,0.94);
  }
}
:root[data-theme="dark"]{
  --bg:#0d1310;
  --surface:#131a15;
  --text:#eef2ea;
  --text-soft:#aab5a2;
  --border:#243026;
  --nav-bg: rgba(6,10,7,0.94);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:'Fraunces',serif;
  font-weight:600;
  line-height:1.08;
  margin:0;
  color:var(--text);
  letter-spacing:-0.01em;
}
p{margin:0;}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}
section{padding:112px 0;}
@media(max-width:768px){
  section{padding:72px 0;}
  .wrap{padding:0 20px;}
}

/* ---------- NAV ---------- */
header.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background .3s ease;
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand img{height:44px;width:auto;border-radius:6px;}
.brand-text{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:1.05rem;
  color:#fff;
  letter-spacing:-0.01em;
}
.brand-text span{color:var(--orange-500);}
ul.links{
  display:flex;
  gap:32px;
  list-style:none;
  margin:0;padding:0;
}
ul.links li{list-style:none;}
ul.links a{
  text-decoration:none;
  color:rgba(255,255,255,0.82);
  font-size:0.92rem;
  font-weight:500;
  transition:color .2s ease;
  position:relative;
}
ul.links a:hover{color:#fff;}
.nav-cta{
  display:flex;
  align-items:center;
  gap:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 22px;
  border-radius:100px;
  font-weight:600;
  font-size:0.9rem;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary{
  background:var(--orange-600);
  color:#1a0d00;
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(245,130,14,0.35);}
.btn-ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,0.35);
}
.btn-ghost:hover{background:rgba(255,255,255,0.1);}
.btn-outline-dark{
  background:transparent;
  border-color:var(--green-700);
  color:var(--green-700);
}
.btn-outline-dark:hover{background:var(--green-700); color:#fff;}
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.menu-toggle span{
  display:block;
  width:24px;height:2px;
  background:#fff;
  margin:5px 0;
  transition:.25s;
}
@media(max-width:940px){
  ul.links{display:none;}
  .nav-cta .btn-ghost{display:none;}
  .menu-toggle{display:block;}
}

/* mobile drawer */
.mobile-drawer{
  position:fixed;
  top:76px;left:0;right:0;
  background:var(--black);
  z-index:99;
  display:none;
  flex-direction:column;
  padding:12px 28px 28px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.mobile-drawer.open{display:flex;}
.mobile-drawer a{
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  font-weight:500;
}
.mobile-drawer .btn{margin-top:16px; justify-content:center;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:var(--black);
  padding:180px 0 0 0;
  overflow:hidden;
}
.hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px 0;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-arc{
  position:absolute;
  top:-220px; right:-220px;
  width:640px;height:640px;
  border-radius:50%;
  border:64px solid var(--orange-600);
  opacity:0.14;
  z-index:1;
}
.hero-eyebrow-free{}
.hero h1{
  color:#fff;
  font-size:clamp(2.4rem, 4.6vw, 3.6rem);
  max-width:11.5ch;
}
.hero p.lead{
  margin-top:24px;
  color:rgba(255,255,255,0.72);
  font-size:1.12rem;
  max-width:46ch;
}
.hero-ctas{
  margin-top:36px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero-stats{
  margin-top:56px;
  display:flex;
  gap:36px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.14);
  padding-top:28px;
}
.hero-stat b{
  display:block;
  font-family:'Fraunces',serif;
  font-size:1.7rem;
  color:#fff;
  font-weight:600;
}
.hero-stat span{
  color:rgba(255,255,255,0.55);
  font-size:0.84rem;
}
.hero-visual{
  position:relative;
  z-index:2;
}
.hero-photo-frame{
  position:relative;
  border-radius:180px 24px 180px 24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 40px 80px rgba(0,0,0,0.5);
}
.hero-photo-frame img{
  width:100%;
  height:460px;
  object-fit:cover;
  object-position: 30% 30%;
  display:block;
}
.hero-tagline-chip{
  position:absolute;
  bottom:-28px;left:-28px;
  background:var(--surface);
  color:var(--text);
  border-radius:16px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
  max-width:230px;
}
@media(min-width: 769px){
  :root[data-theme] .hero-tagline-chip, .hero-tagline-chip{background:#fff; color:#12160f;}
}
.hero-tagline-chip .tag-eyebrow{
  color:var(--orange-600);
  font-weight:700;
  font-size:0.78rem;
}
.hero-tagline-chip p{
  font-size:0.86rem;
  color:#3b4436;
  margin-top:4px;
}
@media(max-width:940px){
  .hero-inner{grid-template-columns:1fr; padding-top:8px;}
  .hero{padding-top:140px;}
  .hero-visual{margin-top:56px;}
  .hero-photo-frame img{height:340px;}
  .hero-tagline-chip{position:static; margin-top:20px; max-width:none;}
}

/* ---------- SECTION HEADERS ---------- */
.eyebrow-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.eyebrow-num{
  width:34px;height:34px;
  border-radius:50%;
  background:var(--green-700);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;
  font-size:0.92rem;
  font-weight:600;
  flex:none;
}
.eyebrow-label{
  color:var(--orange-600);
  font-weight:600;
  font-size:0.92rem;
}
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{
  font-size:clamp(1.8rem,3vw,2.5rem);
}
.section-head p{
  margin-top:16px;
  color:var(--text-soft);
  font-size:1.02rem;
}
.section-alt{background:var(--surface);}
.section-dark{
  background:var(--green-900);
  color:#fff;
}
.section-dark .text-soft, .section-dark p{color:rgba(255,255,255,0.68);}
.section-dark h2, .section-dark h3, .section-dark h4{color:#fff;}

/* ---------- ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:64px;
  align-items:start;
}
.about-grid p{color:var(--text-soft); font-size:1.02rem;}
.about-grid p + p{margin-top:16px;}
.fact-list{
  list-style:none;
  margin:28px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}
.fact-list li{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid var(--border);
  font-size:0.94rem;
}
.fact-list li b{color:var(--text-soft); font-weight:600;}
.vm-cards{display:grid; gap:20px;}
.vm-card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:20px;
  padding:30px;
}
.vm-card h4{
  font-size:1.15rem;
  color:var(--green-700);
  margin-bottom:10px;
}
.vm-card p{color:var(--text-soft); font-size:0.96rem;}
@media(max-width:900px){
  .about-grid{grid-template-columns:1fr; gap:40px;}
}

/* ---------- VALUES ---------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
}
.value-item{
  background:var(--surface);
  padding:34px 28px;
}
.value-item h4{
  font-size:1.02rem;
  margin-bottom:8px;
  color:var(--text);
}
.value-item p{
  font-size:0.88rem;
  color:var(--text-soft);
}
.value-mark{
  width:38px;height:38px;
  border-radius:10px;
  background:var(--green-100);
  color:var(--green-700);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  font-family:'Fraunces',serif;
  font-weight:600;
}
@media(max-width:900px){
  .values-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .values-grid{grid-template-columns:1fr;}
}

/* ---------- BUSINESS MODEL ---------- */
.flow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  flex-wrap:wrap;
}
.flow-node{
  flex:1;
  min-width:150px;
  text-align:center;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  padding:28px 16px;
}
.flow-node.center{
  background:var(--green-700);
  color:#fff;
  border-color:var(--green-700);
  transform:scale(1.06);
}
.flow-node .icon-circle{
  width:52px;height:52px;
  border-radius:50%;
  background:var(--green-100);
  color:var(--green-700);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
  font-size:1.3rem;
}
.flow-node.center .icon-circle{
  background:rgba(255,255,255,0.16);
  color:#fff;
}
.flow-node h5{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:0.96rem;
  margin-bottom:4px;
}
.flow-node span{
  font-size:0.8rem;
  color:var(--text-soft);
}
.flow-node.center span{color:rgba(255,255,255,0.8);}
.flow-arrow{
  color:var(--orange-600);
  font-size:1.4rem;
  flex:none;
}
@media(max-width:900px){
  .flow{flex-direction:column;}
  .flow-arrow{transform:rotate(90deg);}
  .flow-node.center{transform:none;}
}
.flow-caption{
  text-align:center;
  margin-top:32px;
  color:var(--green-700);
  font-weight:600;
  font-size:0.98rem;
}

/* ---------- PRODUCTS ---------- */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.product-card{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  border-color:var(--green-700);
}
.pc-link{
  margin:-4px 24px 22px;
  color:var(--green-700);
  font-weight:600;
  font-size:0.86rem;
}
.product-card .pc-top{
  padding:26px 24px 20px;
  background:var(--green-900);
  color:#fff;
}
.product-card .pc-top .icon-circle{
  width:44px;height:44px;
  border-radius:12px;
  background:rgba(255,255,255,0.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
  font-size:1.15rem;
}
.product-card h4{color:#fff; font-size:1.08rem;}
.product-card ul{
  list-style:none;
  margin:0;padding:20px 24px 26px;
  display:grid;
  gap:9px;
  flex:1;
}
.product-card li{
  font-size:0.88rem;
  color:var(--text-soft);
  padding-left:16px;
  position:relative;
}
.product-card li::before{
  content:'';
  position:absolute;
  left:0;top:8px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--orange-600);
}
@media(max-width:980px){
  .product-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .product-grid{grid-template-columns:1fr;}
}

/* ---------- MARKET COVERAGE ---------- */
.market-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.market-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:30px;
}
.market-card .flag{
  font-size:1.8rem;
  margin-bottom:14px;
}
.market-card h4{font-size:1.1rem; margin-bottom:6px;}
.market-card .tagline{
  color:var(--orange-600);
  font-weight:600;
  font-size:0.82rem;
  margin-bottom:12px;
}
.market-card p{color:var(--text-soft); font-size:0.9rem;}
.market-card ul{
  margin:14px 0 0; padding-left:18px;
  color:var(--text-soft);
  font-size:0.88rem;
  display:grid; gap:4px;
}
@media(max-width:900px){
  .market-grid{grid-template-columns:1fr;}
}

.phases{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.phase{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px 18px;
  position:relative;
}
.phase.active{
  background:var(--orange-600);
  border-color:var(--orange-600);
}
.phase.active *{color:#1a0d00 !important;}
.phase span.pnum{
  font-size:0.76rem;
  color:var(--text-soft);
  font-weight:600;
}
.phase h5{
  font-family:'Fraunces',serif;
  margin-top:4px;
  font-size:1.02rem;
}
@media(max-width:900px){
  .phases{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .phases{grid-template-columns:1fr;}
}

/* ---------- SUPPORT / DISTRIBUTION ---------- */
.split-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.check-list{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  gap:16px;
}
.check-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:0.96rem;
  color:var(--text-soft);
}
.check-list li b{color:var(--text); font-weight:600;}
.check-ico{
  flex:none;
  width:26px;height:26px;
  border-radius:50%;
  background:var(--green-100);
  color:var(--green-700);
  display:flex;align-items:center;justify-content:center;
  font-size:0.8rem;
  margin-top:2px;
}
@media(max-width:900px){
  .split-list{grid-template-columns:1fr; gap:36px;}
}

/* ---------- WHY PARTNER ---------- */
.partner-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;
  overflow:hidden;
}
.partner-item{
  background:var(--green-900);
  padding:36px 30px;
}
.partner-item .icon-circle{
  width:46px;height:46px;
  border-radius:12px;
  background:rgba(255,255,255,0.1);
  color:var(--orange-500);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  font-size:1.2rem;
}
.partner-item h4{color:#fff; font-size:1.02rem; margin-bottom:8px;}
.partner-item p{color:rgba(255,255,255,0.62); font-size:0.88rem;}
@media(max-width:900px){
  .partner-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .partner-grid{grid-template-columns:1fr;}
}

/* ---------- SUPPLIERS ---------- */
.supplier-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:8px;
}
.supplier-chip{
  border:1px solid var(--border);
  border-radius:100px;
  padding:10px 22px;
  font-weight:600;
  font-size:0.9rem;
  color:var(--green-700);
  background:var(--surface);
}
.sourcing-note{
  margin-top:28px;
  color:var(--text-soft);
  font-size:0.95rem;
}

/* ---------- MANAGEMENT ---------- */
.mgmt-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:36px;
  align-items:center;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:40px;
}
.mgmt-photo{
  width:150px;height:150px;
  border-radius:50%;
  background:var(--green-100);
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;
  font-size:2.6rem;
  color:var(--green-700);
  font-weight:600;
  border:4px solid var(--surface);
  box-shadow:0 0 0 1px var(--border);
}
.mgmt-card h4{font-size:1.3rem;}
.mgmt-card .role{color:var(--orange-600); font-weight:600; font-size:0.9rem; margin:4px 0 14px;}
.mgmt-card p.bio{color:var(--text-soft); font-size:0.96rem;}
@media(max-width:640px){
  .mgmt-card{grid-template-columns:1fr; text-align:center; padding:32px 24px;}
  .mgmt-photo{margin:0 auto;}
}

/* ---------- CONTACT ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
}
.contact-panel{
  background:var(--green-900);
  color:#fff;
  padding:52px;
}
.contact-panel h3{color:#fff; font-size:1.6rem; max-width:16ch;}
.contact-panel p{color:rgba(255,255,255,0.62); margin-top:14px; font-size:0.98rem;}
.contact-rows{margin-top:32px; display:grid; gap:22px;}
.contact-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.contact-row .ico{
  flex:none;
  width:40px;height:40px;
  border-radius:10px;
  background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--orange-500);
}
.contact-row a, .contact-row span.txt{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:0.98rem;
}
.contact-row small{display:block; color:rgba(255,255,255,0.5); font-size:0.78rem; margin-bottom:2px;}
.contact-form{
  background:var(--surface);
  padding:52px;
}
.contact-form h3{font-size:1.3rem; margin-bottom:24px;}
.form-row{display:grid; gap:18px;}
.form-row.two{grid-template-columns:1fr 1fr; display:grid; gap:14px;}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field label{font-size:0.82rem; font-weight:600; color:var(--text-soft);}
.field input, .field textarea, .field select{
  border:1px solid var(--border);
  background:var(--bg);
  border-radius:10px;
  padding:12px 14px;
  font-family:inherit;
  font-size:0.94rem;
  color:var(--text);
  resize:vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:2px solid var(--green-600);
  outline-offset:1px;
}
.contact-form .btn{margin-top:6px; width:100%; justify-content:center;}
@media(max-width:820px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-panel, .contact-form{padding:36px 28px;}
  .form-row.two{grid-template-columns:1fr;}
}

/* ---------- FOOTER ---------- */
footer{
  background:var(--black);
  color:rgba(255,255,255,0.6);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
}
.footer-brand img{height:40px; margin-bottom:16px; border-radius:6px;}
.footer-brand p{font-size:0.9rem; max-width:32ch; color:rgba(255,255,255,0.5);}
.footer-col h5{
  color:#fff;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:0.88rem;
  margin-bottom:16px;
}
.footer-col ul{list-style:none;margin:0;padding:0;display:grid;gap:10px;}
.footer-col a{
  color:rgba(255,255,255,0.55);
  text-decoration:none;
  font-size:0.9rem;
}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  margin-top:56px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:0.82rem;
  color:rgba(255,255,255,0.4);
}
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px;}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;}
}

.theme-toggle{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  width:36px;height:36px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  font-size:0.9rem;
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important; animation:none !important;}
}

::selection{background:var(--orange-600); color:#1a0d00;}

/* ---------- PRODUCT DETAIL PAGES ---------- */
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.86rem;
  color:var(--text-soft);
  padding-top:112px;
}
.breadcrumb a{color:var(--green-700); text-decoration:none; font-weight:600;}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb .sep{color:var(--border);}

.page-hero{
  background:var(--black);
  color:#fff;
  padding:40px 0 80px;
  position:relative;
  overflow:hidden;
}
.page-hero .hero-arc{
  top:-260px; right:-260px;
}
.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:720px;
}
.page-hero .cat-icon{
  width:64px;height:64px;
  border-radius:16px;
  background:rgba(255,255,255,0.1);
  color:var(--orange-500);
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;
  margin-bottom:24px;
}
.page-hero h1{
  color:#fff;
  font-size:clamp(2.1rem,4vw,3rem);
}
.page-hero p.lead{
  margin-top:18px;
  color:rgba(255,255,255,0.7);
  font-size:1.06rem;
  max-width:56ch;
}
.page-hero .hero-ctas{margin-top:32px;}

.item-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.item-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  padding:28px;
  overflow:hidden;
}
.item-card.has-photo{padding:0;}
.item-card.has-photo .item-photo{
  width:100%;
  aspect-ratio:4/3;
  background:#fff;
}
.item-card.has-photo .item-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.item-card.has-photo .item-card-body{
  padding:20px 24px 26px;
}
.item-card .item-num{
  color:var(--orange-600);
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:0.85rem;
  margin-bottom:12px;
  display:block;
}
.item-card h4{font-size:1.08rem; margin-bottom:10px;}
.item-card p{color:var(--text-soft); font-size:0.9rem;}
@media(max-width:980px){
  .item-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .item-grid{grid-template-columns:1fr;}
}

.other-products{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.other-product-card{
  display:block;
  text-decoration:none;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.other-product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(0,0,0,0.08);
}
.other-product-card .icon-circle{
  width:40px;height:40px;
  border-radius:10px;
  background:var(--green-100);
  color:var(--green-700);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
  font-size:1.05rem;
}
.other-product-card h5{
  font-family:'Fraunces',serif;
  font-size:1rem;
  color:var(--text);
  margin-bottom:6px;
}
.other-product-card span{
  font-size:0.84rem;
  color:var(--text-soft);
}
@media(max-width:900px){
  .other-products{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .other-products{grid-template-columns:1fr;}
}

.cta-band{
  background:var(--green-900);
  color:#fff;
  border-radius:24px;
  padding:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cta-band h3{color:#fff; font-size:1.5rem; max-width:26ch;}
.cta-band p{color:rgba(255,255,255,0.62); margin-top:8px; font-size:0.96rem;}

/* ============================================================
   IMAGERY COMPONENTS  (added in design refresh)
   ============================================================ */

/* --- Packshot images: show the whole product, don't crop it --- */
.item-card.has-photo .item-photo.is-pack img{
  object-fit:contain;
  padding:18px;
  background:#fff;
}

/* --- Product category cards with a photo on top --- */
.product-card.has-photo .pc-photo{
  position:relative;
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#fff;
}
.product-card.has-photo .pc-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.product-card.has-photo .pc-photo.is-pack img{
  object-fit:contain;
  padding:16px;
}
.product-card.has-photo:hover .pc-photo img{transform:scale(1.05);}
.product-card.has-photo .pc-photo .pc-badge{
  position:absolute;
  left:14px; bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(6,48,26,0.88);
  color:#fff;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.02em;
  backdrop-filter:blur(4px);
}

/* --- Full-bleed photo band with overlay --- */
.media-band{
  position:relative;
  padding:0;
  min-height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--green-900);
}
.media-band > img.band-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.42;
}
.media-band::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(6,48,26,0.92) 0%, rgba(6,48,26,0.72) 45%, rgba(6,48,26,0.30) 100%);
}
.media-band .wrap{position:relative; z-index:2; width:100%; padding-top:80px; padding-bottom:80px;}
.media-band h2{color:#fff; max-width:19ch;}
.media-band p{color:rgba(255,255,255,0.78); margin-top:18px; max-width:52ch;}
.media-band .band-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.media-band .band-stat{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:14px;
  padding:16px 22px;
  min-width:150px;
}
.media-band .band-stat b{
  display:block;
  font-family:'Fraunces',serif;
  font-size:1.5rem;
  color:var(--orange-500);
  line-height:1;
}
.media-band .band-stat span{
  display:block;
  margin-top:8px;
  font-size:0.8rem;
  color:rgba(255,255,255,0.72);
}

/* --- Image + text split --- */
.split-media{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.split-media.reverse .sm-media{order:2;}
.sm-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:4/3;
  background:#fff;
}
.sm-media img{
  width:100%; height:100%;
  object-fit:cover;
}
.sm-media.is-pack img{object-fit:contain; padding:26px;}
.sm-media .sm-chip{
  position:absolute;
  left:18px; bottom:18px;
  background:rgba(6,48,26,0.9);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:600;
}
@media(max-width:900px){
  .split-media{grid-template-columns:1fr; gap:32px;}
  .split-media.reverse .sm-media{order:0;}
}

/* --- Small photo mosaic --- */
.photo-mosaic{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:44px;
}
.photo-mosaic figure{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:1/1;
  background:#fff;
  position:relative;
}
.photo-mosaic img{width:100%; height:100%; object-fit:cover;}
.photo-mosaic .is-pack img{object-fit:contain; padding:14px;}
.photo-mosaic figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px 14px 10px;
  background:linear-gradient(to top, rgba(6,48,26,0.9), rgba(6,48,26,0));
  color:#fff;
  font-size:0.76rem;
  font-weight:600;
}
@media(max-width:700px){
  .photo-mosaic{grid-template-columns:repeat(2,1fr);}
}

/* --- Market cards with photo --- */
.market-card.has-photo{padding:0; overflow:hidden;}
.market-card.has-photo .mc-photo{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#fff;
}
.market-card.has-photo .mc-photo img{width:100%; height:100%; object-fit:cover;}
.market-card.has-photo .mc-body{padding:26px 28px 30px;}

/* --- Nav: active page state --- */
.nav .links a.active{color:var(--orange-500);}

/* ============================================================
   CORE VALUES — glass cards over a field photo
   ============================================================ */
.values-section{
  position:relative;
  overflow:hidden;
  background:var(--green-900);
  isolation:isolate;
}
.values-section .values-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 60%;
  z-index:-2;
  transform:scale(1.04);
  filter:saturate(1.05) contrast(1.02);
}
.values-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(130% 100% at 80% 20%, rgba(6,48,26,0.10) 0%, rgba(6,48,26,0.45) 55%, rgba(6,20,12,0.72) 100%),
    linear-gradient(180deg, rgba(8,20,12,0.55) 0%, rgba(8,20,12,0.38) 45%, rgba(8,20,12,0.70) 100%);
}
.values-section .wrap{position:relative; z-index:1;}
.values-section h2{color:#fff; text-shadow:0 2px 18px rgba(0,0,0,0.45);}
.values-section .eyebrow-label{color:#fff;}
.values-section .eyebrow-num{
  background:var(--orange-600);
  color:#1a0d00;
}
.values-section .section-head p{color:rgba(255,255,255,0.72);}

/* the grid loses its hairline-sheet look and becomes floating tiles */
.values-section .values-grid{
  background:transparent;
  border:0;
  border-radius:0;
  overflow:visible;
  gap:16px;
}
.values-section .value-item{
  position:relative;
  background:rgba(12,32,20,0.42);
  -webkit-backdrop-filter:blur(18px) saturate(1.5);
  backdrop-filter:blur(18px) saturate(1.5);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:18px;
  padding:30px 26px;
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
  overflow:hidden;
}
/* soft highlight along the top edge, like light catching glass */
.values-section .value-item::after{
  content:"";
  position:absolute;
  top:0; left:12%; right:12%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
.values-section .value-item:hover{
  transform:translateY(-4px);
  background:rgba(12,32,20,0.55);
  border-color:rgba(243,140,35,0.65);
}
.values-section .value-item h4{color:#fff;}
.values-section .value-item p{color:rgba(255,255,255,0.82);}
.values-section .value-mark{
  background:rgba(255,255,255,0.16);
  color:#fff;
  border:1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}
.values-section .value-item:hover .value-mark{
  background:var(--orange-600);
  color:#1a0d00;
  border-color:transparent;
}
@media(max-width:900px){
  .values-section .values-grid{gap:12px;}
  .values-section .value-item{padding:24px 20px;}
}

/* ============================================================
   WEEKLY FEATURED PRODUCT — rotates every 7 days
   ============================================================ */
.feature-section{padding-bottom:0;}
.feature-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow:hidden;
  margin-top:8px;
}
.feature-copy{
  padding:74px 52px 74px max(28px, calc((100vw - 1180px) / 2 + 28px));
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.feature-bar{
  align-self:flex-start;
  background:var(--orange-600);
  color:#1a0d00;
  font-size:0.74rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:4px;
  margin-bottom:26px;
}
.feature-copy h2{
  font-size:clamp(2rem, 3.6vw, 3rem);
  line-height:1.05;
}
.feature-copy h2 .feat-kicker{
  display:block;
  color:var(--green-600);
  font-style:normal;
}
.feature-copy h2 .feat-name{
  display:block;
  color:var(--text);
  margin-top:4px;
}
.feature-copy > p{
  margin-top:22px;
  color:var(--text-soft);
  font-size:1rem;
  max-width:46ch;
}
.feature-meta{
  margin-top:34px;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.feature-timer{
  font-size:0.82rem;
  color:var(--text-soft);
}
.feature-timer b{color:var(--green-700); font-weight:700;}
.feature-photo{
  position:relative;
  background:#fff;
  min-height:480px;
}
.feature-photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .35s ease;
}
.feature-photo.is-pack img{
  object-fit:contain;
  padding:64px;
}
.feature-photo.swapping img{opacity:0;}

/* the three other categories picked for the same week */
.feature-others{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  padding:40px 0 0;
}
.feature-other{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--surface);
  text-decoration:none;
  color:inherit;
  transition:border-color .18s ease, transform .18s ease;
}
.feature-other:hover{border-color:var(--green-700); transform:translateY(-3px);}
.feature-other .fo-thumb{
  width:72px;
  height:72px;
  flex:0 0 72px;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
}
.feature-other .fo-thumb img{width:100%; height:100%; object-fit:cover;}
.feature-other .fo-thumb.is-pack img{object-fit:contain; padding:7px;}
.feature-other small{
  display:block;
  color:var(--orange-600);
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.09em;
  text-transform:uppercase;
}
.feature-other b{
  display:block;
  font-family:'Fraunces',serif;
  font-size:1rem;
  margin-top:5px;
  line-height:1.2;
}
.feature-other span.fo-go{
  display:block;
  margin-top:6px;
  font-size:0.78rem;
  color:var(--green-700);
  font-weight:600;
}
@media(max-width:900px){
  .feature-panel{grid-template-columns:1fr;}
  .feature-copy{padding:56px 20px 48px; order:2;}
  .feature-photo{min-height:300px; order:1;}
  .feature-photo.is-pack img{padding:26px;}
  .feature-others{grid-template-columns:1fr; padding-top:28px;}
}
