/* =========================
   Home Hero / Banner
========================= */

.hero {
    margin-top: 76px;
}

.banner,
.banner-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.banner-empty {
    background: linear-gradient(135deg, #7b1e2b, #b98a57);
}

.banner picture,
.banner img,
.banner-slide picture,
.banner-slide img {
    width: 100%;
    height: 620px;
    display: block;
}

.banner img,
.banner-slide img {
    object-fit: cover;
}

.banner-slider {
    height: 620px;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-text {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 520px;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
    z-index: 4;
}

.banner-text h1 {
    font-size: 52px;
    margin: 0 0 18px;
    font-weight: 400;
    letter-spacing: 4px;
}

.banner-text p {
    font-size: 22px;
    line-height: 1.8;
    margin: 0 0 26px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    background: rgba(0,0,0,.18);
    color: #fff;
    font-size: 34px;
    line-height: 40px;
    cursor: pointer;
}

.banner-arrow.prev {
    left: 32px;
}

.banner-arrow.next {
    right: 32px;
}

.banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-dot {
    width: 28px;
    height: 4px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.banner-dot.active {
    background: #fff;
}


/* =========================
   Brand Intro
========================= */

.intro {
    padding: 90px 12%;
    text-align: center;
    background: #fff;
}

.intro h2 {
    margin: 0 0 22px;
    font-size: 34px;
    color: #7b1e2b;
    letter-spacing: 3px;
    font-weight: 400;
}

.intro p {
    margin: 0 auto;
    max-width: 900px;
    font-size: 17px;
    color: #666;
    line-height: 2;
    white-space: pre-line;
}


/* =========================
   Home Sections
========================= */

.section {
    padding: 90px 10%;
}

.section.alt {
    background: #faf7f3;
}

.section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-img img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 16px 42px rgba(0,0,0,.12);
}

.section.image_right .section-img {
    order: 2;
}

.section-text h2 {
    font-size: 36px;
    color: #7b1e2b;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 16px;
}

.section-text h3 {
    font-size: 20px;
    color: #b98a57;
    font-weight: 400;
    margin: 0 0 24px;
}

.section-text p {
    font-size: 16px;
    line-height: 2;
    color: #666;
    white-space: pre-line;
}

.section-subtitle {
    color: #b98a57;
}

.full-image {
    position: relative;
    padding: 0;
}

.full-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.full-image .section-text {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 520px;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.full-image .section-text h2,
.full-image .section-text h3,
.full-image .section-text p {
    color: #fff;
}

.text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-center h2 {
    font-size: 36px;
    color: #7b1e2b;
    font-weight: 400;
    letter-spacing: 3px;
}

.text-center p {
    font-size: 16px;
    color: #666;
    line-height: 2;
    white-space: pre-line;
}

.mobile-img {
    display: none;
}


/* =========================
   Featured Products
========================= */

.home-products {
    padding: 90px 10%;
    background: #fff;
}

.home-product-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.home-product-card {
    display: block;
    color: #333;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    transition: .3s;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.home-product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.home-product-card:hover img {
    transform: scale(1.04);
}

.home-product-card h3 {
    margin: 0;
    padding: 24px 24px 8px;
    color: #7b1e2b;
    font-size: 22px;
    font-weight: 400;
}

.home-product-card p {
    margin: 0;
    padding: 0 24px 24px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   Home News
========================= */

.home-news {
    padding: 90px 10%;
    background: #faf7f3;
}

.news-list {
    max-width: 1000px;
    margin: auto;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    background: rgba(255,255,255,.45);
}

.news-item:hover {
    color: #7b1e2b;
}

.news-date {
    width: 120px;
    color: #999;
    flex-shrink: 0;
}

.news-title {
    flex: 1;
}


/* =========================
   Brand / Contact Entry
========================= */

.brand-entry,
.contact-entry {
    padding: 100px 20px;
    text-align: center;
    background: #faf7f3;
}

.contact-entry {
    background: #fff;
}

.brand-box h2 {
    margin: 0 0 18px;
    font-size: 42px;
    color: #7b1e2b;
    font-weight: 400;
    letter-spacing: 4px;
}

.brand-box p {
    margin: 0 0 28px;
    color: #666;
    font-size: 18px;
}


/* =========================
   Home Videos
========================= */

.home-videos {
    padding: 90px 10%;
    background: #fff;
}

.home-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.home-video-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.home-video-card video {
    width: 100%;
    height: 320px;
    background: #000;
    display: block;
    object-fit: cover;
}

.home-video-card h3 {
    margin: 22px 24px 8px;
    color: #7b1e2b;
    font-weight: 400;
    font-size: 22px;
}

.home-video-card p {
    margin: 0 24px 24px;
    color: #666;
    line-height: 1.8;
}