/* =========================================================
   SOVEREIGN-TERMINAL — Healthy Food Blog Theme
   ========================================================= */

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark palette */
  --bg:               #190D1B;
  --bg-2:             #241327;
  --panel:            #2C1830;
  --panel-2:          #3A2240;

  /* Brand accent — rose gold */
  --accent:           #E6AE9C;
  --accent-hover:     #D49B89;
  --accent-light:     rgba(230,174,156,.12);
  --bg-warm:          #241327;
  --surface:          #190D1B;

  /* Text */
  --on-surface:       #F4E9EE;
  --on-surface-muted: #C2A1B4;
  --on-accent:        #241500;

  /* Borders & radius */
  --border:           #492A48;
  --radius:           8px;
  --radius-img:       16px;
  --radius-card:      14px;

  /* Typography */
  --font-headline: 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Montserrat', system-ui, sans-serif;
  --font-script:   'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --container-w: 1200px;
  --section-py:  72px;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--on-surface);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.site-main { flex: 1; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ── UTILITY ──────────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--accent  { background: var(--accent); color: var(--on-accent); }
.btn--accent:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn--outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: var(--on-accent); }

.section-heading { margin-bottom: 40px; }
.section-heading--center { text-align: center; }
.section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
}
.section-sub {
  margin-top: 10px;
  color: var(--on-surface-muted);
  font-size: 1.05rem;
}

/* ── TOP BAR ──────────────────────────────────────────── */
.top-bar {
  background: var(--accent-light);
  text-align: center;
  padding: 8px 16px;
  color: var(--on-surface);
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(25,13,27,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 0 24px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-logo .custom-logo-link { display: flex; align-items: center; }
.header-logo .site-title-text {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--on-surface);
  white-space: nowrap;
}
.header-nav { justify-self: center; }
.header-nav .nav-list { display: flex; list-style: none; gap: 8px; }
.header-nav .nav-list a {
  color: var(--on-surface-muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.header-nav .nav-list a:hover { color: var(--accent); background: var(--accent-light); }

/* Desktop dropdown */
.header-nav .nav-list > li {
  position: relative;
}
.header-nav .nav-list > li > a.menu-item-has-children-toggle::after,
.header-nav .nav-list li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transition: transform .2s;
}
.header-nav .nav-list li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.header-nav .nav-list li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.header-nav .nav-list li.menu-item-has-children:hover .sub-menu,
.header-nav .nav-list li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header-nav .nav-list .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .87rem;
  color: var(--on-surface);
  border-radius: 0;
  background: none;
  white-space: nowrap;
}
.header-nav .nav-list .sub-menu a:hover { color: var(--accent); background: var(--accent-light); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 8px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  display: none;
}
.burger-btn:hover { color: var(--accent); background: var(--accent-light); }

.btn--newsletter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}
.btn--newsletter:hover {
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-1px);
}

/* Search Bar */
.header-search-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  padding: 12px 0;
  display: flex;
  justify-content: center;
}
.header-search-bar[hidden] { display: none; }
.header-search-bar .search-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: var(--container-w);
  padding-inline: 24px;
}
.header-search-bar input[type="search"] {
  flex: 1;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  background: var(--surface);
  color: var(--on-surface);
  transition: border-color .2s;
  min-width: 0;
}
.header-search-bar input[type="search"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78,139,95,.12);
}
.header-search-bar input[type="search"]::placeholder { color: var(--on-surface-muted); opacity: .7; }
.header-search-bar button[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 12px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.header-search-bar button[type="submit"]:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.header-search-bar button[type="submit"] svg { display: block; }

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 299;
}
.nav-backdrop.is-open { display: block; }

/* Mobile nav drawer — slides from left */
.nav-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--bg-warm);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.16);
  overflow-y: auto;
}
.nav-menu.is-open { transform: translateX(0); }
.nav-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-menu__brand {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--on-surface);
}
.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s;
}
.nav-close:hover { color: var(--accent); background: var(--accent-light); }
.nav-menu__body { padding: 8px 0; }

/* Mobile nav dropdown: items expand inline */
.nav-menu .menu li.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu .menu li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  flex-shrink: 0;
  transition: transform .25s;
}
.nav-menu .menu li.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}
.nav-menu .menu .sub-menu {
  display: none;
  list-style: none;
  background: var(--accent-light);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.nav-menu .menu li.menu-item-has-children.is-open > .sub-menu {
  display: block;
}
.nav-menu .menu .sub-menu a {
  padding: 10px 24px 10px 32px;
  font-size: .93rem;
  border-left-color: transparent;
}
.nav-menu .menu { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-menu .menu li a {
  display: block;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--on-surface);
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-menu .menu li a:hover {
  color: var(--accent);
  background: var(--accent-light);
  border-left-color: var(--accent);
}
.nav-menu__subscribe {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-menu__subscribe .btn { display: block; text-align: center; }

/* ── HEALTH BRIEFING HERO ─────────────────────────────── */
.briefing-section {
  background: var(--bg-2);
  padding: 52px 0 68px;
  position: relative;
  overflow: hidden;
}

/* Oversized watermark typography */
.briefing-bg-text {
  position: absolute;
  top: -0.26em;
  left: -0.05em;
  font-family: var(--font-headline);
  font-size: clamp(12rem, 20vw, 24rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(255,255,255,.024);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* Dual-point mesh gradient wash */
.briefing-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 70% 18%, rgba(78,139,95,.22) 0%, transparent 70%),
    radial-gradient(ellipse 38% 44% at 18% 88%, rgba(78,139,95,.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Editorial header bar */
.briefing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}
.briefing-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.briefing-header__kicker {
  font-family: var(--font-headline);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  white-space: nowrap;
}
.briefing-header__rule {
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.briefing-header__edition {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: rgba(255,255,255,.45);
}
.briefing-header__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.briefing-header__date {
  font-family: var(--font-headline);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
}
.briefing-header__all {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(208,233,214,.35);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.briefing-header__all:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ── MAIN ASYMMETRIC GRID ── */
.briefing-grid {
  display: grid;
  grid-template-columns: 1.85fr 1.08fr 0.92fr;
  grid-template-rows: 300px 300px;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Shared card base */
.bf-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.bf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}

/* ── A: LEAD STORY ── */
.bf-card--lead {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--accent-hover);
}
.bf-card__img-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
/* Dark cinematic gradient over image */
.bf-card--lead .bf-card__img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    172deg,
    rgba(5,16,9,.03) 0%,
    rgba(5,16,9,.38) 42%,
    rgba(5,16,9,.92) 100%
  );
}
.bf-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.bf-card--lead:hover .bf-card__img { transform: scale(1.04); }
.bf-card__placeholder { width: 100%; height: 100%; background: var(--accent-hover); }

/* Angled "Lead Story" flag badge */
.bf-lead-badge {
  position: absolute;
  top: 24px;
  left: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 6px 20px 6px 18px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  z-index: 3;
}

.bf-card__lead-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.bf-card__lead-body { padding: 0 34px 32px; }

/* Glass-tinted category pill */
.bf-pill {
  display: inline-block;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
  transition: background .2s;
}
.bf-pill:hover { background: rgba(255,255,255,.28); color: #fff; }
.bf-card__lead-title {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  margin-bottom: 12px;
}
.bf-card__lead-title a { color: #fff; }
.bf-card__lead-title a:hover { color: var(--accent-light); }
.bf-card__lead-excerpt {
  font-size: .88rem;
  color: rgba(255,255,255,.76);
  line-height: 1.62;
  max-width: 44ch;
  margin-bottom: 22px;
}
.bf-card__lead-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bf-card__lead-date {
  font-family: var(--font-headline);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.48);
}
/* Solid accent CTA */
.bf-lead-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 9px 22px;
  border-radius: 999px;
  transition: background .22s, transform .22s;
}
.bf-lead-cta:hover { background: var(--accent-hover); color: #fff; transform: translateX(3px); }

/* ── B: TRENDING ── */
.bf-card--trending {
  grid-column: 2;
  grid-row: 1;
  background: var(--accent-hover);
}
/* Full-image overlay — same approach as lead card */
.bf-card--trending .bf-card__img-link {
  position: absolute;
  inset: 0;
}
.bf-card--trending .bf-card__img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(5,16,9,.04) 0%, rgba(5,16,9,.90) 100%);
}
.bf-card--trending:hover .bf-card__img { transform: scale(1.04); }
/* Overlay content pinned at the bottom */
.bf-trending__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
  z-index: 2;
}
.bf-trending__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
/* Animated live dot */
.bf-trending__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  flex-shrink: 0;
  animation: bf-pulse 1.8s ease-in-out infinite;
}
@keyframes bf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.72); }
}
.bf-trending__label {
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #ef4444;
}
/* Category chip — used in light-bg contexts */
.bf-cat-chip {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 9px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.bf-cat-chip:hover { background: var(--accent); color: #fff; }
/* Inverted chip — glass/white for dark green backgrounds */
.bf-cat-chip--inv {
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bf-cat-chip--inv:hover { background: rgba(255,255,255,.32); color: #fff; }
.bf-card__trending-title {
  font-family: var(--font-headline);
  font-size: clamp(.92rem, 1.15vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  margin: 0;
}
.bf-card__trending-title a { color: #fff; }
.bf-card__trending-title a:hover { color: var(--accent-light); }

/* ── C: EDITORIAL INSIGHT ── */
.bf-card--insight {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-hover) 100%);
  overflow: hidden;
}
.bf-card--insight::before {
  content: '';
  position: absolute;
  top: -55px; right: -55px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  pointer-events: none;
}
.bf-card--insight::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
/* Decorative oversized quote mark */
.bf-insight__deco {
  position: absolute;
  top: -14px; right: 14px;
  font-family: var(--font-script);
  font-size: 9rem;
  line-height: 1;
  color: rgba(255,255,255,.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bf-insight__content {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.bf-insight__content .bf-pill {
  width: 133px;
}
.bf-card__insight-title {
  font-family: var(--font-headline);
  font-size: clamp(.9rem, 1.1vw, 1.04rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 10px 0 8px;
}
.bf-card__insight-title a { color: #fff; }
.bf-card__insight-title a:hover { color: var(--accent-light); }
.bf-card__insight-excerpt {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin-bottom: 16px;
}
/* Ghost outline button */
.bf-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid rgba(255,255,255,.48);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 999px;
  align-self: flex-start;
  transition: background .22s, border-color .22s;
}
.bf-ghost-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.85); color: #fff; }

/* ── D+E: QUICK READ SIDEBAR ── */
.bf-sidebar {
  grid-column: 3;
  grid-row: 1 / 3;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bf-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.bf-sidebar__label {
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.bf-sidebar__rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
  display: block;
}
.bf-qread { padding: 0 18px; }
.bf-qread__inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
}
.bf-qread__thumb-link {
  flex: 0 0 68px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.bf-qread__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s;
}
.bf-qread:hover .bf-qread__img { transform: scale(1.08); }
.bf-qread__body { flex: 1; min-width: 0; }
.bf-qread__cat {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: .57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 4px;
  transition: color .2s;
}
.bf-qread__cat:hover { color: var(--accent-light); }
.bf-qread__title {
  font-family: var(--font-headline);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bf-qread__title a { color: #fff; }
.bf-qread__title a:hover { color: var(--accent-light); }
.bf-qread__date {
  font-family: var(--font-headline);
  font-size: .63rem;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.bf-qread__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}
/* Wellness insight mini panel */
.bf-stat-panel {
  margin-top: auto;
  padding: 16px 18px 18px;
  background: rgba(78,139,95,.18);
  border-top: 1px solid rgba(78,139,95,.28);
  flex-shrink: 0;
}
.bf-stat-panel__label {
  display: block;
  font-family: var(--font-headline);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 4px;
}
.bf-stat-panel__stat {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.bf-stat-panel__stat strong { color: var(--accent-light); }
.bf-stat-panel__text {
  font-size: .74rem;
  color: rgba(255,255,255,.52);
  line-height: 1.52;
}
/* ── COMMUNITY BANNER ─────────────────────────────────── */
.community-banner {
  background: var(--panel);
  color: var(--on-surface);
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-banner__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.community-banner__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  color: var(--on-surface);
  letter-spacing: .01em;
}
.community-banner .btn--accent {
  background: var(--accent);
  color: var(--on-accent);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 11px 26px;
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.community-banner .btn--accent:hover { background: var(--accent-hover); color: var(--on-accent); }

/* ── SECTION DIVIDER ─────────────────────────────────── */
.sect-div { padding: 6px 0; }
.sect-div__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sect-div__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}
.sect-div__mark {
  font-size: .65rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

/* ── RECIPES GRID ─────────────────────────────────────── */
.recipes-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}
/* Editorial two-part heading row */
.recipes-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.recipes-section__eyebrow {
  display: block;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 6px;
}
.recipes-section__title {
  font-family: var(--font-headline);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.18;
  margin: 0;
}
.recipes-section__all {
  font-family: var(--font-headline);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent-light);
  transition: border-color .2s, color .2s;
}
.recipes-section__all:hover { border-color: var(--accent); color: var(--accent-hover); }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recipe-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
/* Image wrapper — positions the overlay pill */
.recipe-card__img-wrap {
  position: relative;
  flex-shrink: 0;
}
/* Category pill on image — top left corner */
.recipe-card__cat--img {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: auto;
}
.recipe-card__img-link { display: block; aspect-ratio: 4/3; overflow: hidden; }
.recipe-card__img, .recipe-card__img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.recipe-card__img-placeholder { background: var(--accent-light); }
.recipe-card:hover .recipe-card__img { transform: scale(1.04); }
/* Card body — flex-grow fills full remaining card height so bg is consistent */
.recipe-card__body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Date line */
.recipe-card__date {
  display: block;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--on-surface-muted);
  margin-bottom: 6px;
}
/* Category pill — same pattern as mosaic-pill */
.recipe-card__cat {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 3px 11px;
  border-radius: 999px;
  margin-bottom: 9px;
  transition: background .2s;
}
.recipe-card__cat:hover { background: var(--accent-hover); color: #fff; }
.recipe-card__title {
  font-family: var(--font-headline);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.recipe-card__title a { color: inherit; }
.recipe-card__title a:hover { color: var(--accent); }
/* Excerpt */
.recipe-card__excerpt {
  font-size: .85rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}
/* Read More link */
.recipe-card__more {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
  margin-top: auto;
  transition: color .2s;
}
.recipe-card__more:hover { color: var(--accent-hover); }

/* ── TIPS SECTION ─────────────────────────────────────── */
.tips-section {
  background: var(--bg-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Diagonal stripe texture overlay */
.tips-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,.018) 0px,
    rgba(255,255,255,.018) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}
/* Centred section header */
.tips-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.tips-header__eyebrow {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  border: 1px solid rgba(78,139,95,.5);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.tips-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.tips-header__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
/* Horizontal list — 2 columns of rows */
.tips-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
}
.tip-item {
  display: grid;
  grid-template-columns: 64px 52px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 32px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .28s;
}
.tip-item:hover { background: rgba(255,255,255,.07); }
/* Large step number */
.tip-item__num {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  align-self: start;
  padding-top: 0;
  margin-top: -0.15em;
}
/* Emoji icon column */
.tip-item__icon {
  font-size: 1.7rem;
  line-height: 1;
  align-self: start;
  padding-top: 0;
}
/* Text content */
.tip-item__body { min-width: 0; }
.tip-item__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.tip-item__text {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ── CATEGORIES SECTION ──────────────────────────────── */
.categories-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 14px rgba(0,0,0,.2);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.13);
}
.cat-card__img-wrap {
  aspect-ratio: 4/4;
  overflow: hidden;
  background: var(--accent-light);
}
.cat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__img-placeholder {
  width: 100%; height: 100%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.cat-card__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  padding: 14px 16px 16px;
  text-align: center;
  line-height: 1.3;
  transition: color .2s;
}
.cat-card:hover .cat-card__title { color: var(--accent); }

/* ── WEIGHTLOSS SECTION ───────────────────────────────── */
.weightloss-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}
.weightloss-section .section-title { color: var(--on-surface); }
.wl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wl-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.wl-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.wl-card__img-link { display: block; aspect-ratio: 4/3; overflow: hidden; }
.wl-card__img, .wl-card__img-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.wl-card__img-placeholder { background: var(--accent-light); }
.wl-card:hover .wl-card__img { transform: scale(1.04); }
.wl-card__body {
  padding: 14px 16px 18px;
  flex: 1;
}
/* Inherit pill style from recipe-card__cat for wl-card */
.wl-card__cat { }
.wl-card__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 6px;
  color: var(--on-surface);
}
.wl-card__title a { color: inherit; }
.wl-card__title a:hover { color: var(--accent); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-warm);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
/* Faint large script watermark */
.testimonials-section::before {
  content: 'Readers';
  position: absolute;
  right: -10px; bottom: -30px;
  font-family: var(--font-script);
  font-size: 11rem;
  color: var(--accent-light);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
/* Split header row */
.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}
.testimonials-header__eyebrow {
  display: block;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 8px;
}
.testimonials-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin: 0;
  max-width: 26ch;
}
.testimonials-header__sub {
  max-width: 32ch;
  color: var(--on-surface-muted);
  font-size: .97rem;
  line-height: 1.65;
  padding-top: 4px;
  flex-shrink: 0;
}
/* Cards grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
/* First card — accent variant */
.testimonial-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
/* Large decorative opening quote */
.testimonial-card__quote-mark {
  font-family: var(--font-script);
  font-size: 4.5rem;
  line-height: .7;
  color: var(--accent-light);
  user-select: none;
}
.testimonial-card--accent .testimonial-card__quote-mark {
  color: rgba(255,255,255,.3);
}
.testimonial-card__text {
  font-size: .97rem;
  color: var(--on-surface);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card--accent .testimonial-card__text { color: rgba(255,255,255,.92); }
/* Footer row: avatar + name/meta + stars */
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testimonial-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--accent-light);
}
.testimonial-card--accent .testimonial-card__avatar {
  border-color: rgba(255,255,255,.5);
}
.testimonial-card__name {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: .95rem;
  color: var(--on-surface);
  line-height: 1.2;
}
.testimonial-card--accent .testimonial-card__name { color: #fff; }
.testimonial-card__meta {
  display: block;
  font-size: .78rem;
  color: var(--on-surface-muted);
  line-height: 1.3;
  margin-top: 2px;
}
.testimonial-card--accent .testimonial-card__meta { color: rgba(255,255,255,.7); }
.testimonial-card__stars {
  color: #f5c842;
  font-size: .9rem;
  letter-spacing: 1.5px;
  margin-left: auto;
}
.testimonial-card--accent .testimonial-card__stars { color: #f5c842; }

/* ── NEWSLETTER ───────────────────────────────────────── */
.newsletter-section {
  background: radial-gradient(ellipse at 50% 100%, #4A2348 0%, var(--bg) 60%);
  padding: var(--section-py) 0;
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner__title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem,2.6vw,2.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--on-surface);
}
.newsletter-inner__sub { color: var(--on-surface-muted); margin-bottom: 24px; }
.newsletter-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-img);
  object-fit: cover;
  display: block;
}
.newsletter-inner .wpcf7-form { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.newsletter-inner .wpcf7-form input[type="email"],
.newsletter-inner .wpcf7-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--on-surface);
}
.newsletter-inner .wpcf7-form input[type="submit"] {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s;
}
.newsletter-inner .wpcf7-form input[type="submit"]:hover { background: var(--accent-hover); }

.wpcf7-spinner {
  display: none;
}

/* Form layout: stack email + button with gap, suppress the raw <br> */
.newsletter-inner .form-fields p {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.newsletter-inner .form-fields p br { display: none; }
.newsletter-inner .form-privacy p { margin: 0; font-size: 14px; }
.form-privacy .wpcf7-list-item {
  margin: 0;
}

/* Validation: red border on invalid email, hide CF7 tip text */
.newsletter-inner .wpcf7-not-valid-tip { display: none !important; }
.newsletter-inner .wpcf7-form input.wpcf7-not-valid {
  border-color: #c0392b;
}
/* Red underline on privacy label when acceptance is invalid */
.newsletter-inner .wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label {
  text-decoration: underline;
  text-decoration-color: #c0392b;
  text-underline-offset: 2px;
}

/* ── EDITOR SECTION ───────────────────────────────────── */
.editor-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
/* About Us — centred, no photo */
.about-inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.editor-bio__eyebrow {
  display: block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.editor-bio__name {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--on-surface);
}
.editor-bio__desc {
  color: var(--on-surface-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 1.02rem;
}
/* Three pillar cards */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
  text-align: left;
}
.about-pillar {
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.about-pillar strong {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: .95rem;
  color: var(--on-surface);
  margin-bottom: 6px;
}
.about-pillar span {
  font-size: .86rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
}
/* Stats row */
.editor-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.editor-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.editor-stat__number {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.editor-stat__label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--on-surface-muted);
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
}

/* Top section */
.footer-top {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Logo (left) */
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-logo__name {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: .02em;
}

/* Horizontal nav (right) */
.footer-nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav-list a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  transition: color .2s;
}
.footer-nav-list a:hover { color: var(--accent); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-copy {
  font-size: .78rem;
  color: var(--on-surface-muted);
  text-align: center;
  margin: 0;
  opacity: .6;
}

/* ── SHARED INNER-PAGE UTILITIES ─────────────────────── */
.container--narrow {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section-pad { padding: var(--section-py) 0; }

/* Category chip — plain accent text matching recipe card style */
.chip {
  display: inline;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  transition: color .2s;
}
.chip:hover { color: var(--accent-hover); }
.chip + .chip::before { content: ' · '; color: var(--on-surface-muted); }

/* ── POST GRID & TILE (archive, index, related) ──────── */
.post-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}
.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
.post-grid--2 { grid-template-columns: repeat(2, 1fr); }

.post-tile {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.post-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.post-tile__thumb-link { display: block; aspect-ratio: 4/3; overflow: hidden; }
.post-tile__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-tile:hover .post-tile__thumb { transform: scale(1.04); }
.post-tile__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.post-tile__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.post-tile__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.post-tile__title a { color: inherit; }
.post-tile__title a:hover { color: var(--accent); }
.post-tile__excerpt { font-size: .9rem; color: var(--on-surface-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.post-tile__meta { font-size: .8rem; color: var(--on-surface-muted); display: flex; align-items: center; gap: 8px; }
.post-tile__meta time { }

/* ── PAGINATION ──────────────────────────────────────── */
.pagination { margin-top: 26px; margin-bottom: 72px; }
.pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  color: var(--on-surface);
  border: 1px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.pagination .page-numbers:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.pagination .page-numbers.current { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.pagination .page-numbers.dots { border: none; background: none; min-width: auto; padding: 0 4px; }

/* ── NO RESULTS ──────────────────────────────────────── */
.no-results { text-align: center; padding: 72px 0; }
.no-results p { font-size: 1.1rem; color: var(--on-surface-muted); margin-bottom: 24px; }

/* ── ARCHIVE / CATEGORY PAGE ─────────────────────────── */
.archive-main { padding: 56px 0 80px; }

.archive-header {
  padding: 24px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
}
.archive-header__eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.archive-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.15;
  margin-bottom: 12px;
}
.archive-header__desc {
  color: var(--on-surface-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── SINGLE POST ─────────────────────────────────────── */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width .1s linear;
}

.single-main { padding: 56px 0 80px; }
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

/* Article header */
.article-header { margin-bottom: 32px; }
.article-header__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.article-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--on-surface-muted);
}

/* Featured image */
.article-hero { margin-bottom: 40px; border-radius: var(--radius-img); overflow: hidden; }
.article-hero__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.article-hero__caption {
  font-size: .8rem;
  color: var(--on-surface-muted);
  text-align: center;
  padding: 8px 0;
  font-style: italic;
}

/* Prose content */
.entry-content {
  color: var(--on-surface);
  font-size: 1.05rem;
  line-height: 1.8;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--on-surface);
  margin: 1.0em 0 .6em;
  line-height: 1.25;
}
.entry-content h2 { font-size: 1.55rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.05rem; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content ul,
.entry-content ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content li { margin-bottom: .4em; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--accent-hover); }
.entry-content img { border-radius: var(--radius-img); margin: 1.5em 0; }
.entry-content blockquote {
  border-left: 4px solid var(--accent);
  margin: 2em 0;
  padding: 1em 1.5em;
  background: var(--bg-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--on-surface-muted);
}
.entry-content blockquote p { margin: 0; }
.entry-content code {
  background: var(--accent-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .88em;
}
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

/* Prev / Next post nav */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-nav__prev { text-align: left; }
.article-nav__next { text-align: right; }
.article-nav__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 6px;
}
.article-nav__link {
  font-family: var(--font-headline);
  font-size: .95rem;
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.35;
}
.article-nav__link:hover { color: var(--accent); }

/* Related posts (legacy inline — kept for fallback) */
.related-posts { margin-top: 56px; }
.related-posts__heading {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* You May Also Like — full-width section below single layout */
.related-section {
  background: var(--surface);
}
.related-section__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.related-section__heading {
  font-family: var(--font-headline);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.18;
  margin: 6px 0 0;
}
.related-section .recipes-grid {
  grid-template-columns: repeat(4, 1fr);
}
.sect-div-single {
  margin: 36px 0;
}

/* Sticky sidebar */
.single-sidebar { position: sticky; top: calc(var(--header-h, 64px) + 24px); }

/* Latest Articles panel */
.sidebar-panel {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  overflow: hidden;
}
.sidebar-panel__heading {
  font-family: var(--font-headline);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}
.side-article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.side-article:last-child { border-bottom: none; }
.side-article__thumb-link {
  display: block;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
}
.side-article__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.side-article__thumb-link:hover .side-article__thumb { transform: scale(1.05); }
.side-article__body { flex: 1; min-width: 0; }
.side-article__cat {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-headline);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  transition: background .2s, color .2s;
}
.side-article__cat:hover { background: var(--accent); color: #fff; }
.side-article__title {
  font-family: var(--font-headline);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
}
.side-article__title a { color: var(--on-surface); }
.side-article__title a:hover { color: var(--accent); }
.side-article__date {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 600;
  color: var(--on-surface-muted);
  display: block;
}

/* ── SIDEBAR SUBSCRIPTION PANEL ─────────────────────── */
.sidebar-sub {
  margin-top: 16px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  overflow: hidden;
  background: var(--bg-warm);
}
.sidebar-sub__inner {
  padding: 24px 20px;
}
.sidebar-sub__eyebrow {
  display: block;
  font-family: var(--font-headline);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 10px;
}
.sidebar-sub__title {
  font-family: var(--font-headline);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.25;
  margin: 0 0 8px;
}
.sidebar-sub__desc {
  font-size: .82rem;
  color: var(--on-surface-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}
/* Compact form inside sidebar */
.sidebar-sub .wpcf7-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-sub .wpcf7-form input[type="email"],
.sidebar-sub .wpcf7-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--on-surface);
}
.sidebar-sub .wpcf7-form input[type="email"]::placeholder,
.sidebar-sub .wpcf7-form input[type="text"]::placeholder {
  color: var(--on-surface-muted);
}
.sidebar-sub .wpcf7-form input[type="email"]:focus,
.sidebar-sub .wpcf7-form input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.sidebar-sub .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s;
}
.sidebar-sub .wpcf7-form input[type="submit"]:hover { background: var(--accent-hover); }
.sidebar-sub .form-fields p { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.sidebar-sub .form-fields p br { display: none; }
.sidebar-sub .form-privacy p { margin: 0; font-size: .75rem; color: var(--on-surface-muted); }
.sidebar-sub .form-privacy a { color: var(--accent); }
.sidebar-sub .wpcf7-not-valid-tip { display: none !important; }
.sidebar-sub .wpcf7-form input.wpcf7-not-valid { border-color: #c0392b; }

/* ── STATIC PAGE ─────────────────────────────────────── */
.page-main { padding: 56px 0 80px; }
.page-header { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.page-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
}
.page-hero { margin-bottom: 40px; border-radius: var(--radius-img); overflow: hidden; }
.page-hero__img { width: 100%; aspect-ratio: 16/6; object-fit: cover; }

/* ── 404 PAGE ────────────────────────────────────────── */
.error-main { padding: 80px 0 100px; }
.error-page { text-align: center; }
.error-page__code {
  font-family: var(--font-headline);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}
.error-page__title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 16px;
}
.error-page__desc {
  color: var(--on-surface-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 36px;
}
.error-page__actions { margin-bottom: 64px; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; border-color: var(--accent-hover); }

.error-recent {
  max-width: 500px;
  margin-inline: auto;
  text-align: left;
}
.error-recent__heading {
  font-family: var(--font-headline);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.error-recent__list { list-style: none; }
.error-recent__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.error-recent__list li:last-child { border-bottom: none; }
.error-recent__list a {
  font-weight: 600;
  color: var(--on-surface);
  font-size: .95rem;
  flex: 1;
}
.error-recent__list a:hover { color: var(--accent); }
.error-recent__list time { font-size: .78rem; color: var(--on-surface-muted); white-space: nowrap; }

/* ── ASTRO HERO ───────────────────────────────────────── */
.astro-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 20%, #4A2348 0%, var(--bg) 60%);
  padding: 0;
}
.astro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 18% 24%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 82% 16%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 60% 60%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 34% 78%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.3px 1.3px at 90% 72%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,.3), transparent);
}
.astro-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 88px 0 100px;
  position: relative;
  z-index: 2;
}
.astro-hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.astro-hero__heading {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--on-surface);
  margin: 0;
  letter-spacing: .02em;
}
.astro-hero__heading em {
  font-style: italic;
  color: var(--accent);
}
.astro-hero__lead {
  font-size: 1.05rem;
  color: var(--on-surface-muted);
  font-weight: 300;
  margin: 22px 0 32px;
  max-width: 460px;
  line-height: 1.7;
}
.astro-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.astro-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.astro-hero__stat b {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.astro-hero__stat span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  display: block;
  margin-top: 4px;
}
.astro-hero__visual { position: relative; }
.astro-hero__img {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.astro-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 30%, #4A2348 0%, var(--bg-2) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.astro-hero__ring {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(230,174,156,.26);
  border-radius: 26px;
  pointer-events: none;
}
.astro-hero__badge {
  position: absolute;
  left: -22px;
  bottom: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.astro-hero__badge-icon { font-size: 26px; line-height: 1; }
.astro-hero__badge-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--on-surface-muted);
}
.astro-hero__badge-text strong {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface);
}

/* ── ASTRO ABOUT ──────────────────────────────────────── */
.astro-about {
  background: var(--bg-2);
  padding: 90px 0;
  position: relative;
}
.astro-about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.astro-about__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.astro-about__heading {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--on-surface);
  line-height: 1.12;
  margin: 0 0 20px;
}
.astro-about__text {
  color: var(--on-surface-muted);
  font-weight: 300;
  font-size: .97rem;
  line-height: 1.78;
  margin: 0 0 16px;
}
.astro-about__sig {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  margin-top: 24px;
  display: block;
}
.astro-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.astro-cred {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color .2s;
}
.astro-cred:hover { border-color: var(--accent); }
.astro-cred__number {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.astro-cred__title {
  display: block;
  margin: 10px 0 4px;
  font-weight: 500;
  font-size: .93rem;
  color: var(--on-surface);
}
.astro-cred__desc { font-size: .82rem; color: var(--on-surface-muted); }

/* ── ORACLE / ORB SECTION ─────────────────────────────── */
.oracle-section {
  padding: 90px 0;
  background: radial-gradient(ellipse at 50% 0%, #4A2348 0%, var(--bg-2) 55%);
  position: relative;
  overflow: hidden;
}
.oracle-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.oracle-section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  display: block;
}
.oracle-section__heading {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--on-surface);
  margin: 0 0 16px;
  line-height: 1.1;
}
.oracle-section__sub {
  color: var(--on-surface-muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.orb {
  position: relative;
  width: 240px;
  height: 240px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform .25s;
  outline: none;
  flex-shrink: 0;
}
.orb:hover { transform: scale(1.04); }
.orb:active { transform: scale(.96); }
.orb:focus-visible { outline: 2px solid var(--accent); outline-offset: 10px; }
.orb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.orb-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 36px;
  font-family: var(--font-headline);
  color: #F4EEFF;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.3;
  transition: opacity .35s;
  text-shadow: 0 1px 10px rgba(0,0,0,.65);
  pointer-events: none;
}
.orb-hint {
  color: var(--on-surface-muted);
  font-size: .88rem;
  min-height: 22px;
  letter-spacing: .4px;
  text-align: center;
}
.spin { animation: orbspin .7s ease; }
@keyframes orbspin {
  0%   { transform: rotate(0) scale(1); }
  50%  { transform: rotate(5deg) scale(.95); }
  100% { transform: rotate(0) scale(1); }
}

/* Responsive: astro hero + about */
@media (max-width: 860px) {
  .astro-hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 72px; }
  .astro-hero__visual { display: none; }
  .astro-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .astro-creds { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .astro-hero__stats { gap: 24px; }
  .astro-creds { grid-template-columns: 1fr; }
  .astro-hero__badge { left: 8px; }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Header — flex so logo stays left, icons stay right */
  .header-inner { display: flex; justify-content: space-between; padding: 0 16px; }
  .header-nav { display: none; }
  .burger-btn { display: flex; }

  .btn--newsletter {
    display: none;
  }

  .footer-row { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-nav-list { justify-content: center; }
  .recipes-grid, .wl-grid  { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-grid .cat-card:nth-child(-n+3) { grid-column: span 2; }
  .cat-grid .cat-card:nth-child(n+4)  { grid-column: span 3; }
  /* Tips: collapse 2-col grid to 1-col */
  .tips-list { grid-template-columns: 1fr; }

  /* Briefing — 2-col at tablet */
  .briefing-grid {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 260px 210px 260px;
    height: auto;
  }
  .bf-card--lead    { grid-column: 1; grid-row: 1 / 3; }
  .bf-card--trending { grid-column: 2; grid-row: 1; }
  .bf-card--insight  { grid-column: 2; grid-row: 2; }
  .bf-sidebar { grid-column: 1 / 3; grid-row: 3; flex-direction: row; height: auto; border-radius: 18px; overflow: hidden; }
  .bf-sidebar__header { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 16px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.08); width: 110px; flex-shrink: 0; }
  .bf-sidebar__rule { display: none; }

  /* Inner pages */
  .post-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  /* Related recipes: 2-col at tablet */
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .related-section .recipes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  /* Briefing — single column on mobile */
  .briefing-section { padding: 36px 0 48px; }
  .briefing-bg-text { font-size: 9rem; }
  .briefing-header { flex-wrap: wrap; gap: 10px; }
  .briefing-header__right { gap: 14px; }
  .briefing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto auto auto;
    gap: 12px;
    height: auto;
  }
  .bf-card--lead    { grid-column: 1; grid-row: 1; }
  .bf-card--trending { grid-column: 1; grid-row: 2; }
  .bf-card--insight  { grid-column: 1; grid-row: 3; }
  .bf-sidebar { grid-column: 1; grid-row: 4; flex-direction: column; height: auto; }
  .bf-sidebar__header { flex-direction: row; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: auto; }
  .bf-sidebar__rule { display: block; }

  .recipes-section__heading { flex-direction: column; align-items: flex-start; gap: 12px; }
  .community-banner__inner { gap: 14px; flex-direction: column; text-align: center; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-nav-list { gap: 16px; justify-content: center; }

  /* Inner pages */
  .post-grid--3 { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; gap: 16px; }
  .article-nav__next { text-align: left; }
  .article-hero__img { aspect-ratio: 4/3; }
  .archive-header { padding: 32px 0 36px; margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid .cat-card:nth-child(-n+3) { grid-column: auto; }
  .cat-grid .cat-card:nth-child(n+4)  { grid-column: auto; }
  .cat-grid .cat-card:last-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  .recipes-grid, .wl-grid { grid-template-columns: 1fr; }
  .related-section .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .tip-item { grid-template-columns: 48px 1fr; gap: 0 12px; padding: 22px 16px; }
  .tip-item__num { font-size: 1.6rem; }
  .tip-item__icon { display: none; }
}
