/* ==========================================================================
   Imperio / Liberty Restaurant (pId 63135) — individual brand page (brand.php)
   Auto-loaded by base.php as per-page brand CSS (basename "brand").
   Palette: --brand-primary (maroon) for headings/accents · black/white for CTAs (no gold) · cream (#F5EFE6) backgrounds. Tokens only — no hardcoded brand hex.
   ========================================================================== */

.brand-page { background: #fff; }
.brand-page .container { max-width: 1140px; }
.brand-empty { padding: 80px 0; text-align: center; color: #6b5c4a; }

.brand-section__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin: 0 0 12px;
}
.brand-section__title {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--brand-primary, #bf1e2e);
    margin: 0;
    line-height: 1.25;
}
.brand-section__head { margin-bottom: 44px; }
.brand-section__head.text-center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.brand-btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    border: 2px solid transparent;
}
.brand-btn:hover { transform: translateY(-2px); }
.brand-btn:focus-visible { outline: 2px solid var(--text, #1a1a1a); outline-offset: 3px; }
/* Secondary CTA — black/white combo (was gold). Class name kept as -gold to
   avoid touching every brand.php reference; only the rendered colour changed. */
.brand-btn--gold {
    background: var(--text, #1a1a1a);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}
.brand-btn--gold:hover { background: color-mix(in srgb, var(--text, #1a1a1a) 80%, #000); }
.brand-btn--outline {
    background: transparent;
    color: var(--brand-primary, #bf1e2e);
    border-color: var(--text, #1a1a1a);
}
.brand-btn--outline:hover { background: var(--text, #1a1a1a); color: #fff; }
.brand-btn--light-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.brand-btn--light-outline:hover { background: #fff; color: var(--brand-primary, #bf1e2e); }

/* ── Top Banner ──────────────────────────────────────────────────────── */
.brand-banner {
    background: var(--brand-primary, #bf1e2e);
    color: #fff;
    text-align: center;
    padding: 92px 0 84px;
}
/* Both banner CTAs match — transparent/white-outline, same treatment as the
   home hero's Order Online / View Restaurants pair. */
.brand-banner .brand-btn--gold {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.brand-banner__eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
}
.brand-banner__title {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 10px;
    text-wrap: balance;
    color: #fff; /* explicit — beats the global h1 colour rule on the red banner */
}
.brand-banner__tagline {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
}
.brand-banner__actions,
.brand-cta-band__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Description ─────────────────────────────────────────────────────── */
.brand-intro { background: #fff; padding: 64px 0; text-align: center; }
.brand-intro__text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4a4033;
    text-wrap: pretty;
}

/* ── Signature Dishes ────────────────────────────────────────────────── */
.brand-dishes { background: #F5EFE6; padding: 72px 0; }
.brand-dishes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.brand-dish-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(88,2,1,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.brand-dish-card__media {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5EFE6;
    color: var(--brand-primary);
    margin-bottom: 4px;
}
.brand-dish-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary, #bf1e2e);
    margin: 0;
}
.brand-dish-card__desc {
    font-size: 0.88rem;
    color: #6b5c4a;
    line-height: 1.55;
    margin: 0;
}

/* ── Audience + USPs ─────────────────────────────────────────────────── */
.brand-why { background: #fff; padding: 72px 0; }
.brand-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.brand-why__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4033;
    margin: 0;
}
.brand-usp-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.brand-usp-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-primary, #bf1e2e);
    line-height: 1.5;
}
.brand-usp-list__tick {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    margin-top: 1px;
}

/* ── Order / Reserve band ────────────────────────────────────────────── */
.brand-cta-band {
    background: var(--brand-primary);
    padding: 56px 0;
    text-align: center;
}
.brand-cta-band__title {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px;
}
.brand-cta-band .brand-btn--gold {
    background: #fff;
    color: var(--brand-primary, #bf1e2e);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}
.brand-cta-band .brand-btn--gold:hover { background: #F5EFE6; }

/* ── Gallery ─────────────────────────────────────────────────────────── */
.brand-gallery { background: #F5EFE6; padding: 72px 0; }
.brand-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.brand-gallery__tile {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px dashed rgba(154,124,44,0.4);
    color: var(--brand-primary);
}
/* Real photo tile — plain button, no placeholder chrome. */
.brand-gallery__tile--photo {
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.brand-gallery__tile--photo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(88,2,1,0.14); }
.brand-gallery__tile--photo:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.brand-gallery__tile--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Branch Locations ────────────────────────────────────────────────── */
.brand-locations { background: #fff; padding: 72px 0; }
.brand-locations__frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(88,2,1,0.1);
    border: 1px solid rgba(154,124,44,0.2);
}
.brand-locations__frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}
.brand-locations__foot { margin-top: 28px; }
.brand-locations__note {
    color: #6b5c4a;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .brand-dishes__grid { grid-template-columns: repeat(2, 1fr); }
    .brand-why__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
    .brand-banner { padding: 68px 0 60px; }
    .brand-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .brand-locations__frame iframe { height: 320px; }
}
@media (max-width: 560px) {
    .brand-dishes__grid { grid-template-columns: 1fr; }
    .brand-gallery__grid { grid-template-columns: 1fr; }
}
