:root {
    --home-deep: #10281b;
    --home-deep-soft: #193827;
    --home-cream: #fbf7ef;
    --home-cream-strong: #f2eadc;
    --home-terracotta: #c87442;
    --home-gold: #e6bd71;
    --home-white: #fffdf9;
    --home-on-dark: #fffdf9;
    --home-on-dark-muted: rgba(255, 253, 249, .72);
    --home-display: "Cormorant Garamond", Georgia, serif;
    --home-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --home-shadow: 0 24px 70px rgba(12, 37, 23, .12);
    --home-radius-sm: 14px;
    --home-radius-md: 20px;
    --home-ease: cubic-bezier(.2, .75, .25, 1);
}

.public-home {
    color: #17241b;
    background: var(--home-cream);
    font-family: var(--home-body);
    overflow-x: hidden;
}

.public-home .menu-container {
    width: min(calc(100% - 40px), 1240px);
}

.public-home h1,
.public-home h2,
.public-home h3,
.public-home .home-category-card strong {
    font-family: var(--home-display);
    font-weight: 700;
}

.public-home a,
.public-home button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.public-home :is(a, button):focus-visible {
    outline: 3px solid color-mix(in srgb, var(--menu-primary) 60%, white);
    outline-offset: 4px;
}

.home-hero {
    min-height: clamp(720px, 92dvh, 900px);
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    color: #fff;
    background: var(--home-deep);
    isolation: isolate;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__veil {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity .9s ease, transform 7s ease;
}

.home-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.home-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero__slide:nth-child(2) img { object-position: center 47%; }
.home-hero__slide:nth-child(3) img { object-position: center 58%; }

.home-hero__veil {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(6, 21, 13, .9) 0%, rgba(6, 21, 13, .72) 42%, rgba(6, 21, 13, .24) 78%, rgba(6, 21, 13, .42) 100%),
        linear-gradient(0deg, rgba(5, 18, 11, .83) 0%, transparent 42%, rgba(5, 18, 11, .45) 100%);
    pointer-events: none;
}

.home-hero__topbar,
.home-hero__content {
    position: relative;
    z-index: 3;
}

.home-hero__topbar {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;
    gap: 24px;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.home-hero__brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.home-hero__brand img {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 17px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.home-hero__brand > span {
    min-width: 0;
    display: grid;
}

.home-hero__brand small {
    color: rgba(255, 255, 255, .68);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-hero__brand strong {
    overflow: hidden;
    font-family: var(--home-display);
    font-size: 1.32rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-hero__links {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(8, 27, 17, .26);
    backdrop-filter: blur(14px);
}

.home-hero__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 13px;
    color: rgba(255, 255, 255, .82);
    font-size: .73rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease;
}

.home-hero__links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .13);
}

.home-hero__utilities {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
}

.home-hero__status {
    min-height: 50px;
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(8, 27, 17, .36);
    backdrop-filter: blur(14px);
}

.home-hero__status > span:first-child {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f0a55e;
    box-shadow: 0 0 0 5px rgba(240, 165, 94, .16);
}

.home-hero__status--open > span:first-child {
    background: #78d698;
    box-shadow: 0 0 0 5px rgba(120, 214, 152, .16);
}

.home-hero__status > span:last-child { display: grid; }
.home-hero__status strong { font-size: .67rem; line-height: 1.25; }
.home-hero__status small { color: rgba(255, 255, 255, .72); font-size: .61rem; }

.home-hero__login {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(8, 27, 17, .36);
    backdrop-filter: blur(14px);
}

.home-hero__login i { font-size: 21px; }

.home-hero__content {
    display: grid;
    align-items: center;
    padding-block: clamp(88px, 12vh, 144px) clamp(72px, 10vh, 120px);
    padding-inline: clamp(0px, 2.25vw, 28px);
}

.home-hero__copy {
    max-width: 850px;
    position: relative;
    display: grid;
    justify-items: start;
    padding: clamp(24px, 3vw, 40px) 0 clamp(24px, 3vw, 40px) clamp(24px, 3.5vw, 48px);
}

.home-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--home-on-dark);
    font-size: clamp(3.8rem, 6.6vw, 6.55rem);
    line-height: .92;
    letter-spacing: -.04em;
    text-wrap: balance;
    text-shadow: 0 10px 36px rgba(0, 0, 0, .24);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 137px;
}

.home-hero__primary,
.home-hero__secondary {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--home-radius-sm);
    font-size: .86rem;
    font-weight: 800;
    transition: transform .2s var(--home-ease), box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.home-hero__primary {
    color: var(--home-deep);
    background: var(--home-on-dark);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.home-hero__secondary {
    color: var(--home-on-dark);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(8, 27, 17, .46);
    backdrop-filter: blur(12px);
}

.home-hero__primary:hover,
.home-hero__secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}

.home-hero__secondary:hover { border-color: rgba(255, 253, 249, .48); background: rgba(255, 253, 249, .15); }
.home-hero__primary:active,
.home-hero__secondary:active { transform: scale(.98); }
.home-hero__actions i { flex: 0 0 auto; font-size: 21px; }

.home-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .72);
    list-style: none;
    font-size: .74rem;
    font-weight: 700;
}

.home-hero__proof li {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 253, 249, .13);
    border-radius: 999px;
    background: rgba(8, 27, 17, .28);
    backdrop-filter: blur(10px);
}
.home-hero__proof i { color: #9ee2b4; font-size: 18px; }

.home-nav {
    z-index: 95;
    box-shadow: 0 8px 28px rgba(15, 45, 26, .06);
}

.home-nav .menu-container { justify-content: center; }
.home-nav a { font-family: var(--home-body); }

.home-intro {
    grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
    gap: clamp(36px, 7vw, 96px);
    padding-block: 112px;
}

.home-intro__copy h2 {
    max-width: 780px;
    margin: 8px 0 22px;
    font-size: clamp(2.75rem, 5.6vw, 5.35rem);
    line-height: .96;
}

.home-intro__copy p { max-width: 690px; font-size: .96rem; line-height: 1.85; }

.home-intro__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.home-intro__badges span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    color: #385143;
    border: 1px solid #e1e8df;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    font-size: .67rem;
    font-weight: 750;
}

.home-intro__badges i { color: var(--menu-primary); font-size: 18px; }

.home-primary-action,
.home-secondary-action {
    min-height: 96px;
    border-radius: 24px;
    box-shadow: var(--home-shadow);
}

.home-primary-action { background: linear-gradient(135deg, var(--home-deep), color-mix(in srgb, var(--menu-primary) 74%, #183522)); }
.home-intro__actions small { font-size: .64rem; }
.home-intro__actions strong { font-family: var(--home-body); font-size: .9rem; }

.home-highlights {
    padding-block: 96px 90px;
    color: white;
}

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

.home-highlight-card {
    min-height: 280px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 253, 249, .15);
    border-radius: 26px;
    background: rgba(255, 253, 249, .07);
    box-shadow: inset 0 1px rgba(255, 253, 249, .07);
    backdrop-filter: blur(8px);
}

.home-highlight-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--home-deep);
    border-radius: 17px;
    background: var(--home-gold);
    font-size: 25px;
}

.home-highlight-card strong {
    margin-top: auto;
    padding-top: 34px;
    font-family: var(--home-display);
    font-size: 1.7rem;
}

.home-highlight-card p { margin: 8px 0 0; color: var(--home-on-dark-muted); font-size: .76rem; line-height: 1.75; }

.home-categories { padding-block: 104px 94px; background: var(--home-cream); }
.home-categories .section-heading h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.home-categories__rail { grid-auto-columns: minmax(280px, 32%); gap: 18px; }
.home-category-card { border-color: #e8dfd1; border-radius: 26px; box-shadow: 0 18px 45px rgba(47, 42, 30, .08); }
.home-category-card__media { height: 220px; }
.home-category-card > div:last-child { min-height: 96px; }
.home-category-card strong { font-size: 1.45rem; }

.home-reservation { padding-block: 96px; background: #fff; }
.home-reservation__compact { border-radius: 34px; box-shadow: var(--home-shadow); }
.home-reservation__compact h2 { font-size: clamp(2.2rem, 3.7vw, 3.6rem); }

.home-gallery {
    padding-block: 106px 96px;
    color: var(--home-on-dark);
    background:
        linear-gradient(rgba(16, 40, 27, .95), rgba(16, 40, 27, .96)),
        url("../img/restaurant/banner5.jpg") center / cover;
}
.home-gallery .section-heading h2 { color: var(--home-on-dark); }
.home-gallery .menu-kicker,
.home-gallery__controls,
.home-gallery__more { color: var(--home-on-dark); }
.home-gallery .section-heading h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.home-gallery__controls button { min-width: 48px; min-height: 48px; cursor: pointer; }
.home-gallery__controls button:disabled { cursor: not-allowed; opacity: .42; }
.home-gallery__viewport { border: 1px solid rgba(255, 255, 255, .13); box-shadow: 0 28px 80px rgba(0, 0, 0, .24); }

.home-visit {
    padding-block: 104px 96px;
    background:
        linear-gradient(rgba(251, 247, 239, .95), rgba(251, 247, 239, .97)),
        url("../img/restaurant/banner7.jpg") center / cover;
}
.home-hours-card,
.home-contact-card { border-color: #e7dfd2; border-radius: 28px; box-shadow: 0 18px 48px rgba(48, 41, 29, .07); }
.home-hours-card h2,
.home-contact-card h2 { font-size: 2.25rem; }
.home-hours-card dl div.is-today {
    margin-inline: -10px;
    padding-inline: 10px;
    border-radius: 11px;
    background: color-mix(in srgb, var(--menu-primary) 9%, var(--home-white));
}
.home-hours-card dt { display: flex; align-items: center; gap: 8px; }
.home-hours-card dt span {
    padding: 3px 7px;
    color: var(--home-white);
    border-radius: 999px;
    background: var(--menu-primary);
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.home-contact-card__links a { min-height: 92px; transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.home-contact-card__links a:hover { border-color: color-mix(in srgb, var(--menu-primary) 34%, #e7dfd2); background: #fff; transform: translateY(-2px); }

.home-menu-cta {
    padding-block: 92px;
    background: #fff;
}

.home-menu-cta__inner {
    min-height: 300px;
    position: relative;
    overflow: hidden;
    grid-template-columns: 72px minmax(0, 1fr) minmax(210px, 250px);
    padding: 48px;
    color: #fff;
    border: 0;
    background:
        linear-gradient(90deg, rgba(7, 26, 15, .92), rgba(7, 26, 15, .72) 62%, rgba(7, 26, 15, .48)),
        url("../img/restaurant/banner1.jpg") center / cover;
    box-shadow: var(--home-shadow);
}

.home-menu-cta__inner span { color: var(--home-deep); background: var(--home-gold); }
.home-menu-cta__inner small { color: #efc981; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-menu-cta__inner h2 { color: var(--home-on-dark); font-size: clamp(2.5rem, 4vw, 4.25rem); line-height: .95; }
.home-menu-cta__inner p { color: var(--home-on-dark-muted); }
.home-menu-cta__inner a { color: var(--home-deep); background: var(--home-on-dark); }

.home-motion-ready [data-home-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
}

.home-motion-ready [data-home-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .home-hero__topbar { grid-template-columns: 1fr auto; }
    .home-hero__links { display: none; }
    .home-intro { grid-template-columns: 1fr; gap: 38px; }
    .home-intro__actions { grid-template-columns: 1fr 1fr; }
    .home-highlights__grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}

@media (max-width: 760px) {
    .public-home .menu-container { width: min(calc(100% - 28px), 1240px); }
    .home-hero { min-height: max(680px, 100svh); }
    .home-hero__veil {
        background:
            linear-gradient(0deg, rgba(5, 19, 11, .94) 0%, rgba(5, 19, 11, .72) 60%, rgba(5, 19, 11, .5) 100%),
            linear-gradient(90deg, rgba(5, 19, 11, .42), transparent);
    }
    .home-hero__topbar { min-height: 80px; gap: 12px; padding-block: 10px; }
    .home-hero__brand { gap: 9px; }
    .home-hero__brand img { width: 46px; height: 46px; flex-basis: 46px; border-radius: 14px; }
    .home-hero__brand strong { max-width: 150px; font-size: 1.08rem; }
    .home-hero__brand small { font-size: .62rem; letter-spacing: .09em; }
    .home-hero__status { width: 46px; min-height: 46px; display: grid; grid-template-columns: 1fr; place-items: center; padding: 0; }
    .home-hero__status > span:last-child { display: none; }
    .home-hero__login { width: 46px; height: 46px; flex-basis: 46px; }
    .home-hero__content { align-items: center; padding-block: clamp(56px, 8vh, 80px) clamp(48px, 8vh, 72px); padding-inline: 0; }
    .home-hero__copy { max-width: 100%; padding: 24px 0 24px 20px; }
    .home-hero__copy::before { top: 12px; bottom: 12px; }
    .home-hero h1 { font-size: clamp(2.9rem, 13vw, 4.25rem); line-height: .94; }
    .home-hero__actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
    .home-hero__primary,
    .home-hero__secondary { width: 100%; min-height: 56px; }
    .home-hero__proof { display: none; }
    .home-nav .menu-container { justify-content: flex-start; }
    .home-intro { gap: 26px; padding-block: 74px; }
    .home-intro__copy h2 { font-size: 2.75rem; line-height: .98; }
    .home-intro__copy p { font-size: .84rem; }
    .home-intro__actions { grid-template-columns: 1fr; }
    .home-primary-action,
    .home-secondary-action { min-height: 82px; }
    .home-highlights { padding-block: 78px 68px; }
    .home-highlights__grid { grid-template-columns: 1fr; gap: 12px; }
    .home-highlight-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 4px 15px;
        padding: 20px;
        border-radius: 21px;
    }
    .home-highlight-card > span { width: 52px; height: 52px; grid-row: 1 / 3; }
    .home-highlight-card strong { align-self: end; margin: 0; padding: 0; font-size: 1.5rem; }
    .home-highlight-card p { grid-column: 2; margin-top: 2px; line-height: 1.55; }
    .home-categories { padding-block: 78px 66px; }
    .home-categories .section-heading h2,
    .home-gallery .section-heading h2 { font-size: 2.85rem; }
    .home-categories__rail { grid-auto-columns: 82%; }
    .home-category-card__media { height: 185px; }
    .home-reservation { padding-block: 68px; }
    .home-reservation__compact { border-radius: 26px; }
    .home-gallery { padding-block: 82px 68px; }
    .home-gallery .section-heading { display: grid; grid-template-columns: 1fr; align-items: start; gap: 16px; }
    .home-gallery__controls { justify-self: start; }
    .home-gallery__viewport { margin-top: 20px; }
    .home-gallery figure { height: clamp(280px, 75vw, 420px); min-height: 0; }
    .home-gallery figcaption { right: 14px; bottom: 14px; left: 14px; max-width: none; }
    .home-visit { padding-block: 82px 68px; }
    .home-menu-cta { padding-block: 64px; }
    .home-menu-cta__inner { min-height: 0; grid-template-columns: 56px minmax(0, 1fr); gap: 18px; padding: 28px 22px; border-radius: 24px; }
    .home-menu-cta__inner > span { width: 56px; height: 56px; }
    .home-menu-cta__inner h2 { font-size: 2.55rem; }
    .home-menu-cta__inner p { font-size: .75rem; }
    .home-menu-cta__inner a { grid-column: 1 / -1; width: 100%; min-height: 52px; }
}

@media (max-width: 390px) {
    .public-home .menu-container { width: min(calc(100% - 22px), 1240px); }
    .home-hero { min-height: max(650px, 100svh); }
    .home-hero__brand strong { max-width: 118px; }
    .home-hero__utilities { gap: 5px; }
    .home-hero h1 { font-size: 2.72rem; }
    .home-hero__copy { padding-left: 16px; }
    .home-intro__copy h2 { font-size: 2.4rem; }
    .home-intro__badges { align-items: stretch; flex-direction: column; }
    .home-intro__badges span { width: 100%; }
    .home-categories__rail { grid-auto-columns: 88%; }
    .home-contact-card__links { grid-template-columns: 1fr 1fr; }
}

@media (max-height: 640px) and (orientation: landscape) {
    .home-hero { min-height: 600px; }
    .home-hero__topbar { min-height: 72px; }
    .home-hero__content { padding-block: 36px 44px; }
    .home-hero__copy { padding-block: 16px; }
    .home-hero h1 { max-width: 680px; font-size: clamp(2.7rem, 7vw, 4.2rem); }
    .home-hero__actions { margin-top: 20px; }
    .home-hero__proof { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide,
    .home-hero__primary,
    .home-hero__secondary,
    .home-contact-card__links a,
    .home-motion-ready [data-home-reveal] {
        transition: none;
    }

    .home-motion-ready [data-home-reveal] { opacity: 1; transform: none; }
}

/* Tastely-inspired single restaurant experience */
:root {
    --home-deep: #10271b;
    --home-deep-soft: #183b28;
    --home-cream: #f7faf5;
    --home-cream-strong: #eaf3e8;
    --home-white: #ffffff;
    --home-on-dark: #f8fff9;
    --home-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --home-body: "Instrument Sans", system-ui, sans-serif;
    --home-shadow: 0 24px 70px rgba(25, 70, 43, .12);
    --home-radius-sm: 14px;
    --home-radius-md: 24px;
    --home-ease: cubic-bezier(.2, .8, .2, 1);
}

.public-home { background: #fff; color: #17251c; }
.public-home h1,
.public-home h2,
.public-home h3,
.public-home .home-category-card strong { font-family: var(--home-display); letter-spacing: -.035em; }

.home-hero {
    min-height: 780px;
    display: block;
    color: #17251c;
    background: linear-gradient(180deg, #fff 0%, #fbfdf9 68%, #f2f8f0 100%);
}

.home-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient(rgba(28, 108, 60, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 108, 60, .055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
    pointer-events: none;
}

.home-hero__blob { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.home-hero__blob--one { top: 110px; right: -120px; width: 440px; height: 440px; background: rgba(109, 214, 118, .16); }
.home-hero__blob--two { bottom: 25px; left: -190px; width: 380px; height: 380px; background: rgba(198, 235, 168, .22); }

.home-hero__topbar {
    z-index: 20;
    min-height: 84px;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    border-bottom: 1px solid #e4eee3;
}

.home-hero__brand img { border-color: #dfeadd; background: #fff; box-shadow: 0 8px 24px rgba(28, 80, 45, .09); }
.home-hero__brand small { color: #688070; }
.home-hero__brand strong { color: #14251a; font-family: var(--home-display); font-size: 1.15rem; }
.home-hero__links { border: 0; background: transparent; backdrop-filter: none; }
.home-hero__links a { color: #53695a; font-size: .82rem; }
.home-hero__links a:hover { color: var(--menu-primary); background: color-mix(in srgb, var(--menu-primary) 8%, white); }
.home-hero__status { border-color: #dce9dc; background: rgba(255, 255, 255, .8); backdrop-filter: blur(14px); }
.home-hero__status strong { color: #1d3223; }
.home-hero__status small { color: #687b6d; }
.home-hero__login { color: #fff; border-color: var(--menu-primary); background: var(--menu-primary); box-shadow: 0 10px 24px color-mix(in srgb, var(--menu-primary) 25%, transparent); }

.home-hero__content {
    z-index: 5;
    min-height: 690px;
    grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
    gap: clamp(48px, 6vw, 90px);
    padding: 68px 0 86px;
}

.home-hero__copy { width: 100%; min-width: 0; max-width: 660px; padding: 0; }
.home-hero__badge {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 7px 13px;
    color: #245a36;
    border: 1px solid #cfe6d1;
    border-radius: 999px;
    background: #f0f9ef;
    font-size: .76rem;
    font-weight: 700;
}
.home-hero__badge i { font-size: 18px; }
.home-hero h1 { max-width: 650px; color: #132219; font-size: clamp(3.5rem, 5.25vw, 5.8rem); line-height: .97; letter-spacing: -.065em; text-shadow: none; }
.home-hero__copy > p { max-width: 590px; margin: 25px 0 0; overflow-wrap: anywhere; color: #556a5b; font-size: clamp(1rem, 1.25vw, 1.17rem); line-height: 1.7; }
.home-hero__actions { margin-top: 32px; }
.home-hero__primary,
.home-hero__secondary { min-height: 56px; border-radius: 14px; font-size: .9rem; }
.home-hero__primary { color: #fff; background: var(--menu-primary); box-shadow: 0 14px 30px color-mix(in srgb, var(--menu-primary) 28%, transparent); }
.home-hero__secondary { color: #263b2d; border-color: #d8e5d8; background: #fff; backdrop-filter: none; }
.home-hero__primary:hover { color: #fff; box-shadow: 0 18px 36px color-mix(in srgb, var(--menu-primary) 32%, transparent); }
.home-hero__secondary:hover { color: var(--menu-primary); border-color: color-mix(in srgb, var(--menu-primary) 35%, #d8e5d8); background: #fff; }
.home-hero__proof { margin-top: 22px; color: #64766a; }
.home-hero__proof li { border: 0; background: transparent; backdrop-filter: none; padding-inline: 0 12px; }
.home-hero__proof i { color: var(--menu-primary); }

.home-hero__visual { min-width: 0; min-height: 570px; position: relative; isolation: isolate; }
.home-hero__slides { position: absolute; inset: 12px 42px 28px 34px; overflow: hidden; border: 9px solid #fff; border-radius: 34px; background: #dce8dc; box-shadow: 0 36px 90px rgba(25, 75, 43, .22); transform: rotate(1.5deg); }
.home-hero__slide { position: absolute; inset: 0; }
.home-hero__slide img { object-position: center; }
.home-hero__menu-card {
    position: absolute;
    z-index: 4;
    right: -18px;
    bottom: -14px;
    width: min(330px, 70%);
    padding: 18px;
    border: 1px solid rgba(219, 233, 219, .9);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(24, 65, 37, .2);
    backdrop-filter: blur(18px);
}
.home-hero__menu-card header { display: flex; align-items: center; gap: 10px; }
.home-hero__menu-card header > span { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; border-radius: 12px; background: var(--menu-primary); font-size: 21px; }
.home-hero__menu-card header div { display: grid; }
.home-hero__menu-card header strong { color: #16261b; font-size: .82rem; }
.home-hero__menu-card header small { color: #718077; font-size: .64rem; }
.home-hero__menu-tabs { display: flex; gap: 6px; margin: 14px 0 8px; padding-bottom: 9px; border-bottom: 1px solid #e6eee5; }
.home-hero__menu-tabs span { padding: 5px 8px; color: #708077; border-radius: 999px; font-size: .58rem; font-weight: 700; }
.home-hero__menu-tabs span:first-child { color: #fff; background: var(--menu-primary); }
.home-hero__menu-row { min-height: 52px; display: grid; grid-template-columns: 38px minmax(0, 1fr) 28px; align-items: center; gap: 9px; border-bottom: 1px solid #edf2ec; }
.home-hero__menu-row:last-child { border-bottom: 0; }
.home-hero__menu-row > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--menu-primary); border-radius: 10px; background: #eef7ed; font-size: 18px; }
.home-hero__menu-row div { display: grid; min-width: 0; }
.home-hero__menu-row strong { overflow: hidden; color: #213027; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.home-hero__menu-row small { color: #7b897f; font-size: .58rem; }
.home-hero__menu-row > i { width: 26px; height: 26px; display: grid; place-items: center; color: #fff; border-radius: 8px; background: var(--menu-primary); }
.home-hero__floating { position: absolute; z-index: 5; display: flex; align-items: center; border: 1px solid #dce9dc; background: rgba(255, 255, 255, .95); box-shadow: 0 16px 40px rgba(22, 65, 35, .16); backdrop-filter: blur(12px); }
.home-hero__floating--status { top: -7px; left: -15px; gap: 10px; padding: 11px 14px; border-radius: 16px; }
.home-hero__floating--status > span { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; border-radius: 10px; background: var(--menu-primary); font-size: 20px; }
.home-hero__floating--status div { display: grid; }
.home-hero__floating--status small { color: #758279; font-size: .58rem; }
.home-hero__floating--status strong { color: #213128; font-size: .72rem; }
.home-hero__floating--rating { right: 2px; top: 82px; display: grid; grid-template-columns: 30px 1fr; gap: 0 8px; padding: 10px 13px; border-radius: 15px; }
.home-hero__floating--rating i { grid-row: 1 / 3; align-self: center; color: #f3b43e; font-size: 25px; }
.home-hero__floating--rating strong { color: #26362c; font-size: .68rem; }
.home-hero__floating--rating small { color: #77847c; font-size: .57rem; }

.home-nav { border-color: #e2ebe1; background: rgba(255, 255, 255, .9); backdrop-filter: blur(18px); }
.home-intro { padding-block: 104px; }
.home-intro__copy h2 { font-size: clamp(2.75rem, 4.8vw, 4.8rem); }
.home-highlight-card { background: rgba(255, 255, 255, .065); }
.home-highlight-card > span { color: #fff; background: var(--menu-primary); }
.home-categories { background: #f5f9f3; }
.home-category-card { border-color: #dfe9dc; box-shadow: 0 18px 45px rgba(28, 74, 42, .09); }
.home-gallery { background: #11291b; }
.home-visit { background: #f5f9f3; }
.home-menu-cta__inner { background: linear-gradient(90deg, rgba(10, 37, 21, .94), rgba(10, 37, 21, .69) 62%, rgba(10, 37, 21, .48)), url("../img/restaurant/banner1.jpg") center / cover; }
.home-menu-cta__inner > span { color: #fff; background: var(--menu-primary); }

@media (max-width: 1080px) {
    .home-hero__content { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); gap: 38px; }
    .home-hero h1 { font-size: clamp(3.3rem, 6vw, 4.8rem); }
    .home-hero__menu-card { right: 0; }
}

@media (max-width: 820px) {
    .home-hero { min-height: auto; }
    .home-hero__topbar { grid-template-columns: 1fr auto; }
    .home-hero__links { display: none; }
    .home-hero__content { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding-block: 56px 92px; }
    .home-hero__copy { max-width: 690px; }
    .home-hero__visual { width: min(100%, 650px); min-height: 540px; margin-inline: auto; }
}

@media (max-width: 560px) {
    .home-hero__topbar { min-height: 76px; }
    .home-hero__brand strong { max-width: 128px; }
    .home-hero__content { gap: 38px; padding-block: 42px 72px; }
    .home-hero__copy { padding: 0; }
    .home-hero__badge { margin-bottom: 18px; font-size: .68rem; }
    .home-hero h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
    .home-hero__copy > p { margin-top: 19px; font-size: 1rem; }
    .home-hero__actions { grid-template-columns: 1fr; margin-top: 26px; }
    .home-hero__proof { display: flex; align-items: flex-start; flex-direction: column; gap: 2px; }
    .home-hero__visual { min-height: 430px; }
    .home-hero__slides { inset: 8px 12px 28px; border-width: 6px; border-radius: 26px; }
    .home-hero__menu-card { right: -4px; bottom: -12px; width: 76%; padding: 13px; }
    .home-hero__menu-card .home-hero__menu-row:nth-of-type(n+4) { display: none; }
    .home-hero__floating--status { left: -5px; }
    .home-hero__floating--rating { top: 69px; right: -4px; }
}

@media (max-width: 390px) {
    .home-hero__utilities .home-hero__status { display: none; }
    .home-hero__visual { min-height: 395px; }
    .home-hero__menu-card { width: 82%; }
    .home-hero__floating--rating { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
    .home-hero__floating--status { animation: home-float 4.8s ease-in-out infinite; }
    .home-hero__floating--rating { animation: home-float 5.4s ease-in-out .6s infinite reverse; }
    .home-hero__menu-card { animation: home-float 6s ease-in-out 1s infinite; }
}

@keyframes home-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.home-hero {
    min-height: max(720px, 100svh);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    color: #fff;
    background: var(--home-deep);
}

.home-hero::after {
    height: 26px;
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: transparent;
    background-image: url("../img/restaurant/pattern.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 26px;
    pointer-events: none;
}

.home-hero > .home-hero__slides {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--home-deep);
    box-shadow: none;
    transform: none;
}

.home-hero > .home-hero__slides .home-hero__slide { position: absolute; inset: 0; }
.home-hero > .home-hero__slides .home-hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero__veil {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    background: linear-gradient(90deg, rgba(5, 21, 12, .9) 0%, rgba(5, 21, 12, .69) 48%, rgba(5, 21, 12, .23) 100%), linear-gradient(0deg, rgba(4, 17, 10, .54), transparent 60%);
    pointer-events: none;
}

.home-hero__topbar { z-index: 3; border-bottom-color: rgba(255, 255, 255, .2); }
.home-hero__brand img { border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .94); }
.home-hero__brand small { color: rgba(255, 255, 255, .72); }
.home-hero__brand strong { color: #fff; }
.home-hero__links a { color: rgba(255, 255, 255, .84); }
.home-hero__links a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.home-hero__status { border-color: rgba(255, 255, 255, .22); background: rgba(9, 31, 18, .42); }
.home-hero__status strong { color: #fff; }
.home-hero__status small { color: rgba(255, 255, 255, .72); }
.home-hero__login { border-color: color-mix(in srgb, var(--menu-primary) 80%, white); }

.home-hero__content {
    z-index: 2;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 760px);
    align-content: center;
    padding-block: clamp(90px, 14vh, 150px) clamp(100px, 14vh, 150px);
}

.home-hero__copy { max-width: 760px; }
.home-hero__badge { color: #e7f8e9; border-color: rgba(255, 255, 255, .22); background: rgba(11, 48, 24, .5); backdrop-filter: blur(12px); }
.home-hero h1 { max-width: 760px; color: #fff; font-size: clamp(4rem, 6.4vw, 6.8rem); text-shadow: 0 12px 40px rgba(0, 0, 0, .28); }
.home-hero__copy > p { max-width: 650px; color: rgba(255, 255, 255, .82); }
.home-hero__primary { color: #fff; }
.home-hero__secondary { color: #fff; border-color: rgba(255, 255, 255, .32); background: rgba(7, 28, 15, .42); backdrop-filter: blur(12px); }
.home-hero__secondary:hover { color: #fff; border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .14); }
.home-hero__proof { color: rgba(255, 255, 255, .74); }
.home-hero__proof i { color: #9fe6af; }

@media (max-width: 820px) {
    .home-hero { min-height: max(720px, 100svh); }
    .home-hero__content { grid-template-columns: 1fr; padding-block: 72px 100px; }
    .home-hero__veil { background: linear-gradient(90deg, rgba(5, 21, 12, .89), rgba(5, 21, 12, .54)), linear-gradient(0deg, rgba(4, 17, 10, .66), transparent 62%); }
}

@media (max-width: 560px) {
    .home-hero { min-height: max(700px, 100svh); }
    .home-hero__content { padding-block: 54px 80px; }
    .home-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .home-hero__proof { display: none; }
    .home-hero > .home-hero__slides .home-hero__slide img { object-position: 62% center; }
}

/* Unified section design system */
.home-section--white-divider { position: relative; isolation: isolate; background-color: #fff; }
.home-section-divider {
    width: 100%;
    height: 26px;
    position: absolute;
    z-index: 3;
    top: -25px;
    left: 0;
    display: block;
    overflow: hidden;
    background-color: transparent;
    background-image: url("../img/restaurant/pattern2.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 26px;
    pointer-events: none;
}

.public-home main { background: #fff; }
.public-home .menu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--menu-primary);
    font-family: var(--home-display);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.public-home .menu-kicker::before { width: 24px; height: 2px; content: ""; border-radius: 999px; background: currentColor; }
.public-home .section-heading { margin-bottom: 38px; }
.public-home .section-heading h2 { margin-top: 9px; line-height: 1.02; text-wrap: balance; }
.public-home .section-heading > a,
.home-gallery__more,
.home-hours-card > a,
.home-contact-card__more {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 750;
    transition: transform .22s var(--home-ease), color .22s ease, background-color .22s ease, border-color .22s ease;
}
.public-home .section-heading > a:hover,
.home-gallery__more:hover,
.home-hours-card > a:hover,
.home-contact-card__more:hover { transform: translateY(-2px); }

.home-intro {
    position: relative;
    align-items: center;
    padding-block: clamp(88px, 10vw, 136px);
    background: #fff;
}
.home-intro::after {
    width: 320px;
    height: 320px;
    position: absolute;
    z-index: -1;
    right: -170px;
    bottom: 20px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--menu-primary) 10%, white), transparent 70%);
}
.home-intro__copy h2 { color: #14251a; }
.home-intro__copy p { color: #5a6d60; }
.home-intro__actions { position: relative; }
.home-primary-action,
.home-secondary-action { border: 1px solid #dce8dc; transition: transform .24s var(--home-ease), box-shadow .24s ease, border-color .24s ease; }
.home-primary-action:hover,
.home-secondary-action:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(24, 73, 40, .16); }
.home-secondary-action { background: #fff; }

.home-highlights { position: relative; overflow: hidden; padding-block: 108px; background: #10291a; }
.home-highlights::after { width: 440px; height: 440px; position: absolute; right: -180px; bottom: -270px; content: ""; border: 1px solid rgba(151, 223, 166, .14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(151, 223, 166, .025), 0 0 0 140px rgba(151, 223, 166, .018); }
.home-highlights .menu-kicker { color: #9ee7ad; }
.home-highlights__grid { position: relative; z-index: 1; }
.home-highlight-card {
    overflow: hidden;
    position: relative;
    border-color: rgba(255, 255, 255, .13);
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
    transition: transform .24s var(--home-ease), border-color .24s ease, background-color .24s ease;
}
.home-highlight-card::after { width: 120px; height: 120px; position: absolute; top: -72px; right: -55px; content: ""; border-radius: 50%; background: rgba(133, 223, 150, .1); }
.home-highlight-card:hover { transform: translateY(-6px); border-color: rgba(159, 230, 175, .34); background-color: rgba(255, 255, 255, .05); }
.home-highlight-card > span { box-shadow: 0 12px 28px color-mix(in srgb, var(--menu-primary) 26%, transparent); }

.home-categories { padding-block: 110px 128px; background: #f3f8f1; }
.home-categories__rail { padding: 6px 2px 32px; scroll-padding-inline: 2px; }
.home-category-card { overflow: hidden; border: 1px solid #dce8da; background: #fff; transition: transform .25s var(--home-ease), box-shadow .25s ease, border-color .25s ease; }
.home-category-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--menu-primary) 30%, #dce8da); box-shadow: 0 26px 56px rgba(27, 75, 42, .14); }
.home-category-card__media::after { position: absolute; inset: 50% 0 0; content: ""; background: linear-gradient(transparent, rgba(8, 29, 15, .34)); pointer-events: none; }
.home-category-card > div:last-child { padding-inline: 18px; }

.home-reservation { padding-block: 112px 104px; }
.home-reservation__compact { border: 1px solid #dce8dc; background: linear-gradient(145deg, #fff, #f8fbf7); box-shadow: 0 28px 70px rgba(25, 72, 40, .11); }
.home-reservation__icon { box-shadow: 0 14px 30px color-mix(in srgb, var(--menu-primary) 22%, transparent); }

.home-gallery { position: relative; overflow: hidden; padding-block: 112px 108px; background: #10291a; }
.home-gallery::after { width: 600px; height: 600px; position: absolute; top: -350px; left: -320px; content: ""; border-radius: 50%; background: color-mix(in srgb, var(--menu-primary) 14%, transparent); filter: blur(2px); }
.home-gallery > .menu-container { position: relative; z-index: 1; }
.home-gallery__viewport { overflow: hidden; border-radius: 30px; }
.home-gallery figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 55%, rgba(4, 18, 10, .68)); pointer-events: none; }
.home-gallery figcaption { z-index: 2; border: 1px solid rgba(255, 255, 255, .16); background: rgba(10, 34, 19, .72); backdrop-filter: blur(12px); }
.home-gallery__more { margin-top: 24px; border: 1px solid rgba(255, 255, 255, .2); }

.home-visit { padding-block: 112px 126px; background: #f3f8f1; }
.home-visit__grid { gap: 22px; }
.home-hours-card,
.home-contact-card { border: 1px solid #dce8da; background: rgba(255, 255, 255, .96); box-shadow: 0 24px 60px rgba(28, 73, 42, .09); }
.home-hours-card header > span:first-child { box-shadow: 0 12px 28px color-mix(in srgb, var(--menu-primary) 18%, transparent); }
.home-hours-card dl div { min-height: 44px; align-items: center; }
.home-contact-card__links a { border-color: #e1eae0; background: #f9fbf8; }

.home-menu-cta { padding-block: 112px 96px; }
.home-menu-cta__inner { border-radius: 32px; box-shadow: 0 30px 78px rgba(18, 59, 33, .18); }

@media (max-width: 760px) {
    .home-section-divider { height: 26px; top: -25px; }
    .public-home .section-heading { margin-bottom: 26px; }
    .home-intro,
    .home-highlights,
    .home-categories,
    .home-reservation,
    .home-gallery,
    .home-visit,
    .home-menu-cta { padding-block: 78px; }
    .home-category-card:hover,
    .home-highlight-card:hover,
    .home-primary-action:hover,
    .home-secondary-action:hover { transform: none; }
}

/* Viewport and overlay hardening for the public home. */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.public-home {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body.public-home { overflow-x: clip; }
}

.public-home .menu-container,
.home-hero__topbar,
.home-hero__content,
.home-hero__copy,
.home-hero__actions,
.public-home main,
.public-home main > section {
    min-width: 0;
}

.home-hero,
.home-nav,
.public-home main,
.public-home footer {
    width: 100%;
    max-width: 100%;
}

/* Keep the fixed reservation layer attached to the viewport, not the animated section. */
.public-home .home-reservation[data-home-reveal] {
    opacity: 1 !important;
    transform: none !important;
}

.public-home .home-reservation.home-section--white-divider { isolation: auto; }
body.has-reservation-modal { overflow: hidden; overscroll-behavior: none; }

.public-home .reservation-modal {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100dvh;
    position: fixed;
    z-index: 10000;
    inset: 0;
    margin: 0;
    isolation: isolate;
}

.public-home .reservation-modal__scrim { z-index: 0; }
.public-home .reservation-modal__sheet { z-index: 1; }

@media (max-width: 760px) {
    .public-home .menu-container {
        width: min(calc(100% - 28px), 1240px);
        max-width: 1240px;
    }

    .home-hero__content {
        width: min(calc(100% - 28px), 1240px);
        max-width: 1240px;
        margin-inline: auto;
        padding-inline: 0;
    }

    .home-hero__copy {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
    }

    .home-hero h1 {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        font-size: clamp(2.3rem, 11.5vw, 3.25rem);
        line-height: 1.02;
    }

    .home-hero__copy > p {
        width: 100%;
        max-width: 42rem;
        overflow-wrap: break-word;
    }

    .home-hero__actions,
    .home-hero__primary,
    .home-hero__secondary { width: 100%; }

    .home-nav .menu-container {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        margin-inline: 0;
        padding-inline: 14px;
    }

    .public-home .reservation-modal {
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        padding: 0;
    }

    .public-home .reservation-modal__sheet {
        width: 100%;
        max-width: 100%;
        max-height: calc(100dvh - env(safe-area-inset-top));
    }
}

@media (max-width: 390px) {
    .public-home .menu-container,
    .home-hero__content { width: min(calc(100% - 22px), 1240px); }
    .home-hero h1 { font-size: clamp(2.15rem, 11vw, 2.75rem); }
}

/* Digital menu category presentation: circular visual navigation. */
.home-categories--circles .home-categories__rail {
    grid-auto-columns: minmax(156px, 190px);
    align-items: start;
    gap: 24px;
}

.home-categories--circles .home-category-card {
    display: grid;
    justify-items: center;
    overflow: visible;
    color: var(--menu-text);
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.home-categories--circles .home-category-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-4px);
}

.home-categories--circles .home-category-card__media {
    width: 156px;
    height: 156px;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(27, 75, 42, .16);
}

.home-categories--circles .home-category-card__media > span:first-child {
    border-radius: inherit;
    font-size: 48px;
}

.home-categories--circles .home-category-card__media > span:last-child {
    right: 50%;
    bottom: 3px;
    transform: translateX(50%);
    white-space: nowrap;
}

.home-categories--circles .home-category-card > div:last-child {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 4px;
    padding: 14px 4px 4px;
}

.home-categories--circles .home-category-card > div:last-child > span:first-child,
.home-categories--circles .home-category-card > div:last-child > i {
    display: none;
}

.home-categories--circles .home-category-card > div:last-child > span:nth-child(2) {
    justify-items: center;
}

.home-categories--circles .home-category-card strong {
    font-size: 1.12rem;
    line-height: 1.2;
}

.home-categories--circles .home-category-card small {
    max-width: 170px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

@media (max-width: 760px) {
    .home-categories--circles .home-categories__rail {
        grid-auto-columns: 132px;
        gap: 16px;
    }

    .home-categories--circles .home-category-card__media {
        width: 124px;
        height: 124px;
    }

    .home-categories--circles .home-category-card strong { font-size: .94rem; }
    .home-categories--circles .home-category-card small { max-width: 128px; }
}
