:root {
    --black: #050505;
    --black-2: #0c0c0c;
    --black-3: #151515;
    --yellow: #ffc400;
    --yellow-2: #ffdd55;
    --orange: #f26a16;
    --orange-2: #ff8a28;
    --red: #a71912;
    --white: #ffffff;
    --cream: #fff4dc;
    --text: #f8f3ea;
    --muted: #cfc3b3;
    --border: rgba(255, 196, 0, 0.24);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(242, 106, 22, 0.34), transparent 25%),
        radial-gradient(circle at 88% 14%, rgba(255, 196, 0, 0.17), transparent 24%),
        radial-gradient(circle at 60% 100%, rgba(167, 25, 18, 0.28), transparent 28%),
        linear-gradient(180deg, #181007 0%, #050505 36%, #070402 100%);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035) 0 2px,
            transparent 2px 14px
        );
    opacity: 0.34;
}

body::after {
    content: "";
    position: fixed;
    left: -8%;
    right: -8%;
    bottom: -100px;
    height: 300px;
    z-index: -1;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            76deg,
            rgba(255, 196, 0, 0.05) 0 12px,
            rgba(242, 106, 22, 0.26) 12px 25px,
            rgba(167, 25, 18, 0.32) 25px 35px,
            transparent 35px 52px
        );
    filter: blur(1px);
    opacity: 0.75;
}

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

button,
input,
textarea {
    font: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 196, 0, 0.2);
}

.nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    overflow: hidden;
    border: 2px solid rgba(255, 196, 0, 0.75);
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    flex: 0 0 auto;
    box-shadow: 0 10px 26px rgba(242, 106, 22, 0.25);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 1.5rem;
    font-weight: 1000;
}

.brand-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-name {
    font-size: 1.18rem;
    font-weight: 1000;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.brand-subtitle {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-weight: 900;
    font-size: 0.9rem;
}

.nav-links a,
.nav-modal-btn {
    color: var(--muted);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 900;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-modal-btn:hover {
    color: var(--yellow);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 196, 0, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(255, 196, 0, 0.35);
    border-radius: 14px;
    padding: 10px 13px;
    font-weight: 1000;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 1000;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #130b03 !important;
    box-shadow: 0 14px 28px rgba(242, 106, 22, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd84a, #ff7922);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(255, 196, 0, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 196, 0, 0.11);
}

.hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 20px 12px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.logo-showcase {
    min-height: 500px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 196, 0, 0.3);
    background:
        radial-gradient(circle at 50% 36%, rgba(242, 106, 22, 0.38), transparent 32%),
        linear-gradient(145deg, #28130a, #050505 62%);
    box-shadow: var(--shadow);
    position: relative;
    display: grid;
    place-items: center;
    padding: 24px;
}

.logo-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 196, 0, 0.12), transparent 20%),
        radial-gradient(circle at 82% 82%, rgba(167, 25, 18, 0.36), transparent 24%);
    opacity: 0.82;
}

.main-logo-img {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    max-height: 440px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
    border: 3px solid rgba(255, 196, 0, 0.45);
}

.logo-placeholder {
    position: relative;
    z-index: 2;
    color: var(--yellow);
    font-size: 2rem;
    font-weight: 1000;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.13);
    border: 1px solid rgba(255, 196, 0, 0.25);
    color: var(--yellow);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: 0.88;
    letter-spacing: -0.08em;
}

.hero h1 span {
    display: block;
    color: var(--yellow);
    text-shadow: 0 10px 38px rgba(255, 196, 0, 0.22);
}

.hero p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 0 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 196, 0, 0.16);
    border-radius: 18px;
    padding: 16px;
}

.quick-card strong {
    color: var(--yellow);
    display: block;
    font-size: 1.06rem;
    margin-bottom: 5px;
}

.quick-card span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.setup-notice {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.26);
    color: var(--yellow);
    font-weight: 900;
    line-height: 1.45;
}

.section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px;
}

.menu-section {
    padding-top: 18px;
}

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

.section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.25);
    color: var(--yellow);
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 1000;
    white-space: nowrap;
}

.pill-link {
    cursor: pointer;
}

.pill-link:hover {
    background: rgba(255, 196, 0, 0.2);
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 20px;
    align-items: start;
}

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

.menu-card {
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    position: relative;
}

.menu-card.wide {
    grid-column: 1 / -1;
}

.menu-card-header {
    background: linear-gradient(135deg, var(--yellow), #ffb000);
    color: #070707;
    padding: 15px 18px;
    min-height: 78px;
    position: relative;
    z-index: 3;
}

.menu-card-title {
    font-size: 1.5rem;
    font-weight: 1000;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.menu-card-subtitle {
    color: #1b1305;
    font-weight: 900;
    font-size: 0.88rem;
    margin-top: 6px;
    line-height: 1.2;
}

.menu-photo-area {
    height: 185px;
    width: 100%;
    background:
        radial-gradient(circle at center, rgba(255, 196, 0, 0.18), transparent 55%),
        linear-gradient(135deg, #160b05, #050505);
    display: grid;
    place-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 196, 0, 0.16);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.menu-card.wide .menu-photo-area {
    height: 205px;
}

.menu-photo-area img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.menu-card-body {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.98), rgba(10, 10, 10, 0.98));
    padding: 18px;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.menu-item:first-child {
    padding-top: 0;
}

.menu-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.menu-item-info {
    min-width: 0;
}

.menu-item-name {
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--text);
    font-weight: 900;
}

.menu-item-desc {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.35;
    margin-top: 3px;
    font-weight: 600;
}

.price {
    color: var(--yellow);
    font-size: 1.08rem;
    font-weight: 1000;
    white-space: nowrap;
}

.clover-panel {
    position: sticky;
    top: 92px;
    background: linear-gradient(180deg, rgba(255, 196, 0, 0.11), rgba(255, 255, 255, 0.035)), #0b0b0b;
    border: 1px solid rgba(255, 196, 0, 0.26);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.clover-header {
    padding: 18px;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.clover-header h3 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.clover-header p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
    font-size: 0.9rem;
}

.clover-body {
    padding: 18px;
}

.clover-steps {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.clover-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
}

.clover-step span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.15);
    border: 1px solid rgba(255, 196, 0, 0.28);
    color: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 1000;
}

.clover-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.clover-main-btn {
    width: 100%;
}

.mock-note {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 10px 0 0;
}

.warning-note {
    color: var(--yellow);
}

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

.gallery-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 196, 0, 0.18);
    border-radius: 22px;
    height: 170px;
    padding: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.info-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 196, 0, 0.18);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(242, 106, 22, 0.26), rgba(255, 196, 0, 0.08)), #0d0d0d;
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
    color: var(--yellow);
}

.info-card p,
.info-card li {
    color: var(--muted);
    line-height: 1.6;
}

.info-card p {
    margin: 0;
}

.info-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.location-name {
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 1000;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.footer {
    max-width: 1240px;
    margin: 28px auto 0;
    padding: 28px 20px 42px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 196, 0, 0.16);
}

/* MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px);
}

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

.modal-window {
    width: min(1120px, 100%);
    max-height: calc(100vh - 52px);
    overflow-y: auto;
    background:
        radial-gradient(circle at top left, rgba(242, 106, 22, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 196, 0, 0.11), transparent 28%),
        #090909;
    border: 1px solid rgba(255, 196, 0, 0.28);
    border-radius: 34px;
    box-shadow: 0 35px 95px rgba(0, 0, 0, 0.7);
    padding: 28px;
    position: relative;
}

.modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 196, 0, 0.34);
    background: rgba(0, 0, 0, 0.7);
    color: var(--yellow);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.modal-close:hover {
    background: rgba(255, 196, 0, 0.15);
}

.modal-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: center;
}

.modal-hero img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(255, 196, 0, 0.35);
    box-shadow: var(--shadow);
}

.modal-header-block {
    margin-top: -12px;
    max-width: 920px;
}

.modal-eyebrow {
    margin-bottom: 14px;
}

.modal-window h2 {
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
    color: var(--white);
}

.modal-window h2 span {
    color: var(--yellow);
}

.modal-window p {
    color: var(--muted);
    line-height: 1.7;
}

.modal-card-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.modal-card,
.package-card,
.addon-card,
.included-box,
.contact-info-panel,
.contact-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255, 196, 0, 0.22);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.modal-card h3,
.package-card h3,
.included-box h3,
.contact-info-panel h3 {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.12);
}

.package-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}

.package-price {
    color: var(--yellow);
    font-size: 1.6rem;
    font-weight: 1000;
    text-align: right;
    white-space: nowrap;
}

.package-price span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    margin-top: 2px;
}

.package-card ul {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.75;
}

.featured-package {
    border-color: rgba(255, 196, 0, 0.34);
}

.premium-package {
    border-color: rgba(242, 106, 22, 0.55);
}

.included-box {
    margin-top: 18px;
    background:
        linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(242, 106, 22, 0.08)),
        rgba(15, 15, 15, 0.96);
}

.included-box p {
    margin: 0;
}

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

.addon-card h4 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.15rem;
}

.addon-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.addon-card strong {
    color: var(--yellow);
    font-size: 1.05rem;
}

.modal-note {
    margin-top: 18px;
    color: var(--muted);
    border-left: 4px solid var(--yellow);
    padding: 10px 0 10px 14px;
    line-height: 1.6;
}

.contact-modal-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
    margin-top: 24px;
}

.contact-info-row {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.13);
}

.contact-info-row:last-child {
    border-bottom: 0;
}

.contact-info-row strong {
    display: block;
    color: var(--yellow);
    margin-bottom: 4px;
}

.contact-info-row span {
    color: var(--muted);
    line-height: 1.5;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    color: var(--yellow);
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 196, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-radius: 14px;
    padding: 12px 13px;
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(207, 195, 179, 0.78);
}

.form-note {
    margin: 0;
    font-size: 0.84rem;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 300;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #120a02;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-weight: 1000;
    transform: translateY(140%);
    transition: transform 0.25s ease;
    max-width: 320px;
}

.toast.show {
    transform: translateY(0);
}

@media (max-width: 1160px) {
    .nav-links {
        gap: 10px;
        font-size: 0.84rem;
    }

    .nav-links a,
    .nav-modal-btn {
        font-size: 0.84rem;
    }

    .nav-links .btn {
        padding: 10px 14px;
    }
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 38px;
    }

    .logo-showcase {
        min-height: 420px;
    }

    .main-logo-img {
        width: min(100%, 340px);
        max-height: 350px;
    }

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

    .clover-panel {
        position: static;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .modal-hero,
    .package-grid,
    .addons-grid,
    .contact-modal-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav {
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 80px;
        background: #090909;
        border: 1px solid rgba(255, 196, 0, 0.25);
        border-radius: 20px;
        padding: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        font-size: 0.95rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a,
    .nav-modal-btn {
        text-align: left;
        font-size: 0.95rem;
    }

    .nav-links .btn {
        width: 100%;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.67rem;
    }

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

    .menu-card.wide {
        grid-column: auto;
    }

    .section-header {
        align-items: start;
        flex-direction: column;
    }

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

    .footer {
        flex-direction: column;
    }

    .modal-overlay {
        padding: 14px;
    }

    .modal-window {
        border-radius: 24px;
        padding: 18px;
        max-height: calc(100vh - 28px);
    }

    .modal-close {
        width: 38px;
        height: 38px;
    }

    .package-top {
        flex-direction: column;
    }

    .package-price {
        text-align: left;
    }
}

@media (max-width: 460px) {
    .brand-logo {
        width: 48px;
        height: 48px;
    }

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

    .logo-showcase {
        min-height: 330px;
    }

    .menu-photo-area {
        height: 165px;
    }

    .menu-card.wide .menu-photo-area {
        height: 175px;
    }
}