    <style>
        /* ===== Base layout (same as before) ===== */
        *, *::before, *::after { box-sizing: border-box; }

        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .site-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
            max-width: 1200px;          /* optional */
            margin: 0 auto;
            position: relative;
        }

        .site-header,
        .site-footer {
            width: 100%;
            flex-shrink: 0;
        }

        .site-main {
            display: flex;
            flex: 1 1 auto;
            width: 100%;
        }

        .site-leftmenu {
            flex: 0 0 220px;
            max-width: 220px;
            background: inherit;        /* keeps your chocolatey look */
            transition: transform 0.3s ease;
        }

        .site-content {
            flex: 1 1 auto;
            min-width: 0;
            padding: 1rem;
        }

        /* ===== Hamburger button (hidden on desktop) ===== */
        .hamburger {
            display: none;              /* hidden on desktop */
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 1001;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px;
        }

        /* ===== Hamburger button ===== */
.hamburger {
    display: none;                  /* hidden on desktop */
    position: fixed;                /* fixed so header can’t cover it */
    top: 12px;
    left: 12px;
    z-index: 9999;                  /* very high so nothing covers it */
    width: 44px;
    height: 44px;
    background: rgba(92, 51, 23, 0.85); /* semi-transparent chocolate */
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: #fff !important;    /* force white bars */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
/* Gallery: cards flow across the full width */
.star-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    width: 100%;
    align-items: start;
}

/* Card: image LEFT, details flush against the image on the RIGHT */

.star-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    position: static;          /* prevent absolute children from anchoring oddly */
}

.star-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* keep text + buttons left, beside the image */
    gap: 4px;
}

/* Undo old chocolatey form floats / absolute positioning */
.star-card form {
    display: block;
    float: none !important;
    position: static !important;
    margin: 4px 0 0;
    width: auto;
}

.star-card form input[type="submit"] {
    float: none !important;
    position: static !important;
    display: inline-block;
    margin: 0;
}

.star-card a {
    flex: 0 0 auto;
    display: block;
    text-decoration: none;
    color: inherit;
}

.star-card img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Details column sits immediately to the right of the image */
.star-card .star-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.star-card .star-name,
.star-card .star-meta p {
    margin: 0 0 4px;
    width: auto;
    text-align: left;
}
/* Phones: 2 columns of same-sized images */
@media (max-width: 600px) {
    .star-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .star-card img {
        height: 180px;
    }
}


.pic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    width: 100%;
    align-items: start;
}

.pic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;              /* fixed card width */
    margin: 0 auto;
}

.pic-card form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    margin: 0;
}

/* Image acts as submit */
.pic-card input[type="image"],
.pic-card .pic-shot {
    display: block !important;
    width: 150px !important;
    height: 200px !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    background: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: fill;
    float: none !important;
}

.pic-card .pic-shot img,
.pic-card input[type="image"] {
    display: block;
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 0;
}

/* Title underneath also acts as submit */
.pic-card .pic-title {
    display: block;
    width: 240px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: center;
    cursor: pointer;
}

.pic-card .pic-title:hover {
    text-decoration: underline;
}
.pic-card .pic-shot {
    display: block !important;
    width: 240px !important;
    height: 360px !important;
    overflow: visible !important;
    background: none !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 0;
    font-size: 0;
}

.pic-card .pic-shot img {
    display: block !important;
    width: 240px !important;
    height: 360px !important;
    max-width: none !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: cover;
}

.dvd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 16px;
    width: 100%;
    align-items: start;
}

.dvd-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;              /* fixed card width */
    margin: 0 auto;
}

.dvd-card form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;
    margin: 0;
}
/*
.dvd-card .ajax {
    display: block;
    width: 100%;
    white-space: normal;
    line-height: 1.35;
}
*/

.dvd-card .ajax a,
.dvd-card .ajax span,
.dvd-card .ajax p,
.dvd-card .ajax div {
    display: inline !important;
    float: none !important;
    width: auto !important;
    margin: 0;
    padding: 0;
}

/* pipe / space between names */
.dvd-card .ajax a + a::before,
.dvd-card .ajax a::after {
    content: none;
}

.dvd-card .ajax a:not(:last-child)::after {
    content: " | ";
    white-space: pre;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        z-index: 10001;
    }

    .site-leftmenu {
        position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        max-width: 85%;
        z-index: 10000;
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        background: #f5e6d3;          /* solid background so you can see it */
        box-shadow: 4px 0 16px rgba(0,0,0,0.5);

    }
@media (max-width: 768px) {
    .site-leftmenu a,
    .site-leftmenu a:link,
    .site-leftmenu a:visited {
        color: #ffffff;  !important        /* change to whatever you want */
    }

    .site-leftmenu a:hover,
    .site-leftmenu a:focus {
        color: #3C2F2F;
    }
}
    /* This is the rule that actually shows the menu */
    .site-leftmenu.open,
    #leftMenu.open {
        transform: translateX(0) !important;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 9999;
    }

    .menu-overlay.show {
        display: block !important;
    }
}
@media (max-width: 600px) {
    .pic-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
}
/* Very small phones: still 2 columns, a bit tighter */
@media (max-width: 380px) {
    .star-card img {
        height: 150px;
    }
}
}