:root{
  --green-deep:#0F3D2E;
  --green-mid:#175C43;
  --gold:#C9A227;
  --gold-soft:#E4C766;
  --cream:#F7F3EA;
  --sand:#EFE6D0;
  --ink:#1C1C1C;
  --ink-soft:#4A4A42;
  --white:#FFFFFF;
  --line:rgba(15,61,46,0.14);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.55;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  color:var(--green-deep);
  line-height:1.15;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1140px; margin:0 auto; padding:0 28px;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px; border-radius:2px; font-weight:600; font-size:15px;
  border:1.5px solid transparent; cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary{background:var(--gold); color:var(--green-deep);}
.btn-primary:hover{background:var(--gold-soft); transform:translateY(-2px) translateZ(0); box-shadow:0 14px 30px rgba(201,162,39,0.35);}
.btn-outline{border-color:rgba(255,255,255,0.55); color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,0.1); transform:translateY(-2px);}
.btn-outline-dark{border-color:var(--green-deep); color:var(--green-deep);}
.btn-outline-dark:hover{background:var(--green-deep); color:var(--white); transform:translateY(-2px);}

/* Header */
header{position:sticky; top:0; z-index:80; background:rgba(247,243,234,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 0;}
.brand{display:flex; align-items:center; gap:12px;}
.brand-mark{width:46px; height:46px; border-radius:50%; overflow:hidden; border:1.5px solid var(--gold); background:var(--green-deep); transform-style:preserve-3d; transition:transform .5s ease;}
.brand:hover .brand-mark{transform:rotateY(360deg);}
.brand-mark img{width:100%; height:100%; object-fit:cover; object-position:center 30%;}
.brand-text strong{display:block; font-family:'Fraunces',serif; font-size:16px; color:var(--green-deep);}
.brand-text span{display:block; font-size:11px; letter-spacing:.03em; color:var(--ink-soft);}
nav.links{display:flex; gap:30px; font-size:14.5px; font-weight:500;}
nav.links a{color:var(--ink-soft); position:relative; padding-bottom:4px;}
nav.links a::after{content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s ease;}
nav.links a:hover{color:var(--green-deep);}
nav.links a:hover::after, nav.links a.active::after{width:100%;}
nav.links a.active{color:var(--green-deep);}
.nav-cta{display:flex; gap:12px;}
.nav-call{display:flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--green-deep); padding:10px 16px; border:1px solid var(--line); border-radius:2px;}

/* Page hero (inner pages) */
.page-hero{
  background:linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 65%, #1c5940 100%);
  color:var(--white); padding:90px 0 70px; position:relative; overflow:hidden;
  perspective:1000px;
}
.page-hero .eyebrow{color:var(--gold-soft); font-weight:600; font-size:13.5px; display:block; margin-bottom:14px;}
.page-hero h1{color:var(--white); font-size:44px; max-width:16ch;}
.page-hero p{color:rgba(255,255,255,0.8); font-size:17px; max-width:52ch; margin-top:16px;}
.hero-particles{position:absolute; inset:0; pointer-events:none;}
.hero-particles span{
  position:absolute; width:6px; height:6px; background:var(--gold-soft); border-radius:50%; opacity:.5;
  animation:float 8s ease-in-out infinite;
}
@keyframes float{ 0%,100%{transform:translateY(0) translateZ(0);} 50%{transform:translateY(-30px) translateZ(20px);} }

/* Reveal on scroll */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* 3D tilt card */
.tilt-card{
  transform-style:preserve-3d; transition:transform .15s ease, box-shadow .25s ease;
  will-change:transform;
}
.tilt-card:hover{box-shadow:0 30px 60px rgba(15,61,46,0.25);}

/* Sections */
section{padding:88px 0;}
.section-head{max-width:640px; margin-bottom:52px;}
.section-head p.kicker{color:var(--gold); font-weight:600; font-size:13.5px; margin-bottom:10px;}
.section-head h2{font-size:36px; margin-bottom:16px;}
.section-head p.desc{color:var(--ink-soft); font-size:16px;}

/* Trust bar */
.trustbar{background:var(--white); border-bottom:1px solid var(--line); padding:26px 0;}
.trustbar .wrap{display:flex; justify-content:space-between; flex-wrap:wrap; gap:22px;}
.trust-item{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink-soft); font-weight:500;}
.trust-item svg{width:20px; height:20px; flex-shrink:0; color:var(--gold);}

/* Stat counters */
.stat-row{display:flex; gap:44px; flex-wrap:wrap;}
.stat-row div strong{display:block; font-family:'Fraunces',serif; font-size:34px; color:var(--green-deep);}
.stat-row div span{font-size:13px; color:var(--ink-soft);}

/* Product grid */
.product-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.product-card{background:var(--white); border:1px solid var(--line); padding:30px 26px; perspective:800px;}
.product-card .tag{font-size:12px; font-weight:600; color:var(--gold); margin-bottom:10px;}
.product-card h3{font-size:19px; margin-bottom:8px;}
.product-card p{font-size:14.5px; color:var(--ink-soft);}
.product-card.featured{background:var(--green-deep); color:var(--white);}
.product-card.featured h3, .product-card.featured .tag{color:var(--white);}
.product-card.featured .tag{color:var(--gold-soft);}
.product-card.photo{position:relative; min-height:240px; display:flex; flex-direction:column; justify-content:flex-end; background-size:cover; background-position:center top;}
.product-card.photo::before{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(15,61,46,0) 30%, rgba(15,61,46,0.9) 100%);}
.product-card.photo .tag, .product-card.photo h3, .product-card.photo p{position:relative; z-index:1; color:var(--white);}
.product-card.photo .tag{color:var(--gold-soft);}

/* Timeline (About) */
.timeline{position:relative; margin-top:40px; padding-left:30px; border-left:2px solid var(--line);}
.tl-item{position:relative; padding-bottom:38px;}
.tl-item::before{content:""; position:absolute; left:-38px; top:2px; width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--cream); box-shadow:0 0 0 2px var(--gold);}
.tl-item strong{display:block; color:var(--green-deep); font-family:'Fraunces',serif; font-size:17px; margin-bottom:4px;}
.tl-item p{font-size:14.5px; color:var(--ink-soft);}

/* Placeholder note */
.placeholder-note{background:var(--sand); border-left:3px solid var(--gold); padding:14px 18px; font-size:13.5px; color:var(--ink-soft); margin-top:14px;}

/* Contact / Customer care shared bits */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px;}
.contact-form{background:var(--white); padding:36px; border:1px solid var(--line);}
.contact-form h3{font-size:20px; margin-bottom:6px;}
.contact-form p.sub{font-size:14px; color:var(--ink-soft); margin-bottom:24px;}
.field{margin-bottom:16px;}
.field label{display:block; font-size:13px; font-weight:600; color:var(--green-deep); margin-bottom:6px;}
.field input, .field select, .field textarea{width:100%; padding:12px 14px; border:1px solid var(--line); background:var(--cream); font-family:'Inter',sans-serif; font-size:14.5px; border-radius:2px;}
.field textarea{min-height:90px; resize:vertical;}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.contact-info h3{font-size:20px; margin-bottom:20px;}
.info-row{display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line);}
.info-row svg{width:22px; height:22px; color:var(--gold); flex-shrink:0; margin-top:2px;}
.info-row strong{display:block; font-size:14.5px; color:var(--green-deep); margin-bottom:3px;}
.info-row span{font-size:14px; color:var(--ink-soft);}
.whatsapp-cta{margin-top:26px; display:flex; align-items:center; gap:14px; background:var(--green-deep); color:var(--white); padding:18px 22px;}
.whatsapp-cta svg{width:26px; height:26px; color:var(--gold-soft); flex-shrink:0;}
.whatsapp-cta strong{display:block; font-size:15px;}
.whatsapp-cta span{font-size:13px; color:rgba(255,255,255,0.75);}

/* Customer service cards */
.service-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-bottom:50px;}
.service-card{border:1px solid var(--line); padding:28px 26px; background:var(--white);}
.service-card svg{width:26px; height:26px; color:var(--gold); margin-bottom:16px;}
.service-card h4{font-size:16.5px; margin-bottom:8px;}
.service-card p{font-size:14px; color:var(--ink-soft);}
.faq{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line); padding:20px 0;}
.faq-item summary{cursor:pointer; font-weight:600; font-size:15px; color:var(--green-deep); list-style:none; display:flex; justify-content:space-between; align-items:center;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; font-size:20px; color:var(--gold); font-weight:400;}
.faq-item[open] summary::after{content:"–";}
.faq-item p{margin-top:12px; font-size:14.5px; color:var(--ink-soft); max-width:70ch;}

/* Footer */
footer{background:var(--green-deep); color:rgba(255,255,255,0.65); padding:40px 0;}
.footer-grid{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
.footer-grid .fbrand{display:flex; align-items:center; gap:12px; color:var(--white);}
.footer-grid .fbrand strong{font-family:'Fraunces',serif; font-size:15px;}
footer .flinks{display:flex; gap:24px; font-size:13.5px;}
footer .flinks a:hover{color:var(--gold-soft);}
.footer-bottom{font-size:12.5px; margin-top:26px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.14);}

@media (max-width: 900px){
  nav.links, .nav-cta{display:none;}
  .page-hero h1{font-size:32px;}
  .contact-grid{grid-template-columns:1fr;}
  .product-grid, .service-grid{grid-template-columns:1fr;}
  .row2{grid-template-columns:1fr;}
  .stat-row{gap:26px;}
}
