.template-restaurant {
    --site-nav-hover-color: #fff;
    --restaurant-cream: color-mix(in srgb, var(--primary-color) 5%, #fffaf2);
    --restaurant-line: color-mix(in srgb, var(--secondary-color) 16%, transparent);
    --review-bg: color-mix(in srgb, var(--primary-color, #c28a36) 5%, #fffaf2);
    --review-heading: color-mix(in srgb, var(--secondary-color, #20242b) 30%, #171b22);
    --review-text: color-mix(in srgb, var(--secondary-color, #20242b) 24%, #343a43);
    --review-muted: color-mix(in srgb, var(--secondary-color, #20242b) 18%, #5a606b);
    --review-card-bg: color-mix(in srgb, var(--background-color, #fff) 18%, #fff);
    --review-border: color-mix(in srgb, var(--review-heading) 18%, transparent);
    --review-star: color-mix(in srgb, var(--primary-color, #c28a36) 48%, var(--review-heading));
}

.template-restaurant .site-nav {
    position: sticky;
    top: 0;
    left: auto;
    z-index: 50;
    width: 100%;
    max-width: none;
    margin: 0 auto -86px;
    padding-right: max(24px, calc((100% - 1132px) / 2));
    padding-left: max(24px, calc((100% - 1132px) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: color-mix(in srgb, color-mix(in srgb, var(--secondary-color, #20242b) 28%, #151922) 94%, transparent);
    color: #fff;
    backdrop-filter: blur(16px);
}

.template-restaurant.hero-is-first .site-brand span {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(12px);
}

.template-restaurant.hero-is-first .site-nav nav a:not(.nav-contact) {
    text-shadow: 0 1px 20px rgba(0, 0, 0, .45);
}

.template-restaurant .nav-contact,
.template-restaurant .site-button {
    background: var(--primary-color);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--primary-color) 38%, transparent);
}

.template-restaurant .customer-hero.section-layout-image-background {
    min-height: min(860px, 92vh);
    padding-top: 180px;
    padding-bottom: 110px;
    background: var(--secondary-color);
}

.template-restaurant .customer-hero.section-layout-image-background .hero-media {
    opacity: .76;
}

.template-restaurant .customer-hero.section-layout-image-background .hero-media::after {
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--secondary-color) 92%, transparent) 0%, color-mix(in srgb, var(--secondary-color) 42%, transparent) 62%, color-mix(in srgb, var(--secondary-color) 20%, transparent) 100%),
        linear-gradient(0deg, color-mix(in srgb, var(--secondary-color) 58%, transparent), transparent 55%);
}

.template-restaurant .customer-hero h1 {
    max-width: 900px;
    font-size: clamp(52px, 7vw, 94px);
    line-height: 1.02;
    letter-spacing: -4px;
}

.template-restaurant .site-eyebrow,
.template-restaurant .section-kicker,
.template-restaurant .section-heading span {
    color: var(--primary-color);
}

.template-restaurant .about-section {
    padding-top: 130px;
    padding-bottom: 130px;
}

.template-restaurant .about-intro img {
    max-height: 480px;
    border-radius: 180px 180px 18px 18px;
}

.template-restaurant .about-copy {
    border-left-color: var(--primary-color);
    font-size: 19px;
}

.template-restaurant .services-section {
    background: var(--restaurant-cream);
}

.template-restaurant .services-section.section-layout-list .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 48px;
}

.template-restaurant .services-section.section-layout-list .service-grid.collection-row {
    grid-auto-columns: calc(50% - 10px);
}

.template-restaurant .services-section.section-layout-list .service-grid article {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    grid-template-areas:
        "image number price"
        "image title price"
        "image description description";
    align-items: center;
    gap: 2px 18px;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--restaurant-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.template-restaurant .services-section.section-layout-list .service-image {
    grid-area: image;
    width: 74px;
    height: 74px !important;
    margin: 0;
    aspect-ratio: 1;
    border-radius: 50%;
}

.template-restaurant .services-section.section-layout-list .service-number {
    grid-area: number;
}

.template-restaurant .services-section.section-layout-list h3 {
    grid-area: title;
    margin: 1px 0;
    font-size: 22px;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

.template-restaurant .services-section.section-layout-list p {
    grid-area: description;
}

.template-restaurant .services-section.section-layout-list strong {
    grid-area: price;
    align-self: center;
    margin: 0;
    white-space: nowrap;
    font-size: 17px;
    overflow-wrap: normal;
}

.template-restaurant .portfolio-section.section-layout-large-feature .portfolio-grid {
    gap: 18px;
}

.template-restaurant .portfolio-grid article {
    position: relative;
    border-radius: 4px;
    background: var(--secondary-color);
}

.template-restaurant .portfolio-grid article > div:last-child {
    color: var(--secondary-color);
    background: var(--restaurant-cream);
}

.template-restaurant .portfolio-section.section-layout-large-feature .portfolio-grid article:first-child img {
    height: min(620px, 65vw);
}

.template-restaurant .review-section {
    background: var(--review-bg);
    color: var(--review-text);
}

.template-restaurant .review-section.section-bg-default,
.template-restaurant .review-section.section-bg-light,
.template-restaurant .review-section.section-bg-soft {
    --review-heading: color-mix(in srgb, var(--secondary-color, #20242b) 30%, #171b22);
    --review-text: color-mix(in srgb, var(--secondary-color, #20242b) 24%, #343a43);
    --review-muted: color-mix(in srgb, var(--secondary-color, #20242b) 18%, #5a606b);
    --review-card-bg: color-mix(in srgb, var(--background-color, #fff) 18%, #fff);
    --review-border: color-mix(in srgb, var(--review-heading) 18%, transparent);
    --review-star: color-mix(in srgb, var(--primary-color, #c28a36) 48%, var(--review-heading));
}

.template-restaurant .review-section.section-bg-dark,
.template-restaurant .review-section.section-bg-primary {
    --review-heading: #fff;
    --review-text: rgba(255, 255, 255, .86);
    --review-muted: rgba(255, 255, 255, .72);
    --review-card-bg: rgba(255, 255, 255, .08);
    --review-border: rgba(255, 255, 255, .16);
    --review-star: color-mix(in srgb, var(--primary-color, #c28a36) 28%, #ffd166);
}

.template-restaurant .review-section.section-bg-dark {
    --review-bg: color-mix(in srgb, var(--secondary-color, #20242b) 24%, #151922);
    background: var(--review-bg) !important;
}

.template-restaurant .review-section.section-bg-primary {
    --review-bg: color-mix(in srgb, var(--primary-color, #c28a36) 24%, #151922);
    background: var(--review-bg) !important;
}

.template-restaurant .review-section .section-heading span {
    color: var(--review-star);
}

.template-restaurant .review-section .section-heading h2 {
    color: var(--review-heading);
}

.template-restaurant .review-section .section-heading > p {
    color: var(--review-muted);
}

.template-restaurant .review-section.section-bg-dark .section-heading > p,
.template-restaurant .review-section.section-bg-primary .section-heading > p {
    color: var(--review-muted) !important;
}

.template-restaurant .review-grid blockquote {
    border: 1px solid var(--review-border);
    background: var(--review-card-bg);
    color: var(--review-text);
    box-shadow: none;
}

.template-restaurant .review-grid .stars {
    color: var(--review-star);
}

.template-restaurant .review-grid .stars span {
    color: var(--review-muted);
}

.template-restaurant .review-grid blockquote p {
    color: var(--review-text);
}

.template-restaurant .review-section.section-bg-dark .review-grid blockquote p,
.template-restaurant .review-section.section-bg-primary .review-grid blockquote p {
    color: var(--review-text) !important;
}

.template-restaurant .review-grid footer {
    border-top-color: var(--review-border);
    color: var(--review-muted);
}

.template-restaurant .review-grid footer strong {
    color: var(--review-heading);
}

.template-restaurant .review-grid .reviewer-initial {
    border-color: var(--review-border);
    background: var(--review-card-bg);
    color: var(--review-heading);
}

.template-restaurant .contact-section.section-layout-contact-card {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, color-mix(in srgb, var(--primary-color) 35%, transparent), transparent 40%),
        var(--secondary-color);
}

.template-restaurant .contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.template-restaurant .contact-links a {
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
}

.template-restaurant .contact-links a:hover {
    border-color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 28%, transparent);
}

.template-restaurant .map-section iframe {
    height: 520px;
    filter: saturate(.82) contrast(1.04);
}

@media (max-width: 850px) {
    .template-restaurant .customer-hero.section-layout-image-background {
        min-height: 720px;
        padding-top: 150px;
        text-align: left;
    }

    .template-restaurant .customer-hero.section-layout-image-background .hero-inner {
        margin: 0;
    }

    .template-restaurant .customer-hero h1 {
        letter-spacing: -3px;
    }

    .template-restaurant .services-section.section-layout-list .service-grid {
        grid-template-columns: 1fr;
    }

    .template-restaurant .services-section.section-layout-list .service-grid.collection-row {
        grid-auto-columns: 100%;
    }
}

@media (max-width: 600px) {
    .template-restaurant .site-nav {
        height: 72px;
        margin-bottom: -72px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .template-restaurant .site-brand strong {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .template-restaurant .customer-hero.section-layout-image-background {
        min-height: 650px;
        padding: 135px 20px 70px;
    }

    .template-restaurant .customer-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .template-restaurant .about-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .template-restaurant .services-section.section-layout-list .service-grid article {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
            "image number"
            "image title"
            "description description"
            "price price";
    }

    .template-restaurant .services-section.section-layout-list .service-image {
        width: 58px;
        height: 58px !important;
    }

    .template-restaurant .services-section.section-layout-list strong {
        margin-top: 9px;
    }

    .template-restaurant .services-section.section-layout-list .service-grid.collection-row {
        grid-auto-columns: 88%;
    }

    .template-restaurant .contact-section.section-layout-contact-card {
        margin: 35px 14px;
        padding: 38px 20px;
    }

    .template-restaurant .contact-links {
        grid-template-columns: 1fr;
    }
}
