.hero__info {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    color: #3d332a;
}

.hero__info li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.hero__info svg {
    width: 18px;
    height: 18px;
    color: #9a7026;
    flex-shrink: 0;
}

.hero__info a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(154, 112, 38, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero__info a:hover {
    color: #9a7026;
    border-bottom-color: #9a7026;
}

.hero__plate img.hero__img {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 80px -30px rgba(28, 24, 20, 0.35);
    object-fit: contain;
}

.home-menu-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.preview-card {
    background: #fff;
    border: 1px solid rgba(154, 112, 38, 0.18);
    border-radius: 20px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 46px -30px rgba(28, 24, 20, 0.25);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -30px rgba(28, 24, 20, 0.4);
}

.preview-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #b58a3c 0%, #9a7026 100%);
    color: #fff;
    margin-bottom: 14px;
}

.preview-card__icon svg {
    width: 22px;
    height: 22px;
}

.preview-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #1c1814;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.preview-card__tagline {
    font-size: 13px;
    color: #6e5c3e;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.preview-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.preview-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    color: #3d332a;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(154, 112, 38, 0.2);
}

.preview-card__list li:last-child {
    border-bottom: none;
}

.preview-card__list li span:last-child {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #9a7026;
    white-space: nowrap;
}

.preview-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #9a7026;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.preview-card__link:hover {
    gap: 10px;
    color: #6e5c3e;
}

.preview-card__link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .hero__info {
        font-size: 14px;
    }
    .preview-card {
        padding: 22px 18px 18px;
    }
    .preview-card__title {
        font-size: 22px;
    }
}
