    :root {
      /* Adjust these to better mirror your existing site */

 /*  */--bg: #f4f0ea; /* unknown - overridden? */
     --card-bg: #2e2e2e; /* Recipe Card background */
     --primary: #a9cec2; /* Dish Name */      
     --accent: #c89b3c;  /* Breakfast, Dinner, Dessert */      
     --accent-soft: #5b5b5b; /* Servings Background */
     --text-main: #ffea00;  /* unknown - overridden? */
      --text-muted: #72898f; /* secondary Text */
      --border-soft: #e0ddd7; /* borders */
      --radius-lg: 14px; /* Corners of Card */
      --shadow-soft: 0 8px 24px rgba(148, 137, 121, 0.6); /* top, sides, bottom shadows */
    }

    main {
      flex: 1;
      padding: 0rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
    }

    .content-shell {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Top intro text */
    .intro {
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: #aaa;
    }

    /* Top tab bar for recipes */
    .recipe-tabs-wrapper {
      position: sticky;
      top: 0rem; /* just below site header */
      z-index: 10;
      padding: 0.5rem 0 0.9rem;
      margin-bottom: 0.75rem;
      background: linear-gradient(to bottom, #2e2e2e, #d3caba 50%, transparent 100%);
      border-bottom: 1px solid var(--border-soft);
    }

    .recipe-tabs {
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      padding-bottom: 0.3rem;
      scrollbar-width: thin;
    }

    .recipe-tabs::-webkit-scrollbar {
      height: 6px;
    }

    .recipe-tabs::-webkit-scrollbar-thumb {
      background: #d3caba;
      border-radius: 999px;
    }

    .recipe-tab-link {
      flex: 0 0 auto;
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: 1px solid transparent;
      color: var(--primary);
      background: #444444; /* Tab Background Color*/
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.08s ease,
        box-shadow 0.15s ease;
      white-space: nowrap;
    }

    .recipe-tab-link span.label {
      font-weight: 500;
    }

    .recipe-tab-link span.category {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
    }

    .recipe-tab-link:hover,
    .recipe-tab-link:focus-visible {
      background: var(--accent-soft);
      border-color: var(--accent);
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
      outline: none;
    }

    /* Recipes area */
    .recipes {
      margin-top: 0.5rem;
      position: relative;
    }

    .recipe {
      display: none;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 1.5rem 1.6rem 1.8rem;
      border: 1px solid var(--border-soft);
      animation: fadeIn 0.18s ease-out;
    }

    /* Show first recipe by default if no hash is present */
    .recipe:first-of-type {
      display: block;
    }

    /* Show any targeted recipe */
    .recipe:target {
      display: block;
    }

    .recipe-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 0.9rem;
      border-bottom: 1px solid var(--border-soft);
      padding-bottom: 0.7rem;
    }

    .recipe-title-block {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .recipe-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
    }

    .recipe-source {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .recipe-meta {
      font-size: 0.85rem;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.35rem;
      text-align: right;
    }

    .meta-line {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .pill {
      border-radius: 999px;
      padding: 0.2rem 0.7rem;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .recipe-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
      justify-content: flex-end;
    }

    .tag {
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      font-size: 0.78rem;
      color: #2e2e2e;
      background: #d3caba;
    }

    .recipe-section-title {
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 1.3rem;
      margin-bottom: 0.4rem;
      color: var(--text-muted);
    }

    ul.ingredients {
      padding-left: 1.1rem;
      margin-bottom: 0.5rem;
      color: #d3caba;
    }

    ul.ingredients li {
      margin-bottom: 0.25rem;
    }

    ol.steps {
      padding-left: 1.1rem;
      color: #d3caba;
    }

    ol.steps li {
      margin-bottom: 0.45rem;
    }

    .notes {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #d3caba;
      border-top: 1px dashed var(--border-soft);
      padding-top: 0.7rem;
    }

    /* Responsive tweaks */
    @media (max-width: 600px) {
      header.site-header {
        padding-inline: 1rem;
      }

      .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
      }
 
  .header-logo img {
    height: 110px;
    width: 110px;
  }

      .header-subtitle {
        font-size: 0.88rem;
      }

      .recipe-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .recipe-meta {
        align-items: flex-start;
        text-align: left;
      }

      .recipe-tags {
        justify-content: flex-start;
      }

      .recipe-tabs-wrapper {
        top: 4.4rem;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(3px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

