
:root {
  --cj9kg-primary: #6f4e37;
  --cj9kg-primary-dark: #4a3324;
  --cj9kg-accent: #c89f6e;
  --cj9kg-bg: #fbf6ef;
  --cj9kg-bg-alt: #f0e4d2;
  --cj9kg-text: #3a2618;
  --cj9kg-text-muted: #7d6756;
  --cj9kg-border: #ddcab1;
  --cj9kg-success: #6d8b4a;
  --cj9kg-warning: #cc9428;
  --cj9kg-danger: #a8422b;
  --cj9kg-font-heading: "Cormorant Garamond", Georgia, serif;
  --cj9kg-font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cj9kg-heading-weight: 900;
  --cj9kg-heading-letter-spacing: -0.02em;
  --cj9kg-radius: 8px;
  --cj9kg-container-width: 1280px;
  --cj9kg-spacing-scale: 0.85;
  --cj9kg-section-padding: 48px 0;
}

/* ── Author Box (E-E-A-T) ──────────────────────────── */
.author-box {
  margin: 48px 0;
  padding: 32px;
  background: rgba(0, 0, 0, 0.02);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.author-box-image { width: 120px; height: 120px; }
.author-box-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  display: block;
}
.author-box-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.author-box-meta .author-box-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.author-box-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.author-box-meta .title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.author-box-meta .credentials {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}
.author-box-meta .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.author-box-meta .expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.author-box-meta .expertise span {
  background: var(--color-primary);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .author-box-image,
  .author-box-image img,
  .author-box-initials { margin: 0 auto; }
  .author-box-meta .expertise { justify-content: center; }
}

.mj9kg-body{--cj9kg-on-primary:#ffffff;--cj9kg-on-primary-dark:#ffffff;--cj9kg-on-accent:#16181d;}

/* ======== Magazine reset (var-based — archetype themes drive ALL colour/type;
   NEVER use literal palette hex on element selectors here) ======== */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--cj9kg-bg);color:var(--cj9kg-text);font-family:var(--cj9kg-font-body);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4,h5,h6{font-family:var(--cj9kg-font-heading);color:inherit;margin:0 0 .6em;line-height:1.18;}
p{margin:0 0 1.2em;}
a{color:var(--cj9kg-primary);text-decoration:none;}
img{max-width:100%;height:auto;display:block;}

/* ======== Magazine base (shared primitives) ======== */
.mj9kg-container{max-width:var(--cj9kg-container-width,1200px);margin:0 auto;padding:0 24px;}
.mj9kg-sronly{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.mj9kg-btn{display:inline-flex;align-items:center;gap:8px;background:var(--cj9kg-accent);color:var(--cj9kg-on-accent,#fff);border:0;border-radius:var(--cj9kg-radius,8px);padding:12px 22px;font-weight:700;cursor:pointer;font-family:var(--cj9kg-font-body);text-decoration:none;}
.mj9kg-btn:hover{filter:brightness(1.08);}

/* Logo */
.mj9kg-logo{display:inline-flex;align-items:center;gap:13px;text-decoration:none;color:var(--cj9kg-text);}
.mj9kg-logo__mark{display:grid;place-items:center;min-width:44px;height:44px;padding:0 10px;border-radius:11px;background:linear-gradient(135deg,var(--cj9kg-primary),var(--cj9kg-accent));color:var(--cj9kg-on-primary,#fff);font-family:var(--cj9kg-font-heading);font-weight:800;font-size:1.25rem;letter-spacing:.02em;}
/* Transparent-background mark — render it big and unboxed (no radius/bg). */
.mj9kg-logo__img{height:54px;width:auto;max-width:170px;object-fit:contain;border-radius:0;background:transparent;display:block;}
.mj9kg-logo__word{font-family:var(--cj9kg-font-heading);font-weight:800;font-size:1.6rem;letter-spacing:-.02em;}
@media(max-width:680px){.mj9kg-logo__img{height:44px;max-width:130px;}.mj9kg-logo__word{font-size:1.3rem;}}

/* Ticker */
.mj9kg-ticker{background:var(--cj9kg-bg-alt);border-bottom:1px solid var(--cj9kg-border);}
.mj9kg-ticker__inner{display:flex;align-items:center;gap:16px;height:46px;overflow:hidden;}
.mj9kg-ticker__label{flex-shrink:0;background:var(--cj9kg-accent);color:var(--cj9kg-on-accent,#fff);font-weight:800;font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;padding:6px 12px;border-radius:6px;}
.mj9kg-ticker__track{display:flex;gap:18px;align-items:center;overflow:hidden;white-space:nowrap;font-size:.86rem;}
.mj9kg-ticker__track a{color:var(--cj9kg-text);text-decoration:none;font-weight:600;}
.mj9kg-ticker__track a:hover{color:var(--cj9kg-primary);}
.mj9kg-ticker__sep{color:var(--cj9kg-accent);}

/* Rows */
.mj9kg-row{display:flex;gap:14px;align-items:flex-start;}
.mj9kg-row__media{flex-shrink:0;width:96px;height:72px;border-radius:10px;background-size:cover;background-position:center;}
.mj9kg-row__num{flex-shrink:0;width:40px;height:40px;display:grid;place-items:center;font-family:var(--cj9kg-font-heading);font-weight:800;color:var(--cj9kg-primary);font-size:1.4rem;}
.mj9kg-row__body{min-width:0;}
.mj9kg-row__cat{color:var(--cj9kg-accent);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;text-decoration:none;}
.mj9kg-row__title{font-family:var(--cj9kg-font-heading);font-size:.98rem;line-height:1.25;margin:3px 0 4px;}
.mj9kg-row__title a{color:var(--cj9kg-text);text-decoration:none;}
.mj9kg-row__title a:hover{color:var(--cj9kg-primary);}
.mj9kg-row__date{color:var(--cj9kg-text-muted);font-size:.76rem;}

/* Grid + cards */
.mj9kg-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px;}
.mj9kg-grid--feature > :first-child{grid-column:span 2;}
.mj9kg-grid--feature > :first-child .mj9kg-card__title{font-size:1.5rem;}
.mj9kg-card{background:var(--cj9kg-bg-alt);border:1px solid var(--cj9kg-border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s;box-shadow:0 1px 2px rgba(0,0,0,.05),0 16px 34px -22px rgba(0,0,0,.5);}
.mj9kg-card:hover{transform:translateY(-4px);box-shadow:0 1px 2px rgba(0,0,0,.05),0 26px 48px -24px rgba(0,0,0,.6);}
.mj9kg-card__media{display:block;aspect-ratio:16/9;background-size:cover;background-position:center;}
.mj9kg-card__media--ph{display:grid;place-items:center;color:rgba(255,255,255,.92);font-family:var(--cj9kg-font-heading);font-weight:800;text-transform:uppercase;letter-spacing:.05em;}
.mj9kg-card__body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:9px;flex:1;}
.mj9kg-card__title{font-family:var(--cj9kg-font-heading);font-size:1.16rem;line-height:1.24;}
.mj9kg-card__title a{color:var(--cj9kg-text);text-decoration:none;}
.mj9kg-card__title a:hover{color:var(--cj9kg-primary);}
.mj9kg-card__excerpt{color:var(--cj9kg-text-muted);font-size:.9rem;line-height:1.55;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.mj9kg-card--overlay{border:0;background:transparent;}
.mj9kg-card__ovl{display:flex;flex-direction:column;justify-content:flex-end;min-height:300px;padding:22px;background-size:cover;background-position:center;text-decoration:none;border-radius:14px;}
.mj9kg-card--overlay .mj9kg-card__title{color:#fff;margin:8px 0 6px;font-family:var(--cj9kg-font-heading);}
.mj9kg-card--horizontal{flex-direction:row;align-items:stretch;}
.mj9kg-card--horizontal .mj9kg-card__media{aspect-ratio:auto;width:42%;flex-shrink:0;min-height:160px;}
.mj9kg-card--horizontal .mj9kg-card__body{flex:1;}
@media(max-width:520px){.mj9kg-card--horizontal{flex-direction:column;}.mj9kg-card--horizontal .mj9kg-card__media{width:100%;aspect-ratio:16/9;min-height:0;}}

/* Tiles */
.mj9kg-tile{position:relative;display:flex;align-items:flex-end;border-radius:16px;overflow:hidden;background-size:cover;background-position:center;text-decoration:none;color:#fff;box-shadow:0 16px 36px -22px rgba(0,0,0,.62);}
.mj9kg-tile__body{padding:24px;}
.mj9kg-tile h3{font-family:var(--cj9kg-font-heading);font-size:1.4rem;line-height:1.16;margin:10px 0 6px;color:#fff;}
.mj9kg-tile--banner{min-height:430px;}
.mj9kg-tile--banner h3{font-size:2.3rem;max-width:780px;}
.mj9kg-tile--big{min-height:446px;}
.mj9kg-tile--big h3{font-size:1.95rem;}
.mj9kg-tile--sm{min-height:214px;}

/* Badge + meta */
.mj9kg-badge{display:inline-block;color:var(--cj9kg-accent);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em;text-decoration:none;}
.mj9kg-badge--solid{background:var(--cj9kg-accent);color:var(--cj9kg-on-accent,#fff);padding:5px 11px;border-radius:6px;}
.mj9kg-meta{display:inline-flex;align-items:center;gap:7px;color:var(--cj9kg-text-muted);font-size:.8rem;margin-top:auto;}
.mj9kg-meta__author{font-weight:700;color:var(--cj9kg-text);}
.mj9kg-meta--light,.mj9kg-meta--light .mj9kg-meta__author,.mj9kg-meta--light time{color:rgba(255,255,255,.88);}

/* Section heads */
.mj9kg-section{padding:34px 0 8px;}
.mj9kg-section__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px;border-bottom:2px solid var(--cj9kg-border);padding-bottom:10px;}
.mj9kg-section__head h2{font-family:var(--cj9kg-font-heading);font-size:1.45rem;position:relative;padding-left:14px;}
.mj9kg-section__head--bar h2::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:5px;height:1.1em;background:var(--cj9kg-accent);border-radius:3px;}
.mj9kg-section__head h2 a{color:var(--cj9kg-text);text-decoration:none;}
.mj9kg-section__more{color:var(--cj9kg-primary);text-decoration:none;font-weight:700;font-size:.85rem;}
.mj9kg-section__head--underline{justify-content:center;flex-direction:column;border-bottom:0;text-align:center;}
.mj9kg-section__head--underline h2{padding-left:0;}
.mj9kg-section__head--underline h2::after{content:"";display:block;width:64px;height:3px;background:var(--cj9kg-accent);border-radius:3px;margin:12px auto 0;}
.mj9kg-section__head--underline .mj9kg-section__more{margin-top:8px;}

/* Prose (article/page body) */
.mj9kg-prose{font-family:var(--cj9kg-font-body);font-size:1.06rem;line-height:1.75;color:var(--cj9kg-text);}
.mj9kg-prose h2{font-family:var(--cj9kg-font-heading);font-size:1.7rem;margin:34px 0 14px;}
.mj9kg-prose h3{font-family:var(--cj9kg-font-heading);font-size:1.3rem;margin:26px 0 12px;}
.mj9kg-prose p{margin:0 0 18px;}
.mj9kg-prose a{color:var(--cj9kg-primary);}
.mj9kg-prose img{max-width:100%;height:auto;border-radius:12px;margin:22px 0;}
.mj9kg-prose ul,.mj9kg-prose ol{margin:0 0 18px;padding-left:22px;}
.mj9kg-prose li{margin:6px 0;}
.mj9kg-prose blockquote{border-left:4px solid var(--cj9kg-accent);background:var(--cj9kg-bg-alt);padding:16px 22px;margin:24px 0;border-radius:0 10px 10px 0;font-style:italic;}
.mj9kg-prose table{width:100%;border-collapse:collapse;margin:22px 0;font-size:.95rem;}
.mj9kg-prose th{background:var(--cj9kg-primary);color:var(--cj9kg-on-primary,#fff);padding:11px 14px;text-align:left;}
.mj9kg-prose td{padding:10px 14px;border-bottom:1px solid var(--cj9kg-border);}

/* Author box */
.mj9kg-authorbox{display:flex;gap:16px;align-items:center;background:var(--cj9kg-bg-alt);border:1px solid var(--cj9kg-border);border-radius:14px;padding:20px;margin:34px 0;}
.mj9kg-authorbox__avatar{flex-shrink:0;width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--cj9kg-primary),var(--cj9kg-accent));color:#fff;font-family:var(--cj9kg-font-heading);font-weight:800;font-size:1.4rem;}
.mj9kg-authorbox p{color:var(--cj9kg-text-muted);font-size:.9rem;margin:4px 0 0;}
.mj9kg-related{margin-top:40px;}

/* Sidebar widgets */
.mj9kg-aside{display:flex;flex-direction:column;gap:26px;}
.mj9kg-widget{background:var(--cj9kg-bg-alt);border:1px solid var(--cj9kg-border);border-radius:14px;padding:20px;}
.mj9kg-widget__title{font-family:var(--cj9kg-font-heading);font-size:1.05rem;margin:0 0 16px;padding-bottom:10px;border-bottom:2px solid var(--cj9kg-border);position:relative;}
.mj9kg-widget__title::after{content:"";position:absolute;left:0;bottom:-2px;width:44px;height:2px;background:var(--cj9kg-accent);}
.mj9kg-widget__list{display:flex;flex-direction:column;gap:16px;}
.mj9kg-widget--search form{display:flex;gap:0;}
.mj9kg-widget--search input{flex:1;border:1px solid var(--cj9kg-border);background:var(--cj9kg-bg);color:var(--cj9kg-text);border-radius:10px 0 0 10px;padding:11px 14px;font-size:.9rem;}
.mj9kg-widget--search button{border:0;background:var(--cj9kg-accent);color:var(--cj9kg-on-accent,#fff);border-radius:0 10px 10px 0;padding:0 16px;cursor:pointer;}
.mj9kg-catlist{list-style:none;margin:0;padding:0;}
.mj9kg-catlist li{display:flex;justify-content:space-between;align-items:center;padding:9px 0;border-bottom:1px solid var(--cj9kg-border);}
.mj9kg-catlist li:last-child{border-bottom:0;}
.mj9kg-catlist a{color:var(--cj9kg-text);text-decoration:none;font-weight:600;font-size:.92rem;}
.mj9kg-catlist a:hover{color:var(--cj9kg-primary);}
.mj9kg-catlist span{color:var(--cj9kg-text-muted);font-size:.78rem;background:var(--cj9kg-bg);border:1px solid var(--cj9kg-border);border-radius:20px;padding:1px 9px;}

/* Standard 2-col inner layout (archetypes may use or replace) */
.mj9kg-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:40px;padding:34px 24px 56px;}
.mj9kg-layout--narrow{grid-template-columns:minmax(0,1fr);max-width:860px;}
.mj9kg-layout__main{min-width:0;}
@media(max-width:980px){.mj9kg-layout{grid-template-columns:1fr;}}

/* Mobile nav reveal (shared convention: .mj9kg-burger toggles #mj9kg-nav.open) */
.mj9kg-burger{display:none;background:var(--cj9kg-bg-alt);border:1px solid var(--cj9kg-border);color:var(--cj9kg-text);width:40px;height:40px;border-radius:10px;cursor:pointer;font-size:1rem;}
@media(max-width:680px){
  .mj9kg-nav{display:none;position:fixed;top:var(--mj9kg-nav-top,76px);left:0;right:0;flex-direction:column;background:var(--cj9kg-bg);border-bottom:1px solid var(--cj9kg-border);padding:8px 0;gap:0;z-index:49;}
  .mj9kg-nav.open{display:flex;}
  .mj9kg-nav a{padding:14px 24px;width:100%;border-bottom:1px solid var(--cj9kg-border);}
  .mj9kg-burger{display:block;}
}

/* ======== Archetype: food ======== */
.arch-food{
  /* Seed-driven appetizing surface + soft-serif fonts (varies per build).
     Brand hue (--cj9kg-primary/--cj9kg-accent) intentionally left to vary per build. */
  --cj9kg-bg:#271c16;--cj9kg-bg-alt:#30231b;--cj9kg-text:#ece2da;--cj9kg-text-muted:#a4968a;--cj9kg-border:#3d2e25;--cj9kg-font-heading:'Newsreader', Georgia, serif;--cj9kg-font-body:'Inter', system-ui, sans-serif;
  --mj9kg-nav-top:78px;--fo-radius:20px;background:var(--cj9kg-bg);color:var(--cj9kg-text);font-family:var(--cj9kg-font-body);}
.arch-food .mj9kg-card,.arch-food .mj9kg-widget,.arch-food .mj9kg-authorbox{border-radius:var(--fo-radius);}
.arch-food .mj9kg-card{box-shadow:0 2px 6px rgba(80,40,20,.05),0 22px 46px -28px rgba(120,60,30,.45);border-color:var(--cj9kg-border);}
.arch-food .mj9kg-card:hover{transform:translateY(-5px);box-shadow:0 2px 6px rgba(80,40,20,.05),0 30px 58px -28px rgba(120,60,30,.55);}
.arch-food .mj9kg-prose img{border-radius:var(--fo-radius);}

/* Masthead — warm, friendly, sticky */
.fo-masthead{position:sticky;top:0;z-index:50;background:var(--cj9kg-bg);border-bottom:1px solid var(--cj9kg-border);box-shadow:0 10px 26px -22px rgba(120,60,30,.5);}
.fo-masthead__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;height:78px;}
.fo-masthead__brand .mj9kg-logo__mark{border-radius:50%;background:linear-gradient(135deg,var(--cj9kg-primary),var(--cj9kg-accent));}
.fo-masthead__brand .mj9kg-logo__img{border-radius:50%;}
.fo-masthead__brand .mj9kg-logo__word{font-family:var(--cj9kg-font-heading);font-weight:700;font-size:1.55rem;letter-spacing:-.01em;}
.fo-nav{display:flex;gap:26px;flex-wrap:wrap;justify-content:flex-end;}
.fo-nav a{color:var(--cj9kg-text);text-decoration:none;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:6px 0;border-bottom:2px solid transparent;transition:color .15s,border-color .15s;}
.fo-nav a:hover,.fo-nav a.active{color:var(--cj9kg-primary);border-bottom-color:var(--cj9kg-accent);}

.fo-kicker{display:inline-block;color:var(--cj9kg-accent);font-size:.74rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;text-decoration:none;}

/* Hero — big appetizing rounded image card with overlaid title */
.fo-hero{margin:36px auto 8px;}
.fo-hero__card{display:flex;align-items:flex-end;min-height:clamp(360px,48vw,520px);border-radius:var(--fo-radius);overflow:hidden;background-size:cover;background-position:center;text-decoration:none;box-shadow:0 26px 60px -30px rgba(120,60,30,.6);}
.fo-hero__body{padding:clamp(24px,4vw,44px);color:#fff;max-width:760px;}
.fo-hero__title{font-family:var(--cj9kg-font-heading);font-size:clamp(1.9rem,4.6vw,3.2rem);line-height:1.08;margin:14px 0 12px;color:#fff;}
.fo-hero__excerpt{color:rgba(255,255,255,.92);font-size:1.06rem;line-height:1.55;margin:0 0 14px;max-width:620px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

/* Sections + heading */
.fo-section{padding:40px 24px 8px;}
.fo-head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;margin-bottom:26px;flex-wrap:wrap;}
.fo-head h2{font-family:var(--cj9kg-font-heading);font-size:1.7rem;line-height:1.15;position:relative;padding-bottom:12px;}
.fo-head h2 a{color:var(--cj9kg-text);text-decoration:none;}
.fo-head h2::after{content:"";position:absolute;left:0;bottom:0;width:52px;height:3px;background:var(--cj9kg-accent);border-radius:3px;}
.fo-head__more{color:var(--cj9kg-primary);text-decoration:none;font-weight:700;font-size:.85rem;white-space:nowrap;}
.fo-head__more:hover{text-decoration:underline;text-underline-offset:3px;}

/* Recipe grid — rounded image cards with a warm chip */
.fo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:30px;}
.fo-recipe{position:relative;display:flex;}
.fo-recipe > .mj9kg-card{flex:1;}
.fo-recipe .mj9kg-card__media{aspect-ratio:4/3;}
.fo-chip{position:absolute;top:14px;left:14px;z-index:2;background:rgba(255,255,255,.94);color:var(--cj9kg-text);font-size:.72rem;font-weight:800;padding:5px 11px;border-radius:999px;box-shadow:0 4px 12px -4px rgba(120,60,30,.4);}

/* Intro block — warm tinted panel */
.fo-intro{background:var(--cj9kg-bg-alt);border:1px solid var(--cj9kg-border);border-radius:var(--fo-radius);padding:34px 38px;}
.fo-intro__head{font-family:var(--cj9kg-font-heading);font-size:1.5rem;margin-bottom:14px;}

/* Newsletter — warm accent band, light text */
.fo-news{background:linear-gradient(135deg,var(--cj9kg-primary),var(--cj9kg-primary-dark));margin-top:44px;}
.fo-news__inner{text-align:center;padding:54px 24px;max-width:640px;margin:0 auto;}
.fo-news__icon{font-size:2rem;display:block;margin-bottom:6px;}
.fo-news__head{font-family:var(--cj9kg-font-heading);font-size:1.85rem;color:var(--cj9kg-on-primary);margin:0 0 8px;}
.fo-news__sub{color:var(--cj9kg-on-primary);opacity:.88;margin:0 0 22px;font-size:1.02rem;}
.fo-news form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.fo-news input{border:0;border-radius:999px;padding:14px 20px;min-width:240px;font-size:.95rem;font-family:var(--cj9kg-font-body);background:#fff;color:#16181d;}
.fo-news .mj9kg-btn{background:var(--cj9kg-on-primary);color:var(--cj9kg-primary);border-radius:999px;}
.fo-news .mj9kg-btn:hover{filter:brightness(.96);}

/* Page head (category / static) */
.fo-pagehead{background:linear-gradient(180deg,var(--cj9kg-bg-alt),var(--cj9kg-bg));border-bottom:1px solid var(--cj9kg-border);padding:54px 0 46px;text-align:center;}
.fo-pagehead h1{font-family:var(--cj9kg-font-heading);font-size:clamp(2rem,4.6vw,2.9rem);line-height:1.1;margin:10px 0 8px;}
.fo-pagehead p{color:var(--cj9kg-text-muted);max-width:640px;margin:0 auto;font-size:1.04rem;line-height:1.6;}

/* Article */
.fo-post__head{max-width:760px;padding:48px 24px 0;text-align:center;}
.fo-post__head h1{font-family:var(--cj9kg-font-heading);font-size:clamp(2rem,4.8vw,3rem);line-height:1.12;margin:14px 0;}
.fo-post__meta{color:var(--cj9kg-text-muted);font-size:.92rem;display:flex;gap:10px;align-items:center;justify-content:center;flex-wrap:wrap;}
.fo-post__meta strong{color:var(--cj9kg-text);}
.fo-post__dot{color:var(--cj9kg-accent);}
.fo-post__hero{height:clamp(280px,46vw,500px);margin:30px auto 0;border-radius:var(--fo-radius);background-size:cover;background-position:center;box-shadow:0 26px 60px -32px rgba(120,60,30,.6);}
.fo-post__layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:48px;padding:40px 24px 8px;align-items:start;}
.fo-post__layout--narrow{grid-template-columns:minmax(0,1fr);max-width:820px;}
.fo-post__main{min-width:0;max-width:720px;margin:0 auto;width:100%;}
.arch-food .mj9kg-prose blockquote{border-left:0;background:var(--cj9kg-bg-alt);text-align:center;font-family:var(--cj9kg-font-heading);font-style:italic;font-size:1.4rem;line-height:1.4;color:var(--cj9kg-primary-dark);border-radius:var(--fo-radius);padding:26px 24px;margin:32px 0;}
.fo-related{padding:8px 24px 8px;margin-top:24px;}

/* Footer — warm, light */
.fo-footer{background:var(--cj9kg-bg-alt);border-top:1px solid var(--cj9kg-border);margin-top:56px;}
.fo-footer__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:38px;padding:56px 24px 40px;}
.fo-footer__brand p{margin:16px 0 0;font-size:.92rem;line-height:1.6;color:var(--cj9kg-text-muted);}
.fo-footer__brand .mj9kg-logo__mark{border-radius:50%;}
.fo-footer__col h4{font-family:var(--cj9kg-font-heading);font-size:1.04rem;margin:0 0 16px;position:relative;padding-bottom:10px;}
.fo-footer__col h4::after{content:"";position:absolute;left:0;bottom:0;width:38px;height:2px;background:var(--cj9kg-accent);}
.fo-footer__col nav{display:flex;flex-direction:column;gap:11px;}
.fo-footer__col nav a{color:var(--cj9kg-text-muted);text-decoration:none;font-size:.92rem;}
.fo-footer__col nav a:hover{color:var(--cj9kg-primary);}
.fo-footer__recent{display:flex;flex-direction:column;gap:16px;}
.fo-footer__bottom{border-top:1px solid var(--cj9kg-border);font-size:.84rem;color:var(--cj9kg-text-muted);}
.fo-footer__bottom .mj9kg-container{padding-top:22px;padding-bottom:22px;text-align:center;}

/* Responsive */
@media(max-width:980px){
  .fo-post__layout{grid-template-columns:1fr;}
  .fo-footer__grid{grid-template-columns:1fr 1fr;gap:30px;}
}
@media(max-width:680px){
  .arch-food{--mj9kg-nav-top:70px;}
  .fo-hero__card{min-height:300px;}
  .fo-footer__grid{grid-template-columns:1fr;}
  .fo-masthead__inner{justify-content:space-between;}
}

