/* ==========================================================================
   Slow Cooker Supper Club — design tokens
   ========================================================================== */
:root {
  --stone-50: #f5efec; --stone-100: #e6dbd6; --stone-200: #d7c9c4; --stone-300: #cfc0bb;
  --stone-400: #bdaaa4; --stone-500: #a8938c; --stone-600: #8b7d78; --stone-700: #6b615d;
  --ink-900: #0d0d0d; --ink-800: #111111; --ink-700: #242424; --ink-500: #4a4340;
  --white: #ffffff;
  --orange-300: #ffc266; --orange-400: #f9b233; --orange-500: #f6a01f; --orange-600: #e08c0c;
  --ember-500: #d4581f; --ember-600: #b5471a;

  --page-bg: var(--stone-300);
  --surface-card: var(--white);
  --surface-raised: var(--stone-50);
  --surface-ink: var(--ink-900);
  --text-heading: var(--ink-900);
  --text-body: var(--ink-800);
  --text-muted: var(--stone-700);
  --text-on-ink: var(--white);
  --border-hairline: rgba(13, 13, 13, .10);

  --shadow-card: 0 6px 18px rgba(13, 13, 13, .10);
  --shadow-card-hover: 0 12px 28px rgba(13, 13, 13, .16);
  --shadow-float: 0 14px 40px rgba(13, 13, 13, .18);
  --shadow-plate: 0 4px 14px rgba(13, 13, 13, .08);

  --radius-xs: 4px; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-pill: 999px; --radius-circle: 50%;
  --radius-button: 10px; --radius-card: 12px; --radius-hero: 28px; --radius-plate: 60px;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 20px;
  --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px; --space-16: 64px; --space-20: 80px;
  --gutter: 22px; --page-pad-x: 44px; --section-gap: 72px; --content-max: 1180px;

  --font-display: "Oswald", sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-ui: "Quicksand", system-ui, sans-serif;
  --lh-body: 1.55;

  --dur-base: 200ms;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 640px) {
  :root { --page-pad-x: 20px; --section-gap: 48px; }
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }
html { background: var(--page-bg); }
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-body);
  font-family: var(--font-ui);
  font-size: 19px;
}
img { max-width: 100%; }
a { color: var(--ink-900); }
a:hover { color: var(--ember-600); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); border: 0; padding: 0; margin: -1px;
}
.scsc-page { min-height: 100vh; background: var(--page-bg); overflow-x: hidden; }

.scsc-eyebrow {
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-700);
}
.scsc-eyebrow--muted { font-size: 15px; letter-spacing: .2em; color: var(--stone-700); }
.scsc-eyebrow--ember { font-weight: 600; font-size: 16px; letter-spacing: .2em; color: var(--ember-600); }
.scsc-eyebrow--light { color: var(--stone-400); }
.scsc-eyebrow--pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--ink-900); color: var(--white);
  font-size: 14px; letter-spacing: .26em; padding: 9px 16px; border-radius: var(--radius-pill);
}
.scsc-eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); }

.scsc-script { font-family: var(--font-script); font-size: clamp(24px, 3vw, 32px); line-height: 1; color: var(--ink-900); }
.scsc-script--ember { color: var(--ember-500); }
.scsc-script--orange { color: var(--orange-400); }

.scsc-h2 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.8vw, 32px); letter-spacing: .02em; text-transform: uppercase; color: var(--text-heading); }
.scsc-h2--light { color: var(--text-on-ink); font-size: clamp(30px, 3.8vw, 44px); }
.scsc-h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: .04em; text-transform: uppercase; color: var(--text-heading); }

.scsc-btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 17px; line-height: 1;
  padding: 13px 28px; border-radius: var(--radius-button); display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; text-decoration: none; border: none; cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), transform 120ms var(--ease-out);
}
.scsc-btn--primary { background: var(--orange-500); color: var(--ink-900); }
.scsc-btn--primary:hover { background: var(--orange-600); color: var(--ink-900); }
.scsc-btn--ink { background: var(--ink-900); color: var(--white); }
.scsc-btn--ink:hover { background: var(--ink-700); color: var(--white); }
.scsc-btn--lg { padding: 13px 28px; }
.scsc-btn--full { width: 100%; }

.scsc-input {
  font-family: var(--font-ui); font-size: 20px; padding: 16px 20px; border-radius: var(--radius-button);
  border: 2.5px solid var(--ink-900); background: var(--white); color: var(--ink-900);
}

.scsc-main { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--page-pad-x); }
.scsc-main--narrow { max-width: 1000px; margin: 0 auto; padding: var(--space-8) var(--page-pad-x) 0; }
.scsc-section { padding-bottom: var(--section-gap); }
.scsc-section:first-child { padding-top: var(--space-10); }

/* ==========================================================================
   Announcement bar + header + nav
   ========================================================================== */
.scsc-announce {
  background: var(--ink-900); color: var(--white); padding: 12px var(--page-pad-x);
  display: flex; justify-content: center; gap: 12px; align-items: center; flex-wrap: wrap;
}
.scsc-announce__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .24em; text-transform: uppercase; }
.scsc-announce__link { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-400); text-decoration: underline; text-underline-offset: 4px; }
.scsc-announce__link:hover { color: var(--orange-300); }

.scsc-header {
  max-width: var(--content-max); margin: 0 auto; padding: var(--space-8) var(--page-pad-x) var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-8); align-items: center; justify-content: space-between;
}
.scsc-logo { text-decoration: none; display: block; flex: 1 1 320px; max-width: 400px; }
.scsc-logo__svg { display: block; max-width: 400px; height: auto; }
.scsc-logo--footer { max-width: 320px; }
.scsc-header__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.scsc-nav { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--page-pad-x) var(--space-10); }
.scsc-nav__row {
  border-top: 3px solid var(--ink-900); border-bottom: 1.5px solid var(--ink-900); padding: var(--space-3) 0;
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); justify-content: center;
}
.scsc-nav__link {
  text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: .1em; text-transform: uppercase; padding: 10px 14px; border-radius: var(--radius-xs);
  color: var(--ink-900); background: transparent;
}
.scsc-nav__link:hover { background: var(--stone-200); color: var(--ink-900); }
.scsc-nav__link.is-active { background: var(--ink-900); color: var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.scsc-hero {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-12); align-items: center; padding-bottom: var(--section-gap);
}
.scsc-hero__copy { display: flex; flex-direction: column; gap: var(--space-5); max-width: 580px; }
.scsc-hero__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6.2vw, 74px); line-height: .95; letter-spacing: .01em; text-transform: uppercase; color: var(--text-heading); }
.scsc-hero__scriptrow { display: flex; align-items: center; gap: var(--space-4); }
.scsc-hero__rule { flex: 1; height: 1.5px; background: var(--ink-700); }
.scsc-hero__lede { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); }
.scsc-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.scsc-hero__stats { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-8); border-top: 1.5px solid var(--ink-700); padding-top: var(--space-4); margin-top: var(--space-2); }
.scsc-hero__stat { display: flex; flex-direction: column; gap: 2px; }
.scsc-hero__stat-value { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; color: var(--ink-900); }
.scsc-hero__stat-label { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-700); }

.scsc-hero__art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.scsc-hero__disc { position: absolute; width: min(94%, 400px); aspect-ratio: 1/1; border-radius: 50%; background: var(--stone-400); transform: translate(18px, 20px); }
.scsc-hero__plate {
  position: relative; width: min(90%, 380px); aspect-ratio: 1/1; border-radius: 50%; border: 14px solid var(--white);
  box-shadow: var(--shadow-float); background-color: var(--stone-200); background-size: cover; background-position: center;
}
.scsc-hero__mini {
  position: absolute; left: 0; bottom: 8px; width: min(38%, 150px); aspect-ratio: 1/1; border-radius: 50%;
  border: 9px solid var(--white); box-shadow: var(--shadow-card); background-color: var(--stone-200); background-size: cover; background-position: center;
}
.scsc-hero__badge {
  position: absolute; right: 0; top: 14px; background: var(--white); box-shadow: var(--shadow-card); border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4); display: flex; flex-direction: column; gap: 2px; text-align: center;
}
.scsc-hero__badge-value { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; color: var(--ink-900); }
.scsc-hero__badge-label { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-700); }

/* ==========================================================================
   Panels / quick picks
   ========================================================================== */
.scsc-panel { background: var(--surface-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: var(--space-8); }
.scsc-panel__head { display: flex; align-items: baseline; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6); }

.scsc-quickpicks { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--gutter); }
.scsc-pick {
  text-decoration: none; border: 2.5px solid var(--ink-900); border-radius: var(--radius-sm); padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2); background: var(--white); color: var(--ink-900);
}
.scsc-pick:hover, .scsc-pick.is-active { background: var(--ink-900); color: var(--white); }
.scsc-pick__label { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.1; letter-spacing: .04em; text-transform: uppercase; }
.scsc-pick__note { font-size: 18px; line-height: 1.4; opacity: .85; }

.scsc-quickpicks--pill { display: flex; flex-wrap: wrap; gap: var(--space-3); padding-bottom: var(--space-8); }
.scsc-quickpicks--pill .scsc-pick {
  flex-direction: row; border-radius: var(--radius-pill); border: 2px solid var(--ink-900); padding: 12px 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .1em; text-transform: uppercase;
}

.scsc-kicker-rule { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-6); }
.scsc-kicker { flex: none; font-family: var(--font-display); font-weight: 500; font-size: 16px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-700); }
.scsc-kicker__line { flex: 1; height: 1.5px; background: var(--stone-500); }

/* ==========================================================================
   Featured recipe (This week's Sunday dinner)
   ========================================================================== */
.scsc-feature { background: var(--surface-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.scsc-feature__media { min-height: 380px; background-color: var(--stone-200); background-size: cover; background-position: center; }
.scsc-feature__body { padding: var(--space-10); display: flex; flex-direction: column; gap: var(--space-5); justify-content: center; }
.scsc-feature__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.9vw, 46px); line-height: 1.02; letter-spacing: .01em; text-transform: uppercase; color: var(--text-heading); }
.scsc-feature__blurb { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); }
.scsc-feature__facts { display: flex; flex-wrap: wrap; gap: var(--space-8); border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline); padding: var(--space-4) 0; }
.scsc-feature__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.scsc-fact { display: flex; flex-direction: column; gap: 4px; }
.scsc-fact__label { font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.scsc-fact__value { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--text-heading); }
.scsc-fact__value--lg { font-size: 26px; }

/* ==========================================================================
   Category plates
   ========================================================================== */
.scsc-plate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-8) var(--gutter); }
.scsc-plate-link { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); text-align: center; color: var(--ink-900); }
.scsc-plate-link__img { display: block; width: 100%; max-width: 172px; aspect-ratio: 1/1; border-radius: 50%; border: 9px solid var(--white); box-shadow: var(--shadow-plate); background-color: var(--stone-200); background-size: cover; background-position: center; }
.scsc-plate-link__text { display: flex; flex-direction: column; gap: 4px; }
.scsc-plate-link__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-heading); }
.scsc-plate-link__sub { font-size: 17px; color: var(--stone-600); }

/* ==========================================================================
   Reader favorites
   ========================================================================== */
.scsc-favorites { background: var(--surface-ink); padding: var(--space-20) var(--page-pad-x); margin-bottom: var(--section-gap); }
.scsc-favorites__inner { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-12); align-items: start; }
.scsc-favorites__intro { display: flex; flex-direction: column; gap: var(--space-4); }
.scsc-favorites__lede { margin: 0; font-size: 20px; line-height: var(--lh-body); color: var(--stone-100); max-width: 420px; }
.scsc-favorites__list { display: flex; flex-direction: column; }
.scsc-favorite { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-4) 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.scsc-favorite__rank { flex: none; font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; color: var(--orange-400); width: 46px; }
.scsc-favorite__img { flex: none; width: 74px; height: 74px; border-radius: 50%; border: 4px solid var(--white); background-color: var(--stone-200); background-size: cover; background-position: center; }
.scsc-favorite__title { flex: 1; text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.15; letter-spacing: .03em; text-transform: uppercase; color: var(--text-on-ink); }
.scsc-favorite__title:hover { color: var(--orange-400); }
.scsc-favorite__save { flex: none; font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-400); text-decoration: underline; text-underline-offset: 5px; }

/* ==========================================================================
   Recipe cards
   ========================================================================== */
.scsc-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--gutter); }
.scsc-card { background: var(--surface-card); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: box-shadow var(--dur-base) var(--ease-out); }
.scsc-card:hover { box-shadow: var(--shadow-card-hover); }
.scsc-card__media { position: relative; height: 230px; background: var(--stone-200); overflow: hidden; }
.scsc-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scsc-card__pin { position: absolute; top: var(--space-3); right: var(--space-3); background: var(--white); color: var(--ink-900); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; padding: 12px 16px; border-radius: var(--radius-button); box-shadow: var(--shadow-plate); }
.scsc-card__pin:hover { background: var(--orange-500); color: var(--ink-900); }
.scsc-card__plate { position: absolute; left: -6%; right: -6%; bottom: 0; min-height: 64px; background: var(--surface-card); border-radius: var(--radius-plate) var(--radius-plate) 0 0; display: flex; align-items: flex-end; justify-content: center; padding: 0 var(--space-8) var(--space-3); }
.scsc-card__plate span { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.1; letter-spacing: .03em; text-transform: uppercase; text-align: center; color: var(--text-heading); }
.scsc-card__body { padding: var(--space-4) var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }
.scsc-card__blurb { margin: 0; font-size: 18px; line-height: var(--lh-body); color: var(--text-body); flex: 1; }

.scsc-metachip { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 500; font-size: 15px; color: var(--ink-900); }
.scsc-metachip img { display: block; }

/* ==========================================================================
   About
   ========================================================================== */
.scsc-about { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--space-12); align-items: center; padding-bottom: var(--section-gap); }
.scsc-about__media { display: flex; justify-content: center; }
.scsc-about__img { width: min(100%, 270px); aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; border: 10px solid var(--white); box-shadow: var(--shadow-plate); }
.scsc-about__copy { display: flex; flex-direction: column; gap: var(--space-4); }
.scsc-about__p { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); }

/* ==========================================================================
   Newsletter signup
   ========================================================================== */
.scsc-signup { background: var(--surface-ink); padding: var(--space-20) var(--page-pad-x); }
.scsc-signup__card { max-width: 820px; margin: 0 auto; background: var(--surface-card); border-radius: var(--radius-card); box-shadow: var(--shadow-float); padding: var(--space-10); }
.scsc-signup__rule { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.scsc-signup__line { flex: 1; height: 2px; background: var(--ink-900); }
.scsc-signup__title { margin: 0 0 var(--space-2); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.02; text-transform: uppercase; color: var(--text-heading); }
.scsc-signup__script { display: block; text-align: center; margin: 0 0 var(--space-6); }
.scsc-signup__form { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.scsc-signup__form .scsc-input { flex: 1 1 320px; min-width: 240px; }
.scsc-signup__message { margin: var(--space-4) 0 0; text-align: center; min-height: 26px; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--ember-600); }
.scsc-signup__fine { margin: var(--space-3) 0 0; text-align: center; font-size: 16px; color: var(--stone-700); }

/* ==========================================================================
   Footer
   ========================================================================== */
.scsc-footer { background: var(--surface-ink); border-top: 1px solid rgba(255,255,255,.14); padding: var(--space-16) var(--page-pad-x) var(--space-12); }
.scsc-footer__grid { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-10); }
.scsc-footer__col { display: flex; flex-direction: column; gap: var(--space-3); min-width: 0; }
.scsc-footer__tagline { font-size: 18px; line-height: var(--lh-body); color: var(--stone-100); margin: 0; }
.scsc-footer__heading { font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone-400); }
.scsc-footer__link { font-size: 18px; text-decoration: none; color: var(--stone-100); overflow-wrap: anywhere; }
.scsc-footer__link:hover { color: var(--orange-400); }
.scsc-footer__copy { max-width: var(--content-max); margin: var(--space-10) auto 0; font-size: 16px; color: var(--stone-500); }

/* ==========================================================================
   List pages (All Recipes / category / quick pick)
   ========================================================================== */
.scsc-list-head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); padding-top: var(--space-8); }
.scsc-list-head__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 56px); line-height: 1; text-transform: uppercase; color: var(--text-heading); }
.scsc-pagination { padding: var(--space-10) 0; display: flex; justify-content: center; gap: var(--space-2); }
.scsc-pagination .page-numbers { font-family: var(--font-display); font-weight: 600; padding: 8px 14px; border-radius: var(--radius-xs); text-decoration: none; color: var(--ink-900); }
.scsc-pagination .page-numbers.current { background: var(--ink-900); color: var(--white); }

/* ==========================================================================
   Single recipe
   ========================================================================== */
.scsc-back { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--space-6); text-decoration: none; }
.scsc-recipe-head { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.scsc-recipe-head__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5.4vw, 62px); line-height: .98; text-transform: uppercase; color: var(--text-heading); }
.scsc-recipe-head__intro { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); max-width: 760px; }
.scsc-recipe-head__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-2); }

.scsc-recipe-hero { position: relative; margin-bottom: var(--space-12); }
.scsc-recipe-hero__img { width: 100%; height: 450px; border-radius: var(--radius-hero); box-shadow: var(--shadow-float); background-color: var(--stone-200); background-size: cover; background-position: center; }
.scsc-recipe-hero__pin { position: absolute; top: var(--space-5); right: var(--space-5); background: var(--white); color: var(--ink-900); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .12em; text-transform: uppercase; padding: 14px 20px; border-radius: var(--radius-button); box-shadow: var(--shadow-card); }
.scsc-recipe-hero__pin:hover { background: var(--orange-500); color: var(--ink-900); }

.scsc-recipe-card { background: var(--surface-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: var(--space-10); margin-bottom: var(--section-gap); }
.scsc-recipe-card__head { border-bottom: 3px solid var(--ink-900); padding-bottom: var(--space-4); margin-bottom: var(--space-6); display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-4); justify-content: space-between; }
.scsc-recipe-card__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-5); border-bottom: 1px solid var(--border-hairline); padding-bottom: var(--space-6); margin-bottom: var(--space-8); }
.scsc-recipe-card__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-10); }
.scsc-recipe-card__col-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.scsc-tap-hint { font-size: 15px; color: var(--text-muted); }
.scsc-recipe-card__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }

.scsc-ingredients { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.scsc-ingredient {
  width: 100%; text-align: left; background: none; border: none; padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-hairline); cursor: pointer; font-family: var(--font-ui);
  font-size: 19px; line-height: var(--lh-body); color: var(--text-body); display: flex; gap: var(--space-4); align-items: flex-start;
}
.scsc-ingredient:hover { background: var(--stone-50); }
.scsc-ingredient__dot { flex: none; width: 24px; height: 24px; margin-top: 4px; border-radius: 50%; border: 2.5px solid var(--ink-900); display: flex; align-items: center; justify-content: center; background: transparent; }
.scsc-ingredient__dot-inner { width: 10px; height: 10px; border-radius: 50%; background: transparent; }
.scsc-ingredient.is-checked .scsc-ingredient__dot { background: var(--ink-900); }
.scsc-ingredient.is-checked .scsc-ingredient__dot-inner { background: var(--orange-500); }
.scsc-ingredient.is-checked .scsc-ingredient__text { text-decoration: line-through; opacity: .5; }

.scsc-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-5); }
.scsc-step { display: flex; gap: var(--space-4); align-items: flex-start; }
.scsc-step__n { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--ink-900); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 19px; display: flex; align-items: center; justify-content: center; }
.scsc-step__text { font-size: 19px; line-height: 1.6; color: var(--text-body); padding-top: 4px; }

.scsc-tip { margin-top: var(--space-10); background: var(--surface-raised); border-radius: var(--radius-md); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); }
.scsc-tip p { margin: 0; font-size: 19px; line-height: var(--lh-body); color: var(--text-body); }

.scsc-prose { font-size: 19px; line-height: var(--lh-body); }
.scsc-page-content { padding: var(--space-8) 0 var(--section-gap); }

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  [data-print-hide] { display: none !important; }
  body { background: #ffffff; font-size: 12pt; }
  .scsc-recipe-card { box-shadow: none; }
}


/* ==========================================================================
   Site header — cream awning bar, scalloped edge, gingham stripe
   ========================================================================== */
.scsc-sh {
  --cream: #fbf6ec;
  position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 60;
  background: var(--cream);
  box-shadow: 0 10px 24px -14px rgba(13,13,13,.35);
  margin-bottom: 22px;
}
.scsc-sh::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 7px;
  background:
    repeating-linear-gradient(90deg, rgba(212,88,31,.85) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(0deg, rgba(212,88,31,.85) 0 3.5px, #fbf6ec 3.5px 7px);
  background-blend-mode: multiply;
}
.scsc-sh::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; pointer-events: none;
  background: radial-gradient(circle at 12px 0, var(--cream) 11.5px, transparent 12px) repeat-x;
  background-size: 24px 12px;
}
.scsc-sh__inner {
  max-width: var(--content-max); margin: 0 auto; padding: 22px var(--page-pad-x) 16px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px 28px;
}
.scsc-sh__brand { text-decoration: none; color: var(--ink-900); display: block; }
.scsc-sh__brand:hover { color: var(--ink-900); }

.scsc-brand { display: inline-flex; align-items: center; gap: 14px; }
.scsc-brand__mark { flex: none; display: block; overflow: visible; transition: transform .35s var(--ease-out); }
.scsc-sh__brand:hover .scsc-brand__mark { transform: rotate(-4deg) scale(1.05); }
.scsc-brand__text { display: flex; flex-direction: column; line-height: 1; }
.scsc-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-900); }
.scsc-brand__script { font-family: var(--font-script); font-size: 36px; line-height: .8; color: var(--ember-500); margin: -2px 0 0 46px; transform: rotate(-3deg); transform-origin: left center; }
.scsc-brand--light .scsc-brand__name { color: #fbf6ec; }
.scsc-brand--light .scsc-brand__script { color: var(--orange-400); }

.scsc-steam path { transform-box: fill-box; transform-origin: center bottom; animation: scsc-steam 3.2s ease-in-out infinite; opacity: 0; }
.scsc-steam path:nth-child(2) { animation-delay: .9s; }
.scsc-steam path:nth-child(3) { animation-delay: 1.8s; }
@keyframes scsc-steam {
  0%   { opacity: 0; transform: translateY(6px) scaleY(.7); }
  35%  { opacity: .9; }
  100% { opacity: 0; transform: translateY(-7px) scaleY(1.15); }
}

.scsc-sh__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 6px; }
.scsc-sh__link {
  position: relative; text-decoration: none; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-900); border-radius: 8px; transition: color .2s, background .2s;
}
.scsc-sh__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px; border-radius: 3px;
  background: var(--orange-500); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease-out);
}
.scsc-sh__link:hover { color: var(--ember-600); }
.scsc-sh__link:hover::after, .scsc-sh__link.is-active::after { transform: scaleX(1); }
.scsc-sh__link.is-active { background: var(--ink-900); color: #fff; }
.scsc-sh__link.is-active::after { display: none; }

.scsc-sh__actions { display: flex; align-items: center; gap: 10px; }
.scsc-sh__social {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink-900); color: #fff; transition: transform .2s var(--ease-out), background .2s;
}
.scsc-sh__social:hover { background: var(--ember-500); color: #fff; transform: translateY(-2px) rotate(-6deg); }
.scsc-sh__cta {
  text-decoration: none; padding: 12px 20px; border-radius: 999px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--orange-500); color: var(--ink-900);
  box-shadow: 0 3px 0 var(--ink-900); transition: transform .15s var(--ease-out), box-shadow .15s, background .2s;
}
.scsc-sh__cta:hover { background: var(--orange-400); color: var(--ink-900); transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink-900); }
.scsc-sh__cta:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink-900); }
.scsc-sh a:focus-visible { outline: 3px solid var(--ember-500); outline-offset: 3px; }

@media (max-width: 1100px) {
  .scsc-sh__inner { grid-template-columns: 1fr auto; }
  .scsc-sh__nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none; }
  .scsc-sh__nav::-webkit-scrollbar { display: none; }
  .scsc-sh__link { white-space: nowrap; }
}
@media (max-width: 560px) {
  .scsc-sh__inner { padding-top: 18px; }
  .scsc-brand__name { font-size: 26px; }
  .scsc-brand__script { font-size: 28px; margin-left: 34px; }
  .scsc-brand__mark { width: 46px; height: 46px; }
  .scsc-sh__cta { padding: 10px 14px; font-size: 13px; }
  .scsc-sh__social { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .scsc-steam path { animation: none; opacity: .8; }
  .scsc-brand__mark, .scsc-sh__link::after, .scsc-sh__cta { transition: none; }
}


/* Header layout v2: logo + actions on row 1, full-width nav on row 2 */
.scsc-sh { position: relative; top: auto; }
.scsc-sh__inner { grid-template-columns: 1fr auto; padding-top: 28px; padding-bottom: 18px; row-gap: 14px; }
.scsc-sh__nav {
  grid-column: 1 / -1; grid-row: 2; justify-content: center;
  border-top: 2px dotted rgba(13,13,13,.28); padding-top: 12px; overflow: visible; flex-wrap: wrap;
}
@media (min-width: 561px) {
  .scsc-brand { gap: 18px; }
  .scsc-brand__mark { width: 76px; height: 76px; }
  .scsc-brand__name { font-size: 44px; }
  .scsc-brand__script { font-size: 46px; margin-left: 60px; }
  .scsc-sh__social { width: 46px; height: 46px; }
  .scsc-sh__cta { padding: 14px 24px; font-size: 16px; }
}
@media (max-width: 1100px) {
  .scsc-sh__nav { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
}


/* ==========================================================================
   Hero v2 — arch photo, spinning seal, marker highlight
   ========================================================================== */
.scsc-hx {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: var(--space-12); align-items: center; padding: var(--space-6) 0 var(--section-gap);
}
.scsc-hx::before {
  content: ""; position: absolute; z-index: 0; right: -6%; top: 2%; width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,160,31,.28), rgba(246,160,31,0) 68%); pointer-events: none;
}
.scsc-hx__copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: var(--space-5); max-width: 620px; }
.scsc-hx__copy > * { animation: scsc-rise .7s var(--ease-out) both; }
.scsc-hx__copy > *:nth-child(2) { animation-delay: .08s; }
.scsc-hx__copy > *:nth-child(3) { animation-delay: .16s; }
.scsc-hx__copy > *:nth-child(4) { animation-delay: .24s; }
.scsc-hx__copy > *:nth-child(5) { animation-delay: .32s; }
.scsc-hx__copy > *:nth-child(6) { animation-delay: .4s; }
@keyframes scsc-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.scsc-hx__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 7vw, 92px); line-height: .92; letter-spacing: .005em; text-transform: uppercase; color: var(--ink-900); }
.scsc-hx__title span { display: block; }
.scsc-hl { position: relative; display: inline-block !important; z-index: 0; color: var(--ink-900); }
.scsc-hl::after {
  content: ""; position: absolute; z-index: -1; left: -2%; right: -3%; bottom: .06em; height: .26em; background: var(--orange-500);
  border-radius: 3px; transform: skewX(-10deg) scaleX(0); transform-origin: left; animation: scsc-marker .8s .7s var(--ease-out) forwards;
}
@keyframes scsc-marker { to { transform: skewX(-10deg) scaleX(1); } }

.scsc-hx__script { display: flex; align-items: center; gap: var(--space-4); }
.scsc-hx__script .scsc-script { font-size: clamp(30px, 3.6vw, 44px); color: var(--ember-500); }
.scsc-hx__script i { flex: 1; height: 0; border-top: 2px dotted var(--ink-700); opacity: .5; }
.scsc-hx__lede { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); max-width: 540px; }

.scsc-hx__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.scsc-hx__ctas .scsc-btn--primary { box-shadow: 0 4px 0 var(--ink-900); padding: 16px 30px; font-size: 18px; }
.scsc-hx__ctas .scsc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink-900); }
.scsc-hx__ctas .scsc-btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink-900); }
.scsc-hx__link { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-900); text-decoration: none; display: inline-flex; gap: 8px; align-items: center; padding: 8px 0; border-bottom: 3px solid var(--ink-900); }
.scsc-hx__link span { transition: transform .2s var(--ease-out); }
.scsc-hx__link:hover { color: var(--ember-600); border-color: var(--ember-600); }
.scsc-hx__link:hover span { transform: translateX(5px); }

.scsc-hx__proof { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); padding-top: var(--space-5); border-top: 2px dotted rgba(13,13,13,.35); }
.scsc-hx__by { display: inline-flex; align-items: center; gap: 12px; }
.scsc-hx__by img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 3px solid #fff; box-shadow: var(--shadow-plate); }
.scsc-hx__by span { font-size: 16px; line-height: 1.25; color: var(--ink-700); }
.scsc-hx__by strong { display: block; font-family: var(--font-display); font-size: 17px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-900); }
.scsc-hx__stats { display: flex; gap: var(--space-6); }
.scsc-hx__stat { display: flex; flex-direction: column; gap: 2px; padding-left: var(--space-6); border-left: 2px solid rgba(13,13,13,.25); }
.scsc-hx__stat b { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; color: var(--ink-900); }
.scsc-hx__stat small { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-700); }

.scsc-hx__art { position: relative; z-index: 1; display: grid; place-items: center; padding: 30px 30px 40px; }
.scsc-hx__arch-wrap { position: relative; width: min(100%, 440px); animation: scsc-float 7s ease-in-out infinite; }
.scsc-hx__arch-wrap::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px 999px 26px 26px; background: var(--ember-500);
  transform: translate(20px, 22px) rotate(3deg); z-index: 0;
}
.scsc-hx__arch-wrap::after {
  content: ""; position: absolute; z-index: 0; right: -34px; top: 18%; width: 92px; height: 150px;
  background: radial-gradient(circle, var(--ink-900) 2.2px, transparent 2.6px) 0 0 / 15px 15px; opacity: .3;
}
@keyframes scsc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.scsc-hx__arch {
  position: relative; z-index: 1; aspect-ratio: 4 / 5; border-radius: 999px 999px 26px 26px; border: 10px solid #fff;
  background-color: var(--stone-200); background-size: cover; background-position: center; box-shadow: var(--shadow-float); overflow: hidden;
}
.scsc-hx__sticker {
  position: absolute; z-index: 3; top: 26%; right: -22px; background: #fff; border-radius: 12px; padding: 12px 16px; text-align: center;
  box-shadow: var(--shadow-card); transform: rotate(5deg); border: 2px solid var(--ink-900);
}
.scsc-hx__sticker b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1; color: var(--ink-900); }
.scsc-hx__sticker small { font-family: var(--font-display); font-weight: 500; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ember-600); }
.scsc-hx__mini {
  position: absolute; z-index: 3; right: -12px; bottom: 6%; width: 27%; aspect-ratio: 1; border-radius: 50%; border: 7px solid #fff;
  box-shadow: var(--shadow-card); background-color: var(--stone-200); background-size: cover; background-position: center;
}
.scsc-hx__seal { position: absolute; z-index: 4; left: -46px; bottom: -22px; width: 128px; height: 128px; }
.scsc-hx__seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.scsc-hx__seal .ring { animation: scsc-spin 24s linear infinite; }
@keyframes scsc-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .scsc-hx { grid-template-columns: 1fr; gap: var(--space-8); }
  .scsc-hx__art { padding: 20px 34px 44px; }
  .scsc-hx__arch-wrap { width: min(100%, 360px); }
  .scsc-hx__seal { left: -8px; width: 104px; height: 104px; }
  .scsc-hx__sticker { right: -4px; }
}
@media (max-width: 560px) {
  .scsc-hx__lede { font-size: 19px; }
  .scsc-hx__stats { gap: var(--space-4); }
  .scsc-hx__stat { padding-left: var(--space-4); }
  .scsc-hx__stat b { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .scsc-hx__copy > *, .scsc-hx__arch-wrap, .scsc-hx__seal .ring { animation: none; }
  .scsc-hl::after { animation: none; transform: skewX(-10deg) scaleX(1); }
}


/* Hero v2 tweaks */
.scsc-hx__title { font-size: clamp(40px, 5.4vw, 74px); line-height: .98; }
.scsc-hl::after { bottom: .1em; height: .26em; }
.scsc-hx__arch-wrap { width: min(100%, 420px); }


/* Hero triptych: three crockpots divided by white lines */
.scsc-hx__tri {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
  aspect-ratio: 4 / 5; background: #fff; border: 10px solid #fff; border-radius: 999px 999px 26px 26px;
  overflow: hidden; box-shadow: var(--shadow-float);
}
.scsc-hx__panel { position: relative; display: block; overflow: hidden; background: var(--stone-200); color: #fff; text-decoration: none; }
.scsc-hx__panel-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s var(--ease-out); }
.scsc-hx__panel:hover .scsc-hx__panel-img, .scsc-hx__panel:focus-visible .scsc-hx__panel-img { transform: scale(1.08); }
.scsc-hx__panel-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 8px 16px; text-align: center; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
  background: linear-gradient(to top, rgba(13,13,13,.78), rgba(13,13,13,0));
}
.scsc-hx__panel:focus-visible { outline: 3px solid var(--orange-500); outline-offset: -3px; }
@media (max-width: 560px) {
  .scsc-hx__panel-label { font-size: 11px; letter-spacing: .08em; padding: 36px 4px 12px; }
}
@media (prefers-reduced-motion: reduce) { .scsc-hx__panel-img { transition: none; } }


/* Hero triptych: badge placement */
.scsc-hx__seal { left: -62px; bottom: -48px; }
.scsc-hx__sticker { top: 5%; right: -38px; }
@media (max-width: 900px) {
  .scsc-hx__seal { left: -14px; bottom: -40px; }
  .scsc-hx__sticker { right: -8px; top: 4%; }
}


/* Hero triptych: seal top-left */
.scsc-hx__seal { left: -58px; top: 9%; bottom: auto; }
@media (max-width: 900px) {
  .scsc-hx__seal { left: -12px; top: 3%; bottom: auto; width: 92px; height: 92px; }
}


/* ==========================================================================
   Featured recipe card v2
   ========================================================================== */
.scsc-fc {
  position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-float); overflow: hidden; border: 3px solid var(--ink-900);
}
.scsc-fc__media {
  position: relative; display: grid; place-items: center; padding: 44px 36px; overflow: hidden;
  background: var(--ember-500);
  background-image:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,.18) 0 90px, transparent 91px),
    radial-gradient(circle at 92% 90%, rgba(13,13,13,.16) 0 130px, transparent 131px),
    radial-gradient(rgba(255,255,255,.22) 2px, transparent 2.6px);
  background-size: auto, auto, 18px 18px;
}
.scsc-fc__photo {
  position: relative; width: min(100%, 330px); aspect-ratio: 4 / 5; border-radius: 18px; border: 9px solid #fff;
  background-size: cover; background-position: center; box-shadow: 0 22px 40px -12px rgba(13,13,13,.55);
  transform: rotate(-3deg); transition: transform .5s var(--ease-out);
}
.scsc-fc:hover .scsc-fc__photo { transform: rotate(-1deg) scale(1.02); }
.scsc-fc__tape {
  position: absolute; z-index: 2; top: -16px; left: 50%; width: 96px; height: 28px; margin-left: -48px; transform: rotate(2deg);
  background: rgba(251,246,236,.85); box-shadow: 0 2px 6px rgba(13,13,13,.25);
}
.scsc-fc__badge {
  position: absolute; z-index: 3; top: 22px; right: 22px; width: 92px; height: 92px; border-radius: 50%;
  background: var(--orange-500); color: var(--ink-900); border: 3px solid var(--ink-900);
  display: grid; place-content: center; text-align: center; transform: rotate(10deg);
  font-family: var(--font-display); font-weight: 700; line-height: 1; text-transform: uppercase;
  box-shadow: 0 4px 0 var(--ink-900);
}
.scsc-fc__badge b { display: block; font-size: 26px; }
.scsc-fc__badge small { font-size: 11px; letter-spacing: .16em; font-weight: 600; }

.scsc-fc__body { padding: 46px 48px; display: flex; flex-direction: column; gap: 20px; justify-content: center; background: linear-gradient(180deg, #fff, var(--stone-50)); }
.scsc-fc__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.scsc-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink-900); color: #fff;
}
.scsc-chip--ember { background: var(--ember-500); }
.scsc-chip--line { background: transparent; color: var(--ink-900); border: 2px solid var(--ink-900); padding: 5px 12px; }
.scsc-fc__title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.2vw, 56px); line-height: .98; text-transform: uppercase; color: var(--ink-900); }
.scsc-fc__blurb { margin: 0; font-size: 21px; line-height: var(--lh-body); color: var(--text-body); max-width: 520px; }

.scsc-fc__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.scsc-fc__fact {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: #fff; border-radius: 14px;
  border: 2px solid rgba(13,13,13,.12); transition: transform .2s var(--ease-out), border-color .2s, box-shadow .2s;
}
.scsc-fc__fact:hover { transform: translateY(-3px); border-color: var(--ink-900); box-shadow: 0 5px 0 var(--ink-900); }
.scsc-fc__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-400); color: var(--ink-900); }
.scsc-fc__icon svg { width: 22px; height: 22px; }
.scsc-fc__fact small { display: block; font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.scsc-fc__fact b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.1; color: var(--ink-900); }

.scsc-fc__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.scsc-fc__ctas .scsc-btn--primary { box-shadow: 0 4px 0 var(--ink-900); padding: 16px 28px; font-size: 18px; }
.scsc-fc__ctas .scsc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink-900); }
.scsc-fc__ctas .scsc-btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink-900); }
.scsc-fc__ctas .scsc-btn--primary span { display: inline-block; transition: transform .2s var(--ease-out); }
.scsc-fc__ctas .scsc-btn--primary:hover span { transform: translateX(5px); }
.scsc-btn--outline { background: transparent; color: var(--ink-900); border: 2.5px solid var(--ink-900); padding: 13.5px 24px; }
.scsc-btn--outline:hover { background: var(--ink-900); color: #fff; }

@media (max-width: 900px) {
  .scsc-fc { grid-template-columns: 1fr; }
  .scsc-fc__media { padding: 40px 28px; }
  .scsc-fc__body { padding: 32px 26px; }
}
@media (max-width: 480px) {
  .scsc-fc__facts { grid-template-columns: 1fr; }
  .scsc-fc__badge { width: 78px; height: 78px; top: 14px; right: 14px; }
}
@media (prefers-reduced-motion: reduce) { .scsc-fc__photo, .scsc-fc__fact { transition: none; } }


/* Featured card: CSS-only restyle of the existing markup */
.scsc-feature {
  position: relative; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); border: 3px solid var(--ink-900); border-radius: 24px;
  box-shadow: var(--shadow-float); overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.2) 0 90px, transparent 91px),
    radial-gradient(rgba(255,255,255,.22) 2px, transparent 2.6px) 0 0 / 18px 18px,
    linear-gradient(to right, var(--ember-500) 45.45%, #fff 45.45%);
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: 100% 100%, 18px 18px, 100% 100%;
}
.scsc-feature__media {
  position: relative; align-self: center; min-height: 0; width: calc(100% - 72px); max-width: 330px; margin: 44px auto; aspect-ratio: 4 / 5;
  border: 9px solid #fff; border-radius: 18px; box-shadow: 0 22px 40px -12px rgba(13,13,13,.55);
  transform: rotate(-3deg); transition: transform .5s var(--ease-out); background-size: cover; background-position: center;
}
.scsc-feature:hover .scsc-feature__media { transform: rotate(-1deg) scale(1.02); }
.scsc-feature__media::after {
  content: ""; position: absolute; top: -20px; left: 50%; width: 96px; height: 28px; margin-left: -48px; transform: rotate(2deg);
  background: rgba(251,246,236,.88); box-shadow: 0 2px 6px rgba(13,13,13,.25);
}
.scsc-feature__body { background: linear-gradient(180deg, #fff, var(--stone-50)); padding: 46px 48px; gap: 20px; }
.scsc-feature__body .scsc-eyebrow--ember {
  align-self: flex-start; display: inline-flex; padding: 7px 14px; border-radius: 999px; background: var(--ember-500); color: #fff;
  font-size: 14px; letter-spacing: .18em;
}
.scsc-feature__title { font-size: clamp(34px, 4.2vw, 56px); line-height: .98; }
.scsc-feature__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; border: 0; padding: 0; }
.scsc-feature__facts .scsc-fact {
  padding: 12px 16px; background: #fff; border-radius: 14px; border: 2px solid rgba(13,13,13,.12); border-left: 8px solid var(--orange-500);
  transition: transform .2s var(--ease-out), border-color .2s, box-shadow .2s;
}
.scsc-feature__facts .scsc-fact:hover { transform: translateY(-3px); border-color: var(--ink-900); box-shadow: 0 5px 0 var(--ink-900); }
.scsc-feature__facts .scsc-fact__value { font-size: 22px; }
.scsc-feature__ctas .scsc-btn--primary { box-shadow: 0 4px 0 var(--ink-900); padding: 16px 28px; font-size: 18px; }
.scsc-feature__ctas .scsc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink-900); }
.scsc-feature__ctas .scsc-btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink-900); }
.scsc-feature__ctas .scsc-btn--ink { background: transparent; color: var(--ink-900); border: 2.5px solid var(--ink-900); padding: 13.5px 24px; }
.scsc-feature__ctas .scsc-btn--ink:hover { background: var(--ink-900); color: #fff; }
@media (max-width: 900px) {
  .scsc-feature { grid-template-columns: 1fr; background: linear-gradient(to bottom, var(--ember-500) 0 440px, #fff 440px); }
  .scsc-feature__body { padding: 32px 26px; }
}
@media (max-width: 480px) { .scsc-feature__facts { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .scsc-feature__media, .scsc-feature__facts .scsc-fact { transition: none; } }


/* ==========================================================================
   WP Tasty Recipes card — themed to match Crockpot Daily
   ========================================================================== */
.scsc-post-content { margin: 0 0 var(--section-gap); }
.scsc-post-content > p, .scsc-post-content > h2, .scsc-post-content > h3, .scsc-post-content > ul, .scsc-post-content > ol { font-size: 20px; line-height: var(--lh-body); }
.scsc-post-content .tasty-recipes {
  position: relative; background: #fff; color: var(--text-body); font-family: var(--font-ui);
  border: 3px solid var(--ink-900); border-radius: 24px; box-shadow: var(--shadow-float); padding: 40px 44px 34px; overflow: hidden;
}
.scsc-post-content .tasty-recipes::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--ember-500) 0 12px, var(--orange-400) 12px 24px);
}
.scsc-post-content .tasty-recipes-title {
  margin: 8px 0 22px; padding-bottom: 14px; border-bottom: 3px solid var(--ink-900); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.02; text-transform: uppercase; letter-spacing: 0; color: var(--ink-900);
}
.scsc-post-content .tasty-recipes-title::after { content: "from our kitchen"; font-family: var(--font-script); font-weight: 400; font-size: 30px; text-transform: none; color: var(--ember-500); }
.scsc-post-content .tasty-recipes-image-button-container { float: right; margin: 0 0 12px 16px; }
.scsc-post-content .tasty-recipes-print-button, .scsc-post-content a.button.tasty-recipes-print-button {
  display: inline-flex; align-items: center; gap: 8px; background: var(--ink-900); color: #fff; border: 0; border-radius: 10px; padding: 12px 20px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; text-decoration: none; box-shadow: 0 3px 0 var(--ember-500); transition: transform .15s var(--ease-out), box-shadow .15s;
}
.scsc-post-content .tasty-recipes-print-button:hover { color: #fff; background: var(--ink-700); transform: translateY(-2px); box-shadow: 0 5px 0 var(--ember-500); }
.scsc-post-content .tasty-recipes-print-button svg { fill: currentColor; width: 18px; height: 18px; }
.scsc-post-content .tasty-recipes-description p { margin: 0 0 22px; font-size: 20px; line-height: var(--lh-body); }
.scsc-post-content .tasty-recipes-details ul {
  list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px;
}
.scsc-post-content .tasty-recipes-details li {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; margin: 0; background: var(--stone-50); border-radius: 14px; border-left: 8px solid var(--orange-500);
}
.scsc-post-content .tasty-recipes-details li.author, .scsc-post-content .tasty-recipes-details li.method, .scsc-post-content .tasty-recipes-details li.cuisine { display: none; }
.scsc-post-content .tasty-recipes-details .tasty-recipes-label { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.scsc-post-content .tasty-recipes-details li > span { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.1; color: var(--ink-900); }
.scsc-post-content .tasty-recipes-ingredients h3, .scsc-post-content .tasty-recipe-instructions h3 {
  margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-900);
}
.scsc-post-content .tasty-recipes-ingredients-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0 14px; }
.scsc-post-content .tasty-recipes-scale-label { font-family: var(--font-display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-right: 8px; }
.scsc-post-content .tasty-recipes-scale-button {
  border: 2px solid var(--ink-900); background: #fff; color: var(--ink-900); border-radius: 999px; padding: 4px 14px; margin-left: 4px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .06em;
}
.scsc-post-content .tasty-recipes-scale-button:hover { background: var(--stone-100); }
.scsc-post-content .tasty-recipes-scale-button-active { background: var(--ink-900); color: #fff; }
.scsc-post-content .tasty-recipes-ingredients-body ul { list-style: none; margin: 0 0 30px; padding: 0; }
.scsc-post-content .tasty-recipes-ingredients-body li {
  position: relative; margin: 0; padding: 12px 0 12px 38px; border-bottom: 1px solid var(--border-hairline); font-size: 19px; line-height: 1.5;
}
.scsc-post-content .tasty-recipes-ingredients-body li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid var(--ink-900);
  background: radial-gradient(circle, var(--orange-500) 0 4px, transparent 4.5px);
}
.scsc-post-content .tasty-recipe-instructions ol { list-style: none; margin: 14px 0 30px; padding: 0; counter-reset: scsc-step; display: flex; flex-direction: column; gap: 18px; }
.scsc-post-content .tasty-recipe-instructions li { counter-increment: scsc-step; position: relative; margin: 0; padding: 4px 0 0 54px; font-size: 19px; line-height: 1.6; min-height: 40px; }
.scsc-post-content .tasty-recipe-instructions li::before {
  content: counter(scsc-step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--ink-900); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 19px;
}
.scsc-post-content .tasty-recipes-notes { margin: 8px 0 24px; padding: 22px 26px; background: var(--stone-50); border-radius: 14px; }
.scsc-post-content .tasty-recipes-notes h3 { margin: 0 0 6px; font-size: 0; line-height: 0; }
.scsc-post-content .tasty-recipes-notes h3::before { content: "a word from the club"; font-family: var(--font-script); font-weight: 400; font-size: 30px; line-height: 1.2; text-transform: none; color: var(--ember-500); }
.scsc-post-content .tasty-recipes-notes-body p { margin: 0; font-size: 19px; line-height: var(--lh-body); }
.scsc-post-content .tasty-recipes-entry-footer { font-size: 14px; color: var(--text-muted); border-top: 1px solid var(--border-hairline); padding-top: 12px; }
.scsc-post-content .tasty-recipes-entry-footer a { color: var(--ink-700); }
@media (max-width: 640px) {
  .scsc-post-content .tasty-recipes { padding: 30px 22px 26px; border-radius: 18px; }
  .scsc-post-content .tasty-recipes-image-button-container { float: none; margin: 0 0 12px; }
}


/* ==========================================================================
   Recipe pages: white page + unified buttons (Tasty + theme)
   ========================================================================== */
html:has(body.single-post), body.single-post, .single-post .scsc-page { background: #fff; }
.single-post .scsc-sh { box-shadow: 0 10px 24px -16px rgba(13,13,13,.25); }
.single-post .scsc-recipe-head__title { color: var(--ink-900); }
.single-post .scsc-post-content .tasty-recipes { box-shadow: 0 18px 40px -18px rgba(13,13,13,.35); }

/* duplicates removed: Tasty's quick-links line and the extra "Print" above the card */
.tasty-recipes-quick-links, .tasty-recipes-print-above-card { display: none !important; }

/* shared button language */
.single-post .scsc-recipe-head__ctas .scsc-btn,
.scsc-post-content .tasty-recipes-print-button,
.scsc-post-content a.button.tasty-recipes-print-button,
.scsc-recipe-hero__pin {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; border-radius: 12px; border: 2.5px solid var(--ink-900);
  font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 0 var(--ink-900); transition: transform .15s var(--ease-out), box-shadow .15s var(--ease-out), background .2s, color .2s;
}
.single-post .scsc-recipe-head__ctas .scsc-btn:hover,
.scsc-post-content .tasty-recipes-print-button:hover,
.scsc-recipe-hero__pin:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink-900); }
.single-post .scsc-recipe-head__ctas .scsc-btn:active,
.scsc-post-content .tasty-recipes-print-button:active,
.scsc-recipe-hero__pin:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--ink-900); }

.single-post .scsc-recipe-head__ctas .scsc-btn--primary { background: var(--orange-500); color: var(--ink-900); }
.single-post .scsc-recipe-head__ctas .scsc-btn--primary:hover { background: var(--orange-400); color: var(--ink-900); }
.single-post .scsc-recipe-head__ctas .scsc-btn--ink { background: #fff; color: var(--ink-900); }
.single-post .scsc-recipe-head__ctas .scsc-btn--ink:hover { background: var(--ink-900); color: #fff; }
.single-post .scsc-recipe-head__ctas .scsc-btn--primary::before { content: "↓"; font-size: 20px; line-height: 1; }
.single-post .scsc-recipe-head__ctas .scsc-btn--ink::before {
  content: ""; width: 18px; height: 18px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9V3h12v6M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2M6 14h12v7H6z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9V3h12v6M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2M6 14h12v7H6z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

/* Tasty print button inside the card */
.scsc-post-content .tasty-recipes-print-button, .scsc-post-content a.button.tasty-recipes-print-button { background: var(--orange-500); color: var(--ink-900); padding: 12px 20px; font-size: 15px; }
.scsc-post-content .tasty-recipes-print-button:hover { background: var(--orange-400); color: var(--ink-900); }
.scsc-post-content .tasty-recipes-print-button svg { width: 18px; height: 18px; fill: currentColor; }

/* Pinterest button on the hero photo */
.scsc-recipe-hero__pin { background: #e60023; color: #fff; border-color: var(--ink-900); padding: 12px 20px; font-size: 15px; }
.scsc-recipe-hero__pin::before { content: "P"; display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff; color: #e60023; font-family: Georgia, serif; font-weight: 700; font-size: 16px; line-height: 1; }
.scsc-recipe-hero__pin:hover { background: #ad081b; color: #fff; }

/* Tasty scale buttons */
.scsc-post-content .tasty-recipes-scale-button { border-width: 2.5px; box-shadow: 0 3px 0 var(--ink-900); transition: transform .15s var(--ease-out), box-shadow .15s, background .2s; }
.scsc-post-content .tasty-recipes-scale-button:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink-900); background: var(--stone-100); }
.scsc-post-content .tasty-recipes-scale-button:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink-900); }
.scsc-post-content .tasty-recipes-scale-button-active, .scsc-post-content .tasty-recipes-scale-button-active:hover { background: var(--ember-500); color: #fff; border-color: var(--ink-900); }

@media (max-width: 560px) {
  .single-post .scsc-recipe-head__ctas .scsc-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .single-post .scsc-recipe-head__ctas .scsc-btn, .scsc-post-content .tasty-recipes-print-button, .scsc-recipe-hero__pin, .scsc-post-content .tasty-recipes-scale-button { transition: none; }
}


/* ==========================================================================
   Mobile fixes + search / 404
   ========================================================================== */
@media (max-width: 560px) {
  .scsc-announce { padding: 10px 16px; gap: 6px 12px; }
  .scsc-announce__text { font-size: 13px; letter-spacing: .16em; }
  .scsc-sh__inner { grid-template-columns: 1fr; }
  .scsc-sh__actions { grid-column: 1; grid-row: 2; justify-content: space-between; }
  .scsc-sh__cta { flex: 1; text-align: center; }
  .scsc-sh__nav { grid-row: 3; }

  .scsc-favorites { padding: var(--space-12) 20px; }
  .scsc-favorite { gap: 12px; flex-wrap: wrap; }
  .scsc-favorite__rank { width: 30px; font-size: 30px; }
  .scsc-favorite__img { width: 56px; height: 56px; }
  .scsc-favorite__title { font-size: 18px; flex: 1 1 120px; min-width: 0; }
  .scsc-favorite__save { font-size: 13px; }

  .scsc-list-head__title { font-size: clamp(30px, 9vw, 44px); }
  .scsc-panel { padding: var(--space-5); }
  .scsc-hero__stats { gap: var(--space-4); }
}
.scsc-search-form { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 8px; max-width: 560px; }
.scsc-search-form input[type=search] { flex: 1 1 240px; font-family: var(--font-ui); font-size: 18px; padding: 14px 18px; border-radius: 12px; border: 2.5px solid var(--ink-900); background: #fff; }
.scsc-notfound { padding: 8px 0 var(--section-gap); }
.scsc-notfound__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.scsc-notfound__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(90px, 18vw, 180px); line-height: .9; color: var(--ember-500); letter-spacing: .02em; }


/* Mobile header: slimmer */
@media (max-width: 560px) {
  .scsc-announce { display: none; }
  .scsc-sh__inner { padding-top: 16px; padding-bottom: 10px; row-gap: 10px; }
  .scsc-sh__nav { padding-top: 6px; }
  .scsc-sh__link { padding: 8px 12px; font-size: 14px; }
  .scsc-sh { margin-bottom: 16px; }
}

/* Newsletter anti-spam trap field (kept off-screen) */
.scsc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
