:root {
    --pepper: #17100d;
    --espresso: #2a1a15;
    --sign-blue: #0e2f67;
    --sign-blue-dark: #071d43;
    --sign-blue-soft: #eaf0fb;
    --tomato: #c6202d;
    --tomato-dark: #8e111b;
    --chili: #ef533f;
    --mustard: #f3b33d;
    --pickle: #59704a;
    --cream: #fff7ea;
    --linen: #f3e4cf;
    --paper: #fffdf8;
    --muted: #78695f;
    --line: rgba(42, 26, 21, .14);
    --shadow: 0 24px 70px rgba(42, 26, 21, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--espresso);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:
        linear-gradient(90deg, rgba(198, 32, 45, .035) 1px, transparent 1px),
        linear-gradient(180deg, #fffaf2 0%, #fffdf8 40%, #f4e4d1 100%);
    background-size: 44px 44px, auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--pepper);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
    letter-spacing: 0;
}

.site-header,
.admin-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 64px);
    color: white;
    background: rgba(7, 29, 67, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
}

.brand {
    max-width: 320px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 900;
    line-height: .96;
}

.logo-brand {
    width: clamp(150px, 20vw, 240px);
    display: inline-flex;
    align-items: center;
}

.logo-brand img {
    display: block;
    width: 100%;
    height: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 900;
}

nav a.active,
nav a:hover {
    color: white;
    background: rgba(255, 255, 255, .14);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: end;
    gap: clamp(24px, 5vw, 70px);
    padding: clamp(30px, 8vw, 96px) clamp(20px, 5vw, 72px);
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .2), transparent 24rem),
        linear-gradient(90deg, rgba(20, 18, 16, .82), rgba(42, 37, 32, .48) 44%, rgba(20, 18, 16, .1)),
        url("/assets/img/hero-restaurant.jpg") center / cover no-repeat;
}

.hero-copy {
    max-width: 780px;
    color: white;
}

.hero-logo {
    width: clamp(250px, 31vw, 460px);
    display: block;
    margin: 0 0 clamp(18px, 3vw, 32px);
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--mustard);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    color: white;
    max-width: 820px;
    font-size: clamp(54px, 10vw, 124px);
    line-height: .86;
    text-wrap: balance;
}

.lead {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(19px, 2.1vw, 27px);
    line-height: 1.38;
}

.hero-actions,
.print-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 0;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--sign-blue), #164d9b);
    box-shadow: 0 14px 30px rgba(14, 47, 103, .26);
    font: inherit;
    font-weight: 950;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(14, 47, 103, .32);
}

.button.ghost {
    border: 1px solid rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: white;
    background: rgba(23, 16, 13, .68);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.open-label {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--pepper);
    background: var(--mustard);
    font-size: 13px;
    font-weight: 950;
}

.hero-panel dl {
    display: grid;
    gap: 18px;
    margin: 0;
}

.hero-panel div {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-panel dt {
    color: var(--mustard);
    font-weight: 950;
    text-transform: uppercase;
}

.hero-panel dd {
    margin: 5px 0 0;
    line-height: 1.45;
}

.home-band {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: center;
    padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 72px);
    color: white;
    background: var(--sign-blue);
}

.map-section {
    display: grid;
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 58px);
    align-items: center;
    padding: clamp(40px, 7vw, 84px) clamp(20px, 5vw, 72px);
    background: var(--paper);
}

.map-section h2 {
    margin-bottom: 16px;
    color: var(--sign-blue-dark);
    font-size: clamp(38px, 6vw, 78px);
    line-height: .95;
}

.map-section p:not(.eyebrow) {
    max-width: 34rem;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.map-frame {
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(14, 47, 103, .18);
    border-radius: 8px;
    background: var(--linen);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.home-band h2 {
    color: white;
    font-size: clamp(34px, 5vw, 70px);
    line-height: .95;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.feature-list a {
    min-height: 94px;
    display: flex;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
}

.page-shell,
.admin-shell,
.form-shell {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
    padding: 44px 0 72px;
}

.page-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
    margin-bottom: 20px;
}

.page-title h1 {
    font-size: clamp(54px, 8vw, 104px);
    line-height: .86;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: white;
    background: var(--pepper);
    font-weight: 950;
}

.category-nav {
    position: sticky;
    top: 74px;
    z-index: 30;
    margin-bottom: 16px;
    background: linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(255, 250, 242, .86));
}

.category-nav summary {
    display: none;
}

.category-tabs {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 12px 0 18px;
}

.category-tabs a {
    flex: 0 0 auto;
    color: var(--espresso);
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(42, 26, 21, .07);
}

.category-tabs a:hover {
    color: white;
    background: var(--sign-blue);
}

.menu-section {
    scroll-margin-top: 150px;
    margin: 40px 0 58px;
}

.menu-section h2,
.admin-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .95;
}

.menu-section h2::after,
.admin-section h2::after {
    content: "";
    flex: 1;
    min-width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--sign-blue), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.menu-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 136px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 34px rgba(42, 26, 21, .08);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    cursor: pointer;
}

.menu-card:hover,
.menu-card:focus {
    transform: translateY(-2px);
    border-color: rgba(14, 47, 103, .28);
    box-shadow: 0 22px 46px rgba(42, 26, 21, .14);
}

.menu-card:focus {
    outline: 3px solid rgba(243, 179, 61, .5);
    outline-offset: 3px;
}

.menu-thumb {
    min-height: 100%;
    background: var(--linen);
}

.menu-thumb img,
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 136px;
    object-fit: cover;
}

.image-placeholder {
    display: grid;
    place-items: center;
    padding: 12px;
    color: var(--sign-blue-dark);
    background:
        linear-gradient(135deg, rgba(243, 179, 61, .42), rgba(255, 255, 255, .84)),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(14, 47, 103, .08) 12px 24px);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
}

.menu-card-body {
    display: grid;
    align-content: center;
    padding: 18px;
}

.menu-card-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
}

.menu-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 950;
}

.menu-card strong {
    color: var(--sign-blue);
    font-size: 21px;
    font-weight: 950;
    white-space: nowrap;
}

.menu-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.42;
}

.addons {
    color: var(--pickle) !important;
    font-weight: 850;
}

.admin-page {
    background:
        radial-gradient(circle at top right, rgba(14, 47, 103, .12), transparent 32rem),
        var(--paper);
}

.admin-header p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .72);
}

.admin-section {
    margin-bottom: 34px;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--sign-blue-dark);
    background: var(--sign-blue-soft);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-table span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 950;
    text-align: right;
}

.row-actions a,
.row-actions button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(14, 47, 103, .16);
    border-radius: 999px;
    background: white;
    color: var(--sign-blue);
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.row-actions button {
    color: #7d1119;
    background: #fff1ee;
}

.row-actions form {
    margin: 0;
}

body.modal-open {
    overflow: hidden;
}

.menu-modal[hidden] {
    display: none;
}

.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: clamp(18px, 3vw, 44px);
}

.menu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 12, .72);
    backdrop-filter: blur(8px);
}

.menu-modal-card {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 72px));
    max-height: min(820px, calc(100vh - 72px));
    display: grid;
    grid-template-columns: minmax(360px, 52%) minmax(420px, 48%);
    overflow: hidden;
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 32px 100px rgba(0, 0, 0, .44);
}

.menu-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: rgba(23, 16, 13, .74);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.menu-modal-image {
    min-height: 480px;
    background: var(--linen);
}

.menu-modal-image img,
.menu-modal-image .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.image-placeholder.large {
    font-size: clamp(28px, 5vw, 52px);
}

.menu-modal-copy {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: clamp(34px, 4.2vw, 64px) clamp(40px, 4.8vw, 72px);
    min-width: 0;
    overflow-y: auto;
}

.menu-modal-heading {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.menu-modal-heading h2 {
    max-width: 100%;
    font-size: clamp(34px, 3.8vw, 58px);
    line-height: .98;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

.menu-modal-heading strong {
    color: var(--sign-blue);
    font-size: 28px;
    font-weight: 950;
}

.menu-modal-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 46rem;
}

.menu-modal-addons {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.menu-modal-addons h3 {
    margin-bottom: 9px;
    color: var(--sign-blue);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

@media (min-width: 901px) and (max-width: 1250px) {
    .menu-modal-card {
        grid-template-columns: minmax(320px, 45%) minmax(460px, 55%);
        width: min(1080px, calc(100vw - 52px));
    }

    .menu-modal-copy {
        padding: 34px 48px;
    }

    .menu-modal-heading h2 {
        font-size: clamp(34px, 3.3vw, 50px);
    }
}

@media (min-width: 1251px) {
    .menu-modal-heading h2 {
        font-size: clamp(38px, 3.1vw, 58px);
    }
}

.form-shell {
    width: min(780px, calc(100% - 30px));
}

.form-shell.wide {
    width: min(1040px, calc(100% - 30px));
}

.form-shell h1,
.login-panel h1 {
    font-size: clamp(36px, 6vw, 58px);
}

.menu-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.homepage-form {
    gap: 26px;
}

.homepage-form section {
    display: grid;
    gap: 16px;
}

.homepage-form h2 {
    margin: 0;
    color: var(--sign-blue-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.category-admin-panel {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.category-admin-panel h2 {
    margin: 0 0 16px;
    color: var(--sign-blue-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.category-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px auto;
    gap: 14px;
    align-items: end;
}

.category-form label,
.category-admin-row label {
    display: grid;
    gap: 7px;
    font-weight: 950;
}

.category-form input,
.category-admin-row input {
    width: 100%;
    min-height: 45px;
    padding: 11px;
    border: 1px solid rgba(42, 26, 21, .18);
    border-radius: 6px;
    background: #fffdf9;
    color: var(--espresso);
    font: inherit;
}

.category-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.category-admin-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px 90px;
    gap: 12px;
    align-items: end;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
}

.category-admin-row span {
    padding-bottom: 11px;
    color: var(--muted);
    font-weight: 850;
    text-align: right;
}

.danger-panel {
    border-color: rgba(198, 32, 45, .22);
}

.danger-panel h2 {
    color: #7d1119;
}

.delete-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.delete-category-list form {
    margin: 0;
}

.delete-category-list button {
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid rgba(198, 32, 45, .2);
    border-radius: 999px;
    color: #7d1119;
    background: #fff1ee;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.menu-form label {
    display: grid;
    gap: 7px;
    font-weight: 950;
}

.menu-form input,
.menu-form textarea,
.menu-form select {
    width: 100%;
    min-height: 45px;
    padding: 11px;
    border: 1px solid rgba(42, 26, 21, .18);
    border-radius: 6px;
    background: #fffdf9;
    color: var(--espresso);
    font: inherit;
}

.menu-form input:focus,
.menu-form textarea:focus,
.menu-form select:focus {
    outline: 3px solid rgba(243, 179, 61, .35);
    border-color: var(--sign-blue);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.check {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

.check input {
    width: 18px;
    min-height: 18px;
}

.alert {
    padding: 13px 14px;
    border: 1px solid rgba(14, 47, 103, .22);
    border-radius: 6px;
    color: var(--sign-blue-dark);
    background: var(--sign-blue-soft);
    font-weight: 850;
}

.success {
    padding: 13px 14px;
    border: 1px solid rgba(89, 112, 74, .28);
    border-radius: 6px;
    color: #314625;
    background: #edf6e8;
    font-weight: 850;
}

.admin-login,
.setup-error {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(23, 16, 13, .9), rgba(7, 29, 67, .76)),
        url("/assets/img/hero-restaurant.jpg") center / cover no-repeat;
}

.login-panel {
    width: min(570px, 100%);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 253, 248, .95);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.print-actions {
    position: sticky;
    top: 0;
    z-index: 40;
    justify-content: center;
    padding: 12px;
    margin: 0;
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.brochure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 11in;
    min-height: 8.5in;
    margin: 18px auto;
    padding: .28in;
    background: white;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
}

.brochure-cover,
.brochure-section {
    break-inside: avoid;
    border: 2px solid #111;
    padding: 12px;
}

.brochure-cover {
    display: grid;
    align-content: center;
    text-align: center;
}

.brochure-cover h1 {
    font-size: 58px;
}

.brochure-cover h2 {
    margin-top: 4px;
    font-size: 28px;
}

.brochure .phone {
    font-size: 25px;
    font-weight: 800;
}

.brochure-section h2 {
    margin: 0 0 8px;
    border-bottom: 2px solid #111;
    font-size: 22px;
}

.brochure-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 2px 0;
    font-size: 15px;
}

.brochure-item strong {
    white-space: nowrap;
}

.brochure-section p {
    margin: 0 0 4px;
    font-size: 12px;
    font-style: italic;
}

@media (max-width: 900px) {
    .hero,
    .home-band,
    .map-section,
    .page-title {
        grid-template-columns: 1fr;
    }

    .hero {
        align-items: end;
        min-height: auto;
        padding-top: 74px;
    }

    .hero-panel {
        max-width: 560px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-modal-card {
        grid-template-columns: 1fr;
        width: min(760px, calc(100vw - 32px));
    }

    .menu-modal-image,
    .menu-modal-image img,
    .menu-modal-image .image-placeholder {
        min-height: 300px;
        height: 300px;
    }

    .page-title {
        align-items: start;
    }
}

@media (max-width: 680px) {
    body {
        background-size: 30px 30px, auto;
    }

    .site-header,
    .admin-header {
        align-items: stretch;
        gap: 12px;
        padding: 12px 14px;
    }

    .brand {
        max-width: none;
        font-size: 25px;
    }

    .logo-brand {
        width: 164px;
    }

    nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    nav a {
        justify-content: center;
        min-height: 42px;
        padding: 8px 10px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .06);
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        padding: 28px 20px 26px;
        gap: 18px;
        background:
            linear-gradient(180deg, rgba(8, 21, 38, .62), rgba(8, 21, 38, .24) 42%, rgba(20, 18, 16, .84)),
            url("/assets/img/hero-restaurant.jpg") 42% top / cover no-repeat;
    }

    .hero h1 {
        max-width: 9ch;
        font-size: clamp(42px, 13vw, 62px);
        line-height: .9;
    }

    .hero-logo {
        width: min(300px, 82vw);
        margin-bottom: 28px;
    }

    .lead {
        max-width: 31rem;
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.42;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .button,
    button.button {
        width: 100%;
        min-height: 50px;
    }

    .hero-actions .button,
    .hero-actions .button.ghost {
        color: white;
        border: 1px solid rgba(255, 255, 255, .28);
        background: #1f68d8;
        box-shadow: 0 12px 28px rgba(5, 20, 48, .32);
    }

    .hero-actions .button.ghost {
        background: rgba(8, 40, 92, .92);
    }

    .hero-panel {
        padding: 18px;
        background: rgba(23, 16, 13, .76);
    }

    .hero-panel dl {
        gap: 12px;
    }

    .hero-panel div {
        padding-top: 12px;
    }

    .home-band {
        padding: 34px 16px;
    }

    .map-section {
        padding: 34px 16px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 340px;
    }

    .home-band h2 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-list a {
        min-height: 72px;
        font-size: 25px;
    }

    .page-shell,
    .admin-shell,
    .form-shell {
        width: min(100% - 24px, 1180px);
        padding: 28px 0 54px;
    }

    .page-title {
        gap: 14px;
    }

    .page-title h1 {
        font-size: clamp(52px, 18vw, 82px);
    }

    .phone-link {
        width: 100%;
        justify-content: center;
    }

    .category-nav {
        top: 121px;
        margin-left: -12px;
        margin-right: -12px;
        padding: 0 12px 12px;
        border-bottom: 1px solid rgba(14, 47, 103, .12);
        box-shadow: 0 12px 24px rgba(42, 26, 21, .08);
    }

    .category-nav summary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        border: 1px solid rgba(14, 47, 103, .16);
        border-radius: 999px;
        color: white;
        background: var(--sign-blue);
        font-weight: 950;
        cursor: pointer;
        list-style: none;
    }

    .category-nav summary::-webkit-details-marker {
        display: none;
    }

    .category-nav summary::after {
        content: "+";
        font-size: 24px;
        line-height: 1;
    }

    .category-nav[open] summary::after {
        content: "-";
    }

    .category-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: 58vh;
        overflow-y: auto;
        padding: 10px 0 0;
        scrollbar-width: thin;
    }

    .category-tabs::-webkit-scrollbar {
        width: 8px;
    }

    .category-tabs a {
        width: 100%;
        justify-content: center;
        min-height: 40px;
        font-size: 13px;
    }

    .menu-section {
        scroll-margin-top: 188px;
        margin: 28px 0 42px;
    }

    .menu-section h2,
    .admin-section h2 {
        font-size: clamp(34px, 12vw, 50px);
    }

    .menu-section h2::after,
    .admin-section h2::after {
        min-width: 24px;
    }

    .menu-card {
        grid-template-columns: 76px minmax(0, 1fr);
        min-height: 116px;
    }

    .menu-thumb img,
    .image-placeholder {
        min-height: 116px;
    }

    .menu-card-body {
        padding: 13px;
    }

    .menu-card-title {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .menu-card h3 {
        font-size: 17px;
    }

    .menu-card strong {
        font-size: 18px;
    }

    .menu-card p {
        margin-top: 6px;
        font-size: 14px;
    }

    .image-placeholder {
        padding: 8px;
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-form,
    .category-admin-row {
        grid-template-columns: 1fr;
    }

    .category-admin-row span {
        padding-bottom: 0;
        text-align: left;
    }

    .admin-header nav {
        grid-template-columns: 1fr;
    }

    .admin-header .button {
        width: 100%;
    }

    .menu-modal {
        padding: 14px;
    }

    .menu-modal-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 28px);
        width: min(720px, calc(100vw - 28px));
    }

    .menu-modal-image,
    .menu-modal-image img,
    .menu-modal-image .image-placeholder {
        min-height: 260px;
        height: 260px;
    }

    .menu-modal-copy {
        align-content: start;
        padding: 22px;
    }

    .menu-modal-heading h2 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .menu-modal-copy p {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .site-header nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-card {
        grid-template-columns: 1fr;
    }

    .menu-thumb img,
    .image-placeholder {
        height: 128px;
        min-height: 128px;
    }

    .menu-card-title {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .category-tabs {
        top: auto;
    }
}

@media print {
    @page {
        size: landscape;
        margin: .15in;
    }

    body {
        background: white;
    }

    .print-actions {
        display: none;
    }

    .brochure {
        width: auto;
        min-height: auto;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }
}
