/* ===============================
   HOMEPAGE + WELCOME MERGED CSS
   MANANG VALLEY 2026 THEME
================================ */

:root {
    --mv-cream: #fff8ef;
    --mv-soft-cream: #f5e5d6;
    --mv-peach: #e8c8af;
    --mv-burgundy: #6b4a5c;
    --mv-burgundy-dark: #563746;
    --mv-deep-wine: #2b1d24;
    --mv-charcoal: #17120d;
    --mv-forest: #123c36;
    --mv-gold: #c8a15b;
    --mv-gold-dark: #a9823f;
    --mv-text: #2f2a2a;
    --mv-muted: #76696a;
    --mv-border: rgba(43, 29, 36, .14);
    --mv-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ================= GLOBAL FIX ================= */

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= HOMEPAGE HERO ================= */

.premium-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    background: var(--mv-charcoal);
    margin: 0 !important;
    padding: 0 !important;
}

.hero-video-bg {
    position: absolute;
    inset: -3px;
    z-index: 1;
    overflow: hidden;
    background: var(--mv-charcoal);
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 104vw;
    height: 58.5vw;
    min-width: 185vh;
    min-height: 104vh;
    transform: translate(-50%, -50%) scale(1.08);
    border: 0;
    pointer-events: none;
    opacity: .88;
    filter: brightness(.84) contrast(1.08) saturate(1.04) sepia(.08);
    transition: transform 8s ease, opacity 1.2s ease, filter 1.2s ease;
}

.premium-hero:hover .hero-video-bg iframe {
    transform: translate(-50%, -50%) scale(1.11);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 20%, rgba(200, 161, 91, .16), transparent 28%),
        linear-gradient(90deg, rgba(23, 18, 13, .72) 0%, rgba(43, 29, 36, .52) 42%, rgba(18, 60, 54, .28) 100%),
        linear-gradient(180deg, rgba(23, 18, 13, .12) 0%, rgba(43, 29, 36, .14) 45%, rgba(23, 18, 13, .74) 100%);
}

.hero-video-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 10%, rgba(255, 248, 239, .14) 38%, transparent 46%),
        radial-gradient(circle at 52% 82%, rgba(200, 161, 91, .18), transparent 28%);
    mix-blend-mode: screen;
    opacity: .58;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 760px;
    padding-top: 10px;
    animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--mv-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.hero-sub::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: .9;
}

.hero-title {
    max-width: 820px;
    margin-bottom: 24px;
    color: var(--mv-cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(50px, 4.8vw, 84px);
    line-height: .92;
    font-weight: 600;
    letter-spacing: -.04em;
    text-transform: none;
    text-shadow: 0 12px 34px rgba(23, 18, 13, .48);
}

.hero-title span {
    display: inline-block;
    color: var(--mv-peach);
    font-weight: 500;
}

.hero-desc {
    max-width: 560px;
    margin-bottom: 34px;
    color: rgba(255, 248, 239, .86);
    font-size: 15.5px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.btn-hero {
    background: var(--mv-cream);
    color: var(--mv-forest);
    border: 1px solid rgba(255, 248, 239, .45);
    backdrop-filter: blur(12px);
    padding: 15px 36px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .32s var(--mv-ease);
}

.btn-hero:hover {
    background: var(--mv-gold);
    border-color: var(--mv-gold);
    color: var(--mv-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(200, 161, 91, .28);
    text-decoration: none;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 248, 239, .94);
    padding: 14px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .28s ease;
}

.btn-hero-outline::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--mv-gold);
    transition: width .3s ease;
}

.btn-hero-outline:hover {
    color: var(--mv-gold);
    text-decoration: none;
}

.btn-hero-outline:hover::after {
    width: 46px;
}

.hero-scroll-note {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    transform: translateX(-50%);
    color: rgba(255, 248, 239, .58);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.hero-scroll-note::after {
    content: "";
    display: block;
    width: 1px;
    height: 34px;
    margin: 12px auto 0;
    background: rgba(200, 161, 91, .72);
}

.hero-video-trigger {
    display: none !important;
}

/* ================= SECTION SYSTEM ================= */

.section-padding {
    padding: 116px 0;
}

.section-dark {
    background:
        radial-gradient(circle at 20% 10%, rgba(200, 161, 91, .16), transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(18, 60, 54, .20), transparent 32%),
        linear-gradient(135deg, var(--mv-charcoal), var(--mv-deep-wine) 54%, var(--mv-forest));
    color: var(--mv-cream);
}

.section-light {
    background:
        radial-gradient(circle at 12% 12%, rgba(18, 60, 54, .06), transparent 30%),
        linear-gradient(180deg, var(--mv-soft-cream), var(--mv-cream));
}

.section-subtitle {
    color: var(--mv-gold-dark);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}

/* .section-title {
    color: var(--mv-burgundy);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(42px, 5vw, 76px);
    line-height: .98;
    font-weight: 600;
    letter-spacing: -.03em;
    text-transform: none;
    margin-bottom: 24px;
} */

.section-dark .section-title {
    color: var(--mv-cream);
}

.section-description {
    max-width: 640px;
    color: rgba(47, 42, 42, .68);
    font-size: 15px;
    line-height: 1.9;
}

.section-dark .section-description {
    color: rgba(255, 248, 239, .72);
}

/* ================= DISTRIBUTION ================= */

.distribution-section {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 18%, rgba(200, 161, 91, .15), transparent 26%),
        radial-gradient(circle at 86% 72%, rgba(18, 60, 54, .34), transparent 36%),
        linear-gradient(135deg, var(--mv-charcoal), var(--mv-deep-wine) 52%, var(--mv-forest));
}

.distribution-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 8%, rgba(255, 248, 239, .06) 34%, transparent 46%);
}

.distribution-section .container {
    position: relative;
    z-index: 2;
}

.distribution-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--mv-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.7;
    text-transform: uppercase;
}

.distribution-section .section-subtitle::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.distribution-section .section-description {
    max-width: 620px;
    color: rgba(255, 248, 239, .76);
    font-size: 16px;
    line-height: 1.95;
}

.distribution-section a {
    color: var(--mv-cream);
    text-decoration: underline;
    text-decoration-color: var(--mv-gold);
}

@media (max-width: 767px) {
    .distribution-section {
        min-height: auto;
        padding-top: 86px;
        padding-bottom: 86px;
    }

    .distribution-section .section-subtitle {
        font-size: 10px;
        letter-spacing: .18em;
        gap: 10px;
    }

    .distribution-section .section-subtitle::before {
        width: 28px;
    }

    .distribution-section .section-description {
        font-size: 14px;
        line-height: 1.85;
    }
}

/* ================= SIGNATURE WINE ================= */

.signature-wine {
    position: relative;
    padding: 124px 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(18, 60, 54, .10), transparent 30%),
        radial-gradient(circle at 24% 74%, rgba(200, 161, 91, .14), transparent 28%),
        linear-gradient(180deg, var(--mv-soft-cream) 0%, var(--mv-cream) 100%);
    overflow: hidden;
}

.signature-wine::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 6%, rgba(255, 255, 255, .28) 32%, transparent 44%);
    opacity: .52;
}

.signature-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--mv-peach);
    border: 1px solid rgba(43, 29, 36, .12);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(43, 29, 36, .13);
}

.signature-img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    transition: transform .9s var(--mv-ease);
}

.signature-image-wrap:hover .signature-img {
    transform: scale(1.045);
}

.signature-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 248, 239, .18), transparent 68%);
    pointer-events: none;
}

.signature-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--mv-gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.signature-title {
    margin-bottom: 20px;
    color: var(--mv-burgundy);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(44px, 5vw, 78px);
    line-height: .95;
    font-weight: 600;
    letter-spacing: -.035em;
    text-transform: none;
}

.signature-desc {
    max-width: 500px;
    margin-bottom: 26px;
    color: var(--mv-muted);
    font-size: 15px;
    line-height: 1.9;
}

.signature-price {
    margin-bottom: 10px;
}

.signature-price .old {
    color: rgba(47, 42, 42, .42);
    margin-right: 12px;
    text-decoration: line-through;
}

.signature-price .new {
    color: var(--mv-charcoal);
    font-size: 23px;
    font-weight: 700;
}

.signature-stock {
    color: var(--mv-forest);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
}

.signature-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-signature {
    padding: 14px 36px;
    background: var(--mv-forest);
    border: 1px solid var(--mv-forest);
    border-radius: 12px;
    color: var(--mv-cream);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: all .32s var(--mv-ease);
}

.btn-signature:hover {
    background: var(--mv-gold);
    border-color: var(--mv-gold);
    color: var(--mv-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(200, 161, 91, .24);
}

.btn-view-details {
    position: relative;
    padding-bottom: 4px;
    color: var(--mv-forest);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-view-details::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--mv-gold);
    transition: width .3s ease;
}

.btn-view-details:hover {
    color: var(--mv-gold-dark);
    text-decoration: none;
}

.btn-view-details:hover::after {
    width: 100%;
}

/* ================= PRODUCTS ================= */

.product-card {
    height: 100%;
    background: rgba(255, 248, 239, .88);
    border: 1px solid rgba(43, 29, 36, .12);
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s var(--mv-ease);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(43, 29, 36, .13);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--mv-soft-cream);
}

.product-img,
.product-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: transform .9s ease;
}

.product-card:hover .product-img,
.product-card:hover img {
    transform: scale(1.08);
}

.product-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.02em;
    text-transform: none;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--mv-burgundy);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--mv-forest);
}

.product-price {
    font-size: .95rem;
    color: var(--mv-charcoal);
    font-weight: 800;
}

.product-description {
    font-size: .85rem;
    color: var(--mv-muted);
    line-height: 1.75;
}

.product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(43, 29, 36, .82), transparent);
    opacity: 0;
    transform: translateY(18px);
    transition: all .35s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-btn {
    background: var(--mv-cream);
    color: var(--mv-burgundy);
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.overlay-btn:hover {
    background: var(--mv-gold);
    color: var(--mv-charcoal);
    text-decoration: none;
}

.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--mv-gold);
    color: var(--mv-charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 10px 22px rgba(23, 18, 13, .18);
}

.discount-value {
    font-weight: 800;
}

.discount-label {
    font-size: 9px;
    text-transform: uppercase;
}

.no-image-placeholder {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(43, 29, 36, .54);
    background: linear-gradient(135deg, var(--mv-soft-cream), var(--mv-cream));
}

.view-all-btn {
    display: inline-flex;
    padding: 12px 30px;
    border: 1px solid var(--mv-forest);
    border-radius: 12px;
    color: var(--mv-forest);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    transition: all .3s ease;
}

.view-all-btn:hover {
    background: var(--mv-forest);
    color: var(--mv-cream);
    text-decoration: none;
}

/* ================= HIGHLIGHT ================= */

.highlight-card {
    height: 100%;
    padding: 36px 28px;
    background: rgba(255, 248, 239, .84);
    border: 1px solid rgba(43, 29, 36, .12);
    border-radius: 24px;
    transition: all .35s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 161, 91, .55);
    box-shadow: 0 24px 54px rgba(43, 29, 36, .12);
}

.highlight-icon {
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--mv-gold);
}

/* ================= CONTACT FORM ================= */

.contact-form input,
.contact-form textarea {
    background: rgba(255, 248, 239, .08);
    border: 1px solid rgba(255, 248, 239, .28);
    color: var(--mv-cream);
    padding: 13px 16px;
    border-radius: 14px;
    width: 100%;
    margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 248, 239, .55);
}

.contact-form button {
    background: var(--mv-cream);
    color: var(--mv-forest);
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form button:hover {
    background: var(--mv-gold);
    color: var(--mv-charcoal);
}

/* ================= NAVBAR SUPPORT ================= */

.site-navbar {
    background: rgba(255, 248, 239, .82);
    border-bottom: 1px solid rgba(43, 29, 36, .10);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.site-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.site-menu li a {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    color: var(--mv-burgundy);
    text-decoration: none;
}

.site-menu li a:hover {
    color: var(--mv-gold-dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: var(--mv-cream);
    padding: 28px;
    transition: .3s;
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23, 18, 13, .58);
    opacity: 0;
    visibility: hidden;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= BUTTONS ================= */

.btn-add-to-cart {
    border: 1px solid var(--mv-forest);
    background: var(--mv-forest);
    color: var(--mv-cream);
    padding: 10px 22px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.btn-add-to-cart:hover {
    background: var(--mv-gold);
    border-color: var(--mv-gold);
    color: var(--mv-charcoal);
}

/* ================= VIDEO MODAL ================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 18, 13, .92);
}

.video-modal iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1100px, 88vw);
    height: min(620px, 70vh);
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .premium-hero,
    .hero-content {
        min-height: 82vh;
    }

    .hero-video-bg iframe {
        opacity: .78;
        filter: brightness(.82) contrast(1.04) saturate(1.02);
    }

    .hero-title,
    .hero-text h1 {
        font-size: clamp(48px, 10vw, 76px);
    }

    .section-padding {
        padding: 86px 0;
    }

    .signature-wine {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .premium-hero,
    .hero-content {
        min-height: 72vh;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-content h1,
    .hero-title {
        max-width: 360px;
        font-size: clamp(38px, 10vw, 46px);
        line-height: 1.02;
        letter-spacing: -.02em;
        margin-bottom: 26px;
    }

    .hero-desc {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .section-padding {
        padding: 68px 0;
    }

    .product-card img,
    .product-img {
        height: 300px;
    }

    /* .section-title {
        font-size: 42px;
    } */

    .site-menu {
        display: none;
    }

    .signature-wine {
        padding: 78px 20px;
    }

    .signature-image-wrap {
        margin-bottom: 38px;
        border-radius: 22px;
    }

    .signature-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .premium-hero,
    .hero-content {
        min-height: 680px;
    }

    .hero-video-bg iframe {
        opacity: .72;
        filter: brightness(.78) contrast(1.04) saturate(.98);
    }

    .hero-text {
        padding-top: 20px;
        max-width: 100%;
    }

    .hero-sub {
        gap: 10px;
        font-size: 10px;
        letter-spacing: .20em;
        margin-bottom: 14px;
    }

    .hero-sub::before {
        width: 28px;
    }

    .hero-title,
    .hero-text h1 {
        max-width: 340px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.02;
        letter-spacing: -.02em;
        margin-bottom: 28px;
    }

    .hero-desc {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-actions {
        gap: 14px;
        align-items: flex-start;
    }

    .btn-hero {
        min-width: 230px;
        padding: 13px 24px;
        font-size: 11px;
    }

    .btn-hero-outline {
        font-size: 11px;
        padding: 8px 0;
    }

    .hero-scroll-note {
        display: none;
    }

    .section-padding {
        padding: 64px 0;
    }

    .signature-title {
        font-size: 42px;
    }

    .btn-signature {
        padding: 13px 24px;
        font-size: 11px;
    }

    .highlight-card {
        border-radius: 22px;
    }
}