@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,700&family=Nunito:wght@400&display=swap');
:root {
  --bg: #f4eedc;
  --lime: #a6ce81;
  --lime-d: #87b562;
  --amber: #e2775a;
  --amber-d: #c0513a;
  --sage-d: #0e4423;
  --mist: rgba(26,46,31,.52);
  --sage: #185f30;
  --parch: #f4eedc;
  --txt: #1a2e1f;
  --fd: 'Fraunces', Georgia, serif;
  --fb: 'Nunito', system-ui, sans-serif;
  --ease-out: cubic-bezier(.23,1,.32,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font-family: var(--fb); font-size: 16px; line-height: 1.6; }
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(20px, 6vw, 80px) 100px;
  background: linear-gradient(rgba(14,68,35,.65), rgba(14,68,35,.75)), url('../images/hero-bg.webp') center/cover no-repeat;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4.5px;
  color: var(--bg);
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-h1 {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
 font-size: clamp(3rem, 10vw, 8rem);
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--parch);
  max-width: 1000px;
}
.hero-h1 em { color: var(--lime); font-style: inherit; }
.hero-sub {
  margin-top: 30px;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(244,238,220,.65);
  max-width: 440px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--lime);
  color: var(--sage);
  font-weight: 800;
  font-size: 14px;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--lime-d); }
.btn-ghost {
  background: transparent;
  color: var(--parch);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(244,238,220,.3);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 60px);
  margin-top: 70px;
}
.stat-n {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--lime);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(244,238,220,.45);
  margin-top: 5px;
}
.marquee-band {
  overflow: hidden;
  background: var(--amber);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marq 22s linear infinite;
}
.marquee-track span {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}
.marquee-dot { color: #fff; opacity: .55; }
@keyframes marq { to { transform: translateX(-50%); } }
/* ── Nav ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .4s, backdrop-filter .4s;
}
.site-header.solid {
  background: rgba(244,238,220,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24,95,48,.1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-mark { flex-shrink: 0; }
.nav-wrd {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  display: block;
}
.nav-wrd .veg { color: var(--lime); }
.nav-wrd .ama { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(244,238,220,.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--lime); }
.site-header.solid .nav-links a { color: rgba(26,46,31,.6); }
.site-header.solid .nav-links a:hover { color: var(--amber); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(244,238,220,.7);
  font-size: 19px;
  text-decoration: none;
  padding: 4px;
  transition: color .2s;
}
.cart-btn:hover { color: var(--lime); }
.site-header.solid .cart-btn { color: rgba(26,46,31,.6); }
.site-header.solid .cart-btn:hover { color: var(--amber); }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--sage);
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.on { display: flex; }
.btn-nav {
  background: var(--lime);
  color: var(--sage);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-nav:hover { background: var(--lime-d); }
.site-header.solid .btn-nav { background: var(--sage); color: #fff; }
.site-header.solid .btn-nav:hover { background: var(--sage-d); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  order: 3;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parch);
  border-radius: 2px;
  transition: all 0.25s;
}
.site-header.solid .nav-burger span { background: var(--txt); }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--parch);
    padding: 20px clamp(20px, 5vw, 64px);
    gap: 16px;
    border-bottom: 1px solid rgba(24,95,48,.15);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    list-style: none;
    margin: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--txt) !important; font-size: 15px; font-weight: 600; }
}
/* ── Auth Modal ──────────────────────────────────────────────── */
.mo {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mo.open { display: flex; }
.mo-box {
  background: #fff;
  border: 1px solid rgba(24,95,48,.12);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 38px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.ml .mo-box { max-width: 400px; }
.mo-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(26,46,31,.07);
  color: var(--txt);
  font-size: 17px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mo-x:hover { background: rgba(26,46,31,.14); }
.tab-bar {
  display: flex;
  gap: 0;
  margin-bottom: 26px;
  background: var(--bg);
  border-radius: 10px;
  padding: 4px;
}
.tab-b {
  flex: 1;
  padding: 9px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
  background: transparent;
  color: var(--mist);
  transition: all .2s;
}
.tab-b.on { background: var(--lime); color: var(--sage); }
.auth-form { display: flex; flex-direction: column; gap: 13px; }
.auth-form input {
  background: var(--bg);
  border: 1px solid rgba(24,95,48,.18);
  color: var(--txt);
  font-family: var(--fb);
  font-size: 14px;
  padding: 13px 17px;
  border-radius: 11px;
  transition: border-color .2s;
}
.auth-form input::placeholder { color: rgba(26,46,31,.3); }
.auth-form input:focus { outline: none; border-color: var(--amber); }
.auth-form button {
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  padding: 14px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.auth-form button:hover { background: var(--sage-d); }
.mp-name {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--txt);
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--sage);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px clamp(20px, 5vw, 72px);
}
.ft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ft-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ft-logo .nav-wrd { font-size: 22px; }
.ft-social {
  display: flex;
  gap: 20px;
  list-style: none;
}
.ft-social a {
  color: rgba(244,238,220,.35);
  text-decoration: none;
  display: flex;
  transition: color .2s;
}
.ft-social a:hover { color: var(--lime); }
.ft-copy {
  font-size: 12.5px;
  color: rgba(244,238,220,.22);
  justify-self: end;
}
/* ── Sections base ─────────────────────────────────── */
.sec {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
}
.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.sec-eye {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-h {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--txt);
  text-wrap: balance;
}
.sec-h em {
  color: var(--lime-d);
  font-style: inherit;
}
.sec-dark { background: var(--sage); }
.sec-dark .sec-eye { color: var(--lime); }
.sec-dark .sec-h { color: var(--parch); }
.sec-dark .sec-h em { color: var(--lime); }
/* ── Product cards ─────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.prod-card {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 34px 30px;
  cursor: pointer;
  transition: transform .35s var(--ease-out), border-color .3s;
}
.prod-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
}
.prod-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--parch);
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.prod-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(166,206,129,.15);
  color: var(--lime);
  margin-bottom: 12px;
}
.prod-name {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--parch);
  margin-bottom: 10px;
}
.prod-desc {
  font-size: 13.5px;
  color: rgba(244,238,220,.5);
  line-height: 1.65;
  margin-bottom: 18px;
}
.prod-price {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--lime);
}
.btn-sm {
  display: inline-block;
  margin-top: 16px;
  background: var(--lime);
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  border: none;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-sm:hover { background: var(--lime-d); }
/* ── Recipes ───────────────────────────────────────── */
.rec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}
.rec-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.rec-rail::-webkit-scrollbar { display: none; }
.rc {
  flex: 0 0 272px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(24,95,48,.1);
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
.rc:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(24,95,48,.1);
}
.rc-thumb {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  background: #ede4c8;
}
.rc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rc-body { padding: 18px 20px; }
.rc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.rc-name {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--txt);
  line-height: 1.2;
  margin-bottom: 10px;
}
.rc-meta {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  color: rgba(26,46,31,.4);
  font-weight: 600;
}
.rc-meta span:nth-child(2) { color: var(--amber); }
/* ── Blog ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.pc {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.pc-thumb {
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  background: rgba(255,255,255,.05);
}
.pc-body { padding: 24px; }
.pc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pc-title {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  color: var(--parch);
  line-height: 1.2;
  margin-bottom: 10px;
  text-wrap: balance;
}
.pc-excerpt {
  font-size: 13.5px;
  color: rgba(244,238,220,.5);
  line-height: 1.65;
}
.pc-meta {
  font-size: 11.5px;
  color: rgba(244,238,220,.3);
  margin-top: 12px;
  font-weight: 600;
}
/* ── Merch ─────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

@media (max-width: 500px) {
  .merch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.mc {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
@media (hover: hover) and (pointer: fine) {
  .mc:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
}
.mc-emo {
  font-size: 44px;
  margin-bottom: 12px;
  display: block;
}
.mc-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.mc-img img {
  position: absolute;   
  inset: 0;   
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mc-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--parch);
  margin-bottom: 6px;
}
.mc-price {
  color: var(--lime);
  font-weight: 800;
  font-size: 13.5px;
}
.mc-add {
  display: block;
  margin-top: 14px;
  width: 100%;
  background: var(--lime);
  color: var(--sage);
  border: none;
  padding: 9px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.mc-add:hover { background: var(--lime-d); }
#merch .mc {
  background: #fff;
  border: 1px solid rgba(24, 95, 48, .1);
}
#merch .mc-name {
  color: var(--txt);
}
#merch .mc-price {
  color: var(--sage);
}
#merch .mc-add {
  background: var(--sage);
  color: #fff;
}
#merch .mc-add:hover {
  background: var(--sage-d);
}
/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.tc {
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 26px;
}
.tc-stars {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tc-q {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1rem;
  color: var(--parch);
  line-height: 1.45;
  margin-bottom: 14px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.tc-author img {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden; 
  background: var(--lime);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}


.tc-a {
  font-size: 12.5px;
  color: rgba(244, 238, 220, .5);
  font-weight: 600;
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
/* NEWSLETTER */
#newsletter {
  display: block;
  width: 100%;
  background: var(--parch);
  text-align: center;
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  box-sizing: border-box;
}
.nl-inner {
  max-width: 540px;
  margin: 0 auto;
}
.nl-h {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
  color: var(--sage);
  margin-bottom: 14px;
}
.nl-h em {
  color: var(--lime-d);
  font-style: inherit;
}
.nl-sub {
  color: rgba(26, 46, 31, .6);
  font-size: 14.5px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.nl-form {
  display: flex;
  gap: 10px;
}
.nl-form input {
  flex: 1;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(24, 95, 48, .2);
  color: var(--sage);
  font-family: var(--fb);
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  transition: border-color .2s;
}
.nl-form input::placeholder {
  color: rgba(24, 95, 48, .4);
}
.nl-form input:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}
.nl-form button {
  background: var(--amber);
  color: #fff;
  font-family: var(--fb);
  font-weight: 800;
  font-size: 13.5px;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.nl-form button:hover {
  background: var(--amber-d);
}
/* ===== Blog pagination ===== */
.blog-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.blog-pagination a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}
/* ===== Single Post ===== */
.single-post-hero {
  background: var(--sage);
  color: var(--parch);
  text-align: center;
  padding: clamp(100px, 14vw, 160px) clamp(20px, 5vw, 72px) 60px;
}
.single-post-hero h1 {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  max-width: 800px;
  margin: 14px auto 16px;
}
.single-post-meta {
  font-size: 13px;
  color: rgba(244, 238, 220, .5);
  font-weight: 600;
}
.single-post-image {
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 20px;
}
.single-post-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.single-post-body {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--txt);
}
.single-post-body p { margin-bottom: 1.2em; }
.single-post-taxonomy {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.single-post-taxonomy a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(24, 95, 48, .08);
  color: var(--sage);
  text-decoration: none;
}
/* ===== Comments ===== */
.comments-area {
  max-width: 720px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
.comments-area h2 {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--sage);
  margin-bottom: 24px;
}
.comment-list { list-style: none; }
.comment-list li {
  background: rgba(24, 95, 48, .05);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.comment-list .comment-author {
  font-weight: 700;
  color: var(--sage);
}
.comment-list .comment-metadata {
  font-size: 11.5px;
  color: rgba(26, 46, 31, .4);
  margin-bottom: 8px;
}
.comment-list .comment-metadata a {
  color: inherit;
}
.comment-list .reply a {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime-d);
  text-decoration: none;
}
/* ── Comment form ── */
#respond {
  margin-top: 44px;
}
#reply-title {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--txt);
  margin-bottom: 6px;
}
.comment-notes {
  font-size: 13.5px;
  color: rgba(26, 46, 31, .5);
  margin-bottom: 28px;
}
.comment-form p {
  margin-bottom: 20px;
}
.comment-form label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid rgba(24, 95, 48, .18);
  color: var(--txt);
  font-family: var(--fb);
  font-size: 14px;
  padding: 13px 17px;
  border-radius: 11px;
  transition: border-color .2s;
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.comment-form button,
.comment-form input[type="submit"] {
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.comment-form button:hover,
.comment-form input[type="submit"]:hover {
  background: var(--sage-d);
}

.about-hero {
  background: linear-gradient(135deg, rgba(14, 68, 35, 0.96), rgba(24, 95, 48, 0.86));
  color: #f4eedc;
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 72px) 60px;
}
.about-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.about-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(244, 238, 220, 0.8);
  font-size: 1.05rem;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 20px 100px;
}
.about-copy {
  display: grid;
  gap: 20px;
}
.about-card,
.about-form-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(24, 95, 48, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(20, 40, 25, 0.06);
}
.about-card {
  padding: clamp(24px, 4vw, 36px);
}
.about-card h2,
.about-form-card h2 {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 900;
  color: var(--sage);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 12px;
}
.about-card p,
.about-card li {
  color: rgba(26, 46, 31, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}
.about-card ul {
  list-style: disc;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}
.about-form-card {
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
}
.sec-eye--dark {
  color: var(--sage);
}
.vegama-contact-form {
  margin-top: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.vegama-contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage);
}
.full-width {
  grid-column: 1 / -1;
}
.vegama-contact-form input,
.vegama-contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 95, 48, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--txt);
}
.vegama-contact-form input:focus,
.vegama-contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(24, 95, 48, 0.08);
}
.vegama-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.btn-primary--dark {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-step {
        display: none;
    }
    .form-step.active {
        display: block;
    }
    .conv-options {
        display: flex; flex-direction: column; gap: 10px; margin: 20px 0;
    }
    .conv-btn,

    .conv-sub-btn {
        padding: 16px 18px;
        text-align: left;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        line-height: 1.5;
        color: var(--txt);
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(24, 95, 48, 0.16);
        border-radius: 14px;
        transition: all 0.2s ease;
        box-shadow: 0 6px 16px rgba(24, 95, 48, 0.04);
    }

    .conv-btn:hover,
    .conv-sub-btn:hover {
        background: var(--sage);
        color: #fff;
        border-color: var(--sage);
        transform: translateY(-1px);
    }

    .btn-primary,
    .btn-primary--dark {
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

    .conv-back-btn {
        background: none;
        border: none;
        color: #666;
        cursor: pointer;
        padding: 5px 0;
        margin-top: 15px;
        font-size: 13px;
        }

      .vegama-success-box {
        background: #eef4f1;
        color: #2e5a44;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
        font-weight: 700;
        text-align: center;
    }

    .conv-gdpr {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    }

    .conv-gdpr label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .conv-gdpr input {
        width: auto;
    }

    .vegama-form-message {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.vegama-form-message.is-error {
    background: #fff0eb;
    color: #8f3929;
    border: 1px solid #c0513a;
}

.vegama-form-message.is-success {
    background: #eef4f1;
    color: #2e5a44;
    border: 1px solid #7aa98a;
}

.vegama-form-message[hidden] {
    display: none;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.form-actions .btn-primary--dark {
    margin-top: 0;
    margin-left: auto;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Recipes video ===== */
.recipes-video-wrap {
  max-width: 700px;
  margin: 50px 0 50px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}
.recipes-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== Recipe filters ===== */
.recipe-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.4rem;
}
.cat-pill {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: var(--parch);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.cat-pill:hover {
  background: rgba(255,255,255,.15);
}
.cat-pill.active {
  background: var(--lime);
  color: var(--sage);
  font-weight: 700;
  border-color: var(--lime);
}
.sec-h {
  margin-bottom: 1.5rem;
}

#blog-listing a {
  text-decoration: none;
}