.detail-section {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 32px;
}

.detail-card {
    position: relative;
    background: rgba(18, 122, 98, 0.57);
    border-radius: 26px;
    padding: 44px 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    color: white;
}

/* top sheen — matches home-card */
.detail-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    pointer-events: none;
    border-radius: 26px;
    background:
        radial-gradient(700px 240px at 20% 0%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%),
        radial-gradient(700px 240px at 90% 110%, rgba(73,120,186,.22), rgba(73,120,186,0) 55%);
}

.detail-card::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 22px;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,0));
}

.detail-card > * {
    position: relative;
    z-index: 1;
}

.detail-card h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin: 0 0 20px;
}

/* About card — two columns: location info left, description right */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.about-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin: 0 0 8px;
}

.about-value {
    font-size: 1rem;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    margin: 0 0 24px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    margin: 0;
}

/* Restaurant card — text left, image right */
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.restaurant-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    font-style: italic;
}

.restaurant-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,.9);
    margin: 0;
}

.restaurant-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 300px;
}

@media (max-width: 820px) {
    .about-grid,
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}