/* Home restaurant layout - sectioned for easy maintenance. */
:root {
    --ak-shell-width: 1180px;
    --ak-ink: #482015;
    --ak-ink-soft: #7d594d;
    --ak-red: #d84632;
    --ak-red-dark: #762014;
    --ak-cream: #f7efe5;
    --ak-cream-2: #fbf7ef;
    --ak-card: #fffdf8;
    --ak-border: rgba(120, 62, 36, .12);
    --ak-shadow: 0 18px 45px rgba(72, 32, 21, .1);
}

body {
    background: var(--ak-cream-2);
}

.ak-combo-lightbox-open,
.ak-combo-lightbox-open body {
    overflow: hidden;
}

body.home .nh-topbar,
body.category .nh-topbar,
body.search .nh-topbar,
body.single .nh-topbar,
body.error404 .nh-topbar {
    background: transparent;
    border: 0;
    box-shadow: none;
    height: 68px;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

body.home .nh-topbar-inner,
body.category .nh-topbar-inner,
body.search .nh-topbar-inner,
body.single .nh-topbar-inner,
body.error404 .nh-topbar-inner {
    align-items: center;
    display: flex;
    height: 68px;
    justify-content: flex-end;
    max-width: var(--ak-shell-width);
    padding: 0;
    position: relative;
    width: min(100% - 40px, var(--ak-shell-width));
}

body.home .nh-search,
body.home .nh-mobile-nav,
body.category .nh-search,
body.category .nh-mobile-nav,
body.search .nh-search,
body.search .nh-mobile-nav,
body.single .nh-search,
body.single .nh-mobile-nav,
body.error404 .nh-search,
body.error404 .nh-mobile-nav {
    display: none;
}

body.home .nh-search.is-open,
body.category .nh-search.is-open,
body.search .nh-search.is-open,
body.single .nh-search.is-open,
body.error404 .nh-search.is-open {
    display: block;
    max-width: none;
    pointer-events: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(520px, calc(100vw - 40px));
    z-index: 1002;
}

body.home .nh-search.is-open .nh-search-dropdown,
body.category .nh-search.is-open .nh-search-dropdown,
body.search .nh-search.is-open .nh-search-dropdown,
body.single .nh-search.is-open .nh-search-dropdown,
body.error404 .nh-search.is-open .nh-search-dropdown {
    z-index: 1003;
}

body.home .nh-top-icons,
body.category .nh-top-icons,
body.search .nh-top-icons,
body.single .nh-top-icons,
body.error404 .nh-top-icons {
    display: flex;
    gap: 6px;
    margin-left: auto;
    pointer-events: auto;
    position: static;
}

body.home .nh-icon-btn,
body.category .nh-icon-btn,
body.search .nh-icon-btn,
body.single .nh-icon-btn,
body.error404 .nh-icon-btn {
    height: 30px;
    width: 30px;
}

body.home .nh-icon-btn svg,
body.category .nh-icon-btn svg,
body.search .nh-icon-btn svg,
body.single .nh-icon-btn svg,
body.error404 .nh-icon-btn svg {
    height: 19px;
    width: 19px;
}

.ak-home {
    color: var(--ak-ink);
    background: var(--ak-cream-2);
    font-family: "Be Vietnam Pro", "Manrope", Arial, sans-serif;
}

.ak-home * {
    box-sizing: border-box;
}

.ak-shell {
    width: min(100% - 40px, var(--ak-shell-width));
    margin: 0 auto;
}

.ak-section {
    padding: 82px 0;
}

.ak-section:nth-of-type(even) {
    background: var(--ak-cream);
}

.ak-section__head {
    text-align: center;
    max-width: 660px;
}

.ak-eyebrow {
    display: inline-block;
    color: var(--ak-red);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ak-section__head h2,
.ak-booking__copy h2,
.ak-owner__box h2 {
    color: var(--ak-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.08;
    margin: 0 0 12px;
}

.ak-section__head p,
.ak-booking__copy p,
.ak-owner__box p {
    color: var(--ak-ink-soft);
    font-size: 15px !important;
    line-height: 1.75;
    margin: 0;
}

.ak-btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px !important;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.ak-btn--primary {
    background: var(--ak-red);
    box-shadow: 0 12px 28px rgba(216, 70, 50, .28);
    color: #fff;
}

.ak-btn--ghost {
    background: transparent;
    color: var(--ak-red);
}

/* Home menu */
.ak-home-menu {
    background: #f8f1e8;
    border-bottom: 1px solid rgba(120, 62, 36, .12);
}

.ak-home-menu__inner {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: auto minmax(0, 1fr) 108px;
    min-height: 68px;
}

.ak-home-menu__logo {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-width: 84px;
    text-decoration: none;
}

.ak-home-menu__logo-img {
    display: block;
    height: 40px;
    max-width: 104px;
    object-fit: contain;
    width: auto;
}

.ak-home-menu__logo-text {
    color: var(--ak-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px !important;
    font-weight: 900;
    white-space: nowrap;
}

.ak-home-menu__toggle {
    align-items: center;
    background: #fff8ef;
    border: 1px solid rgba(120, 62, 36, .14);
    border-radius: 8px;
    color: var(--ak-ink);
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
}

.ak-home-menu__toggle span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform .2s ease, opacity .2s ease;
    width: 18px;
}

.ak-home-menu.is-open .ak-home-menu__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ak-home-menu.is-open .ak-home-menu__toggle span:nth-child(2) {
    opacity: 0;
}

.ak-home-menu.is-open .ak-home-menu__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ak-home-menu__list {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(14px, 2vw, 28px);
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ak-home-menu__list li {
    margin: 0;
}

.ak-home-menu__list a {
    color: #6f6259;
    display: block;
    font-size: 15px !important;
    font-weight: 800;
    line-height: 1.2;
    padding: 10px 0;
    text-decoration: none;
    white-space: nowrap;
}

.ak-home-menu__list a:hover,
.ak-home-menu__list .current-menu-item > a {
    color: var(--ak-red);
}

/* Hero */
.ak-hero {
    background: linear-gradient(180deg, #fffaf3 0%, var(--ak-cream-2) 100%);
    padding: 90px 0 110px;
}

.ak-hero__grid {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.ak-hero__copy h1 {
    color: var(--ak-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 70px) !important;
    line-height: .95;
    margin: 0 0 20px;
    max-width: 560px;
}

.ak-hero__copy p {
    color: var(--ak-ink-soft);
    font-size: 16px !important;
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

.ak-hero__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.ak-hero__note {
    color: #b89484;
    font-size: 13px;
    margin-top: 18px;
}

.ak-hero__media {
    border-radius: 18px;
    box-shadow: var(--ak-shadow);
    min-height: 330px;
    overflow: hidden;
    position: relative;
}

.ak-hero__media img {
    display: block;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    width: 100%;
}

.ak-hero__badge {
    background: #fff;
    border-radius: 8px;
    bottom: 16px;
    box-shadow: 0 12px 30px rgba(72, 32, 21, .18);
    left: 16px;
    padding: 12px 18px;
    position: absolute;
}

.ak-hero__badge strong {
    color: var(--ak-red);
    display: block;
    font-size: 22px;
    line-height: 1;
}

.ak-hero__badge span {
    color: #b89484;
    font-size: 12px !important;
}

/* Story */
.ak-story__cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
}

.ak-story-card {
    background: var(--ak-card);
    border: 1px solid var(--ak-border);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(72, 32, 21, .05);
    padding: 24px;
}

.ak-story-card span {
    align-items: center;
    background: #fff0eb;
    border-radius: 8px;
    color: var(--ak-red);
    display: inline-flex;
    font-size: 12px !important;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    margin-bottom: 18px;
    width: 32px;
}

.ak-story-card h3 {
    font-size: 17px !important;
    margin: 0 0 8px;
}

.ak-story-card p {
    color: var(--ak-ink-soft);
    font-size: 13px !important;
    line-height: 1.6;
    margin: 0;
}

/* Menu */
.ak-menu__stack {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    max-width: 620px;
}

.ak-menu-card {
    background: var(--ak-card);
    border: 1px solid var(--ak-border);
    border-radius: 8px;
    padding: 20px 22px;
}

.ak-menu-card h3 {
    border-left: 3px solid var(--ak-red);
    color: var(--ak-red-dark);
    font-size: 16px !important;
    margin: 0 0 14px;
    padding-left: 10px;
}

.ak-menu-card__items {
    column-gap: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
}

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

.ak-menu-row span,
.ak-menu-row strong {
    font-size: 13px !important;
}

.ak-menu-row span {
    color: var(--ak-ink);
}

.ak-menu-row strong {
    color: var(--ak-red);
    white-space: nowrap;
}

/* Combo */
.ak-combo__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
}

.ak-combo-card {
    aspect-ratio: 1 / 1;
    background: transparent;
    border: 0;
    border-radius: 16px;
    box-shadow: var(--ak-shadow);
    color: #fff;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease;
    width: 100%;
}

.ak-combo-card:hover,
.ak-combo-card:focus-visible {
    box-shadow: 0 22px 48px rgba(72, 32, 21, .17);
    transform: translateY(-3px);
}

.ak-combo-card:focus-visible {
    outline: 3px solid rgba(216, 70, 50, .42);
    outline-offset: 4px;
}

.ak-combo-card::after {
    background: linear-gradient(180deg, rgba(24, 12, 8, .02) 35%, rgba(24, 12, 8, .74) 100%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .18s ease;
    z-index: 1;
}

.ak-combo-card:hover::after,
.ak-combo-card:focus-visible::after {
    opacity: 1;
}

.ak-combo-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.ak-combo-card:hover img,
.ak-combo-card:focus-visible img {
    transform: scale(1.04);
}

.ak-combo-card__zoom {
    align-items: center;
    background: #fffaf4;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(72, 32, 21, .18);
    color: var(--ak-red);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 16px;
    top: 16px;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease;
    width: 46px;
    z-index: 2;
}

.ak-combo-card:hover .ak-combo-card__zoom,
.ak-combo-card:focus-visible .ak-combo-card__zoom {
    opacity: 1;
    transform: translateY(0);
}

.ak-combo-card__zoom svg {
    height: 20px;
    width: 20px;
}

.ak-combo-card__title {
    bottom: 22px;
    color: #fff;
    font-size: 18px !important;
    font-weight: 800;
    left: 24px;
    line-height: 1.2;
    opacity: 0;
    position: absolute;
    right: 24px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 2;
}

.ak-combo-card:hover .ak-combo-card__title,
.ak-combo-card:focus-visible .ak-combo-card__title {
    opacity: 1;
    transform: translateY(0);
}

.ak-combo-lightbox {
    align-items: center;
    display: none;
    inset: 0;
    justify-content: center;
    padding: 44px 92px;
    position: fixed;
    z-index: 3000;
}

.ak-combo-lightbox.is-open {
    display: flex;
}

.ak-combo-lightbox__backdrop {
    background: rgba(43, 36, 32, .86);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    inset: 0;
    position: absolute;
}

.ak-combo-lightbox__figure {
    margin: 0;
    max-width: min(820px, calc(100vw - 220px));
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.ak-combo-lightbox__figure img {
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    display: block;
    max-height: calc(100vh - 148px);
    object-fit: contain;
    width: 100%;
}

.ak-combo-lightbox__figure figcaption {
    color: rgba(255, 250, 244, .9);
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 16px;
}

.ak-combo-lightbox__close,
.ak-combo-lightbox__nav {
    align-items: center;
    background: #fffaf4;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    color: #7a6b62;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    z-index: 2;
}

.ak-combo-lightbox__close:hover,
.ak-combo-lightbox__nav:hover {
    color: var(--ak-red);
    transform: scale(1.04);
}

.ak-combo-lightbox__close {
    height: 48px;
    right: calc(50% - 434px);
    top: 42px;
    width: 48px;
}

.ak-combo-lightbox__close svg,
.ak-combo-lightbox__nav svg {
    height: 22px;
    width: 22px;
}

.ak-combo-lightbox__nav {
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
}

.ak-combo-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.ak-combo-lightbox__nav--prev {
    left: 32px;
}

.ak-combo-lightbox__nav--next {
    right: 32px;
}

/* Branches */
.ak-branches__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
}

.ak-branch-card {
    background: var(--ak-card);
    border: 1px solid var(--ak-border);
    border-radius: 8px;
    padding: 22px;
}

.ak-branch-card h3 {
    color: var(--ak-red-dark);
    font-size: 17px !important;
    margin: 0 0 10px;
}

.ak-branch-card p {
    color: var(--ak-ink-soft);
    font-size: 13px !important;
    line-height: 1.65;
    margin: 0 0 16px;
}

.ak-branch-card div {
    align-items: center;
    display: flex;
    gap: 12px;
}

.ak-branch-card span,
.ak-branch-card strong {
    color: var(--ak-red);
    font-size: 12px !important;
}

/* Booking */
.ak-booking {
    background: var(--ak-red-dark);
    color: #fff;
    padding: 80px 0;
}

.ak-booking .ak-eyebrow,
.ak-booking__copy h2,
.ak-booking__copy p {
    color: #fff;
}

.ak-booking__grid {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) 380px;
}

.ak-booking__copy ul {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.ak-booking__copy li {
    color: #ffe8dc;
    font-size: 14px !important;
    line-height: 1.8;
    margin: 8px 0;
    padding-left: 24px;
    position: relative;
}

.ak-booking__copy li::before {
    color: #f5bf4a;
    content: "•";
    font-size: 22px;
    left: 3px;
    line-height: 1;
    position: absolute;
    top: 1px;
}

.ak-booking-form {
    background: #fffaf3;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    display: grid;
    gap: 14px;
    padding: 24px;
}

.ak-booking-form label {
    color: var(--ak-ink);
    display: grid;
    font-size: 12px !important;
    font-weight: 800;
    gap: 6px;
}

.ak-booking-form input,
.ak-booking-form select {
    background: #fff;
    border: 1px solid #f0dfcf;
    border-radius: 6px;
    color: var(--ak-ink);
    font: inherit;
    min-height: 40px;
    padding: 0 12px;
    width: 100%;
}

.ak-booking-form__split {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.ak-booking-form button {
    background: var(--ak-red);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    min-height: 44px;
}

.ak-booking-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.ak-booking-form__status {
    font-size: 13px !important;
    font-weight: 800;
    line-height: 1.45;
    min-height: 18px;
    text-align: center;
}

.ak-booking-form__status.is-success {
    color: #167c3a;
}

.ak-booking-form__status.is-error {
    color: #b42318;
}

/* Blog */
.ak-blog__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
}

.ak-blog-card {
    background: #fff;
    border: 1px solid var(--ak-border);
    border-radius: 8px;
    overflow: hidden;
}

.ak-blog-card img {
    aspect-ratio: 1.55 / 1;
    display: block;
    object-fit: cover;
    width: 100%;
}

.ak-blog-card div {
    padding: 20px;
}

.ak-blog-card span {
    color: var(--ak-red);
    font-size: 11px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.ak-blog-card h3 {
    font-size: 18px !important;
    line-height: 1.35;
    margin: 8px 0 10px;
}

.ak-blog-card a {
    color: inherit;
    text-decoration: none;
}

.ak-blog-card p {
    color: var(--ak-ink-soft);
    font-size: 13px !important;
    line-height: 1.65;
    margin: 0;
}

/* Owner */
.ak-owner {
    background: var(--ak-cream);
}

.ak-owner__box {
    background: #fff;
    border: 1px solid var(--ak-border);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(72, 32, 21, .08);
    margin: 0 auto;
    max-width: 620px;
    padding: 48px;
    text-align: center;
}

.ak-owner__icon {
    align-items: center;
    background: #fff0eb;
    border-radius: 50%;
    color: var(--ak-red);
    display: inline-flex;
    font-size: 12px !important;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    margin-bottom: 18px;
    width: 42px;
}

.ak-owner__avatar {
    border: 4px solid #fff5ed;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(72, 32, 21, .12);
    display: block;
    height: 84px;
    margin: 0 auto 20px;
    object-fit: cover;
    width: 84px;
}

.ak-owner__box .ak-btn {
    margin-top: 26px;
}

@media (max-width: 900px) {
    body.home .nh-topbar,
    body.category .nh-topbar,
    body.search .nh-topbar,
    body.single .nh-topbar,
    body.error404 .nh-topbar,
    body.home .nh-topbar-inner,
    body.category .nh-topbar-inner,
    body.search .nh-topbar-inner,
    body.single .nh-topbar-inner,
    body.error404 .nh-topbar-inner {
        height: 58px;
    }

    .ak-home-menu__inner {
        gap: 20px;
        grid-template-columns: auto minmax(0, 1fr) 100px;
        min-height: 58px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ak-home-menu__inner::-webkit-scrollbar {
        display: none;
    }

    .ak-home-menu__list {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .ak-hero__grid,
    .ak-booking__grid {
        grid-template-columns: 1fr;
    }

    .ak-hero {
        padding-top: 58px;
    }

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

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

    .ak-combo-lightbox {
        padding: 44px 64px;
    }

    .ak-combo-lightbox__figure {
        max-width: min(820px, calc(100vw - 150px));
    }

    .ak-combo-lightbox__close {
        right: 28px;
        top: 28px;
    }

    .ak-booking__grid {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    body.home .nh-top-icons,
    body.category .nh-top-icons,
    body.search .nh-top-icons,
    body.single .nh-top-icons,
    body.error404 .nh-top-icons {
        display: none !important;
    }

    .ak-home-menu {
        position: relative;
        z-index: 1001;
    }

    .ak-home-menu__inner {
        gap: 14px;
        grid-template-columns: minmax(0, 1fr) auto;
        overflow: visible;
        position: relative;
    }

    .ak-home-menu__toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .ak-home-menu__list {
        background: #fffaf3;
        border: 1px solid rgba(120, 62, 36, .12);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 18px 34px rgba(72, 32, 21, .12);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        margin-top: 0;
        overflow: hidden;
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        z-index: 20;
    }

    .ak-home-menu.is-open .ak-home-menu__list {
        display: flex;
    }

    .ak-home-menu__list li {
        width: 100%;
    }

    .ak-home-menu__list a {
        border-top: 1px solid rgba(120, 62, 36, .08);
        font-size: 15px !important;
        padding: 14px 16px;
        white-space: normal;
    }

    .ak-home-menu__list li:first-child a {
        border-top: 0;
    }
}

@media (max-width: 640px) {
    .ak-shell {
        width: min(100% - 28px, var(--ak-shell-width));
    }

    .ak-section,
    .ak-booking {
        padding: 56px 0;
    }

    .ak-home-menu__logo {
        min-width: 70px;
    }

    .ak-home-menu__logo-img {
        height: 38px;
        max-width: 88px;
    }

    .ak-home-menu__logo-text {
        font-size: 18px !important;
    }

    .ak-hero {
        padding: 44px 0 58px;
    }

    .ak-hero__grid {
        gap: 32px;
    }

    .ak-hero__copy h1 {
        font-size: 42px !important;
    }

    .ak-story__cards,
    .ak-combo__grid,
    .ak-branches__grid,
    .ak-blog__grid {
        grid-template-columns: 1fr;
    }

    .ak-combo__grid {
        gap: 16px;
        margin-top: 34px;
    }

    .ak-combo-card {
        aspect-ratio: 1 / 1;
        border-radius: 14px;
    }

    .ak-combo-card__zoom {
        height: 40px;
        opacity: 1;
        transform: none;
        width: 40px;
    }

    .ak-combo-card__title {
        bottom: 18px;
        font-size: 16px !important;
        left: 18px;
        right: 18px;
    }

    .ak-combo-lightbox {
        padding: 48px 16px 36px;
    }

    .ak-combo-lightbox__figure {
        max-width: 100%;
    }

    .ak-combo-lightbox__figure img {
        max-height: calc(100vh - 160px);
    }

    .ak-combo-lightbox__close {
        height: 42px;
        right: 16px;
        top: 16px;
        width: 42px;
    }

    .ak-combo-lightbox__nav {
        height: 42px;
        width: 42px;
    }

    .ak-combo-lightbox__nav--prev {
        left: 10px;
    }

    .ak-combo-lightbox__nav--next {
        right: 10px;
    }

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

    .ak-booking-form__split {
        grid-template-columns: 1fr;
    }

    .ak-owner__box {
        padding: 34px 22px;
    }
}
