    /* ========== GENERAL ========== */
        :root {
            --rule: rgba(0, 0, 0, 0.18);

            --paper: #f6efe5;
            --cream: #f6efe5;
            --teal: #007a8d;
            --black: #1a1a1a;

            --ssHeaderH: 0px;

            --stickyH: 120px;
            --stickyActualH: var(--stickyH);

            --navGutter: 100px;  /* the 50px you want */
            --navFadeW: 108px;   /* width of the fade */   
        }

        * { box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--ssHeaderH) + var(--stickyActualH));
        }

        body {
            font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
            margin: 0;
            background: var(--paper);
            color: var(--black);
        }

        .menu-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 18px 18px 64px;
        }

    /* ========== TEXT ========== */
        .small-blue-text {
            color: var(--teal);
            font-size: 12px;
            font-weight: 600;
        }

    /* ========== STICKY NAV ========== */
        .nav-bar {
            position: sticky;
            top: var(--ssHeaderH);
            z-index: 9999;
            background: #f9f3ea;
            padding: 32px 0 32px;
            border: 2px solid var(--teal);
            border-radius: 8px;
        }

        .menu-toggle-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 18px;
        }

        .menu-segmented{
            --toggleBorder: rgba(0,0,0,0.45);
            display: inline-grid;
            grid-auto-flow: column;
            align-items: center;
            border: 1px solid var(--toggleBorder);
            border-radius: 999px;
            padding: 3px;
            background: transparent;
            gap: 0;
        }

        .menu-segmented__input{
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .menu-segmented__btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 34px;
            border-radius: 999px;
            cursor: pointer;
            user-select: none;
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--black);
            line-height: 1;
            border: 2px solid transparent;
            background: transparent;
        }

        .menu-segmented__input:checked + .menu-segmented__btn{
            border-color: var(--teal)
        }

        @media (max-width: 520px){
            .menu-segmented__btn{ padding: 10px 24px; }
        }

    /* ========== NAV BUTTONS ========== */
.nav-buttons{
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin: 12px 0 0;
  align-items: center;
}

.nav-buttons a{
  display: inline-block;
  padding: 8px 0;
  border: 0;
  background: transparent;
  border-radius: 0;

  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);

  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(0, 122, 141, 0.55);

  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.nav-buttons a:hover{
  text-decoration-color: var(--teal);
}

.nav-buttons a.active{
  text-decoration-color: var(--teal);
  text-decoration-thickness: 3px;
}

/* MOBILE horizontal scroll row (keep your previous mobile rules, but ensure these exist) */
@media (max-width: 820px){
  .nav-buttons{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 14px;
  }

  .nav-buttons::-webkit-scrollbar{ display:none; }
  .nav-buttons{ scrollbar-width:none; }

  .nav-buttons a,
  .nav-specials{ flex: 0 0 auto; }
}

    /* ===========================================================
    PROMO BANNERS
    =========================================================== */

.moules-monday-container {
  column-span: all;
  break-inside: avoid;
}

        .moules-monday-top{
        display: flex;
        gap: 20px;
        align-items: center;
        }

        /* 50/50 columns */
        .moules-image{
        position: relative;
        flex: 1 1 0;
        padding-right: 20px; /* space for the divider */
        }

        .content{
        flex: 1 1 0;
        display: grid;
        gap: 25px;
        }

        .item-details {
            margin: 0;
            padding: 0;
        }

        /* image scales within its 50% column */
        .moules-image img{
        width: 100%;
        max-width: 300px; /* optional cap so it doesn't get huge */
        height: auto;
        display: block;
        margin: 0 auto;
        }

        /* vertical divider 
        .moules-image::after{
        content: "";
        position: absolute;
        top: 10%;
        right: 0;
        width: 1px;
        height: 80%;
        background-color: var(--cream);
        }*/

        /* Mobile: stack + remove divider */
        @media (max-width: 675px){
        .moules-monday-top{
        flex-direction: column;
        }

        .moules-image,
        .content{
        flex: none;
        width: 100%;
        }

        .content {
        margin-top: 28px;
        margin-bottom: 28px;
        }

        .moules-image::after{
        display: none;
        }
        }

    /* ===========================================================
    SECTION LAYOUT
    =========================================================== */
        .section-anchor {
            scroll-margin-top: calc(var(--ssHeaderH) + var(--stickyActualH));
        }

        .section-block{
            display: grid;
            grid-template-columns: 1fr !important; /*   1/3 + 2/3 */ /* change back to 1fr 2fr when photos are ready */
            gap: 44px;
            align-items: stretch;           /*   makes both columns same height */
            margin-top: 44px;
        }




        .section-title-wrap {
            grid-column: 1 / -1;
            margin-top: 3rem;
        }

        /* LEFT column fills full height */
        .section-image{
            height: 100%;
            min-height: 1px;
        }

        .img-stack{
            --imgCount: 2;

            display: grid;
            gap: 18px;
            height: 100%;
            grid-template-rows: repeat(var(--imgCount), 1fr); /*   evenly spaced */
            min-height: 1px;
        }
/*
        div {
            border: 1px solid red;
        }
*/
        .img-stack > div{
            width: 100%;
            height: 100%;
            min-height: 0;
        }

        .img-def{
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 18px;
            width: 100%;
            height: 100%;
        }

        .content-column .category h3 {
  column-span: all;
  break-after: avoid;
  break-inside: avoid;
}

        /* ---------------------------- */ 
        .content-column { 
          min-width: 0; 
          column-count: 2;
          column-gap: 44px;
        }

        .menu-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.18);
            margin-top: 1rem;
            padding: 16px 0px 16px 0px;
        }

        .menu-item, .category h3 {
          break-inside: avoid;
        }

        @media (max-width: 820px) {
  .content-column {
    column-count: 1;
  }
}

        .item-row{
            display:flex;
            justify-content:space-between;
            gap:16px;
            align-items: baseline;
            flex-wrap: wrap;
            height: auto;
            min-height: 38px;
        }

        .item-name {
            font-weight: 800;
            letter-spacing: 0.02em;
            margin: 0;
            flex: 1 1 auto;
            min-width: 0;
        }

        .price { font-weight: 600; white-space: nowrap; flex: 0 0 auto; }

        .dietary {
            font-size: 0.85em;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: var(--teal);
            margin-left: 8px;
            white-space: nowrap;
        }

        .menu-content { display: none; }
        .menu-content.active { display: block; }

        /*   hide images on mobile */
        @media (max-width: 820px) {
            :root { --stickyH: 160px; }
            .section-block {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .section-image { display: none; }
        }

        @media (max-width: 820px){
            .item-row{
                display: grid;
                grid-template-columns: minmax(0, 1fr) max-content;
                column-gap: 16px;
                align-items: start;
                justify-content: initial;
                flex-wrap: initial;
            }

            .item-name{ min-width: 0; }

            .price{
                white-space: nowrap;
                text-align: right;
                justify-self: end;
            }
        }

/* ========== FULL-WIDTH STICKY NAV ON MOBILE ========== */
@media (max-width: 820px){
  .menu-container{
    padding-left: 0;
    padding-right: 0;
  }

  .nav-bar{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  /* Put padding back INSIDE the nav so content still breathes */
  .nav-bar > *{
    padding-left: 18px;
    padding-right: 18px;
  }
}


@media (max-width: 820px){
  .nav-bar{
    padding-top: 24px;
    padding-bottom: 20px;
  }
}




        /* ========== SPECIALS DROPDOWN ========== */
.nav-specials{
  position: relative;
  display: inline-flex;   /* was flex */
  justify-content: initial; /* remove centering */
  margin-top: 0;          /* remove spacing that pushes it down */
}


.specials-btn{
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);

  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(0, 122, 141, 0.55);
}

.specials-btn[aria-expanded="true"]{
  text-decoration-color: var(--teal);
  text-decoration-thickness: 3px;
}

.specials-menu{
  position: absolute;
  top: calc(100% + 10px);

  left: 100px;          /* <-- 100px from the left edge of the nav */
  transform: none;      /* <-- remove centering */

  min-width: 220px;
  background: #fff;
  border: 2px solid rgba(0, 122, 141, 0.35);
  border-radius: 12px;
  padding: 10px;
  max-width: calc(100vw - 24px);
  display: none;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (min-width: 821px){
  .specials-menu{
    position: fixed;
    left: 100px;        /* <-- 100px from the viewport edge */
    transform: none;
  }
}


.desc {
    padding: 0;
}


.specials-menu.open{ display: block; }

.specials-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  font-size: 0.9rem;
}

.specials-menu a:hover{
  background: rgba(0, 122, 141, 0.10);
}





/* ========== MOBILE HORIZONTAL SCROLL NAV ========== */
/* ========== MOBILE HORIZONTAL SCROLL NAV ========== */
@media (max-width: 820px){
  .nav-buttons{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;          /* allow dropdown overlay logic */
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 16px;

    padding: 0 50px;              /* <-- key: 50px at BOTH ends */
    scroll-padding-left: 50px;
    scroll-padding-right: 50px;

    scroll-snap-type: x proximity; /* optional */
  }

  .nav-buttons::-webkit-scrollbar{ display:none; }
  .nav-buttons{ scrollbar-width:none; }

  .nav-buttons a,
  .nav-specials{
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* fade edges */
  .nav-buttons{
    mask-image: linear-gradient(to right,
      transparent 0,
      black 50px,
      black calc(100% - 50px),
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      black 50px,
      black calc(100% - 50px),
      transparent 100%
    );
  }
}


@media (max-width: 820px){
  .nav-bar{
    position: sticky;
  }

}


/* When Specials is open, don't mask the nav (mask hides dropdown descendants) */
body.specials-open #sectionNav{
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* Also make sure the sticky area doesn't clip anything (safe) */
.nav-bar{
  overflow: visible;
}

@media (max-width: 820px){
  .nav-bar{ position: sticky; }
  .nav-buttons{
    mask-image: linear-gradient(to right, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
  }
}
/* Scroll hint */
.scroll-hint{
  display: none;
  opacity: 0.85;
  font-size: 12px;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Only show on mobile */
@media (max-width: 820px){
  .scroll-hint{ display: block; }
  /* Hide the hint if the row cannot scroll */
  #sectionNav:not(.can-scroll) + .scroll-hint{ display: none; }
}
