:root {
    --ink: #2a1711;
    --black: #150d0b;
    --red: #c71927;
    --red-dark: #870f18;
    --red-deep: #650b13;
    --gold: #f3c45f;
    --gold-light: #ffe094;
    --gold-dark: #9c6a24;
    --green: #244b38;
    --ivory: #fff4df;
    --paper: #fffaf0;
    --soft: #f8e2c2;
    --muted: #775d48;
    --line: rgba(101, 11, 19, 0.18);
    --white-line: rgba(255, 244, 223, 0.34);
    --shadow: 0 24px 70px rgba(101, 11, 19, 0.18);
    --serif: "Noto Serif SC", Georgia, serif;
    --display: "Cinzel", Georgia, serif;
    --script: "Berkshire Swash", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(199, 25, 39, 0.08) 0 62%, transparent 64%),
        var(--ivory);
    background-size: 54px 30px;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.06;
}

h1 {
    margin-bottom: 4px;
    color: var(--gold);
    font-family: var(--script);
    font-size: 6rem;
    text-shadow:
        0 2px 0 #fff1bf,
        0 5px 0 var(--gold-dark),
        0 12px 22px rgba(21, 13, 11, 0.42);
}

h2 {
    max-width: 940px;
    margin-bottom: 20px;
    font-size: 3.2rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.page {
    min-height: 100vh;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 72px);
    color: var(--ivory);
    background:
        linear-gradient(90deg, rgba(101, 11, 19, 0.92), rgba(135, 15, 24, 0.86)),
        var(--red-dark);
    transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
    min-height: 62px;
    background: rgba(101, 11, 19, 0.97);
    box-shadow: 0 12px 36px rgba(21, 13, 11, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--script);
    font-size: 1.24rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    text-shadow: 0 2px 0 rgba(101, 11, 19, 0.45);
}

.brand small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 247, 232, 0.72);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    border: 1px solid rgba(255, 247, 232, 0.55);
    border-radius: 999px;
    background: var(--ivory);
}

.seal-text {
    color: var(--red-deep);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-nav a {
    opacity: 0.84;
    transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--ivory);
    background: transparent;
    border: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 8px auto;
    background: currentColor;
}

main section[id] {
    scroll-margin-top: 88px;
}

.hero {
    position: relative;
    min-height: 94vh;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 134px clamp(20px, 6vw, 88px) 108px;
    color: var(--ivory);
    background:
        linear-gradient(180deg, var(--red), var(--red-dark));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(101, 11, 19, 0.82), rgba(199, 25, 39, 0.66), rgba(101, 11, 19, 0.84));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.88;
    background:
        radial-gradient(ellipse 48px 24px at 24px 100%, transparent 0 54%, rgba(255, 244, 223, 0.12) 56% 62%, transparent 64%),
        radial-gradient(ellipse 48px 24px at 0 100%, transparent 0 54%, rgba(255, 244, 223, 0.09) 56% 62%, transparent 64%);
    background-size: 58px 32px;
}

.hero-frame {
    position: absolute;
    inset: 22px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 244, 223, 0.26);
    background:
        linear-gradient(var(--ivory), var(--ivory)) left top / 86px 2px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) left top / 2px 86px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) right top / 86px 2px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) right top / 2px 86px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) left bottom / 86px 2px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) left bottom / 2px 86px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) right bottom / 86px 2px no-repeat,
        linear-gradient(var(--ivory), var(--ivory)) right bottom / 2px 86px no-repeat;
}

.hero-logo-badge {
    position: absolute;
    z-index: 3;
    width: 178px;
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid rgba(255, 244, 223, 0.78);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 250, 240, 0.98), rgba(255, 244, 223, 0.92) 68%, rgba(243, 196, 95, 0.86));
    box-shadow: 0 22px 50px rgba(21, 13, 11, 0.24);
}

.seal-figure {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border: 2px solid rgba(101, 11, 19, 0.18);
    border-radius: inherit;
    color: var(--red-deep);
    font-family: var(--serif);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 0 rgba(255, 244, 223, 0.86);
}

.hero-logo-left {
    bottom: 122px;
    left: clamp(24px, 6vw, 82px);
}

.hero-logo-right {
    right: clamp(24px, 6vw, 82px);
    bottom: 122px;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-menu-label {
    margin: 0 0 10px;
    color: var(--ivory);
    font-family: var(--display);
    font-size: 6.4rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.92;
    text-shadow: 0 6px 0 rgba(101, 11, 19, 0.34);
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero .eyebrow,
.menu-band .eyebrow,
.location-section .eyebrow,
.chat-section .eyebrow {
    color: var(--gold);
}

.hero-subtitle {
    margin-bottom: 0;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.72rem;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 3px 0 rgba(101, 11, 19, 0.38);
}

.hero-copy {
    max-width: 610px;
    margin: 18px auto 0;
    color: rgba(255, 247, 232, 0.86);
    font-size: 1.13rem;
}

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

.hero-actions {
    justify-content: center;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
    line-height: 1;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 16, 13, 0.18);
}

.button-primary {
    color: var(--red-deep);
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.button-secondary {
    color: var(--ivory);
    background: rgba(255, 247, 232, 0.09);
    border: 1px solid rgba(255, 247, 232, 0.56);
}

.button-dark {
    color: var(--ivory);
    background: var(--black);
}

.hero-strip {
    position: absolute;
    right: clamp(20px, 6vw, 88px);
    bottom: 32px;
    left: clamp(20px, 6vw, 88px);
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid var(--white-line);
    border-radius: 8px;
    background: rgba(101, 11, 19, 0.56);
    box-shadow: 0 18px 42px rgba(21, 13, 11, 0.18);
    text-align: center;
}

.hero-strip span {
    color: rgba(255, 244, 223, 0.9);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
}

.section {
    padding: 92px clamp(20px, 6vw, 88px);
}

.intro-section {
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 244, 223, 0.92)),
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(199, 25, 39, 0.1) 0 62%, transparent 64%);
    background-size: auto, 54px 30px;
}

.intro-copy {
    max-width: 900px;
    margin-bottom: 36px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.intro-grid article,
.dish-card,
.contact-grid a,
.service-notes article,
.chat-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdf8, var(--ivory));
    box-shadow: 0 18px 44px rgba(101, 11, 19, 0.08);
}

.intro-grid article {
    position: relative;
    min-height: 250px;
    padding: 28px;
}

.intro-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.feature-icon,
.service-notes span {
    display: block;
    margin-bottom: 22px;
    color: var(--red);
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.intro-grid p,
.section-heading > p,
.dish-copy > p,
.menu-band p,
.order-copy p,
.location-copy p,
.chat-section p,
.service-notes p {
    color: var(--muted);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: 32px;
    margin-bottom: 42px;
}

.section-heading h2,
.section-heading p:last-child {
    margin-bottom: 0;
}

.section-heading.compact {
    display: block;
    max-width: 850px;
}

.dishes-section {
    background:
        linear-gradient(180deg, rgba(248, 226, 194, 0.96), rgba(255, 244, 223, 0.95)),
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(135, 15, 24, 0.09) 0 62%, transparent 64%);
    background-size: auto, 54px 30px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dish-card {
    display: grid;
    grid-template-rows: 220px 1fr;
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 25, 39, 0.42);
    box-shadow: 0 26px 76px rgba(101, 11, 19, 0.18);
}

.dish-visual {
    position: relative;
    min-height: 220px;
    border-bottom: 4px solid var(--gold);
    background-image:
        linear-gradient(180deg, rgba(21, 13, 11, 0.02), rgba(101, 11, 19, 0.52)),
        var(--dish-image);
    background-position: center;
    background-size: cover;
}

.dish-ref,
.dish-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--red-deep);
    background: rgba(255, 244, 223, 0.94);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.dish-ref {
    bottom: 16px;
    left: 16px;
}

.dish-badge {
    top: 16px;
    right: 16px;
}

.dish-copy {
    display: grid;
    padding: 24px;
}

.dish-category {
    margin-bottom: 10px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dish-copy ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.dish-copy li {
    padding-left: 12px;
    border-left: 3px solid rgba(199, 25, 39, 0.34);
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.dish-footer strong {
    color: var(--red-deep);
    font-size: 0.94rem;
}

.dish-footer a {
    color: var(--red);
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.menu-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 76px clamp(20px, 6vw, 88px);
    color: var(--ivory);
    background:
        linear-gradient(90deg, rgba(101, 11, 19, 0.93), rgba(199, 25, 39, 0.92)),
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(255, 244, 223, 0.13) 0 62%, transparent 64%),
        var(--red-dark);
    background-size: auto, 54px 30px, auto;
    border-top: 1px solid rgba(255, 244, 223, 0.22);
    border-bottom: 1px solid rgba(255, 244, 223, 0.22);
}

.menu-band h2 {
    margin-bottom: 12px;
    font-size: 3rem;
}

.menu-band p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 247, 232, 0.82);
}

.order-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    overflow: hidden;
    padding: 76px clamp(20px, 6vw, 88px) 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, #fffdf8, var(--ivory));
}

.order-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.88;
    background:
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(199, 25, 39, 0.08) 0 62%, transparent 64%);
    background-size: 54px 30px;
}

.order-copy,
.order-visual {
    position: relative;
    z-index: 1;
}

.order-copy {
    max-width: 760px;
    padding-bottom: 76px;
}

.order-copy p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.order-visual {
    align-self: end;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 430px;
}

.order-visual::before {
    content: "";
    position: absolute;
    bottom: 44px;
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 250, 240, 0.96), rgba(255, 244, 223, 0.78) 54%, rgba(199, 25, 39, 0.16) 55% 70%, transparent 72%);
    box-shadow: 0 22px 70px rgba(101, 11, 19, 0.18);
}

.mascot-seal {
    width: min(86%, 340px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    margin-bottom: 44px;
    border: 8px double rgba(101, 11, 19, 0.28);
    border-radius: 999px;
    color: var(--red-deep);
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 250, 240, 0.98), rgba(255, 244, 223, 0.88) 58%, rgba(243, 196, 95, 0.58));
    box-shadow: 0 24px 50px rgba(101, 11, 19, 0.16);
    filter: drop-shadow(0 24px 34px rgba(101, 11, 19, 0.16));
}

.mascot-seal span {
    font-family: var(--serif);
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
}

.mascot-seal strong {
    color: var(--red);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-section {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.contact-grid a {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    font-size: 1.3rem;
    font-weight: 900;
    transition: border-color 180ms ease, transform 180ms ease;
}

.contact-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 25, 39, 0.38);
}

.contact-grid span {
    color: var(--red);
}

.service-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.service-notes article {
    min-height: 170px;
    padding: 24px;
}

.service-notes p {
    margin-bottom: 0;
}

.location-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 46px;
    padding: 92px clamp(20px, 6vw, 88px);
    color: var(--ivory);
    background:
        linear-gradient(135deg, rgba(101, 11, 19, 0.94), rgba(21, 13, 11, 0.96)),
        radial-gradient(ellipse 46px 22px at 23px 100%, rgba(255, 244, 223, 0.1) 0 62%, transparent 64%);
    background-size: auto, 54px 30px;
}

.location-copy p {
    max-width: 680px;
    color: rgba(255, 247, 232, 0.78);
}

.location-panel {
    min-height: 340px;
    padding: 34px;
    color: var(--red-deep);
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 244, 223, 0.92)),
        var(--ivory);
    border: 1px solid rgba(255, 247, 232, 0.22);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(21, 13, 11, 0.24);
    text-align: center;
}

.location-seal {
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border: 2px solid rgba(101, 11, 19, 0.18);
    border-radius: 999px;
    color: var(--red-deep);
    background: rgba(255, 244, 223, 0.72);
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.location-panel > span:not(.location-seal) {
    display: block;
    margin-bottom: 70px;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.location-panel strong {
    display: block;
    font-family: var(--serif);
    font-size: 3.4rem;
    letter-spacing: 0;
    line-height: 1;
}

.location-panel p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.2rem;
}

.chat-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 28px;
    padding: 76px clamp(20px, 6vw, 88px);
    color: var(--ivory);
    background:
        linear-gradient(90deg, rgba(101, 11, 19, 0.95), rgba(135, 15, 24, 0.92)),
        var(--red-dark);
}

.chat-section p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 247, 232, 0.82);
}

.chat-card {
    padding: 28px;
    color: var(--ink);
}

.chat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--red-deep);
    font-size: 1.1rem;
}

.chat-card span {
    color: var(--muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(20px, 6vw, 88px);
    color: var(--ivory);
    background: var(--red-deep);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
    color: var(--ivory);
    font-weight: 900;
}

.site-footer a {
    color: var(--gold);
    font-weight: 900;
}

@media (max-width: 1180px) {
    .dishes-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    h1 {
        font-size: 4.7rem;
    }

    h2 {
        font-size: 2.6rem;
    }

    .hero-menu-label {
        font-size: 5.1rem;
    }

    .hero-logo-badge {
        display: none;
    }

    .section-heading,
    .location-section,
    .menu-band,
    .order-section,
    .chat-section {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .contact-grid,
    .service-notes,
    .dishes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-band .button {
        justify-self: start;
    }

    .order-section {
        padding-top: 68px;
    }

    .order-copy {
        padding-bottom: 0;
    }

    .order-visual {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 66px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        gap: 0;
        padding: 12px 20px 18px;
        background: rgba(17, 16, 13, 0.98);
        border-top: 1px solid var(--white-line);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 12px 0;
    }

    .hero {
        min-height: 86vh;
        padding-top: 120px;
        padding-bottom: 220px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(101, 11, 19, 0.8), rgba(135, 15, 24, 0.92));
    }

    .hero-frame {
        inset: 12px;
    }

    h1 {
        font-size: 3.45rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-menu-label {
        font-size: 3.85rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-strip {
        grid-template-columns: 1fr;
        padding: 14px 16px;
    }

    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .intro-grid,
    .dishes-grid,
    .contact-grid,
    .service-notes {
        grid-template-columns: 1fr;
    }

    .intro-grid article {
        min-height: 0;
    }

    .dish-card {
        grid-template-rows: 210px 1fr;
    }

    .dish-visual {
        min-height: 210px;
    }

    .menu-band {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .menu-band h2 {
        font-size: 2.25rem;
    }

    .order-section {
        padding-top: 64px;
    }

    .order-visual {
        min-height: 310px;
    }

    .order-visual::before {
        width: 290px;
        height: 290px;
    }

    .mascot-seal {
        width: min(76vw, 300px);
    }

    .contact-grid a {
        min-height: 88px;
        font-size: 1.08rem;
    }

    .location-section,
    .chat-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .location-panel {
        min-height: 280px;
    }

    .location-panel strong {
        font-size: 2.6rem;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .hero-actions,
    .location-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-menu-label {
        font-size: 3.2rem;
    }
}
