/* ===================================================================
   Bush & Belly — bushandbelly.com
   Cultural recipes & traditional remedies
   Design system / global stylesheet
   =================================================================== */

:root {
  /* Palette — warm Caribbean heritage */
  --green-900: #0c3b1c;
  --green-700: #15823c;
  --green-500: #1ea84e;
  --gold-500:  #f4b820;
  --gold-600:  #d99a08;
  --scotch:    #d1342f;   /* scotch-bonnet red accent */
  --cream:     #fdf8ee;
  --paper:     #ffffff;
  --ink:       #221c14;
  --ink-soft:  #5b5346;
  --line:      #ece3d2;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(34, 28, 20, 0.08);
  --shadow-lg: 0 20px 50px rgba(34, 28, 20, 0.14);
  --maxw: 1160px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--scotch); }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; color: var(--ink); font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-head p { color: var(--ink-soft); margin-top: 10px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .72rem; font-weight: 700; color: var(--gold-600);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .98rem; cursor: pointer;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); color: #fff; box-shadow: var(--shadow); }
.btn-gold { background: var(--gold-500); color: var(--ink); }
.btn-gold:hover { background: var(--gold-600); color: var(--ink); }
.btn-ghost { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn-ghost:hover { background: var(--green-700); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-500), var(--green-700));
  display: grid; place-items: center; color: #fff; font-size: 1.1rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}
.brand .amp { color: var(--scotch); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .98rem; }
.nav-links a:hover { color: var(--green-700); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(244,184,32,.25), transparent 60%),
    linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 84px 0 96px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.5vw, 4rem); }
.hero h1 .accent { color: var(--gold-500); }
.hero p { font-size: 1.18rem; margin: 18px 0 28px; color: rgba(255,255,255,.9); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Search */
.search-wrap { margin-top: 30px; }
.search {
  display: flex; gap: 8px; background: #fff; padding: 8px; border-radius: 999px;
  box-shadow: var(--shadow-lg); max-width: 520px;
}
.search input {
  flex: 1; border: 0; outline: none; font-size: 1rem; padding: 12px 18px;
  border-radius: 999px; background: transparent; color: var(--ink);
}
.search .btn { padding: 12px 22px; }

/* ---------- Culture grid ---------- */
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.culture-card {
  position: relative; border-radius: var(--radius); padding: 28px 20px; min-height: 150px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.culture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.culture-card h3 { color: #fff; font-size: 1.4rem; }
.culture-card span { font-size: .85rem; opacity: .9; }
.culture-card .flagdot { font-size: 1.6rem; margin-bottom: auto; }
.cc-jamaica { background: linear-gradient(150deg, #0c3b1c, #15823c 60%, #f4b820); }
.cc-mexico { background: linear-gradient(150deg, #1f7a37, #c0432a 55%, #f4b820); }
.cc-soon { background: linear-gradient(150deg, #4a4336, #6b6253); }
.cc-soon::before {
  content: "Coming soon"; position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.25); font-size: .68rem; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ---------- Recipe cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.recipe-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.thumb {
  height: 190px; display: grid; place-items: center; color: #fff;
  font-family: var(--serif); font-size: 1.05rem; text-align: center; padding: 16px;
  position: relative;
}
.thumb .emoji { font-size: 3.2rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.thumb img, .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb { padding: 0; overflow: hidden; }
.hero-photo { overflow: hidden; padding: 0; }
.t-jerk   { background: linear-gradient(150deg,#7a1f12,#d1342f); }
.t-ackee  { background: linear-gradient(150deg,#b9860a,#f4b820); }
.t-rice   { background: linear-gradient(150deg,#0c3b1c,#15823c); }
.t-mannish{ background: linear-gradient(150deg,#5b3a1a,#a9712f); }
.t-roots  { background: linear-gradient(150deg,#3a1f0c,#7a4a1f); }
.recipe-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.tag-recipe { background: #e7f5ec; color: var(--green-700); }
.tag-remedy { background: #fdeceb; color: var(--scotch); }
.recipe-card h3 { font-size: 1.32rem; margin-bottom: 6px; }
.recipe-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.meta { display: flex; gap: 16px; margin-top: 14px; color: var(--ink-soft); font-size: .85rem; }
.meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Disclaimer banner ---------- */
.disclaimer {
  background: #fff7e6; border: 1px solid #f3dca0; border-left: 5px solid var(--gold-500);
  border-radius: var(--radius-sm); padding: 16px 20px; color: #6b5618; font-size: .92rem;
  display: flex; gap: 12px; align-items: flex-start;
}
.disclaimer strong { color: #6b5618; }
.disclaimer .ico { font-size: 1.3rem; line-height: 1; }

/* ---------- Ad / affiliate slots ---------- */
.ad-slot {
  border: 2px dashed var(--line); border-radius: var(--radius-sm);
  text-align: center; padding: 22px; color: var(--ink-soft); font-size: .82rem;
  background: #fffdf8; letter-spacing: .04em; text-transform: uppercase;
}
.affiliate {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.affiliate h4 { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 14px; }
.affiliate ul { list-style: none; display: grid; gap: 12px; }
.affiliate li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.affiliate li:last-child { border-bottom: 0; padding-bottom: 0; }
.affiliate .fine { font-size: .72rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(150deg, var(--green-900), var(--green-700));
  color: #fff; border-radius: var(--radius); padding: 48px; text-align: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.88); margin: 10px auto 22px; max-width: 480px; }
.newsletter form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: 0; outline: none; font-size: 1rem;
}

/* ---------- Recipe article ---------- */
.breadcrumb { font-size: .85rem; color: var(--ink-soft); padding: 22px 0 0; }
.breadcrumb a { color: var(--ink-soft); }
.article-head { max-width: 760px; margin: 0 auto; text-align: center; padding: 22px 0 8px; }
.article-head h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 12px 0; }
.article-head .lede { color: var(--ink-soft); font-size: 1.12rem; }
.article-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin: 22px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.article-meta div { text-align: center; }
.article-meta .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.article-meta .v { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.hero-photo {
  height: 360px; border-radius: var(--radius); display: grid; place-items: center;
  color: #fff; margin: 20px auto; max-width: 900px; box-shadow: var(--shadow-lg);
}
.hero-photo .emoji { font-size: 6rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }

.article-body { max-width: 760px; margin: 0 auto; }
.layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; max-width: 1080px; margin: 0 auto; }
.sidebar { position: sticky; top: 90px; display: grid; gap: 22px; }
.article-body h2 { font-size: 1.7rem; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.25rem; margin: 22px 0 10px; }
.article-body p { margin-bottom: 16px; color: #3a3328; }
.ingredients { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }
.ingredients ul { list-style: none; display: grid; gap: 10px; }
.ingredients li { display: flex; gap: 12px; align-items: flex-start; }
.ingredients li::before { content: "•"; color: var(--scotch); font-weight: 800; font-size: 1.2rem; line-height: 1.2; }
.steps { counter-reset: step; list-style: none; display: grid; gap: 18px; margin: 10px 0; }
.steps li { position: relative; padding-left: 52px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px; width: 36px; height: 36px;
  background: var(--green-700); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-family: var(--serif);
}
.tipbox { background: #e7f5ec; border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0; border-left: 5px solid var(--green-500); }
.tipbox h4 { font-family: var(--serif); margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d8cfbf; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 56px 0 30px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.site-footer a { color: #d8cfbf; display: block; margin-bottom: 9px; font-size: .94rem; }
.site-footer a:hover { color: var(--gold-500); }
.footer-brand p { color: #b3a892; font-size: .95rem; margin-top: 10px; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; text-align: center; font-size: .85rem; color: #9d927d; }

/* ---------- Utility ---------- */
.mt-0{margin-top:0}.center{text-align:center}.mb-24{margin-bottom:24px}
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 28px 0 12px; }
.prose p, .prose li { color: #3a3328; }
.prose ul { margin: 0 0 16px 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 18px 22px; border-bottom: 1px solid var(--line); gap: 14px;
  }
  .card-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 32px 22px; }
  .newsletter form, .search { flex-direction: column; border-radius: var(--radius); }
  .search input { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
