/* =================================================================
   VegaNati — Direction 2: Bold & Modern
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --forest:       #1E5B3A;
    --forest-deep:  #133B25;
    --forest-dark:  #0B2417;
    --cream:        #F8F1DF;
    --cream-soft:   #FCF7EA;
    --cream-dark:   #EDE3C8;
    --sage-pale:    #C4D4B8;
    --clay:         #D87646;
    --clay-deep:    #B85A2E;
    --ink:          #1A1A15;
    --ink-soft:     #3A3A2F;
    --muted:        #7A7868;

    --serif:  'Rubik', system-ui, sans-serif;
    --sans:   'Rubik', system-ui, sans-serif;
    --latin:  'Rubik', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    direction: rtl;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}
/* Logos, icons, avatars stay sharp */
.site-header__logo img,
.footer__brand img,
.vn-recipe__cat svg,
header img.no-radius,
img.alignnone[width="32"],
img[width="16"], img[width="20"], img[width="24"], img[width="32"], img[width="40"] {
    border-radius: 0 !important;
}
/* =================================================================
   COOKBOOK SALES PAGE — /my-top-50-vegan-cookbook/
   ================================================================= */
.cb-hero,
.cb-inside,
.cb-proof,
.cb-preview,
.cb-formats,
.cb-author,
.cb-policy,
.cb-final {
    width: 100%;
    box-sizing: border-box;
}

/* Shared section heading style */
.cb-section__eyebrow {
    color: var(--clay);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cb-section__title {
    font-family: var(--serif);
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 16px;
}
.cb-section__lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0;
}

/* Buttons unified for cookbook */
.cb-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
    border: 0;
    cursor: pointer;
}
.cb-btn--primary { background: var(--clay); color: #fff !important; }
.cb-btn--primary:hover { background: var(--clay-deep); }
.cb-btn--ghost { background: var(--forest); color: #fff !important; }
.cb-btn--ghost:hover { background: var(--forest-deep); }
.cb-btn--ghost-light {
    background: transparent;
    color: var(--cream) !important;
    border: 1.5px solid var(--cream);
}
.cb-btn--ghost-light:hover { background: var(--cream); color: var(--forest-deep) !important; }
.cb-btn--block { display: block; text-align: center; }

/* HERO */
.cb-hero {
    background: linear-gradient(135deg, #1E5B3A 0%, #133B25 100%);
    color: var(--cream);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
.cb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.18) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 90%, rgba(196,212,184,.10) 0%, transparent 55%);
    pointer-events: none;
}
.cb-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.cb-hero__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.cb-hero__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--cream);
    margin: 0 0 24px;
}
.cb-hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(248,241,223,.85);
    margin-bottom: 32px;
    max-width: 50ch;
}
.cb-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 36px;
}
.cb-hero__meta {
    display: flex;
    gap: 36px;
    flex-wrap: nowrap;
    padding-top: 28px;
    border-top: 1px solid rgba(248,241,223,.18);
    font-size: 15px;
    color: rgba(248,241,223,.78);
}
.cb-hero__meta strong {
    display: block;
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--clay);
    line-height: 1;
    margin-bottom: 4px;
}
.cb-hero__media {
    position: relative;
    text-align: center;
}
.cb-hero__media img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    transform: rotate(-3deg);
}

/* WHAT'S INSIDE */
.cb-inside {
    padding: 96px 40px;
    background: var(--cream);
}
.cb-inside__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.cb-inside__head .cb-section__title { margin: 0 auto 0; }
.cb-inside__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cb-chip {
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--cream-dark);
    transition: transform .2s, box-shadow .2s;
}
.cb-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.cb-chip > span {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.cb-chip strong {
    display: block;
    font-weight: 800;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 4px;
}
.cb-chip small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    display: block;
}

/* PROOF — same heavy Rubik as site headlines, compact padding */
.cb-proof {
    padding: 48px 32px;
    background: var(--cream-soft);
    text-align: center;
}
.cb-proof__quote {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.cb-proof__mark {
    display: block;
    font-family: 'Rubik', system-ui, sans-serif !important;
    font-size: 40px;
    line-height: 1;
    color: var(--clay);
    margin-bottom: 8px;
    font-weight: 900 !important;
}
.cb-proof__quote p {
    font-family: 'Rubik', system-ui, sans-serif !important;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--ink);
    font-weight: 900 !important;
    font-style: italic;
    transform: skewX(-3deg);
    transform-origin: center;
    display: inline-block;
    margin: 0 0 18px;
}
.cb-proof__author {
    display: inline-block;
    font-family: 'Rubik', system-ui, sans-serif !important;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700 !important;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* PREVIEW */
.cb-preview {
    padding: 96px 40px;
    background: var(--forest-deep);
    color: var(--cream);
}
.cb-preview .cb-section__title { color: var(--cream); }
.cb-preview .cb-section__lede { color: rgba(248,241,223,.78); }
.cb-preview__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.cb-preview__head .cb-section__lede { margin: 0 auto; }
.cb-preview__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cb-preview__grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
    transition: transform .3s;
}
.cb-preview__grid img:hover { transform: translateY(-6px); }

/* FORMATS / PRICING */
.cb-formats {
    padding: 96px 40px;
    background: var(--cream);
}
.cb-formats__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.cb-formats__grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.cb-card {
    background: #fff;
    border: 1.5px solid var(--cream-dark);
    border-radius: 14px;
    padding: 36px 32px 32px;
    position: relative;
    transition: border-color .2s, box-shadow .2s;
}
.cb-card:hover {
    border-color: var(--forest);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.cb-card--accent {
    border-color: var(--clay);
    background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
}
.cb-card__badge {
    display: inline-block;
    background: var(--forest);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.cb-card__badge--accent { background: var(--clay); }
.cb-card__title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px;
}
.cb-card__desc {
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 20px;
}
.cb-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.cb-card__features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--ink);
    position: relative;
    padding-inline-start: 26px;
}
.cb-card__features li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--forest);
    font-weight: 800;
}
.cb-card__features li:last-child { border-bottom: 0; }

/* AUTHOR */
.cb-author {
    padding: 96px 40px;
    background: var(--cream-soft);
}
.cb-author__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
}
.cb-author__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.cb-author__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(32px, 3.5vw, 52px);
    line-height: 1.1;
    color: var(--forest);
    margin: 0 0 20px;
}
.cb-author__text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 14px;
}

/* POLICY */
.cb-policy {
    padding: 64px 40px;
    background: var(--cream);
}
.cb-policy__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.cb-policy__list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    text-align: start;
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 18px 24px;
}
.cb-policy__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}
.cb-policy__list li:last-child { border-bottom: 0; }
.cb-policy__list strong { color: var(--forest-deep); }

/* FINAL CTA */
.cb-final {
    background: linear-gradient(135deg, #B85A2E 0%, #D87646 100%);
    color: #fff;
    padding: 96px 40px;
    text-align: center;
}
.cb-final__inner { max-width: 800px; margin: 0 auto; }
.cb-final__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 18px;
}
.cb-final__lede {
    font-size: 18px;
    color: rgba(255,255,255,.92);
    margin: 0 0 36px;
}
.cb-final__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Mobile (under 720px) */
@media (max-width: 720px) {
    .cb-hero { padding: 56px 20px; }
    .cb-hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: right; }
    .cb-hero__media img { transform: none; max-width: 280px; }
    .cb-hero__cta { flex-direction: column; }
    .cb-hero__cta .cb-btn { width: 100%; text-align: center; }
    .cb-hero__meta { gap: 18px; font-size: 13px; }
    .cb-hero__meta strong { font-size: 24px; }

    .cb-inside { padding: 56px 20px; }
    .cb-inside__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cb-chip { padding: 12px 14px; gap: 10px; }
    .cb-chip > span { font-size: 22px; }

    .cb-proof { padding: 56px 24px; }
    .cb-proof__quote { padding: 0 20px; }

    .cb-preview { padding: 56px 20px; }
    .cb-preview__grid { grid-template-columns: 1fr 1fr; }

    .cb-formats { padding: 56px 20px; }
    .cb-formats__grid { grid-template-columns: 1fr; max-width: 100%; }

    .cb-author { padding: 56px 20px; }
    .cb-author__inner { grid-template-columns: 1fr; gap: 28px; }
    .cb-author__media img { max-width: 280px; margin: 0 auto; display: block; }

    .cb-policy { padding: 48px 20px; }
    .cb-final { padding: 64px 20px; }
    .cb-final__cta { flex-direction: column; }
    .cb-final__cta .cb-btn { width: 100%; text-align: center; }
}

/* =================================================================
   WORKSHOPS SALES PAGE — /cooking-workshop/  (matches cookbook page design language)
   ================================================================= */
.ws-section__eyebrow {
    color: var(--clay);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ws-section__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 16px;
}
.ws-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
    border: 0;
}
.ws-btn--primary { background: var(--clay); color: #fff !important; }
.ws-btn--primary:hover { background: var(--clay-deep); }
.ws-btn--ghost { background: var(--forest); color: #fff !important; }
.ws-btn--ghost:hover { background: var(--forest-deep); }
.ws-btn--block { display: block; text-align: center; }
.ws-btn--big { padding: 18px 36px; font-size: 17px; font-family: monospace; letter-spacing: .02em; }

/* Hero */
.ws-hero {
    background: linear-gradient(135deg, #1E5B3A 0%, #133B25 100%);
    color: var(--cream);
    padding: 120px 40px 110px;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.ws-hero-cc {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ws-hero-cc__track { position: absolute; inset: 0; }
.ws-hero-cc__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.ws-hero-cc__slide.is-active { opacity: 1; }
.ws-hero-cc__slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.ws-hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(19,59,37,.86) 0%, rgba(19,59,37,.62) 55%, rgba(19,59,37,.35) 100%),
      radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.22) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}
.ws-hero__inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-inline-start: max(40px, calc((100vw - 1280px) / 2));
    margin-inline-end: auto;
}
.ws-hero__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.ws-hero__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--cream);
    margin: 0 0 24px;
}
.ws-hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(248,241,223,.85);
    margin: 0 0 32px;
    max-width: 50ch;
}
.ws-hero__cta { display: flex; gap: 14px; flex-wrap: nowrap; margin-bottom: 36px; }
.ws-hero__meta {
    display: flex;
    gap: 28px;
    flex-wrap: nowrap;
    padding-top: 28px;
    border-top: 1px solid rgba(248,241,223,.18);
    font-size: 14px;
    color: rgba(248,241,223,.78);
}
.ws-hero__meta strong { color: var(--clay); font-weight: 700; }
.ws-hero__media img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* What you get */
.ws-what {
    padding: 96px 40px;
    background: var(--cream);
}
.ws-what__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.ws-what__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ws-tile {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 28px 24px 24px;
    transition: border-color .2s, transform .2s;
}
.ws-tile:hover {
    border-color: var(--forest);
    transform: translateY(-3px);
}
.ws-tile__num {
    color: var(--clay);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.ws-tile h3 {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 8px;
}
.ws-tile p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}

/* Types — pricing cards */
.ws-types {
    padding: 96px 40px;
    background: var(--cream-soft);
}
.ws-types__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.ws-types__grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ws-card {
    background: #fff;
    border: 1.5px solid var(--cream-dark);
    border-radius: 14px;
    padding: 32px 30px;
    position: relative;
    transition: border-color .2s, box-shadow .2s;
}
.ws-card:hover {
    border-color: var(--forest);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.ws-card--accent {
    border-color: var(--clay);
    background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
}
.ws-card__badge {
    display: inline-block;
    background: var(--forest);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.ws-card__badge--accent { background: var(--clay); }
.ws-card__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px;
}
.ws-card__price {
    color: var(--forest);
    margin: 0 0 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.ws-card__price-num {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}
.ws-card__price-unit {
    font-size: 22px;
    font-weight: 700;
}
.ws-card__price small {
    color: var(--muted);
    font-size: 14px;
    margin-inline-start: 6px;
}
.ws-card__desc {
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 18px;
}
.ws-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.ws-card__features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--ink);
    position: relative;
    padding-inline-start: 26px;
}
.ws-card__features li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--forest);
    font-weight: 800;
}
.ws-card__features li:last-child { border-bottom: 0; }

/* Card carousel — workshop type cards */
.ws-types__grid { align-items: stretch; }
.ws-card--with-media {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ws-card--with-media .ws-card__body {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.ws-card--with-media .ws-card__body .ws-btn--block {
    margin-top: auto;
}
.ws-cc {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--cream-soft);
    overflow: hidden;
    border-bottom: 1px solid var(--cream-dark);
}
.ws-cc__track { position: absolute; inset: 0; }
.ws-cc__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .55s ease;
}
.ws-cc__slide.is-active { opacity: 1; }
.ws-cc__slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.ws-cc__dots {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.ws-cc__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.ws-cc__dot.is-active { background: #fff; transform: scale(1.25); }
.ws-cc__dot:hover { background: #fff; }

/* Gallery */
.ws-gallery {
    padding: 96px 40px;
    background: var(--forest-deep);
    color: var(--cream);
}
.ws-gallery .ws-section__title { color: var(--cream); }
.ws-gallery__head {
    max-width: 1280px;
    margin: 0 auto 36px;
    text-align: center;
}
.ws-gallery__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ws-gallery__grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
    transition: transform .35s;
}
.ws-gallery__grid img:hover { transform: translateY(-4px); }

/* Policy */
.ws-policy {
    padding: 64px 40px;
    background: var(--cream);
}
.ws-policy__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.ws-policy__list {
    list-style: none;
    padding: 18px 24px;
    margin: 28px 0 0;
    text-align: start;
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
}
.ws-policy__list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}
.ws-policy__list li:last-child { border-bottom: 0; }
.ws-policy__list strong { color: var(--forest-deep); }

/* Final CTA */
.ws-final {
    background: linear-gradient(135deg, #B85A2E 0%, #D87646 100%);
    color: #fff;
    padding: 96px 40px;
    text-align: center;
}
.ws-final__inner { max-width: 760px; margin: 0 auto; }
.ws-final__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 18px;
}
.ws-final__lede {
    font-size: 18px;
    color: rgba(255,255,255,.92);
    margin: 0 0 32px;
}

/* Mobile */
@media (max-width: 720px) {
    .ws-hero { padding: 80px 20px 70px; min-height: 460px; }
    .ws-hero__inner { margin-inline: 0; max-width: 100%; text-align: right; }
    .ws-hero__overlay {
        background:
          linear-gradient(180deg, rgba(19,59,37,.55) 0%, rgba(19,59,37,.85) 60%, rgba(19,59,37,.9) 100%);
    }
    .ws-hero__cta { flex-direction: column; }
    .ws-hero__cta .ws-btn { width: 100%; text-align: center; }

    .ws-what { padding: 56px 20px; }
    .ws-what__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ws-tile { padding: 18px 16px; }
    .ws-tile h3 { font-size: 17px; }

    .ws-types { padding: 56px 20px; }
    .ws-types__grid { grid-template-columns: 1fr; max-width: 100%; gap: 18px; }
    .ws-card--with-media .ws-card__body { padding: 22px 20px 28px; }
    .ws-cc { aspect-ratio: 16 / 10; }

    .ws-gallery { padding: 56px 20px; }
    .ws-gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .ws-policy { padding: 48px 20px; }
    .ws-final { padding: 64px 20px; }
}

/* Accessibility widget — middle of right side (away from ads bottom + toast bottom-left) */
.aioa-icon-type-1,
[class*="aioa-icon-type"],
.skiptranslate ~ .aioa-icon-type-1,
body .aioa-icon-type-1 {
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    z-index: 9990 !important;
}
.aioa-asw-menu-wrap {
    z-index: 9991 !important;
}

/* Footer text + links — force white/cream over the dark green background (default link blue is unreadable here) */
.footer,
.footer * {
    color: #F8F1DF !important;
}
.footer a,
.footer a:link,
.footer a:visited,
.footer__col li a,
.footer__col li a:link,
.footer__col li a:visited,
.footer__bottom a,
.footer__bottom a:link {
    color: #F8F1DF !important;
    text-decoration: none !important;
    opacity: 0.85;
    transition: opacity .2s, color .2s;
}
.footer a:hover,
.footer__col li a:hover,
.footer__bottom a:hover {
    color: #ffffff !important;
    opacity: 1;
}
.footer__col h4 {
    color: var(--clay) !important;
}

/* Image wrappers ALSO need radius — otherwise overflow:hidden clips the inner image's radius to a square. */
.recipe__img,
.cat__img-wrap,
.feature__rec,
.feature__image,
.insta__tile,
.recipes-archive .elementor-post__thumbnail,
.recipes-related .elementor-post__thumbnail,
.elementor-widget-archive-posts .elementor-post__thumbnail,
.elementor-widget-posts .elementor-post__thumbnail,
.vn-recipe__hero-frame,
.vn-recipe__gallery-item {
    border-radius: 8px !important;
    overflow: hidden !important;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* =================================================================
   ELEMENTOR WRAPPER RESET — edge-to-edge rendering of custom HTML
   ================================================================= */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
.elementor-11467,
.elementor-11467 .elementor-section,
.elementor-11467 .elementor-container,
.elementor-11467 .elementor-column,
.elementor-11467 .elementor-column > .elementor-element-populated,
.elementor-11467 .elementor-widget-wrap,
.elementor-11467 .elementor-widget,
.elementor-11467 .elementor-widget-container,
.elementor-11467 .elementor-widget-html,
.elementor-11467 .elementor-widget-html > .elementor-widget-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.elementor-11467 .elementor-container {
    flex-wrap: nowrap !important;
}

/* =================================================================
   ANNOUNCEMENT BAR
   ================================================================= */
.marquee {
    background: var(--forest);
    color: var(--cream);
    overflow: hidden;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--forest-deep);
}
.marquee__track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: slide 40s linear infinite;
}
.marquee__track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track > span::after { content: '✦'; color: var(--clay); }
@keyframes slide {
    from { transform: translateX(0); }
    to   { transform: translateX(50%); }
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
    background: var(--cream);
    padding: 16px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--cream-dark);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header__logo { display: block; }
.site-header__logo img {
    height: 68px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}
.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    flex-wrap: nowrap;
}
.site-header__nav a {
    color: var(--ink) !important;
    white-space: nowrap;
    text-decoration: none !important;
}
.site-header__nav a:hover { color: var(--forest) !important; }

.nav { display: flex; gap: 36px; font-size: 15px; font-weight: 500; color: var(--ink); }
.nav--left  { justify-self: start; }
.nav--right { justify-self: end; align-items: center; }
.nav a {
    position: relative;
    padding: 6px 2px;
    transition: color .2s;
}
.nav a:hover { color: var(--forest); }
.nav a::before {
    content: '';
    position: absolute;
    inset: auto 50% -4px 50%;
    height: 2px;
    background: var(--clay);
    transition: inset .25s ease;
}
.nav a:hover::before { inset: auto 0 -4px 0; }

.search-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--ink);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s;
}
.search-btn:hover { background: var(--ink); color: var(--cream); }

/* =================================================================
   HERO CAROUSEL — auto-rotating recipes
   ================================================================= */
.hero-carousel {
    position: relative;
    background: var(--forest);
    color: var(--cream);
    overflow: hidden;
    min-height: 620px;
}
.hero-carousel__slides { position: relative; height: 100%; }
.hero-carousel__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    text-decoration: none !important;
    color: inherit !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), visibility 0s .8s;
    min-height: 620px;
}
.hero-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), visibility 0s 0s;
    z-index: 2;
}
.hero-carousel__media {
    position: relative;
    overflow: hidden;
}
.hero-carousel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s linear;
}
.hero-carousel__slide.is-active .hero-carousel__media img {
    transform: scale(1.06);
}
.hero-carousel__panel {
    position: relative;
    padding-block: 72px;
    padding-inline-start: max(48px, calc((100vw - 1440px) / 2 + 48px));
    padding-inline-end: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--forest);
    z-index: 1;
}
.hero-carousel__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.14) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 90%, rgba(196,212,184,.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-carousel__tag {
    position: absolute;
    top: 32px;
    inset-inline-end: 32px;
    background: var(--cream);
    color: var(--forest-deep);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 999px;
}
.hero-carousel__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 16px;
    position: relative;
}
.hero-carousel__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--cream);
    margin-bottom: 28px;
    max-width: 14ch;
    position: relative;
}
.hero-carousel__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--clay);
    color: #fff;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    width: fit-content;
    transition: background .25s;
    position: relative;
}
.hero-carousel__slide:hover .hero-carousel__cta { background: var(--clay-deep); }

.hero-carousel__dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
    max-width: calc(100% - 140px);
    flex-wrap: nowrap;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(11,36,23,.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.hero-carousel__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(248,241,223,.45);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s, width .25s;
    flex-shrink: 0;
}
.hero-carousel__dot:hover { background: rgba(248,241,223,.85); }
.hero-carousel__dot.is-active {
    background: var(--cream);
    width: 24px;
    border-radius: 4px;
}

.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(11,36,23,.55);
    color: var(--cream);
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background .2s;
    backdrop-filter: blur(4px);
}
.hero-carousel__nav:hover { background: rgba(11,36,23,.85); }
.hero-carousel__nav--prev { right: 20px; }
.hero-carousel__nav--next { left: 20px; }

@media (max-width: 1100px) {
    .hero-carousel { min-height: 600px; }
    .hero-carousel__slide {
        min-height: 600px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .hero-carousel__media {
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .hero-carousel__media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    .hero-carousel__panel {
        padding-block: 48px 56px;
        padding-inline-start: 28px;
        padding-inline-end: 28px;
    }
    .hero-carousel__title { font-size: clamp(32px, 7vw, 48px); max-width: none; }
    .hero-carousel__nav {
        display: block;
        top: 28%;
        transform: none;
        width: auto;
        height: auto;
        background: transparent !important;
        backdrop-filter: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 48px;
        line-height: 1;
        color: #fff !important;
        text-shadow: 0 0 12px rgba(0,0,0,.9), 0 2px 4px rgba(0,0,0,.8);
        padding: 0 !important;
        font-weight: 900;
    }
    .hero-carousel__nav:hover,
    .hero-carousel__nav:focus,
    .hero-carousel__nav:focus-visible {
        background: transparent !important;
        outline: 0 !important;
        box-shadow: none !important;
    }
    .hero-carousel__nav--prev { right: 12px; }
    .hero-carousel__nav--next { left: 12px; }
}

/* =================================================================
   HERO — dark green takeover
   ================================================================= */
.hero {
    background: var(--forest);
    color: var(--cream);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.14) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 90%, rgba(196,212,184,.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    min-height: 620px;
}
.hero__content {
    padding-block: 72px;
    padding-inline-start: max(48px, calc((100vw - 1440px) / 2 + 48px));
    padding-inline-end: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    margin-inline-start: 0;
}

.hero__eyebrow {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero__eyebrow::before {
    content: '';
    width: 60px; height: 1px;
    background: var(--clay);
}

.hero__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(38px, 4.2vw, 68px);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    color: var(--cream);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero__lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--sage-pale);
    max-width: 44ch;
    margin-bottom: 40px;
    opacity: .92;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(196,212,184,.25);
    padding-top: 24px;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
}
.hero__meta-label {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sage-pale);
    opacity: .8;
    margin-bottom: 6px;
}
.hero__meta-value {
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -.02em;
}

.hero__cta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
}
.hero__cta .btn { flex: 0 0 auto; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    line-height: 1;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: transform .25s, background .2s, color .2s;
    white-space: nowrap;
}
/* Unified button system — only TWO styles across the entire site:
   primary (forest green) for navigation/secondary actions,
   accent (clay) for hero CTAs. White text always. No black, no blue. */
.btn,
a.btn,
button.btn {
    background: var(--forest) !important;
    color: #fff !important;
    border: 0 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transform: none !important;
    border-radius: 6px !important;
}
.btn:hover,
a.btn:hover,
button.btn:hover {
    background: var(--forest-deep) !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}
.btn--primary,
a.btn--primary,
button.btn--primary {
    background: var(--clay) !important;
    color: #fff !important;
}
.btn--primary:hover,
a.btn--primary:hover,
button.btn--primary:hover {
    background: var(--clay-deep) !important;
    color: #fff !important;
}
.btn--ghost,
a.btn--ghost,
button.btn--ghost {
    background: var(--forest) !important;
    color: #fff !important;
    border: 0 !important;
}
.btn--ghost:hover,
a.btn--ghost:hover,
button.btn--ghost:hover {
    background: var(--forest-deep) !important;
}
.btn--dark,
a.btn--dark,
button.btn--dark {
    background: var(--forest) !important;
    color: #fff !important;
}
.btn--dark:hover,
a.btn--dark:hover,
button.btn--dark:hover {
    background: var(--forest-deep) !important;
    color: #fff !important;
}
.btn__arrow { transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(-8px); }

.hero__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}
.hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__number {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 120px;
    line-height: .85;
    color: var(--cream);
    letter-spacing: -.05em;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: .85;
}

.hero__tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--cream);
    color: var(--forest);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* =================================================================
   BIG-NUMBER STATS STRIP
   ================================================================= */
.stats {
    background: var(--ink);
    color: var(--cream);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 5;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.stat + .stat::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(248,241,223,.15);
}
.stat__num {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    color: var(--clay);
    letter-spacing: -.04em;
}
.stat__label {
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .7;
}

/* =================================================================
   CATEGORIES — bold colored cards
   ================================================================= */
.section {
    padding: 72px 48px;
    max-width: 1440px;
    margin: 0 auto;
}
.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
    flex-wrap: nowrap;
}
.section__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 1;
    letter-spacing: -.03em;
    max-width: 18ch;
}
.section__title em {
    font-style: normal;
    color: var(--forest);
}
.section__aside {
    text-align: start;
    max-width: 420px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

.cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}
.cats a.cat { height: 100%; }

/* Horizontal scroll variant — used on home (10 cats with "half-peek" hint) */
.cats-scroll {
    position: relative;
}
.cats-scroll__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 16px * 4.5) / 4.5); /* 4 full + half peek */
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cats-scroll__track { align-items: stretch; }
.cats-scroll__track > .cat {
    scroll-snap-align: start;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 340px !important;
    align-self: stretch;
}
.cats-scroll__track > .cat > .cat__img-wrap {
    flex: 0 0 220px !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    position: relative !important;
    overflow: hidden !important;
}
.cats-scroll__track > .cat > .cat__img-wrap > img.cat__img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
.cats-scroll__track > .cat > .cat__body {
    flex: 0 0 120px !important;
    height: 120px !important;
    justify-content: flex-start !important;
    padding-top: 18px !important;
}
.cats-scroll__track::-webkit-scrollbar { display: none; width: 0; height: 0; }

.cats-scroll__nav {
    position: absolute;
    top: calc(50% - 28px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--forest);
    color: var(--cream);
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    transition: opacity .2s, background .2s, transform .15s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.cats-scroll__nav:hover { background: var(--forest-deep); }
.cats-scroll__nav--prev { left: -8px; }
.cats-scroll__nav--next { right: -8px; }

@media (max-width: 1100px) {
    .cats-scroll__track { grid-auto-columns: calc((100% - 16px * 3.5) / 3.5); }
}
@media (max-width: 720px) {
    .cats-scroll__track { grid-auto-columns: calc((100% - 14px * 1.5) / 1.5); gap: 14px; }
    .cats-scroll__nav { width: 38px; height: 38px; font-size: 20px; }
    .cats-scroll__nav--prev { left: -4px; }
    .cats-scroll__nav--next { right: -4px; }
}

/* =================================================================
   Promotional popup — clearly labeled as an ad, not content
   ================================================================= */
/* =================================================================
   SINGLE RECIPE PAGE — clean layout via the_content filter
   ================================================================= */
.single-post .site-main,
.single-post main,
.single-post .page-content,
.single-post .entry-content,
.single-post article {
    max-width: 100% !important;
}
.single-post .entry-header,
.single-post .post-thumbnail,
.single-post .entry-meta {
    display: none !important;
}
.vn-recipe__hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 24px;
    text-align: center;
}
.vn-recipe__eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .04em;
}
.vn-recipe__cat {
    background: var(--forest);
    color: #fff !important;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none !important;
}
.vn-recipe__cat:hover { background: var(--forest-deep); }
.vn-recipe__date {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .12em;
}
.vn-recipe__date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--clay);
    border-radius: 50%;
    margin-inline-end: 14px;
    vertical-align: middle;
}
.vn-recipe__title {
    font-family: var(--serif);
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--ink);
    margin: 0 auto 36px;
    max-width: 18ch;
}
.vn-recipe__hero-frame {
    margin: 0 auto;
    max-width: 1100px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.vn-recipe__hero-img,
.vn-recipe__hero-frame img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.vn-recipe__layout {
    max-width: 1280px;
    margin: 24px auto 64px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) {
    .vn-recipe__layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 48px;
        align-items: start;
    }
    .vn-recipe__sidebar {
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}
.vn-recipe__sidebar { display: flex; flex-direction: column; gap: 18px; }
.vn-recipe__body {
    font-size: 18px;
    line-height: 1.85;
    color: var(--ink);
    min-width: 0;
}

/* Gallery sidebar */
.vn-recipe__gallery {
    background: var(--cream-soft);
    border-radius: 10px;
    padding: 18px 16px 20px;
    border: 1px solid var(--cream-dark);
}
.vn-recipe__gallery-head {
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(30, 91, 58, .2);
    font-size: 16px;
    text-align: center;
}
.vn-recipe__gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.vn-recipe__gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    aspect-ratio: 1;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.vn-recipe__gallery-item:hover { transform: translateY(-3px); }
.vn-recipe__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.vn-recipe__gallery-item:hover img { transform: scale(1.08); }
.vn-recipe__gallery-caption {
    display: none;
}
@media (max-width: 1023px) {
    .vn-recipe__gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.vn-recipe__body p { margin-bottom: 1em; }
.vn-recipe__body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--forest);
    margin: 1.6em 0 .5em;
}
.vn-recipe__body h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 1.3em 0 .5em;
}
.vn-recipe__body ul,
.vn-recipe__body ol {
    margin: 0 0 1.2em;
    padding-inline-start: 1.4em;
}
.vn-recipe__body li { margin-bottom: .5em; }
.vn-recipe__body img {
    max-width: 100% !important;
    height: auto !important;
    margin: 1.5em auto;
    display: block;
    border-radius: 6px;
}
.vn-recipe__body a {
    color: var(--forest);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Ingredients card — auto-built from [squareBorder] shortcode contents.
   Each ingredient is parsed into its own <li> so the box scales naturally
   to the number of items. */
.vn-ingredients {
    background: linear-gradient(135deg, #fcf7ea 0%, #f5ead0 100%);
    border: 1px solid rgba(184, 90, 46, .18);
    border-right: 6px solid var(--clay);
    border-radius: 10px;
    padding: 22px 26px 24px;
    margin: 36px 0;
    box-shadow: 0 4px 18px rgba(184, 90, 46, .08);
    position: relative;
}
.vn-ingredients__head {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clay-deep);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(184, 90, 46, .28);
}
.vn-ingredients__icon { color: var(--clay); flex-shrink: 0; }
.vn-ingredients__title { letter-spacing: .02em; }
.vn-ingredients__count {
    margin-inline-start: auto;
    background: var(--clay);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: .04em;
}
.vn-ingredients__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.vn-ingredients__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(184, 90, 46, .10);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
}
.vn-ingredients__item:last-child { border-bottom: 0; }
.vn-ingredients__check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--clay);
    border-radius: 4px;
    margin-top: 3px;
    background: #fff;
    transition: background .2s, border-color .2s;
    cursor: pointer;
    position: relative;
}
.vn-ingredients__item.is-done .vn-ingredients__check,
.vn-ingredients__item:hover .vn-ingredients__check {
    background: var(--clay);
    border-color: var(--clay);
}
.vn-ingredients__item.is-done .vn-ingredients__check::after {
    content: '';
    position: absolute;
    inset: 1px 4px 4px 1px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translate(-1px, -1px);
}
.vn-ingredients__item.is-done .vn-ingredients__text {
    text-decoration: line-through;
    color: var(--muted);
}
.vn-ingredients__text {
    flex: 1 1 auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: nowrap;
}
.vn-ingredients__qty {
    font-weight: 700;
    color: var(--clay-deep);
    background: rgba(216, 118, 70, .12);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 14px;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
}
.vn-ingredients__name { color: var(--ink); }
.vn-ingredients__group {
    list-style: none;
    color: var(--forest-deep);
    font-weight: 800;
    font-size: 15px;
    margin-top: 14px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 0;
}
.vn-ingredients__group:first-child { margin-top: 0; }

/* =================================================================
   COMMENTS — compact, modern card
   ================================================================= */
.single-post #comments,
.single-post .comments-area {
    max-width: 760px;
    margin: 48px auto 80px;
    padding: 0 24px;
}
.single-post .comments-title,
.single-post .comment-reply-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cream-dark);
}
.single-post .comment-form {
    background: var(--cream-soft);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 24px 24px 20px;
    display: grid;
    gap: 14px;
}
.single-post .comment-notes,
.single-post .logged-in-as {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}
.single-post .comment-form-comment,
.single-post .comment-form-author,
.single-post .comment-form-email,
.single-post .comment-form-url {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.single-post .comment-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}
.single-post .comment-form-author,
.single-post .comment-form-email,
.single-post .comment-form-url {
    display: inline-grid;
}
.single-post .comment-form-author input,
.single-post .comment-form-email input,
.single-post .comment-form-url input {
    width: 100%;
}
@media (min-width: 720px) {
    .single-post .comment-form {
        grid-template-columns: 1fr 1fr;
    }
    .single-post .comment-form-comment,
    .single-post .form-submit,
    .single-post .comment-form-cookies-consent,
    .single-post .comment-notes {
        grid-column: 1 / -1;
    }
}
.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"],
.single-post .comment-form textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    padding: 10px 12px;
    font: inherit;
    color: var(--ink);
    direction: rtl;
    transition: border-color .2s, box-shadow .2s;
}
.single-post .comment-form textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
}
.single-post .comment-form input:focus,
.single-post .comment-form textarea:focus {
    outline: 0;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(30,91,58,.12);
}
.single-post .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
}
.single-post .comment-form-cookies-consent input { margin: 0; }
.single-post .form-submit {
    margin: 4px 0 0;
}
.single-post .form-submit .submit,
.single-post #submit {
    background: var(--forest);
    color: #fff !important;
    border: 0;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.single-post .form-submit .submit:hover,
.single-post #submit:hover { background: var(--forest-deep); }
.single-post .form-submit .submit:active { transform: translateY(1px); }

.single-post .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 16px;
}
.single-post .comment-list .comment {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 16px 18px;
}
.single-post .comment-author {
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 4px;
}
.single-post .comment-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

/* =================================================================
   Cookie consent — banner bar + settings modal with category toggles
   ================================================================= */
.vn-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--forest-deep);
    color: var(--cream);
    box-shadow: 0 -8px 28px rgba(0,0,0,.22);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.vn-cookie.is-shown { transform: translateY(0); }
.vn-cookie__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.vn-cookie__icon { font-size: 30px; flex-shrink: 0; line-height: 1; }
.vn-cookie__text {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.5;
}
.vn-cookie__text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--cream);
    font-weight: 800;
}
.vn-cookie__text span { color: rgba(248,241,223,.78); }
.vn-cookie__text a {
    color: var(--clay);
    text-decoration: underline;
    font-weight: 700;
}
.vn-cookie__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.vn-cookie__btn {
    border: 0;
    padding: 10px 20px;
    border-radius: 6px;
    font: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s, color .2s, border-color .2s;
}
.vn-cookie__btn--accept {
    background: var(--clay);
    color: #fff;
}
.vn-cookie__btn--accept:hover { background: var(--clay-deep); }
.vn-cookie .vn-cookie__btn--ghost {
    background: rgba(248, 241, 223, 0.12) !important;
    color: #F8F1DF !important;
    border: 1.5px solid rgba(248, 241, 223, 0.55) !important;
}
.vn-cookie .vn-cookie__btn--ghost:hover {
    background: rgba(248, 241, 223, 0.22) !important;
    border-color: #F8F1DF !important;
}
.vn-cookie-modal .vn-cookie__btn--ghost,
.vn-cookie-modal .vn-cookie__btn--dark {
    background: #fff !important;
    color: #1A1A15 !important;
    border: 1.5px solid var(--cream-dark) !important;
}
.vn-cookie-modal .vn-cookie__btn--ghost:hover,
.vn-cookie-modal .vn-cookie__btn--dark:hover {
    background: var(--cream-soft) !important;
    border-color: var(--ink-soft) !important;
}

/* Settings modal */
.vn-cookie-modal[hidden] { display: none !important; }
.vn-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vn-cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 36, 23, .55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .25s;
}
.vn-cookie-modal.is-shown .vn-cookie-modal__backdrop { opacity: 1; }
.vn-cookie-modal__dialog {
    position: relative;
    background: var(--cream);
    border-radius: 14px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    transform: translateY(20px);
    opacity: 0;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .25s;
}
.vn-cookie-modal.is-shown .vn-cookie-modal__dialog { transform: translateY(0); opacity: 1; }
.vn-cookie-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.vn-cookie-modal__head h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}
.vn-cookie-modal__close {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    border-radius: 0 !important;
    width: auto;
    height: auto;
    padding: 0 !important;
    margin: 0;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: color .15s, transform .15s;
}
.vn-cookie-modal__close:hover,
.vn-cookie-modal__close:focus,
.vn-cookie-modal__close:focus-visible {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    color: var(--clay);
    transform: scale(1.15);
}
.vn-cookie-modal__lede {
    color: var(--ink-soft);
    font-size: 14px;
    margin: 0 0 18px;
}
.vn-cookie-modal__lede a { color: var(--clay-deep); font-weight: 700; }

.vn-cookie-cat {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 14px 16px 16px;
    margin-bottom: 12px;
}
.vn-cookie-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}
.vn-cookie-cat__title {
    font-weight: 800;
    font-size: 15px;
    color: var(--ink);
}
.vn-cookie-cat__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}
.vn-cookie-cat.is-required { background: var(--cream-soft); }

/* Toggle switch */
.vn-toggle {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}
.vn-toggle input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.vn-toggle span {
    position: absolute;
    inset: 0;
    background: #d4cfbb;
    border-radius: 999px;
    transition: background .25s;
}
.vn-toggle span::after {
    content: '';
    position: absolute;
    top: 3px;
    inset-inline-start: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    transition: inset-inline-start .25s;
}
.vn-toggle input:checked + span { background: var(--forest); }
.vn-toggle input:checked + span::after { inset-inline-start: 23px; }
.vn-toggle.is-disabled { opacity: .55; cursor: not-allowed; }
.vn-toggle.is-disabled input { cursor: not-allowed; }

.vn-cookie-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
}
.vn-cookie-modal__actions .vn-cookie__btn { flex: 0 0 auto; }

@media (max-width: 720px) {
    .vn-cookie__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 18px 16px;
        gap: 12px;
    }
    .vn-cookie__icon { display: none; }
    .vn-cookie__text { font-size: 13px; }
    .vn-cookie__text strong { font-size: 14px; }
    .vn-cookie__actions { flex-wrap: nowrap; }
    .vn-cookie__btn { flex: 1 1 30%; text-align: center; padding: 11px 8px; font-size: 13px; }
    .vn-cookie-modal__dialog { padding: 22px 18px 18px; }
    .vn-cookie-modal__head h2 { font-size: 20px; }
}

/* =================================================================
   Promo toast — corner notification (cookbook promo, admin-controlled)
   ================================================================= */
.vn-promo-toast {
    position: fixed;
    z-index: 9999;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(0,0,0,.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s, transform .35s cubic-bezier(.2,.7,.2,1);
}
.vn-promo-toast.is-shown { opacity: 1; transform: translateY(0); }
.vn-promo-toast--bottom-left  { bottom: 20px; left:  20px; }
.vn-promo-toast--bottom-right { bottom: 20px; right: 20px; }
.vn-promo-toast--top-left     { top: 20px;    left:  20px; transform: translateY(-20px); }
.vn-promo-toast--top-right    { top: 20px;    right: 20px; transform: translateY(-20px); }
.vn-promo-toast--top-left.is-shown,
.vn-promo-toast--top-right.is-shown { transform: translateY(0); }

.vn-promo-toast__close {
    position: absolute;
    top: 6px;
    left: 8px;
    width: auto;
    height: auto;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    border-radius: 0 !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    z-index: 2;
    padding: 0 !important;
    margin: 0;
    transition: color .15s, transform .15s;
}
.vn-promo-toast__close:hover,
.vn-promo-toast__close:focus,
.vn-promo-toast__close:focus-visible {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    color: var(--clay);
    transform: scale(1.15);
}

.vn-promo-toast__link {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 14px 14px 14px 14px;
    color: inherit !important;
    text-decoration: none !important;
    align-items: center;
}
.vn-promo-toast:not(:has(.vn-promo-toast__img)) .vn-promo-toast__link { grid-template-columns: 1fr; }

.vn-promo-toast__img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.vn-promo-toast__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vn-promo-toast__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 4px;
}
.vn-promo-toast__text {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
    margin-bottom: 6px;
}
.vn-promo-toast__cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--clay-deep);
}

/* Cookbook promo — sits in the sidebar below the gallery, same width */
.vn-cookbook-promo {
    background: linear-gradient(160deg, #fcf7ea 0%, #f5e3c0 100%);
    border: 2px solid var(--clay);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(184, 90, 46, .14);
    position: relative;
    margin: 0;
}
.vn-cookbook-promo__badge {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    background: var(--clay);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 2;
}
.vn-cookbook-promo__link {
    display: block;
    padding: 0;
    color: inherit !important;
    text-decoration: none !important;
}
.vn-cookbook-promo__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.vn-cookbook-promo__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.vn-cookbook-promo__link:hover .vn-cookbook-promo__media img { transform: scale(1.05); }
.vn-cookbook-promo__text {
    padding: 14px 16px 16px;
    text-align: center;
}
.vn-cookbook-promo__eyebrow {
    color: var(--clay-deep);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.vn-cookbook-promo__title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.25;
    margin: 0 0 8px;
}
.vn-cookbook-promo__desc {
    color: var(--ink-soft);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0 0 10px;
}
.vn-cookbook-promo__cta {
    display: inline-block;
    color: var(--forest);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid var(--forest);
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.vn-cookbook-promo__link:hover .vn-cookbook-promo__cta {
    background: var(--forest);
    color: #fff;
}

/* Recipe images — turn standalone images into nicer cards */
.vn-recipe__body .wp-caption {
    max-width: 100% !important;
    margin: 1.5em auto;
    background: var(--cream-soft);
    padding: 8px 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.vn-recipe__body .wp-caption img { margin: 0; border-radius: 4px; }
.vn-recipe__body .wp-caption-text {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    padding: 6px 4px 0;
    margin: 0;
}

.vn-promo {
    max-width: 440px;
    background: #fff;
    border: 3px solid var(--clay);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    font-family: var(--sans);
}
.vn-promo__label {
    background: var(--clay);
    color: #fff;
    text-align: center;
    padding: 6px 12px;
}
.vn-promo__badge {
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 700;
    text-transform: uppercase;
}
.vn-promo__body {
    padding: 28px 24px 24px;
    text-align: center;
}
.vn-promo__img {
    max-width: 160px;
    width: 60%;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}
.vn-promo__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--forest);
    margin-bottom: 10px;
}
.vn-promo__text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 18px;
}
.vn-promo__cta {
    display: inline-block;
    background: var(--forest);
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    transition: background .2s;
}
.vn-promo__cta:hover { background: var(--forest-deep); }
.vn-promo__disclaimer {
    margin-top: 14px;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cat {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
    text-decoration: none;
}
.cat:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.cat__img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.cat__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat:hover .cat__img { transform: scale(1.06); }
.cat__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cats a.cat,
.cats a.cat:link,
.cats a.cat:visited,
.cats a.cat:hover,
.cats a.cat:focus,
.cats a.cat:active { color: var(--ink) !important; text-decoration: none !important; }

.cat__num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    background: rgba(0,0,0,.55);
    color: var(--cream) !important;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.cat__name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--ink) !important;
    line-height: 1.15;
}
.cat__count {
    font-size: 13px;
    color: var(--muted) !important;
    font-weight: 500;
}

/* Hide the WP page title on hero-led pages (Home, single recipes, archives, cookbook sales page) */
.page-id-11467 h1.entry-title,
.page-id-11467 .entry-header,
.page-id-11467 .page-header,
.page-id-7579 h1.entry-title,
.page-id-7579 .entry-header,
.page-id-7579 .page-header,
.single-post .entry-header h1.entry-title,
.single-post .page-header,
.archive .page-header {
    display: none !important;
}

/* Header — prevent wrap: tighten gaps + reduce font on medium screens */
.nav a { white-space: nowrap; }
@media (max-width: 1280px) {
    .site-header { padding: 20px 32px; gap: 24px; }
    .nav { gap: 24px; font-size: 14px; }
    .site-header__search input { width: 120px; }
}

/* =================================================================
   RECIPES — editorial
   ================================================================= */
.section--light { background: var(--cream-soft); }
.section--full-width { max-width: none; padding-inline: 0; }
.section--full-width > * {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 48px;
}

.recipes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}
.recipe {
    cursor: pointer;
    display: block;
}
.recipe__img {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.recipe__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.recipe:hover .recipe__img img { transform: scale(1.06); }

.recipe__idx {
    position: absolute;
    bottom: 18px;
    right: 20px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 44px;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.recipe__cat {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 10px;
    font-weight: 700;
}
.recipe__title {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 12px;
    transition: color .2s;
}
.recipe:hover .recipe__title { color: var(--forest); }
.recipe__excerpt {
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 14px;
    max-width: 44ch;
}
.recipe__meta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--muted);
}

/* =================================================================
   EDITORIAL FEATURE — text on image
   ================================================================= */
.feature {
    background: var(--forest);
    color: var(--cream);
    padding: 0;
    max-width: none;
}
.feature__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 520px;
}
.feature__text {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 20px;
}
.feature__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}
.feature__text p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 32px;
    opacity: .9;
    max-width: 48ch;
}
.feature__quote {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    color: var(--sage-pale);
    padding: 24px 0;
    border-top: 1px solid rgba(196,212,184,.25);
    border-bottom: 1px solid rgba(196,212,184,.25);
    margin-bottom: 32px;
    position: relative;
    padding-inline-start: 32px;
}
.feature__quote::before {
    content: '"';
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 64px;
    line-height: 1;
    color: var(--clay);
    font-weight: 700;
}
.feature__image {
    position: relative;
    overflow: hidden;
}
.feature__image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.feature__recs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 48px;
    align-content: center;
}
.feature__rec {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.feature__rec:hover { transform: translateY(-4px); }
.feature__rec img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
.feature__rec span {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--forest);
}

.insta__feed {
    padding: 0 48px 64px;
}
.insta__feed .sbi_photo_wrap,
.insta__feed #sb_instagram .sbi_photo {
    border-radius: 0 !important;
}

/* =================================================================
   HEADER SEARCH
   ================================================================= */
.site-header__search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--cream-dark);
    border-radius: 999px;
    padding: 6px 10px 6px 14px;
    transition: background .2s;
}
.site-header__search:focus-within { background: #fff; box-shadow: 0 0 0 2px var(--forest); }
.site-header__search input {
    border: 0; background: transparent; outline: none;
    font: inherit; color: var(--ink); width: 110px;
    text-align: right;
    font-size: 13px;
}
@media (max-width: 1280px) {
    .site-header__search input { width: 90px; font-size: 12px; }
    .site-header__search { padding: 5px 8px 5px 12px; }
}
.site-header__search button {
    border: 0; background: transparent; cursor: pointer;
    color: var(--forest); display: flex; padding: 0;
}

/* =================================================================
   ARCHIVE / CATEGORY PAGE
   ================================================================= */
.arch-hero {
    background: var(--forest);
    color: var(--cream);
    padding: 80px 48px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.arch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.18) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(196,212,184,.10) 0%, transparent 50%);
    pointer-events: none;
}
.arch-hero__inner { position: relative; max-width: 900px; margin: 0 auto; }
.arch-hero__eyebrow {
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--clay);
    margin-bottom: 16px; font-weight: 700;
}
.arch-hero__title {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800; line-height: 1; margin-bottom: 20px;
}
.arch-hero__meta { font-size: 17px; opacity: .75; }

/* =================================================================
   ARCHIVE-POSTS widget — beautified card grid for /recipes/, categories
   ================================================================= */
.elementor-widget-archive-posts,
.elementor-widget-posts {
    padding: 32px 24px 48px;
}
.elementor-widget-archive-posts .elementor-posts-container,
.elementor-widget-posts .elementor-posts-container {
    gap: 28px !important;
}
.elementor-widget-archive-posts .elementor-post,
.elementor-widget-posts .elementor-post {
    background: #fff !important;
    border: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
    transition: none !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    animation: none !important;
}
.elementor-widget-archive-posts .elementor-post:hover,
.elementor-widget-posts .elementor-post:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,.05) !important;
    transform: none !important;
}
/* Kill any lingering Elementor hover animations on these cards */
.elementor-widget-archive-posts .elementor-post *,
.elementor-widget-posts .elementor-post * {
    animation: none !important;
}
.elementor-widget-archive-posts .elementor-post__thumbnail,
.elementor-widget-posts .elementor-post__thumbnail {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    background: var(--cream-dark);
    line-height: 0;
}
.elementor-widget-archive-posts .elementor-post__thumbnail__link,
.elementor-widget-posts .elementor-post__thumbnail__link {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    line-height: 0;
}
.elementor-widget-archive-posts .elementor-post__thumbnail img,
.elementor-widget-posts .elementor-post__thumbnail img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    animation: none !important;
    position: static !important;
    inset: auto !important;
    aspect-ratio: auto !important;
    transform: scale(1) !important;
    transform-origin: center center !important;
    transition: transform .8s cubic-bezier(.2,.7,.2,1) !important;
}
.elementor-widget-archive-posts .elementor-post:hover .elementor-post__thumbnail img,
.elementor-widget-posts .elementor-post:hover .elementor-post__thumbnail img {
    transform: scale(1.06) !important;
    transform-origin: center center !important;
}
.elementor-widget-archive-posts .elementor-post__text,
.elementor-widget-posts .elementor-post__text {
    padding: 18px 20px 20px !important;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.elementor-widget-archive-posts .elementor-post__title,
.elementor-widget-posts .elementor-post__title {
    font-size: 19px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: var(--serif) !important;
}
.elementor-widget-archive-posts .elementor-post__title a,
.elementor-widget-posts .elementor-post__title a {
    color: var(--ink) !important;
    text-decoration: none !important;
    transition: color .2s !important;
}
.elementor-widget-archive-posts .elementor-post__title a:hover,
.elementor-widget-posts .elementor-post__title a:hover {
    color: var(--forest) !important;
}
.elementor-widget-archive-posts .elementor-post__meta-data,
.elementor-widget-posts .elementor-post__meta-data {
    font-size: 12px !important;
    color: var(--muted) !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.elementor-widget-archive-posts .elementor-post__excerpt,
.elementor-widget-posts .elementor-post__excerpt {
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: var(--ink-soft) !important;
    margin: 0 !important;
}
.elementor-widget-archive-posts .elementor-post__excerpt p,
.elementor-widget-posts .elementor-post__excerpt p {
    margin: 0 !important;
}
.elementor-widget-archive-posts .elementor-post__read-more,
.elementor-widget-posts .elementor-post__read-more {
    margin-top: auto !important;
    align-self: flex-start;
    background: transparent !important;
    color: var(--forest) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 0 !important;
    border: 0 !important;
    transition: color .2s !important;
}
.elementor-widget-archive-posts .elementor-post__read-more:hover,
.elementor-widget-posts .elementor-post__read-more:hover {
    color: var(--clay-deep) !important;
}
.elementor-widget-archive-posts .elementor-post__read-more::after,
.elementor-widget-posts .elementor-post__read-more::after {
    content: ' ←';
    transition: margin-inline-start .2s;
}
.elementor-widget-archive-posts .elementor-post:hover .elementor-post__read-more::after,
.elementor-widget-posts .elementor-post:hover .elementor-post__read-more::after {
    margin-inline-start: 4px;
}

/* Pagination */
.elementor-widget-archive-posts .elementor-pagination {
    margin-top: 40px !important;
    display: flex !important;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
}
.elementor-widget-archive-posts .elementor-pagination .page-numbers {
    background: #fff !important;
    color: var(--ink) !important;
    border: 1px solid var(--cream-dark) !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background .2s, color .2s, border-color .2s !important;
}
.elementor-widget-archive-posts .elementor-pagination .page-numbers:hover {
    background: var(--cream-soft) !important;
    border-color: var(--forest) !important;
    color: var(--forest) !important;
}
.elementor-widget-archive-posts .elementor-pagination .page-numbers.current {
    background: var(--forest) !important;
    color: #fff !important;
    border-color: var(--forest) !important;
}

@media (max-width: 720px) {
    .elementor-widget-archive-posts,
    .elementor-widget-posts {
        padding: 24px 16px 36px;
    }
    .elementor-widget-archive-posts .elementor-posts-container,
    .elementor-widget-posts .elementor-posts-container {
        gap: 18px !important;
    }
    .elementor-widget-archive-posts .elementor-post__title,
    .elementor-widget-posts .elementor-post__title {
        font-size: 17px !important;
    }
    .elementor-widget-archive-posts .elementor-post__text,
    .elementor-widget-posts .elementor-post__text {
        padding: 14px 16px 18px !important;
    }
}

/* =================================================================
   SINGLE RECIPE PAGE
   ================================================================= */
.recipe-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px;
}
.elementor-widget.recipe-page__image {
    margin-bottom: 32px;
}
.recipe-page__image img {
    width: 100% !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
}
.recipe-page__title h1 {
    font-size: clamp(32px, 4.5vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    color: var(--ink) !important;
}
.recipe-page__meta {
    margin-bottom: 32px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
}
.recipe-page__meta .elementor-post-info__item {
    margin-inline-end: 16px !important;
    padding-inline-end: 16px !important;
    border-inline-end: 1px solid rgba(0,0,0,.15);
}
.recipe-page__meta .elementor-post-info__item:last-child {
    border: 0;
    padding-inline-end: 0;
}
.recipe-page__content {
    font-size: 17px;
    line-height: 1.8;
}
.recipe-page__content p { margin-bottom: 1em; }
.recipe-page__content h2 {
    margin-top: 1.8em;
    margin-bottom: .6em;
    font-size: 28px;
    font-weight: 700;
    color: var(--forest);
}
.recipe-page__content h3 {
    margin-top: 1.4em;
    margin-bottom: .5em;
    font-size: 22px;
    font-weight: 700;
}
.recipe-page__content ul, .recipe-page__content ol {
    margin-bottom: 1.2em;
    padding-inline-start: 24px;
}
.recipe-page__content li {
    list-style: disc inside;
    margin-bottom: .5em;
}
.recipe-page__content img {
    border-radius: 6px;
    margin-block: 1.5em;
}

.recipe-page__image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 32px;
}
.recipe-page__meta .recipe-page__date,
.recipe-page__meta .recipe-page__cat {
    display: inline;
    margin-inline-end: 16px;
    padding-inline-end: 16px;
    border-inline-end: 1px solid rgba(0,0,0,.15);
    color: var(--muted);
    font-size: 14px;
}
.recipe-page__meta .recipe-page__cat:last-child {
    border: 0;
    padding-inline-end: 0;
}
.recipe-page__meta a { color: var(--forest); text-decoration: none; }
.recipe-page__meta a:hover { text-decoration: underline; }

/* Related recipes grid from [vn_related_recipes] */
.recipes-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 24px 48px;
    max-width: 1280px;
    margin: 0 auto;
}
.related-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.related-card:hover { transform: translateY(-4px); }
.related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
.related-card h3 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ink);
}
@media (max-width: 900px) {
    .recipes-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 16px 32px; }
    .related-card h3 { font-size: 15px; }
}

/* Related recipes below single */
.recipe-related {
    padding: 48px 24px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.recipe-related__head {
    text-align: center;
    margin-bottom: 32px;
}
.recipe-related__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 12px;
    font-weight: 700;
}
.recipe-related__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
}

/* =================================================================
   AD SLOTS — designed placements (never overlapping content)
   ================================================================= */
.ad-band {
    background: var(--cream-dark);
    padding: 32px 48px;
    border-block: 1px solid rgba(26,26,21,.08);
    position: relative;
}
.ad-band__inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.ad-band__label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: .8;
    text-align: center;
}
.ad-band__slot {
    width: 100%;
    max-width: 100%;
    min-height: 90px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border: 1px dashed rgba(26,26,21,.18);
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .08em;
    padding: 20px;
    text-align: center;
}
.ad-band__slot > * { width: 100%; max-width: 100%; }
.ad-band__slot iframe,
.ad-band__slot ins,
.ad-band__slot .adsbygoogle { width: 100% !important; max-width: 100% !important; }

.ad-inline {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    color: var(--muted);
}
.ad-inline::before,
.ad-inline::after {
    content: '';
    height: 1px;
    background: rgba(26,26,21,.1);
}
.ad-inline__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 540px;
    min-width: 320px;
}
.ad-inline__label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .7;
}
.ad-inline__slot {
    width: 100%;
    min-height: 250px;
    background: var(--cream-soft);
    border: 1px dashed rgba(26,26,21,.15);
    display: grid;
    place-items: center;
    font-size: 13px;
}

.ad-aside {
    background: var(--cream-soft);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(26,26,21,.08);
}
.ad-aside__label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    opacity: .7;
}
.ad-aside__slot {
    width: 100%;
    min-height: 250px;
    background: var(--cream);
    border: 1px dashed rgba(26,26,21,.12);
    display: grid;
    place-items: center;
    font-size: 12px;
    color: var(--muted);
}

/* =================================================================
   INSTAGRAM — prominent feed
   ================================================================= */
.insta {
    background: var(--cream);
    padding: 80px 48px;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}
.insta__head {
    position: sticky;
    top: 100px;
}
.insta__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--clay);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1.5px solid var(--clay);
    border-radius: 999px;
}
.insta__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    color: var(--ink);
}
.insta__text {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 40ch;
}
.insta__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6px;
}
.insta__tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.insta__tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
    filter: saturate(1.05);
}
.insta__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--forest);
    opacity: 0;
    transition: opacity .3s;
    mix-blend-mode: multiply;
}
.insta__tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 24 24' stroke='%23F8F1DF' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.5' y2='6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 2;
    transition: opacity .3s;
}
.insta__tile:hover::after { opacity: .55; }
.insta__tile:hover::before { opacity: 1; }
.insta__tile:hover img { transform: scale(1.08); }
.insta .btn { align-self: flex-start; }

/* =================================================================
   NEWSLETTER — cream with big type
   ================================================================= */
.news {
    background: var(--cream-dark);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.news__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--sans);
    font-weight: 900;
    font-size: 36vw;
    line-height: 1;
    color: var(--cream);
    opacity: .45;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -.05em;
}
.news__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.news__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 16px;
}
.news__title {
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.news__text {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 40px;
}
.news__form {
    display: flex;
    gap: 0;
    background: var(--cream);
    border: 2px solid var(--ink);
}
.news__form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 20px 24px;
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink);
    outline: none;
    text-align: right;
}
.news__form button {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 0 40px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}
.news__form button:hover { background: var(--forest-deep); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 64px 48px 32px;
}
.footer__top {
    max-width: 1440px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer__brand img {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}
.footer__brand p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    opacity: .85;
    max-width: 32ch;
}
.footer__col h4 {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer__col li { margin-bottom: 12px; opacity: .75; font-size: 15px; }
.footer__col li a:hover { opacity: 1; color: var(--sage-pale); }

.footer__bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(196,212,184,.15);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: .1em;
    opacity: .55;
    text-transform: uppercase;
}

/* =================================================================
   REVEAL
   ================================================================= */
@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal > * {
    animation: rise 1s cubic-bezier(.2,.7,.2,1) both;
}
.reveal > *:nth-child(1) { animation-delay: .05s; }
.reveal > *:nth-child(2) { animation-delay: .15s; }
.reveal > *:nth-child(3) { animation-delay: .25s; }
.reveal > *:nth-child(4) { animation-delay: .35s; }
.reveal > *:nth-child(5) { animation-delay: .45s; }
.reveal > *:nth-child(6) { animation-delay: .55s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; min-height: 0; }
    .hero__content {
        padding-block: 56px 48px;
        padding-inline-start: 32px;
        padding-inline-end: 32px;
        max-width: none;
    }
    .hero__media { min-height: 420px; }
    .hero__number { font-size: 100px; bottom: 20px; left: 20px; }
    .cats { grid-template-columns: repeat(3, 1fr); }
    .recipes { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .feature__grid { grid-template-columns: 1fr; }
    .feature__image { min-height: 360px; order: -1; }
    .feature__text { padding: 48px 32px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 40px; padding: 32px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .insta { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
    .insta__head { position: static; }
    .insta__grid { grid-template-columns: repeat(4, 1fr); }
    .ad-band { padding: 24px 32px; }
    .ad-band__slot { min-height: 60px; }
}

@media (max-width: 720px) {
    .marquee { font-size: 11px; }
    .site-header {
        padding: 14px 20px;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }
    .site-header__logo img { height: 36px; }
    .nav--left, .nav--right { display: none; }
    .search-btn { width: 36px; height: 36px; }

    .hero__content {
        padding-block: 44px 40px;
        padding-inline-start: 20px;
        padding-inline-end: 20px;
    }
    .hero__title { font-size: clamp(32px, 8vw, 44px); }
    .hero__lede { font-size: 15px; margin-bottom: 28px; }
    .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 20px; margin-bottom: 28px; }
    .hero__meta-label { font-size: 10px; letter-spacing: .12em; }
    .hero__meta-value { font-size: 22px; }
    .hero__cta { gap: 10px; }
    .hero__cta .btn { flex: 1 1 auto; }
    .hero__media { min-height: 340px; }
    .hero__number { font-size: 72px; }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px 20px;
    }
    .stat + .stat::before { display: none; }
    .stat__num { font-size: 40px; }
    .stat__label { font-size: 11px; }

    .section { padding: 48px 20px; }
    .section__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
    .section__title { font-size: clamp(30px, 7vw, 40px); }
    .section__aside { font-size: 15px; }

    /* Mobile: hide noisy big-stats counter & section subtitles */
    .stats { display: none !important; }
    .section__aside { display: none !important; }

    /* Mobile marquee — make it a STATIC clean green banner (no scrolling) */
    .marquee {
        padding: 8px 16px !important;
        text-align: center !important;
    }
    .marquee__track {
        animation: none !important;
        display: block !important;
        white-space: normal !important;
        font-size: 11px !important;
        letter-spacing: .08em !important;
        text-transform: uppercase;
        color: var(--cream);
        font-weight: 600;
    }
    .marquee__track span {
        display: none;
    }
    .marquee__track::before {
        content: 'VEGANATI';
        display: block;
        letter-spacing: .25em;
        font-weight: 800;
    }

    /* Add a tiny inline stats line at the very bottom of the footer */
    .footer__bottom::before {
        content: '768 מתכונים · מאז 2018 · 10 קטגוריות · 100% טבעוני';
        display: block;
        text-align: center;
        font-size: 12px;
        color: rgba(248,241,223,.55);
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(248,241,223,.12);
        letter-spacing: .04em;
    }

    /* Mobile site header: clean two-section header below the green strip */
    .site-header {
        grid-template-columns: auto 1fr !important;
        padding: 12px 16px !important;
        gap: 12px !important;
        align-items: center;
        background: var(--cream) !important;
        border-bottom: 1px solid var(--cream-dark) !important;
    }
    .site-header__logo {
        justify-self: start;
    }
    .site-header__logo img {
        height: 48px !important;
        max-width: 140px !important;
        width: auto !important;
        display: block;
    }
    .site-header__nav {
        display: none !important;
    }
    .site-header__search {
        flex: 1 1 auto;
        max-width: 100%;
        background: var(--cream-soft);
        border: 1px solid var(--cream-dark);
        padding: 6px 10px;
    }
    .site-header__search input {
        width: 100% !important;
        font-size: 13px;
        background: transparent;
    }

    /* Tighten section paddings on mobile */
    .section { padding: 32px 16px !important; }
    .section__head { margin-bottom: 16px !important; gap: 8px !important; }
    .section__title { font-size: clamp(26px, 7vw, 34px) !important; line-height: 1.1 !important; }

    /* Mobile categories: single column, white card, image top, title below — matches search/archive style */
    .cats { grid-template-columns: 1fr !important; gap: 16px !important; padding: 0 16px; }
    .cats a.cat {
        position: relative !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        display: block !important;
        height: auto !important;
        aspect-ratio: auto !important;
    }
    .cat__img-wrap {
        position: relative !important;
        width: 100% !important;
        height: 220px !important;
        overflow: hidden;
        background: var(--cream-dark);
    }
    .cat__img-wrap::after { content: none !important; }
    .cat__img-wrap img.cat__img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .cat__body {
        position: static !important;
        padding: 16px 20px 18px !important;
        background: #fff !important;
    }
    .cats a.cat .cat__name {
        color: var(--ink) !important;
        font-size: 18px !important;
        text-shadow: none !important;
        font-weight: 800;
    }
    .cats a.cat .cat__count {
        color: var(--muted) !important;
        font-size: 12px !important;
        margin-top: 2px;
    }
    .cats a.cat .cat__num {
        top: 12px !important;
        right: 12px !important;
        background: rgba(0,0,0,.55) !important;
        color: #F8F1DF !important;
        font-size: 11px !important;
        z-index: 2;
    }

    /* Mobile feature section ("המתכונים הכי נצפים") — bigger button, rounded thumbs */
    .feature__recs {
        padding: 24px 16px !important;
        gap: 10px !important;
    }
    .feature__rec img {
        border-radius: 8px !important;
        aspect-ratio: 4 / 3 !important;
    }
    .feature__rec span {
        color: var(--cream) !important;
        font-size: 12px !important;
    }
    .feature .btn,
    .feature__text .btn,
    .feature .btn--ghost,
    .feature__text .btn--ghost {
        color: var(--cream) !important;
        border: 1.5px solid var(--cream) !important;
        background: transparent !important;
        padding: 14px 32px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        border-radius: 6px !important;
    }
    .feature .btn:hover,
    .feature__text .btn:hover {
        background: var(--cream) !important;
        color: var(--forest-deep) !important;
    }

    /* Mobile recipes grid: single column, white cards (matches categories style) */
    .recipes {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 16px;
    }
    .recipe {
        background: #fff !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
        display: block !important;
        text-decoration: none !important;
    }
    .recipe__img {
        aspect-ratio: 16 / 10 !important;
        height: auto !important;
        margin-bottom: 0 !important;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .recipe__img img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .recipe__idx {
        bottom: 12px !important;
        right: 14px !important;
        font-size: 30px !important;
    }
    .recipe__cat {
        padding: 14px 18px 0 !important;
        margin-bottom: 6px !important;
    }
    .recipe__title {
        padding: 0 18px !important;
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    .recipe__excerpt {
        padding: 0 18px !important;
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    .recipe__meta {
        padding: 0 18px 16px !important;
        font-size: 12px !important;
    }

    .recipes { grid-template-columns: 1fr; gap: 36px; }
    .recipe__title { font-size: 22px; }

    .feature__text { padding: 40px 20px; }
    .feature__title { font-size: clamp(30px, 7vw, 40px); }
    .feature__text p { font-size: 16px; }
    .feature__quote { font-size: 18px; }

    .news { padding: 56px 20px; }
    .news__title { font-size: clamp(30px, 7vw, 42px); }
    .news__text { font-size: 15px; margin-bottom: 28px; }
    .news__form { flex-direction: column; border: none; background: transparent; gap: 10px; }
    .news__form input { border: 2px solid var(--ink); padding: 16px 20px; background: var(--cream); }
    .news__form button { padding: 16px; border: 2px solid var(--forest); }

    .footer { padding: 48px 20px 24px; }
    .footer__top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 32px; }
    .footer__brand img { height: 56px; }
    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: start;
        padding-top: 24px;
    }

    .insta { padding: 48px 20px; }
    .insta__title { font-size: clamp(30px, 7vw, 40px); }
    .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

    .ad-band { padding: 20px; }
    .ad-band__slot { min-height: 50px; font-size: 11px; }

    /* Archive/Search hero */
    .arch-hero { padding: 48px 20px 40px; }
    .arch-hero__title { font-size: clamp(34px, 8vw, 48px); }
    .arch-hero__meta { font-size: 14px; }

    /* Recipe page */
    .recipe-page { padding: 32px 20px; }
    .recipe-page__title h1 { font-size: clamp(28px, 7vw, 40px) !important; }
    .recipe-page__content { font-size: 16px; line-height: 1.7; }
    .recipe-page__content h2 { font-size: 22px; }
    .recipe-page__content h3 { font-size: 19px; }

    /* Related on single */
    .recipe-related { padding: 36px 16px 8px; }

    /* Feature recs grid */
    .feature__recs { padding: 32px 20px; grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature__rec span { font-size: 13px; }

    /* Archive/related grids columns */
    .elementor-widget.recipes-archive,
    .elementor-widget.recipes-related { padding: 32px 20px; }
    .recipes-archive .elementor-posts-container,
    .recipes-related .elementor-posts-container { gap: 24px !important; }

    /* Header search — compact on mobile */
    .site-header__search { padding: 4px 8px 4px 10px; }
    .site-header__search input { width: 110px; font-size: 13px; }
}

/* Desktop-down: tablet tweaks for new sections */
@media (max-width: 1100px) {
    .arch-hero { padding: 64px 40px; }
    .recipe-page { padding: 40px 28px; }
    .recipe-related { padding: 40px 28px 16px; }
    .feature__recs { padding: 36px; }
    .site-header__search input { width: 120px; }
}
    .ad-inline { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
    .ad-inline__body { min-width: 0; }
    .ad-inline__slot { min-height: 200px; }
}

/* =================================================================
   ABOUT PAGE — מי אני (post 8)
   ================================================================= */

.ab-section__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ab-section__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -.015em;
    color: var(--ink);
    margin: 0 0 24px;
}

/* Buttons (reuse forest+clay scheme) */
.ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
}
.ab-btn--primary { background: var(--clay); color: #fff !important; }
.ab-btn--primary:hover { background: var(--clay-deep); }
.ab-btn--ghost-light {
    background: transparent;
    color: var(--cream) !important;
    border: 1.5px solid rgba(248,241,223,.45);
}
.ab-btn--ghost-light:hover {
    background: rgba(248,241,223,.10);
    border-color: var(--cream);
}

/* Hero */
.ab-hero {
    padding: 96px 40px 88px;
    background: var(--cream);
    position: relative;
}
.ab-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ab-hero__text { padding-top: 28px; }
.ab-hero__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.ab-hero__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--forest-deep);
    margin: 0 0 24px;
}
.ab-hero__lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
    max-width: 50ch;
}
.ab-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(19,59,37,.18);
}

/* Story */
.ab-story {
    padding: 96px 40px;
    background: #fff;
}
.ab-story__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: right;
}
.ab-story__body {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.8;
}
.ab-story__body p {
    margin: 0 0 22px;
}
.ab-story__pull {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--forest-deep);
    border-inline-start: 4px solid var(--clay);
    padding: 18px 24px;
    margin: 36px 0;
    background: var(--cream-soft);
    border-radius: 0 12px 12px 0;
}

/* What you'll find */
.ab-find {
    padding: 96px 40px;
    background: var(--cream-soft);
}
.ab-find__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ab-find__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 36px 0 28px;
    text-align: right;
}
.ab-find__col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1.5px solid var(--cream-dark);
}
.ab-find__col h3 {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--ink);
}
.ab-find__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ab-find__list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--ink);
    border-bottom: 1px solid var(--cream-dark);
    position: relative;
    padding-inline-start: 28px;
}
.ab-find__list li:last-child { border-bottom: 0; }
.ab-find__list--neg li::before {
    content: '✕';
    position: absolute;
    inset-inline-start: 0;
    color: #b54a3a;
    font-weight: 800;
}
.ab-find__list--pos li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--forest);
    font-weight: 800;
}
.ab-find__close {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 24px auto 0;
    max-width: 600px;
}

/* Recommendations */
.ab-recos {
    padding: 96px 40px;
    background: var(--forest-deep);
    color: var(--cream);
}
.ab-recos .ab-section__title { color: var(--cream); }
.ab-recos__head {
    max-width: 1280px;
    margin: 0 auto 36px;
    text-align: center;
}
.ab-recos__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ab-reco {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: var(--ink) !important;
    text-decoration: none !important;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 14px 40px rgba(0,0,0,.20);
}
.ab-reco:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,.30);
}
.ab-reco__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-soft);
}
.ab-reco__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.ab-reco__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ab-reco__body h3 {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 10px;
}
.ab-reco__body p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.ab-reco__body p strong { color: var(--clay-deep); font-weight: 800; }
.ab-reco__cta {
    margin-top: auto;
    color: var(--clay-deep);
    font-weight: 700;
    font-size: 14px;
}
.ab-reco__cta .btn__arrow {
    display: inline-block;
    margin-inline-end: 6px;
    transition: transform .2s;
}
.ab-reco:hover .ab-reco__cta .btn__arrow { transform: translateX(4px); }
.ab-recos__note {
    max-width: 1280px;
    margin: 28px auto 0;
    text-align: center;
    color: rgba(248,241,223,.85);
    font-size: 15px;
}
.ab-recos__note strong {
    color: var(--clay);
    font-weight: 800;
    letter-spacing: .04em;
}

/* Final CTA */
.ab-final {
    padding: 96px 40px;
    background: var(--clay);
    color: #fff;
    text-align: center;
}
.ab-final__inner {
    max-width: 760px;
    margin: 0 auto;
}
.ab-final__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 14px;
}
.ab-final__lede {
    font-size: 18px;
    color: rgba(255,255,255,.92);
    margin: 0 0 28px;
}
.ab-final__cta {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: center;
}
.ab-final .ab-btn--primary {
    background: var(--forest-deep);
    color: var(--cream) !important;
}
.ab-final .ab-btn--primary:hover { background: var(--ink); }

/* Mobile */
@media (max-width: 720px) {
    .ab-hero { padding: 56px 20px; }
    .ab-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .ab-hero__media { order: -1; max-width: 320px; margin: 0 auto; }
    .ab-hero__text { padding-top: 0; }
    .ab-story { padding: 64px 20px; }
    .ab-story__body { font-size: 17px; }
    .ab-story__pull { padding: 16px 18px; margin: 24px 0; }
    .ab-find { padding: 64px 20px; }
    .ab-find__grid { grid-template-columns: 1fr; gap: 14px; }
    .ab-find__col { padding: 24px 22px; }
    .ab-recos { padding: 64px 20px; }
    .ab-recos__grid { grid-template-columns: 1fr; gap: 16px; }
    .ab-final { padding: 64px 20px; }
    .ab-final__cta { flex-direction: column; }
    .ab-final__cta .ab-btn { width: 100%; }
}

/* =================================================================
   CONTACT PAGE — צור קשר (post 14)
   ================================================================= */

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    border: 0;
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
    font-family: inherit;
}
.ct-btn--primary { background: var(--clay); color: #fff !important; }
.ct-btn--primary:hover { background: var(--clay-deep); }

/* Hero */
.ct-hero {
    padding: 96px 40px 80px;
    background: var(--cream);
}
.ct-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ct-hero__text { padding-top: 28px; }
.ct-hero__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.ct-hero__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--forest-deep);
    margin: 0 0 24px;
}
.ct-hero__lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 50ch;
}
.ct-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(19,59,37,.18);
}

/* Form section */
.ct-formsec {
    padding: 96px 40px;
    background: #fff;
}
.ct-formsec__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: right;
}
.ct-formsec__lede {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 28px;
}

/* The form itself */
.ct-form { display: block; }
.ct-form__hp { position: absolute; left: -10000px; top: -10000px; width: 1px; height: 1px; overflow: hidden; }
.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ct-form__field {
    display: block;
    margin-bottom: 18px;
}
.ct-form__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.ct-form__label em {
    color: var(--clay);
    font-style: normal;
    margin-inline-start: 2px;
}
.ct-form input[type="text"],
.ct-form input[type="email"],
.ct-form textarea {
    width: 100%;
    background: var(--cream-soft);
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--ink);
    transition: border-color .15s, background .15s;
    box-sizing: border-box;
}
.ct-form input[type="text"]:focus,
.ct-form input[type="email"]:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: #fff;
}
.ct-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}
.ct-form .ct-btn {
    margin-top: 8px;
    min-width: 200px;
}
.ct-form__hint {
    font-size: 13px;
    color: var(--muted);
    margin: 14px 0 0;
}
.ct-form__msg {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
}
.ct-form__msg--ok {
    background: rgba(63,114,69,.10);
    color: var(--forest-deep);
    border: 1.5px solid var(--forest);
}
.ct-form__msg--err {
    background: rgba(181,74,58,.10);
    color: #8c3625;
    border: 1.5px solid #b54a3a;
}

/* Channels grid */
.ct-channels {
    padding: 96px 40px;
    background: var(--cream-soft);
}
.ct-channels__head {
    max-width: 1280px;
    margin: 0 auto 36px;
    text-align: center;
}
.ct-channels__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.ct-card {
    display: block;
    background: #fff;
    border: 1.5px solid var(--cream-dark);
    border-radius: 16px;
    padding: 26px 28px;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: border-color .2s, transform .15s, box-shadow .2s;
    position: relative;
}
.ct-card:hover {
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(19,59,37,.10);
}
.ct-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest);
    color: var(--cream);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}
.ct-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--clay);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ct-card__value {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    word-break: break-all;
    direction: ltr;
    text-align: right;
    unicode-bidi: plaintext;
}
.ct-card__hint {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* Closing sign-off */
.ct-final {
    padding: 80px 40px;
    background: var(--forest-deep);
    color: var(--cream);
    text-align: center;
}
.ct-final__sig {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.5;
    color: var(--cream);
    margin: 0;
}
.ct-final__sig strong {
    color: var(--clay);
    font-weight: 800;
    font-size: 1.35em;
    display: inline-block;
    margin-top: 6px;
}

/* Mobile */
@media (max-width: 720px) {
    .ct-hero { padding: 56px 20px; }
    .ct-hero__inner { grid-template-columns: 1fr; gap: 28px; }
    .ct-hero__media { order: -1; max-width: 280px; margin: 0 auto; }
    .ct-hero__text { padding-top: 0; }
    .ct-formsec { padding: 56px 20px; }
    .ct-form__row { grid-template-columns: 1fr; gap: 0; }
    .ct-form .ct-btn { width: 100%; }
    .ct-channels { padding: 56px 20px; }
    .ct-channels__grid { grid-template-columns: 1fr; }
    .ct-final { padding: 56px 20px; }
}

/* Hide WordPress default page-header (h1 entry-title) on all pages —
   our custom hero sections already contain the page title. */
.page-content > .page-header,
body > main .page-header,
.page .page-header {
    display: none !important;
}

/* =================================================================
   DIGITAL COURSES PAGE — קורסים דיגיטליים (post 7594)
   ================================================================= */

.dc-section__eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.dc-section__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -.015em;
    color: var(--ink);
    margin: 0 0 12px;
}

.dc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .15s;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.dc-btn--primary { background: var(--clay); color: #fff !important; }
.dc-btn--primary:hover { background: var(--clay-deep); }
.dc-btn--ghost-light {
    background: transparent;
    color: var(--cream) !important;
    border: 1.5px solid rgba(248,241,223,.45);
}
.dc-btn--ghost-light:hover { background: rgba(248,241,223,.10); border-color: var(--cream); }
.dc-btn--block { display: flex; width: 100%; text-align: center; }

/* Hero */
.dc-hero {
    padding: 96px 40px 88px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.dc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(216,118,70,.18) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 90%, rgba(196,212,184,.10) 0%, transparent 55%);
    pointer-events: none;
}
.dc-hero__inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.dc-hero__eyebrow {
    color: var(--clay);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.dc-hero__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 5.6vw, 76px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--cream);
    margin: 0 0 22px;
}
.dc-hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(248,241,223,.88);
    margin: 0 auto 28px;
    max-width: 60ch;
}
.dc-hero__meta {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: nowrap;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(248,241,223,.18);
    border-bottom: 1px solid rgba(248,241,223,.18);
    margin: 0 auto 32px;
    max-width: 640px;
}
.dc-hero__meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: rgba(248,241,223,.78);
    letter-spacing: .06em;
}
.dc-hero__meta strong {
    color: var(--clay);
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
}

/* Courses grid */
.dc-courses {
    padding: 96px 40px;
    background: var(--cream);
}
.dc-section__head {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}
.dc-courses__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}
.dc-card {
    background: #fff;
    border: 1.5px solid var(--cream-dark);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .25s, box-shadow .25s;
}
.dc-card:hover {
    border-color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(19,59,37,.10);
}
.dc-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.dc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dc-card__badge {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    background: var(--clay);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.dc-card__body {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dc-card__head {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cream-dark);
}
.dc-card__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: var(--forest-deep);
    margin: 0 0 6px;
}
.dc-card__subtitle {
    font-size: 15px;
    color: var(--clay-deep);
    font-weight: 600;
}
.dc-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 18px;
}
.dc-card__list-head,
.dc-card__bonus-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--forest);
    margin: 0 0 8px;
}
.dc-card__bonus-head { color: var(--clay); margin-top: 14px; }
.dc-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    columns: 2;
    column-gap: 16px;
}
.dc-card__list--bonus { columns: 1; }
.dc-card__list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    padding: 4px 0 4px 22px;
    position: relative;
    break-inside: avoid;
    padding-inline-start: 22px;
    padding-inline-end: 0;
}
.dc-card__list li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--forest);
    font-weight: 800;
}
.dc-card__list--bonus li::before { content: '★'; color: var(--clay); }
.dc-card__extra {
    font-size: 13px;
    color: var(--muted);
    background: var(--cream-soft);
    padding: 10px 14px;
    border-radius: 10px;
    margin: 6px 0 18px;
    line-height: 1.5;
}
.dc-card__body .dc-btn--block { margin-top: auto; }

/* Cross-sell */
.dc-crosssell {
    padding: 96px 40px;
    background: var(--cream-soft);
}
.dc-crosssell__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.dc-cross {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid var(--cream-dark);
}
.dc-cross:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(19,59,37,.10);
    border-color: var(--forest);
}
.dc-cross__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.dc-cross__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.dc-cross__body { padding: 22px 24px 26px; }
.dc-cross__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 8px;
}
.dc-cross__body h3 {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px;
}
.dc-cross__body p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 12px;
}
.dc-cross__cta {
    color: var(--forest-deep);
    font-weight: 700;
    font-size: 14px;
}
.dc-cross__cta .btn__arrow {
    display: inline-block;
    margin-inline-end: 6px;
    transition: transform .2s;
}
.dc-cross:hover .dc-cross__cta .btn__arrow { transform: translateX(4px); }

/* Final CTA */
.dc-final {
    padding: 96px 40px;
    background: var(--forest-deep);
    color: var(--cream);
    text-align: center;
}
.dc-final__inner { max-width: 760px; margin: 0 auto; }
.dc-final__title {
    font-family: 'Rubik', system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    margin: 0 0 18px;
}
.dc-final__lede {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(248,241,223,.85);
    margin: 0 0 28px;
}

/* Mobile */
@media (max-width: 720px) {
    .dc-hero { padding: 64px 20px 56px; }
    .dc-hero__meta { gap: 22px; padding: 18px 0; }
    .dc-hero__meta div { font-size: 11px; }
    .dc-hero__meta strong { font-size: 22px; }
    .dc-courses { padding: 56px 16px; }
    .dc-courses__grid { grid-template-columns: 1fr; gap: 22px; }
    .dc-card__body { padding: 22px 20px 24px; }
    .dc-card__title { font-size: 22px; }
    .dc-card__list { columns: 1; }
    .dc-crosssell { padding: 56px 16px; }
    .dc-crosssell__grid { grid-template-columns: 1fr; gap: 16px; }
    .dc-final { padding: 64px 20px; }
}
﻿
/* site-header nav — nowrap, gap reduced */
.site-header__nav { flex-wrap: nowrap !important; gap: 20px !important; }

/* recipes archive — hide Elementor numbered pagination */
.recipes-archive .elementor-pagination { display: none !important; }
/* recipes archive — hide English Read More */
.recipes-archive .elementor-post__read-more { display: none !important; }﻿
/* single recipe — tags section centered */
.single-post .post-tags {
    text-align: center;
    padding: 20px 24px;
    max-width: 860px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
}
.single-post .post-tags .tag-links a {
    color: var(--forest);
    text-decoration: none;
}
.single-post .post-tags .tag-links a:hover { text-decoration: underline; }

/* single recipe — reduce huge bottom whitespace */
.single-post .page-content { padding-bottom: 0 !important; }﻿
/* tags on single post — centered regardless of body class */
.post-tags { text-align: center !important; max-width: 860px; margin: 0 auto; padding: 16px 24px; }
.post-tags .tag-links { color: var(--muted); font-size: 14px; }
.post-tags .tag-links a { color: var(--forest); text-decoration: none; }
.post-tags .tag-links a:hover { text-decoration: underline; }﻿
/* force tags center — target both div and span */
.post-tags, .post-tags .tag-links { text-align: center !important; display: block !important; }