/* ----- HalloFood theme v1.1 ----- */
:root {
  --hf-green: #2E7D32;
  --hf-green-dark: #143218;
  --hf-green-soft: #D8E7DD;
  --hf-green-mint: #EAF3EC;
  --hf-accent: #F2A65A;       /* warm accent for CTA highlights */
  --hf-text: #1c1c1c;
  --hf-muted: #5d6b62;
  --hf-border: #e6ece7;
  --hf-bg: #ffffff;
  --hf-bg-soft: #f6faf6;
  --hf-radius: 18px;
  --hf-radius-sm: 10px;
  --hf-shadow-sm: 0 4px 14px rgba(20, 60, 30, 0.06);
  --hf-shadow: 0 14px 40px rgba(20, 60, 30, 0.10);
  --hf-shadow-lg: 0 24px 60px rgba(20, 60, 30, 0.18);
  --hf-max: 1200px;
  --hf-font-sans: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --hf-font-serif: "Roboto Slab", Georgia, "Times New Roman", serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hf-font-sans);
  color: var(--hf-text);
  background: var(--hf-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hf-green); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--hf-green-dark); }

h1, h2, h3, h4 { font-family: var(--hf-font-serif); color: var(--hf-green-dark); line-height: 1.18; margin: 0 0 .55em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }

.hf-container { max-width: var(--hf-max); margin: 0 auto; padding: 0 24px; }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: 10px 16px; z-index: 9999; border: 2px solid var(--hf-green); }
.skip-link:focus { left: 16px; top: 16px; }

/* Header */
.hf-site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hf-border);
}
.hf-header-inner { display: flex; align-items: center; gap: 24px; padding: 12px 0; }
.hf-logo { display: flex; align-items: center; }
.hf-logo a { display: flex; align-items: center; gap: 10px; color: var(--hf-green-dark); font-weight: 700; font-family: var(--hf-font-serif); font-size: 1.4rem; }
.hf-logo img { max-height: 46px; width: auto; }
.hf-nav { margin-left: auto; }
.hf-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.hf-nav a {
  display: inline-block; padding: 9px 16px; border-radius: 999px;
  color: var(--hf-text); font-weight: 500; font-size: .95rem;
  transition: background .15s ease, color .15s ease;
}
.hf-nav a:hover, .hf-nav .current-menu-item > a, .hf-nav .current-cat > a {
  background: var(--hf-green-soft); color: var(--hf-green-dark);
}
.hf-menu-toggle {
  display: none; background: var(--hf-green-soft); border: 0; color: var(--hf-green-dark);
  padding: 9px 14px; border-radius: 10px; cursor: pointer; font-weight: 600; margin-left: auto;
  font-size: .95rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hf-hero {
  position: relative;
  background: linear-gradient(135deg, #EAF3EC 0%, #D8E7DD 100%);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px);
}
.hf-hero::before, .hf-hero::after {
  content: "";
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(60px); opacity: .55;
}
.hf-hero::before {
  width: 360px; height: 360px; background: #C5DCC9;
  top: -120px; right: -80px;
}
.hf-hero::after {
  width: 300px; height: 300px; background: #F4D8B3;
  bottom: -120px; left: -60px; opacity: .35;
}
.hf-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative; z-index: 1;
}
.hf-hero-text h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 18px;
}
.hf-hero-text .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--hf-muted); max-width: 540px; margin: 0 0 30px;
}
.hf-search { max-width: 540px; }
.hf-search form {
  display: flex; background: #fff; border-radius: 999px; box-shadow: var(--hf-shadow);
  padding: 6px; align-items: center;
}
.hf-search input[type="search"] {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 14px 20px; font-size: 1rem; color: var(--hf-text); min-width: 0;
}
.hf-search button {
  background: var(--hf-green); color: #fff; border: 0; cursor: pointer;
  padding: 13px 26px; border-radius: 999px; font-weight: 600;
  transition: background .15s ease, transform .15s ease;
  font-size: .98rem;
}
.hf-search button:hover { background: var(--hf-green-dark); }
.hf-popular {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.hf-popular-label { color: var(--hf-muted); font-size: .85rem; margin-right: 4px; }
.hf-popular a {
  background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9);
  padding: 6px 14px; border-radius: 999px; font-size: .88rem; color: var(--hf-green-dark);
  font-weight: 500;
}
.hf-popular a:hover { background: #fff; border-color: var(--hf-green); }

.hf-hero-visual { position: relative; min-height: 360px; }
.hf-hero-visual .hf-hero-img-main {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: var(--hf-shadow-lg);
  aspect-ratio: 5/4;
  transform: rotate(-1.5deg);
}
.hf-hero-visual .hf-hero-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.hf-hero-visual .hf-hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: 999px; padding: 14px 22px;
  box-shadow: var(--hf-shadow);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--hf-green-dark);
  transform: rotate(-3deg);
}
.hf-hero-visual .hf-hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--hf-green);
  box-shadow: 0 0 0 4px rgba(46,125,50,.18);
}
.hf-hero-visual .hf-hero-pill {
  position: absolute; top: -14px; right: -12px;
  background: var(--hf-green-dark); color: #fff;
  padding: 8px 18px; border-radius: 999px; font-size: .85rem; font-weight: 600;
  transform: rotate(4deg);
  box-shadow: var(--hf-shadow);
}

/* ============================================================
   SECTION
   ============================================================ */
.hf-section { padding: clamp(48px, 7vw, 88px) 0; }
.hf-section--soft { background: var(--hf-bg-soft); }
.hf-section--dark { background: var(--hf-green-dark); color: #d8e7dd; }
.hf-section--dark h2 { color: #fff; }
.hf-section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.hf-section-head h2 { margin: 0; }
.hf-section-head p { color: var(--hf-muted); margin: 6px 0 0; max-width: 480px; }
.hf-section-head .hf-link {
  color: var(--hf-green-dark); font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.hf-section-head .hf-link:hover { color: var(--hf-green); }
.hf-section-head .hf-link::after { content: "→"; transition: transform .2s ease; }
.hf-section-head .hf-link:hover::after { transform: translateX(3px); }

/* ============================================================
   RECIPE CARDS
   ============================================================ */
.hf-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.hf-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hf-grid--6 { grid-template-columns: repeat(6, 1fr); gap: 18px; }

.hf-card {
  background: #fff; border-radius: var(--hf-radius);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--hf-border);
}
.hf-card:hover { transform: translateY(-4px); box-shadow: var(--hf-shadow); border-color: transparent; }
.hf-card a.hf-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.hf-card a.hf-card-link:hover { text-decoration: none; }
.hf-card .hf-card-thumb {
  position: relative; aspect-ratio: 4/3; background: var(--hf-green-soft); overflow: hidden;
}
.hf-card .hf-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hf-card:hover .hf-card-thumb img { transform: scale(1.06); }
.hf-card-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  color: var(--hf-green-dark);
  padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .07em;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.hf-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.hf-card h3 { font-size: 1.18rem; margin: 0 0 10px; line-height: 1.3; }
.hf-card-excerpt { color: var(--hf-muted); font-size: .94rem; margin: 0 0 14px; flex: 1; }
.hf-card-meta {
  display: flex; gap: 14px; color: var(--hf-muted); font-size: .82rem;
  align-items: center; padding-top: 14px; border-top: 1px solid var(--hf-border);
  margin-top: auto;
}
.hf-card-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* Featured large card (hero strip) */
.hf-featured-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
}
.hf-featured-grid .hf-featured-large .hf-card-thumb { aspect-ratio: 16/10; }
.hf-featured-grid .hf-featured-large h3 { font-size: 1.6rem; }
.hf-featured-grid .hf-featured-side {
  display: grid; grid-template-rows: 1fr 1fr; gap: 24px;
}
.hf-featured-grid .hf-featured-side .hf-card { flex-direction: row; }
.hf-featured-grid .hf-featured-side .hf-card a.hf-card-link { flex-direction: row; }
.hf-featured-grid .hf-featured-side .hf-card-thumb { aspect-ratio: 1/1; flex: 0 0 42%; }
.hf-featured-grid .hf-featured-side .hf-card-body { padding: 18px 22px; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.hf-cats {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.hf-cat {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--hf-radius);
  aspect-ratio: 1/1;
  box-shadow: var(--hf-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.hf-cat img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.hf-cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,50,24,0) 30%, rgba(20,50,24,.85) 100%);
  z-index: 1;
}
.hf-cat:hover { transform: translateY(-4px); box-shadow: var(--hf-shadow); }
.hf-cat:hover img { transform: scale(1.08); }
.hf-cat .hf-cat-name {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-family: var(--hf-font-serif); font-weight: 700;
  font-size: 1.1rem; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hf-cat .hf-cat-count {
  display: block; font-family: var(--hf-font-sans); font-weight: 500;
  font-size: .8rem; opacity: .85; margin-top: 2px;
}

/* ============================================================
   ABOUT / SEO TEXT BLOCK
   ============================================================ */
.hf-about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.hf-about-img {
  border-radius: var(--hf-radius); overflow: hidden;
  box-shadow: var(--hf-shadow); aspect-ratio: 4/5;
}
.hf-about-img img { width: 100%; height: 100%; object-fit: cover; }
.hf-about-text h2 { margin-top: 0; }
.hf-about-text .hf-eyebrow {
  display: inline-block; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--hf-green); font-weight: 700; margin-bottom: 12px;
}
.hf-about-text .hf-cta {
  display: inline-block; background: var(--hf-green); color: #fff;
  padding: 12px 24px; border-radius: 999px; font-weight: 600;
  margin-top: 8px;
}
.hf-about-text .hf-cta:hover { background: var(--hf-green-dark); color: #fff; text-decoration: none; }

/* SEO topic columns */
.hf-topics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 16px;
}
.hf-topics .hf-topic {
  background: #fff; padding: 26px 22px; border-radius: var(--hf-radius);
  border: 1px solid var(--hf-border);
}
.hf-topics .hf-topic h3 { font-size: 1.05rem; margin-bottom: 8px; }
.hf-topics .hf-topic p { color: var(--hf-muted); font-size: .92rem; margin: 0; }

/* Single post / page */
.hf-single { padding: 0 0 60px; }
.hf-single .hf-meta {
  color: var(--hf-muted); font-size: .9rem; margin-bottom: 18px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hf-single .hf-meta a { color: var(--hf-green-dark); font-weight: 600; }
.hf-single h1 { margin-top: 6px; }
.hf-single .hf-featured {
  margin: 0 auto 36px; border-radius: var(--hf-radius); overflow: hidden;
  box-shadow: var(--hf-shadow);
  max-height: 520px; aspect-ratio: 16/9; max-width: 960px;
}
.hf-single .hf-featured img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hf-content { max-width: 760px; margin: 0 auto; font-size: 1.06rem; }
.hf-content h2, .hf-content h3 { margin-top: 1.6em; }
.hf-content img { border-radius: var(--hf-radius-sm); margin: 20px 0; }
.hf-content ul, .hf-content ol { padding-left: 1.4em; }
.hf-content blockquote {
  border-left: 4px solid var(--hf-green); padding: 6px 18px; color: var(--hf-muted);
  margin: 22px 0; font-style: italic;
}

/* ============================================================
   POST / RECIPE — editorial style
   ============================================================ */
.hf-post { padding: 0 0 40px; }
.hf-post-head { padding: 56px 0 28px; text-align: center; }
.hf-post-head-inner { max-width: 760px; }
.hf-post-eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hf-green); font-weight: 700; margin-bottom: 18px;
}
.hf-post-eyebrow:hover { color: var(--hf-green-dark); text-decoration: none; }
.hf-post-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.hf-post-lead {
  font-family: var(--hf-font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #3b4a40; line-height: 1.55; max-width: 620px; margin: 0 auto 22px;
  font-style: italic;
}
.hf-post-byline {
  font-size: .88rem; color: var(--hf-muted); margin: 0;
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.hf-post-byline strong { color: var(--hf-text); font-weight: 600; }
.hf-post-byline .dot { opacity: .5; }

.hf-post-hero {
  margin: 8px auto 40px; border-radius: var(--hf-radius); overflow: hidden;
  max-width: 960px; aspect-ratio: 16/9; max-height: 540px;
  box-shadow: var(--hf-shadow);
}
.hf-post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hf-post-body { max-width: 680px; margin: 0 auto 48px; font-size: 1.08rem; line-height: 1.75; color: #2a2a2a; }
.hf-post-body p { margin: 0 0 1.1em; }
.hf-post-body h2 { font-size: 1.5rem; margin: 1.6em 0 .5em; }
.hf-post-body h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; }
.hf-post-body img { border-radius: var(--hf-radius-sm); margin: 1.4em 0; }
.hf-post-body a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ---- Recipe block (editorial) ---- */
.hf-rcp {
  max-width: 880px; margin: 28px auto 60px;
  border-top: 3px solid var(--hf-green);
  padding-top: 36px;
}
.hf-post-title { color: var(--hf-green-dark); }

.hf-rcp-meta-row {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--hf-green-soft); border-radius: 4px;
  padding: 0; margin: 0 0 44px;
  background: var(--hf-green-mint);
}
.hf-rcp-meta-item {
  flex: 1 1 0; min-width: 130px;
  padding: 18px 22px;
  border-right: 1px solid var(--hf-green-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.hf-rcp-meta-item:last-child { border-right: 0; }
.hf-rcp-meta-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--hf-green); font-weight: 700;
}
.hf-rcp-meta-value {
  font-family: var(--hf-font-serif); font-size: 1.15rem; color: var(--hf-green-dark); font-weight: 700;
}
.hf-rcp-meta-actions { align-items: flex-start; justify-content: center; }
.hf-rcp-action {
  background: var(--hf-green); border: 1px solid var(--hf-green); color: #fff;
  padding: 8px 22px; cursor: pointer; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  border-radius: 0; transition: background .15s ease, border-color .15s ease;
}
.hf-rcp-action:hover { background: var(--hf-green-dark); border-color: var(--hf-green-dark); }

.hf-rcp-cols {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px;
  align-items: start;
}

.hf-rcp-h {
  font-family: var(--hf-font-serif); font-size: 1.6rem; color: var(--hf-green-dark);
  margin: 0 0 12px; padding: 0; border: 0; font-weight: 700;
}
.hf-rcp-srv-line {
  color: var(--hf-muted); font-size: .95rem; margin: 0 0 22px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.hf-srv-pill {
  display: inline-flex; align-items: stretch;
  border: 1.5px solid var(--hf-green);
  border-radius: 4px; overflow: hidden;
}
.hf-srv-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 30px; font-size: 1.05rem; line-height: 1; color: var(--hf-green-dark); font-weight: 700;
  padding: 0;
  transition: background .15s ease, color .15s ease;
}
.hf-srv-btn:hover { background: var(--hf-green); color: #fff; }
.hf-srv-pill input {
  border: 0; outline: 0; text-align: center; font-size: .95rem;
  font-weight: 700; color: var(--hf-green-dark); background: transparent;
  padding: 4px 0; width: 42px;
  border-left: 1.5px solid var(--hf-green); border-right: 1.5px solid var(--hf-green);
  -moz-appearance: textfield;
}
.hf-srv-pill input::-webkit-outer-spin-button,
.hf-srv-pill input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.hf-rcp-list { list-style: none; padding: 0; margin: 0; }
.hf-rcp-list li { margin: 0; }
.hf-rcp-list label {
  display: flex; gap: 12px; align-items: baseline;
  padding: 11px 0; cursor: pointer;
  border-bottom: 1px solid var(--hf-green-soft);
  font-size: 1rem;
}
.hf-rcp-list li:last-child label { border-bottom: 0; }
.hf-rcp-chk {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex: 0 0 18px;
  border: 1.5px solid var(--hf-green); border-radius: 3px; cursor: pointer; margin: 0;
  position: relative; align-self: center;
  transition: background .15s ease, border-color .15s ease;
}
.hf-rcp-chk:hover { background: var(--hf-green-mint); }
.hf-rcp-chk:checked { background: var(--hf-green); border-color: var(--hf-green); }
.hf-rcp-chk:checked::after {
  content: ""; position: absolute; left: 5px; top: 2px;
  width: 4px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hf-rcp-list label:has(.hf-rcp-chk:checked) { color: #a3b6a8; text-decoration: line-through; }
.hf-rcp-amt {
  font-weight: 700; color: var(--hf-green-dark); white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 56px;
}
.hf-rcp-ing-name { color: var(--hf-text); flex: 1; }

.hf-rcp-steps { list-style: none; counter-reset: step; padding: 0; margin: 0; }
.hf-rcp-steps li {
  counter-increment: step;
  padding: 22px 0 22px 60px;
  position: relative;
  border-bottom: 1px solid var(--hf-green-soft);
}
.hf-rcp-steps li:first-child { padding-top: 4px; }
.hf-rcp-steps li:last-child { border-bottom: 0; }
.hf-rcp-steps li::before {
  content: counter(step) ".";
  position: absolute; left: 0; top: 22px;
  font-family: var(--hf-font-serif);
  font-size: 1.7rem; font-weight: 700; color: var(--hf-green);
  line-height: 1;
}
.hf-rcp-steps li:first-child::before { top: 4px; }
.hf-rcp-steps h3 {
  font-family: var(--hf-font-serif); font-size: 1.15rem; margin: 0 0 6px; color: var(--hf-text);
  font-weight: 700;
}
.hf-rcp-steps p { margin: 0; color: #2a2a2a; line-height: 1.65; }

.hf-rcp-tip {
  margin: 36px 0 0;
  padding: 24px 28px;
  background: var(--hf-green-mint);
  border-left: 4px solid var(--hf-green);
}
.hf-rcp-tip h4 {
  font-family: var(--hf-font-serif); font-size: 1rem;
  margin: 0 0 8px; color: var(--hf-green-dark);
  text-transform: uppercase; letter-spacing: .1em;
}
.hf-rcp-tip p { margin: 0; font-style: italic; color: #2a3a2c; line-height: 1.6; }

.hf-rcp-nutri {
  margin: 36px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--hf-green-soft);
  font-size: .85rem; color: var(--hf-muted); line-height: 1.7;
}
.hf-rcp-nutri strong { color: var(--hf-green-dark); margin-right: 4px; }
.hf-rcp-nutri em { color: var(--hf-green-dark); font-style: normal; font-weight: 700; }

@media print {
  .hf-site-header, .hf-site-footer, .hf-ad, .hf-section--soft, .hf-rcp-action,
  .hf-rcp-meta-actions, .hf-srv-pill, .hf-post-byline { display: none !important; }
  .hf-rcp-cols { grid-template-columns: 1fr; gap: 24px; }
  body { background: #fff; }
}

@media (max-width: 820px) {
  .hf-rcp-cols { grid-template-columns: 1fr; gap: 32px; }
  .hf-rcp-meta-item { flex: 1 1 50%; border-right: 0; border-bottom: 1px solid var(--hf-border); }
  .hf-rcp-meta-item:nth-last-child(-n+2) { border-bottom: 0; }
  .hf-post-head { padding: 36px 0 18px; }
}

/* (legacy recipe styles removed in v1.4 — see .hf-rcp below) */

/* (legacy scaler/ingredient styles removed in v1.4 — see .hf-rcp above) */

/* Archive header */
.hf-archive-header {
  background: linear-gradient(135deg, var(--hf-green-mint) 0%, var(--hf-green-soft) 100%);
  padding: 60px 0; text-align: center;
}
.hf-archive-header h1 { margin: 0 0 8px; }
.hf-archive-header p { color: var(--hf-muted); margin: 0 auto; max-width: 640px; }

/* Pagination */
.hf-pagination {
  margin: 50px 0 0; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.hf-pagination a, .hf-pagination span {
  padding: 9px 16px; border-radius: 10px; border: 1px solid var(--hf-border);
  color: var(--hf-text); background: #fff; font-weight: 500;
}
.hf-pagination .current { background: var(--hf-green); color: #fff; border-color: var(--hf-green); }
.hf-pagination a:hover { background: var(--hf-green-soft); text-decoration: none; }

/* Footer */
.hf-site-footer {
  background: var(--hf-green-dark); color: #d8e7dd; margin-top: 0; padding: 50px 0 30px;
}
.hf-site-footer a { color: #fff; }
.hf-footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.hf-site-footer .hf-nav a { color: #d8e7dd; font-weight: 400; }
.hf-site-footer .hf-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.hf-copy { font-size: .88rem; color: #b9cfbe; margin-top: 26px; text-align: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }

/* Ad block */
.hf-ad { margin: 40px auto; max-width: 970px; min-height: 90px; }
.hf-ad ins { display: block; }

/* Comments minimal */
.hf-comments { max-width: 760px; margin: 50px auto 0; }
.hf-comments h2 { font-size: 1.4rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hf-grid { grid-template-columns: repeat(2, 1fr); }
  .hf-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hf-cats { grid-template-columns: repeat(3, 1fr); }
  .hf-featured-grid { grid-template-columns: 1fr; }
  .hf-featured-grid .hf-featured-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .hf-topics { grid-template-columns: repeat(2, 1fr); }
  .hf-about { grid-template-columns: 1fr; }
  .hf-about-img { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .hf-menu-toggle { display: inline-flex; }
  .hf-nav { display: none; flex-basis: 100%; margin-left: 0; }
  .hf-nav.is-open { display: block; }
  .hf-nav ul { flex-direction: column; gap: 4px; padding: 10px 0; align-items: stretch; }
  .hf-nav ul a { display: block; }
  .hf-header-inner { flex-wrap: wrap; }
  .hf-hero-grid { grid-template-columns: 1fr; }
  .hf-hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hf-hero-text { text-align: center; }
  .hf-search, .hf-hero-text .lead { margin-left: auto; margin-right: auto; }
  .hf-popular { justify-content: center; }
  .hf-featured-grid .hf-featured-side { grid-template-columns: 1fr; }
  .hf-featured-grid .hf-featured-side .hf-card { flex-direction: column; }
  .hf-featured-grid .hf-featured-side .hf-card a.hf-card-link { flex-direction: column; }
  .hf-featured-grid .hf-featured-side .hf-card-thumb { aspect-ratio: 16/10; flex: none; }
}
@media (max-width: 560px) {
  .hf-grid, .hf-grid--4 { grid-template-columns: 1fr; }
  .hf-cats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hf-topics { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hf-section-head { flex-direction: column; align-items: flex-start; }
}
