:root {
    --bg: #e8d088;
    --surface: #e8d088;
    --surface-2: #e8d088;
    --ink: #000000;
    --muted: #000000;
    --line: rgba(0, 0, 0, .12);
    --primary: #000000;
    --primary-2: #000000;
    --accent: #000000;
    --gold: #e8d088;
    --shadow: 0 24px 70px rgba(0, 0, 0, .16);
    --radius: 28px;
    --radius-sm: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 10%, rgba(232, 208, 136, .18), transparent 26rem),
        radial-gradient(circle at 80% 0%, rgba(0, 0, 0, .12), transparent 22rem),
        linear-gradient(180deg, #e8d088 0%, var(--bg) 38%, #e8d088 100%);
    min-height: 100vh;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
}

.top-strip {
    background: #000000;
    color: #e8d088;
    font-size: 14px;
}

.top-strip__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-strip__contact,
.top-strip__social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-strip__social a {
    color: rgba(232, 208, 136, .8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(232, 208, 136, .78);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__logo {
    display: block;
    width: 170px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}


.brand strong {
    display: block;
    line-height: 1.05;
    font-size: 19px;
    letter-spacing: -.03em;
}

.brand span:last-child {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 11px 15px;
    border-radius: 999px;
    color: rgba(0, 0, 0, .76);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: #000000;
    color: #e8d088;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(232, 208, 136, .62);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    display: block;
    flex-shrink: 0;
}

.btn {
    border: 0;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #e8d088;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, .34);
}

.btn-ghost {
    border: 1px solid rgba(0, 0, 0, .18);
    color: var(--ink);
    background: rgba(232, 208, 136, .52);
}

.btn-dark {
    background: var(--accent);
    color: #e8d088;
}

.menu-preview .btn-primary,
.cta-band .btn-primary {
    background: #e8d088;
    color: #000000;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.hero {
    position: relative;
    padding: 88px 0 54px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 26px 0 auto 0;
    width: min(72vw, 850px);
    height: 580px;
    margin-inline: auto;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(232, 208, 136, .24), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center;
}

.eyebrow {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    margin: 0 0 16px;
}

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

h1,
h2,
.section-title {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.05em;
}

h1 {
    font-size: clamp(48px, 8vw, 92px);
    line-height: .92;
    margin-bottom: 24px;
}

.lead {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.75;
    max-width: 660px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 560px;
}

.stat-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(232, 208, 136, .68);
    padding: 18px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .08);
}

.stat-card strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.stat-card span {
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 610px;
}

.hero-card {
    position: absolute;
    border: 1px solid rgba(232, 208, 136, .58);
    background: rgba(232, 208, 136, .74);
    backdrop-filter: blur(20px);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-card--main {
    inset: 0 38px 86px 0;
}

.hero-card--small {
    right: 0;
    bottom: 0;
    width: 58%;
    padding: 18px;
}

.hero-card--small strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.hero-card--small p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 86px 0;
}

.section--tight {
    padding: 58px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-header--center {
    display: block;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-title {
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    margin: 0 0 16px;
}

.section-subtitle {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.story-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 44px;
    align-items: center;
}

.image-shell {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--surface);
}

.image-shell::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(232, 208, 136, .55);
    border-radius: 28px;
    pointer-events: none;
}

.story-panel {
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: clamp(28px, 5vw, 52px);
    background: rgba(232, 208, 136, .68);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .08);
}

.story-panel p {
    color: var(--muted);
    line-height: 1.86;
}

.corporate-content {
    width: min(100%, 900px);
    margin-inline: auto;
}

.corporate-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
    border-radius: var(--radius-sm);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 230px;
    border-radius: 30px;
    padding: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(232, 208, 136, .82), rgba(232, 208, 136, .46));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.feature-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .1);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.menu-preview {
    border-radius: 38px;
    background: #000000;
    color: #e8d088;
    padding: clamp(28px, 5vw, 56px);
    overflow: hidden;
    position: relative;
}

.menu-preview::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 208, 136, .35), transparent 66%);
}

.menu-preview__content {
    position: relative;
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 34px;
    align-items: center;
}

.preview-list {
    display: grid;
    gap: 12px;
}

.preview-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    border-radius: 22px;
    padding: 18px;
    background: rgba(232, 208, 136, .08);
    border: 1px solid rgba(232, 208, 136, .12);
}

.preview-item h3,
.preview-item p {
    margin: 0;
}

.preview-item p {
    color: rgba(232, 208, 136, .66);
    margin-top: 5px;
}

.preview-item strong {
    color: var(--gold);
    font-size: 20px;
}

.page-hero {
    color: #e8d088;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .82)),
        url("../img/banner-01.svg") center / cover;
}

.page-hero__inner {
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: clamp(52px, 8vw, 96px) 0;
}

.page-hero h1 {
    margin: 0;
}

.form-control:focus {
    border-color: rgba(0, 0, 0, .42);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}

.menu-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 24px;
    background: rgba(232, 208, 136, .74);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 66px rgba(0, 0, 0, .13);
}

.menu-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.menu-card__header h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
}

.menu-card__price {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--accent);
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.menu-card__description {
    padding-top: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.menu-card__description h4 {
    margin: 22px 0 10px;
    padding: 9px 12px;
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    color: var(--ink);
    background: rgba(232, 208, 136, .28);
    font-size: 17px;
}

.menu-card__description h4:first-child {
    margin-top: 0;
}

.menu-card__description p {
    margin: 0 0 10px;
}

.menu-card__description ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 24px;
    margin: 0;
    padding-left: 22px;
}

.menu-card__description li+li {
    margin-top: 0;
}

.menu-card__image {
    position: relative;
    aspect-ratio: 1.38 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-2);
    margin-bottom: 18px;
}

.menu-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.menu-card:hover .menu-card__image img {
    transform: scale(1.04);
}

.menu-card__body {
    padding: 0 8px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    margin-inline: -8px;
}

.gallery-grid>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding-inline: 8px;
}

.gallery-grid>.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}

.gallery-card {
    appearance: none;
    border: 0;
    padding: 0;
    border-radius: 26px;
    aspect-ratio: 4 / 3;
    min-height: 260px;
    overflow: hidden;
    background: var(--surface-2);
    position: relative;
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .1);
    width: 100%;
}

.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .gallery-grid>.col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .gallery-grid>.col-lg-4 {
        flex-basis: 33.333333%;
        max-width: 33.333333%;
    }
}


.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.contact-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--surface-2);
}

.contact-map iframe {
    display: block;
    width: 100% !important;
    height: 400px !important;
    border: 0;
}

.contact-card,
.form-card {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(232, 208, 136, .76);
    box-shadow: 0 18px 56px rgba(0, 0, 0, .08);
    padding: clamp(24px, 4vw, 38px);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.contact-list a,
.contact-list span {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
}

.contact-list a {
    transition: color .2s ease;
}

.contact-list a:hover {
    color: var(--ink);
}

.contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
    color: var(--ink) !important;
    background: rgba(232, 208, 136, .72);
}

.contact-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-directions {
    width: max-content;
}

.contact-directions svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-hours {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.contact-hours h3 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}

.hours-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--ink);
    font-weight: 800;
}

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

.form-grid .span-2 {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    border: 1px solid var(--line);
    background: #e8d088;
    color: var(--ink);
    border-radius: 18px;
    min-height: 52px;
    padding: 0 16px;
    outline: none;
}

select.form-control {
    appearance: none;
    cursor: pointer;
    padding-right: 52px;
    background-color: #e8d088;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--accent) 50%),
        linear-gradient(135deg, var(--accent) 50%, transparent 50%),
        linear-gradient(to right, rgba(232, 208, 136, .32), rgba(232, 208, 136, .32));
    background-position:
        calc(100% - 24px) 50%,
        calc(100% - 17px) 50%,
        calc(100% - 48px) 50%;
    background-size: 7px 7px, 7px 7px, 1px 28px;
    background-repeat: no-repeat;
}

select.form-control:required:invalid {
    color: var(--muted);
}

select.form-control option {
    color: var(--ink);
    background: #e8d088;
}

select.form-control option:disabled {
    color: var(--muted);
}

select.form-control.is-native-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.custom-select__button::after {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.custom-select.is-open .custom-select__button::after {
    transform: rotate(225deg) translateY(-2px);
}

.custom-select__button.is-placeholder {
    color: var(--muted);
}

select.form-control.is-native-hidden:invalid+.custom-select .custom-select__button {
    border-color: rgba(0, 0, 0, .46);
}

.custom-select__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 80;
    display: none;
    gap: 4px;
    max-height: 240px;
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(232, 208, 136, .38);
    border-radius: 18px;
    background: rgba(232, 208, 136, .98);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .18);
}

.custom-select.is-open .custom-select__menu {
    display: grid;
}

.custom-select__option {
    appearance: none;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    min-height: 38px;
    padding: 9px 12px;
    text-align: left;
    transition: background .18s ease, color .18s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
    background: rgba(232, 208, 136, .18);
    outline: none;
}

.custom-select__option.is-selected {
    background: linear-gradient(135deg, var(--accent), #000000);
    color: #e8d088;
    font-weight: 800;
}

.custom-select__option:disabled {
    color: var(--muted);
    cursor: default;
    opacity: .72;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
    padding-top: 15px;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 14px 0 0;
}

.reservation-time-note {
    margin: -4px 0 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.cta-band {
    padding: clamp(42px, 6vw, 72px) 0;
    background:
        radial-gradient(circle at 78% 10%, rgba(232, 208, 136, .35), transparent 22rem),
        linear-gradient(135deg, var(--accent), #000000);
    color: #e8d088;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band p {
    color: rgba(232, 208, 136, .72);
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 0;
}

.site-footer {
    margin-top: 0;
    padding: 62px 0 28px;
    background: #000000;
    color: #e8d088;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr .85fr;
    gap: 32px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
    color: rgba(232, 208, 136, .66);
    line-height: 1.72;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #e8d088;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 208, 136, .1);
    margin-top: 42px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(232, 208, 136, .52);
    font-size: 14px;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
    z-index: 25;
}

.float-btn {
    min-width: 58px;
    min-height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 0;
    background: #000000;
    color: #e8d088;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    cursor: pointer;
    font-size: 0;
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.float-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
}

.float-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: none;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 80;
}

.modal.is-open {
    display: flex;
}

.modal-panel {
    width: min(100%, 760px);
    max-height: min(92vh, 820px);
    overflow: auto;
    border-radius: 34px;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid rgba(232, 208, 136, .6);
}

.modal-panel--image {
    width: min(100%, 980px);
}

.modal-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 30px 0;
}

.modal-header h2 {
    margin-bottom: 6px;
    font-size: 36px;
}

.modal-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.modal-close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #e8d088;
    cursor: pointer;
    font-size: 22px;
}

.modal-body {
    padding: 26px 30px 30px;
}

.modal-image-wrap {
    padding: 0 30px 30px;
}

.modal-image-wrap img {
    border-radius: 24px;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    background: #000000;
    color: #e8d088;
    border-radius: 999px;
    padding: 14px 20px;
    box-shadow: var(--shadow);
    z-index: 120;
    transition: transform .25s ease, opacity .25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {

    .hero-grid,
    .story-grid,
    .menu-preview__content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .feature-grid,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .top-strip {
        display: none;
    }

    .header-inner {
        min-height: 76px;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 12px;
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        border-radius: 16px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .story-grid .image-shell {
        display: none;
    }

    .hero-stats,
    .feature-grid,
    .menu-grid,
    .gallery-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .span-2 {
        grid-column: auto;
    }

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

    .section-header,
    .cta-band__inner,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-band__inner {
        padding: 0 5%;
    }

    .page-hero__inner {
        min-height: 160px;
        padding: 36px 0;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-card--main {
        inset: 0 0 72px 0;
    }

    .hero-card--small {
        width: 78%;
    }

}

@media (max-width: 520px) {
    .container {
        width: min(calc(100% - 22px), var(--max));
    }

    .menu-card__header {
        flex-direction: column;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand__logo {
        width: 142px;
        max-height: 65px;
    }

    h1 {
        font-size: 46px;
    }

    .hero-actions .btn,
    .cta-band .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-card--small {
        width: 92%;
    }

    .section {
        padding: 60px 0;
    }

    .modal-header,
    .modal-body,
    .modal-image-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }
}
