/* ============ TOKENS ============ */
:root{
  --green-deep:   #1F6632;
  --green-shadow: #163F1F;
  --green-leaf:   #408023;
  --gold:         #C3951E;
  --gold-light:   #D8BA6D;
  --ivory:        #F7F2E3;
  --ivory-2:      #FBF8F0;
  --ink:          #26301F;
  --ink-soft:     #55604C;
  --white:        #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Karla', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 12px 30px -14px rgba(31,102,50,0.25);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--ivory-2);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--green-shadow);
  line-height:1.08;
  margin:0 0 .5em;
  font-weight:600;
}
em{font-style:italic;color:var(--gold);}
p{line-height:1.65;color:var(--ink-soft);margin:0 0 1em;}

.eyebrow{
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:700;
  color:var(--green-leaf);
  margin-bottom:.9em;
}
.eyebrow.center{text-align:center;}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:.85em 1.7em;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary{
  background:var(--green-deep);
  color:var(--ivory);
}
.btn-primary:hover{
  background:var(--green-shadow);
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft);
}
.btn-ghost{
  background:transparent;
  border-color:var(--green-deep);
  color:var(--green-deep);
}
.btn-ghost:hover{
  background:var(--green-deep);
  color:var(--ivory);
  transform:translateY(-2px);
}

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,242,227,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(31,102,50,0.1);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:.6em;
}
.brand-mark{width:42px;height:42px;object-fit:contain;}
.brand-word{
  font-family:var(--font-display);
  font-size:1.25rem;
  font-weight:600;
  color:var(--green-shadow);
  letter-spacing:.01em;
}
.brand-word em{color:var(--gold);font-style:normal;}
.brand-word em.brand-gap{margin-left:.2em;}
.main-nav{
  display:flex;
  gap:2.2em;
}
.main-nav a{
  font-weight:600;
  font-size:.95rem;
  color:var(--ink);
  position:relative;
  padding:.2em 0;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:0;height:2px;
  background:var(--gold);
  transition:width .2s ease;
}
.main-nav a:hover::after{width:100%;}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:24px;height:2px;background:var(--green-shadow);border-radius:2px;
}

/* ============ HERO ============ */
.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  padding-top:min(9vw,90px);
  padding-bottom:120px;
}
.hero-field{
  position:absolute;
  inset:auto 0 0 0;
  height:60%;
  pointer-events:none;
}
.furrows{width:100%;height:100%;position:absolute;bottom:0;left:0;}
.furrow{fill:var(--green-leaf);}
.furrow-1{opacity:.14;}
.furrow-2{opacity:.22; fill:var(--green-deep);}
.furrow-3{opacity:.9; fill:var(--green-deep);}
.sunrise{
  position:absolute;
  right:6%;
  top:6%;
  width:180px;
  height:180px;
  opacity:.9;
}
.sun{fill:var(--gold-light);}
.rays line{stroke:var(--gold);stroke-width:3;stroke-linecap:round;}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:680px;
}
.hero h1{
  font-size:clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom:.35em;
}
.hero-sub{
  font-size:1.08rem;
  max-width:560px;
}
.hero-actions{
  display:flex;
  gap:1em;
  margin-top:1.6em;
  flex-wrap:wrap;
}

/* ============ VALUES STRIP ============ */
.values{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.4em;
  padding:70px 28px 30px;
}
.value-num{
  font-family:var(--font-display);
  font-size:1rem;
  color:var(--gold);
  font-weight:700;
  letter-spacing:.05em;
}
.value h3{
  font-size:1.2rem;
  margin-top:.3em;
}
.value p{font-size:.95rem;}

/* ============ STORY ============ */
.story{padding:90px 0;}
.story-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:4.5em;
  align-items:center;
}
.story-art{display:flex;justify-content:center;}
.story-badge{
  width:100%;
  max-width:380px;
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle at 32% 28%, var(--white) 0%, var(--ivory) 60%, var(--ivory) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(195,149,30,0.25);
}
.story-badge img{width:72%;}
.story-copy h2{font-size:clamp(1.9rem,3.4vw,2.7rem);}

/* ============ PROCESS ============ */
.process{
  background:var(--green-deep);
  padding:90px 0;
  color:var(--ivory);
}
.process .eyebrow{color:var(--gold-light);}
.process h2{color:var(--ivory);}
.process-steps{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1em;
  margin-top:3em;
  flex-wrap:wrap;
}
.step{
  flex:1 1 180px;
  text-align:center;
  max-width:220px;
  margin:0 auto;
}
.step-icon{
  width:76px;height:76px;
  margin:0 auto 1em;
  background:rgba(247,242,227,0.08);
  border:1.5px solid rgba(216,186,109,0.4);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  padding:16px;
}
.step-icon svg{width:100%;height:100%;}
.s-fill{fill:var(--gold-light);}
.s-line{stroke:var(--ivory);stroke-width:3;stroke-linecap:round;}
.s-line-only{fill:none;stroke:var(--gold-light);stroke-width:3;stroke-linejoin:round;stroke-linecap:round;}
.step h4{
  font-family:var(--font-display);
  color:var(--ivory);
  font-size:1.15rem;
  margin-bottom:.4em;
}
.step p{
  color:rgba(247,242,227,0.75);
  font-size:.9rem;
}
.step-arrow{
  color:var(--gold-light);
  font-size:1.6rem;
  align-self:center;
  padding-top:20px;
  opacity:.6;
}

/* ============ SHOP ============ */
.shop{padding:100px 0;}
.shop h2{font-size:clamp(1.9rem,3.4vw,2.7rem);margin-top:.2em;}
.shop-sub{max-width:560px;margin-top:1em;margin-bottom:3em;}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2em;
}
.product-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:1.6em 1.6em 1.8em;
  border:1px solid rgba(31,102,50,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-soft);
}
.product-media{
  position:relative;
  border-radius:calc(var(--radius) - 4px);
  background:linear-gradient(160deg, var(--ivory) 0%, #EFE7D2 100%);
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.2em;
  overflow:hidden;
}
.product-media .spice-art{width:88%;height:auto;}

/* Shared bowl elements */
.plate-shadow{fill:rgba(38,48,31,0.08);}
.bowl-outer{fill:#EFE4C8;stroke:#D8BA6D;stroke-width:2;}
.bowl-rim{fill:none;stroke:#C3951E;stroke-width:2;opacity:.5;}

/* Turmeric */
.product-media--turmeric{background:linear-gradient(160deg, #FBF3DD 0%, #F3E2AE 100%);}
.powder-mound-tm{fill:#E4A912;}
.powder-top-tm{fill:#F4C430;}
.powder-flecks-tm circle{fill:#B9860B;}
.root-tm ellipse{fill:#C3951E;stroke:#8a6a15;stroke-width:1;}

/* Cinnamon sticks */
.product-media--cinnamon-sticks{background:linear-gradient(160deg, #F6E9D8 0%, #E9D2AE 100%);}
.stick rect:first-child{fill:#9C5A2E;}
.stick .stick-shade{fill:#7A4322;opacity:.6;}
.twine{fill:none;stroke:#6B4A1E;stroke-width:2;stroke-linecap:round;}

/* Cinnamon powder */
.product-media--cinnamon-powder{background:linear-gradient(160deg, #F5E6D6 0%, #E7CBA8 100%);}
.powder-mound-cp{fill:#A9612E;}
.powder-top-cp{fill:#C17A40;}
.powder-flecks-cp circle{fill:#7C4A22;}
.mini-stick rect{fill:#8B5228;}

.product-tag{
  position:absolute;
  top:12px;right:12px;
  background:var(--green-shadow);
  color:var(--ivory);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:.4em .8em;
  border-radius:999px;
}
.product-card h3{
  font-size:1.15rem;
  margin-bottom:.3em;
}
.product-card p{
  font-size:.92rem;
  margin-bottom:0;
}
.shop-note{margin-top:3em;font-size:.95rem;}
.shop-note a{color:var(--green-deep);font-weight:700;text-decoration:underline;text-underline-offset:3px;}

/* ============ CONTACT ============ */
.contact{
  padding:100px 0 110px;
  background:var(--ivory);
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4em;
  align-items:start;
}
.contact-copy h2{font-size:clamp(1.9rem,3.2vw,2.5rem);}
.contact-detail{margin-top:1.6em;}
.contact-label{
  display:block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--green-leaf);
  font-weight:700;
  margin-bottom:.3em;
}
.contact-detail a{
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--green-shadow);
}
.contact-form{
  background:var(--white);
  padding:2.2em;
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap:1.2em;
}
.contact-form label{
  font-size:.85rem;
  font-weight:700;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  gap:.5em;
}
.contact-form input,
.contact-form textarea{
  font-family:var(--font-body);
  font-size:.95rem;
  padding:.8em 1em;
  border-radius:8px;
  border:1.5px solid #E1D9C2;
  background:var(--ivory-2);
  color:var(--ink);
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:2px solid var(--gold);
  outline-offset:1px;
  border-color:var(--gold);
}
.contact-form .btn{align-self:flex-start;margin-top:.4em;}
.form-note{
  font-size:.88rem;
  color:var(--green-deep);
  font-weight:600;
  min-height:1.2em;
  margin:0;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--green-shadow);
  color:rgba(247,242,227,0.85);
  padding:56px 0 34px;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:.8em;
}
.brand--footer .brand-word{color:var(--ivory);}
.brand--footer .brand-word em{color:var(--gold-light);}
.brand--footer .brand-mark{filter:brightness(1.15);}
.footer-inner .brand{flex-direction:column;gap:.4em;}
.footer-tag{
  font-family:var(--font-display);
  font-style:italic;
  color:var(--gold-light);
  font-size:1rem;
  margin:0;
}
.footer-nav{
  display:flex;
  gap:1.8em;
  margin:1.4em 0;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-nav a{font-size:.9rem;color:rgba(247,242,227,0.8);}
.footer-nav a:hover{color:var(--gold-light);}
.footer-copy{
  font-size:.8rem;
  color:rgba(247,242,227,0.5);
  margin:0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px){
  .main-nav{
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--ivory);
    flex-direction:column;
    padding:1.5em 28px;
    gap:1.2em;
    border-bottom:1px solid rgba(31,102,50,0.1);
    display:none;
  }
  .main-nav.open{display:flex;}
  .nav-toggle{display:flex;}

  .values{grid-template-columns:1fr;gap:2em;padding-top:56px;}
  .story-grid{grid-template-columns:1fr;gap:2.5em;text-align:center;}
  .story-badge{max-width:280px;}
  .process-steps{flex-direction:column;align-items:center;}
  .step-arrow{display:none;}
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;gap:3em;}
}

@media (max-width: 700px){
  .sunrise{display:none;}
}

@media (max-width: 540px){
  .product-grid{grid-template-columns:1fr;}
  .hero{padding-bottom:90px;}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .btn, .product-card, .main-nav a::after{transition:none;}
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
