/* Home page modernized sections — glass cards inspired by menu pages */

.home-bg-photo {
    position: relative;
}

.home-bg-photo::before {
    content: '';
    position: fixed;
    inset: -16px;
    z-index: -2;
    background-image: url('../images/home/restaurant-dining.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.38) saturate(1.1);
    transform: scale(1.05);
}

.home-bg-photo::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.82), rgba(18, 18, 22, 0.92));
}

/* Rodizio tier cards — medium scale (original proportions) */
.mhz-tier-grid,
.mhz-sig-grid,
.mhz-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 68rem;
    margin-inline: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .mhz-tier-grid,
    .mhz-sig-grid,
    .mhz-offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

.mhz-tier-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(22, 22, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    opacity: 1;
    visibility: visible;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .mhz-tier-card,
    .mhz-sig-card,
    .mhz-offer-card {
        max-width: none;
        margin-inline: 0;
    }
}

.mhz-tier-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.mhz-tier-card__img {
    width: 100%;
    height: 11.5rem;
    max-height: 11.5rem;
    object-fit: cover;
    display: block;
}

.mhz-tier-card__body {
    padding: 0.85rem 1rem 1rem;
}

.mhz-tier-card__price {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.mhz-tier-card__price--silver { color: #c0c0c0; }
.mhz-tier-card__price--gold { color: #f59e0b; }
.mhz-tier-card__price--platinum { color: #e5e4e2; }

.mhz-tier-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.25rem;
}

.mhz-tier-card__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Signature cuts — medium */
.mhz-sig-card {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(24, 24, 28, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
}

.mhz-sig-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.3);
}

.mhz-sig-card__img-wrap {
    position: relative;
    height: 11.5rem;
    max-height: 11.5rem;
    overflow: hidden;
}

.mhz-sig-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mhz-sig-card:hover .mhz-sig-card__img {
    transform: scale(1.06);
}

.mhz-sig-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.9);
    color: #121212;
}

.mhz-sig-card__body {
    padding: 0.85rem 1rem 1rem;
}

.mhz-sig-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.35rem;
}

.mhz-sig-card__text {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

/* Special offers — medium */
.mhz-offer-card {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(20, 20, 24, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
}

.mhz-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.mhz-offer-card__media {
    position: relative;
    height: 11rem;
    max-height: 11rem;
    overflow: hidden;
}

.mhz-offer-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mhz-offer-card:hover .mhz-offer-card__img {
    transform: scale(1.05);
}

.mhz-offer-card__tag {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f59e0b;
    color: #121212;
    transform: rotate(6deg);
}

.mhz-offer-card__body {
    padding: 0.85rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mhz-offer-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.35rem;
}

.mhz-offer-card__text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 0.65rem;
}

.mhz-offer-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

/* Our story */
.mhz-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mhz-story {
        grid-template-columns: 1.05fr 1fr;
    }
}

.mhz-story__visual {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.mhz-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mhz-story__panel {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 1.35rem;
    background: rgba(22, 22, 26, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mhz-story__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 0.65rem;
}

.mhz-story__title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.mhz-story__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.85rem;
}

.mhz-story__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #f59e0b;
    text-decoration: none;
    border-bottom: 2px solid rgba(245, 158, 11, 0.4);
    padding-bottom: 0.15rem;
    transition: color 0.2s, border-color 0.2s;
}

.mhz-story__link:hover {
    color: #fff;
    border-color: #f59e0b;
}

/* Footer QR column */
.mhz-footer-qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

/* ── Home page: always show section content (never hidden by scroll/AOS tricks) ── */
body.home-bg-photo > section,
body.home-bg-photo > section * {
    content-visibility: visible !important;
}

body.home-bg-photo [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

body.home-bg-photo .premium-reveal {
    opacity: 1 !important;
    transform: none !important;
}

body.home-bg-photo .mhz-tier-grid,
body.home-bg-photo .mhz-offer-grid,
body.home-bg-photo .mhz-sig-grid,
body.home-bg-photo .mhz-story {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Churrasco video — medium panel */
body.home-bg-photo #video .container {
    max-width: 42rem !important;
}

body.home-bg-photo #churrascoVideoPlay .w-20 {
    width: 3.5rem !important;
    height: 3.5rem !important;
}

body.home-bg-photo #churrascoVideoPlay .w-20 i {
    font-size: 1rem !important;
}

body.home-bg-photo #churrascoVideoPlay h2 {
    font-size: 1.25rem !important;
    margin-top: 1rem !important;
}

body.home-bg-photo #churrascoVideoPlay p {
    font-size: 0.85rem !important;
}
