*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal: #1B4F4A; --teal-light: #2A6B64; --coral: #E8725A;
      --sage: #8AAF9F; --cream: #F7F4EF; --white: #FFFFFF;
      --ink: #2C2C2C; --ink-muted: #6B6B6B; --rule: #D8D3CB;
    }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; }

    nav { background: var(--teal); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
    .nav-logo span { color: var(--coral); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--cream); }

    .breadcrumb { padding: 14px 5vw; font-size: 0.75rem; color: var(--ink-muted); display: flex; gap: 0.5rem; align-items: center; border-bottom: 1px solid var(--rule); background: var(--white); }
    .breadcrumb a { color: var(--teal); text-decoration: none; }
    .breadcrumb-sep { color: var(--rule); }

    /* RECIPE HERO */
    .recipe-hero { background: var(--teal); padding: 50px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 100%; }
    .recipe-hero-img { aspect-ratio: 4/3; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
    .recipe-hero-text {}
    .recipe-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.8rem; display: block; }
    .recipe-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 1rem; }
    .recipe-desc { font-size: 1rem; line-height: 1.7; color: var(--sage); margin-bottom: 1.8rem; }

    /* Recipe meta pills */
    .recipe-meta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
    .meta-pill { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 8px 14px; text-align: center; }
    .meta-pill-val { font-size: 1rem; font-weight: 600; color: var(--white); display: block; }
    .meta-pill-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); display: block; margin-top: 2px; }

    /* Byline */
    .byline { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 5vw; border-bottom: 1px solid var(--rule); background: var(--white); }
    .byline-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--white); flex-shrink: 0; }
    .byline-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
    .byline-name a { color: var(--teal); text-decoration: none; }
    .byline-meta { font-size: 0.72rem; color: var(--ink-muted); }
    .byline-badge { margin-left: auto; background: var(--teal); color: var(--cream); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }

    /* RECIPE BODY */
    .recipe-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 5vw; display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }

    .recipe-intro { font-size: 1rem; line-height: 1.8; color: var(--ink); margin-bottom: 2.5rem; }
    .recipe-intro p { margin-bottom: 1.2rem; }

    /* INGREDIENTS */
    .recipe-section-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--teal); }

    .servings-control { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
    .servings-label { font-size: 0.82rem; font-weight: 500; color: var(--ink-muted); }
    .servings-btn { width: 32px; height: 32px; border: 1.5px solid var(--rule); border-radius: 50%; background: var(--white); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: border-color 0.2s; }
    .servings-btn:hover { border-color: var(--teal); color: var(--teal); }
    .servings-count { font-size: 1rem; font-weight: 600; color: var(--ink); min-width: 24px; text-align: center; }

    .ingredients-list { list-style: none; margin-bottom: 2.5rem; }
    .ingredient-item { display: flex; align-items: flex-start; gap: 1rem; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 0.92rem; }
    .ingredient-item:last-child { border-bottom: none; }
    .ingredient-check { width: 18px; height: 18px; border: 1.5px solid var(--rule); border-radius: 3px; flex-shrink: 0; margin-top: 2px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
    .ingredient-item.checked .ingredient-check { background: var(--teal); border-color: var(--teal); position: relative; }
    .ingredient-item.checked .ingredient-check::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; font-weight: 700; }
    .ingredient-item.checked .ingredient-text { text-decoration: line-through; color: var(--ink-muted); }
    .ingredient-amount { font-weight: 600; color: var(--teal); flex-shrink: 0; min-width: 60px; }
    .ingredient-text { flex: 1; line-height: 1.4; }

    /* STEPS */
    .steps-list { list-style: none; margin-bottom: 2.5rem; }
    .step-item { display: flex; gap: 1.4rem; margin-bottom: 1.8rem; align-items: flex-start; }
    .step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .step-content { flex: 1; }
    .step-title { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.4rem; }
    .step-text { font-size: 0.92rem; line-height: 1.65; color: var(--ink-muted); }
    .step-tip { background: rgba(27,79,74,0.06); border-left: 3px solid var(--sage); padding: 0.6rem 0.8rem; margin-top: 0.8rem; border-radius: 0 4px 4px 0; font-size: 0.82rem; color: var(--teal); line-height: 1.5; }
    .step-tip strong { font-weight: 600; }

    /* Notes */
    .recipe-notes { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.6rem; margin-bottom: 2rem; }
    .recipe-notes h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--ink); }
    .recipe-notes p { font-size: 0.88rem; line-height: 1.65; color: var(--ink-muted); margin-bottom: 0.6rem; }
    .recipe-notes p:last-child { margin-bottom: 0; }

    /* SIDEBAR */
    .recipe-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }

    .sidebar-panel { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.6rem; }
    .sidebar-panel-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--rule); }

    /* Nutrition */
    .nutrition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .nutrition-item { text-align: center; padding: 0.8rem; background: var(--cream); border-radius: 4px; }
    .nutrition-val { font-size: 1.1rem; font-weight: 700; color: var(--teal); display: block; }
    .nutrition-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-top: 2px; }

    /* Equipment */
    .equipment-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .equipment-list li { font-size: 0.82rem; color: var(--ink-muted); display: flex; align-items: center; gap: 0.6rem; line-height: 1.4; }
    .equipment-list li::before { content: '→'; color: var(--coral); font-size: 0.75rem; flex-shrink: 0; }

    /* Variations */
    .variation-item { padding: 0.8rem 0; border-bottom: 1px solid var(--rule); }
    .variation-item:last-child { border-bottom: none; padding-bottom: 0; }
    .variation-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
    .variation-desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.4; }

    /* Print */
    .btn-print { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--cream); border: 1.5px solid var(--rule); border-radius: 4px; padding: 11px; font-size: 0.82rem; font-weight: 500; color: var(--ink-muted); cursor: pointer; transition: border-color 0.2s; font-family: 'Inter', sans-serif; text-decoration: none; }
    .btn-print:hover { border-color: var(--teal); color: var(--teal); }

    /* Tags */
    .post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
    .tag { font-size: 0.72rem; font-weight: 500; color: var(--teal); background: rgba(27,79,74,0.08); padding: 5px 12px; border-radius: 20px; text-decoration: none; }
    .tag:hover { background: rgba(27,79,74,0.15); }

    /* Related */
    .related-section { max-width: 1100px; margin: 0 auto; padding: 0 5vw 60px; }
    .related-section h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .related-card { background: var(--white); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
    .related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
    .related-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
    .related-card-body { padding: 1.2rem; }
    .related-card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.4rem; }
    .related-card-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; line-height: 1.3; color: var(--ink); }

    footer { background: var(--ink); padding: 40px 5vw 24px; }
    .footer-logo { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; margin-bottom: 1rem; display: block; text-decoration: none; }
    .footer-logo span { color: var(--coral); }
    .footer-bottom { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

    @media (max-width: 860px) {
      .recipe-hero { grid-template-columns: 1fr; }
      .recipe-hero-img { display: none; }
      .recipe-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .recipe-sidebar { position: static; }
      .related-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .nav-links { display: none; }
      .related-grid { grid-template-columns: 1fr; }
      .recipe-meta { gap: 0.5rem; }
    }