.grc-wrap {
    --grc-bg: #f5efe4;
    --grc-text: #1d1a16;
    --grc-muted: #5d554a;
    --grc-card: #fffefb;
    --grc-accent: #c64824;
    --grc-accent-dark: #9f3417;
    --grc-border: #eadfce;
    position: relative;
    overflow: hidden;
    padding: 42px 22px;
    border-radius: 28px;
    background: radial-gradient(circle at 10% 20%, #fff9f0 0%, var(--grc-bg) 55%, #efe0cb 100%);
    color: var(--grc-text);
    max-width: 1100px;
    margin: 24px auto;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.grc-bg-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.grc-bg-1 {
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    background: #f2d1a1;
    opacity: 0.5;
}

.grc-bg-2 {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -80px;
    background: #f5c093;
    opacity: 0.42;
}

.grc-hero,
.grc-chip-row,
.grc-grid,
.grc-info-grid {
    position: relative;
    z-index: 1;
}

.grc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    background: #fff4e4;
    border: 1px solid var(--grc-border);
    border-radius: 999px;
    padding: 8px 14px;
}

.grc-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grc-accent);
    display: inline-block;
}

.grc-logo {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.grc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grc-brand-text {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.grc-hero h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.06;
}

.grc-hero p {
    margin: 14px 0 0;
    max-width: 680px;
    font-size: 18px;
    color: var(--grc-muted);
}

.grc-rating {
    margin-top: 16px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--grc-border);
    border-radius: 999px;
    padding: 8px 14px;
}

.grc-rating strong {
    color: var(--grc-accent-dark);
}

.grc-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.grc-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--grc-border);
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    color: var(--grc-text);
}

.grc-chip.is-active,
.grc-chip:hover {
    background: #ffe4c4;
    border-color: #f1c48b;
}

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

.grc-action-grid {
    margin-top: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grc-card {
    border: 1px solid var(--grc-border);
    background: var(--grc-card);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(70, 39, 8, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grc-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.grc-card p {
    margin: 0;
    color: var(--grc-muted);
    min-height: 48px;
}

.grc-card small {
    color: var(--grc-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.grc-btn {
    margin-top: 18px;
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    background: var(--grc-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.grc-btn:hover {
    background: var(--grc-accent-dark);
}

.grc-info-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.grc-info-card {
    background: #fff9f2;
    border: 1px solid var(--grc-border);
    border-radius: 18px;
    padding: 18px 20px;
}

.grc-info-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.grc-info-card p,
.grc-info-card li {
    margin: 0;
    color: var(--grc-muted);
}

.grc-info-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.grc-menu-grid {
    margin-top: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grc-menu-item h3 {
    margin-top: 8px;
    font-size: 18px;
}

.grc-menu-item .grc-price {
    margin-top: 6px;
    color: var(--grc-accent-dark);
    font-weight: 700;
    min-height: auto;
}

@media (max-width: 960px) {
    .grc-action-grid,
    .grc-menu-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 680px) {
    .grc-wrap {
        border-radius: 20px;
        padding: 24px 16px;
    }

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

    .grc-hero p {
        font-size: 16px;
    }
}
