/* ============================================================
   main.css — maisonguerin.com v7
   Single consolidated file — no duplicates
============================================================ */

/* ============================================================
   Variables
============================================================ */
:root {
    --bordeaux:      #4c1c28;
    --bordeaux-dark: #3a1520;
    --dark:          #1a1a1a;
    --grey:          #6b6b6b;
    --grey-light:    #e8e4df;
    --off-white:     #f8f6f3;
    --white:         #ffffff;
    --playfair:      'Playfair Display', serif;
    --inter:         'Inter', sans-serif;
    --transition:    0.35s ease;
}

/* ============================================================
   Base
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

/* scroll-behavior removed — Lenis handles smooth scroll */

body {
    font-family: var(--inter);
    color: var(--dark);
    background-color: var(--white);
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--playfair);
    font-weight: 600;
}

img { max-width: 100%; display: block; }

/* ============================================================
   Utilities
============================================================ */
.text-bordeaux { color: var(--bordeaux); }
.bg-bordeaux   { background-color: var(--bordeaux); }
.ls-2          { letter-spacing: 2px; }

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bordeaux);
}

.bar {
    width: 50px;
    height: 2px;
    background-color: var(--bordeaux);
    margin-top: 14px;
}

/* ============================================================
   Scroll reveal — base (fade up)
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }
.reveal-delay-3       { transition-delay: 0.3s; }
.reveal-delay-4       { transition-delay: 0.4s; }

/* Directional reveals */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   Buttons
============================================================ */
/* Base button */
.btn {
    border-radius: 0;
    font-family: var(--inter);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Fill-from-left pseudo element */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: currentColor; /* overridden per variant */
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}
.btn:hover::before { width: 100%; }

/* Dark button */
.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}
.btn-dark::before { background: var(--bordeaux); }
.btn-dark:hover   { background-color: var(--dark); border-color: var(--bordeaux); color: var(--white); }

/* Outline dark button */
.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
}
.btn-outline-dark::before { background: var(--dark); }
.btn-outline-dark:hover   { color: var(--white); border-color: var(--dark); background: transparent; }

/* White button (on dark backgrounds) */
.btn-white {
    background: var(--white);
    color: var(--bordeaux) !important;
    border: 1px solid var(--white);
    border-radius: 0;
    font-family: var(--inter);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
}
.btn-white::before { content: ''; position: absolute; inset: 0; width: 0; background: rgba(255,255,255,0.15); transition: width 0.38s cubic-bezier(0.22,1,0.36,1); z-index: -1; }
.btn-white:hover::before { width: 100%; }
.btn-white:hover   { color: var(--bordeaux) !important; border-color: var(--white); }

/* White button on bordeaux/dark backgrounds — correct hover
   Fill goes from transparent to bordeaux so text stays readable */
.btn-white-on-dark {
    background: var(--white);
    color: var(--bordeaux) !important;
    border: 1px solid var(--white);
    border-radius: 0;
    font-family: var(--inter);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
}
.btn-white-on-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--bordeaux-dark);
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}
.btn-white-on-dark:hover::before { width: 100%; }
.btn-white-on-dark:hover {
    color: var(--white) !important;
    border-color: var(--bordeaux-dark);
    background: var(--white);
}

/* Outline white button */
.btn-outline-white {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 0;
    font-family: var(--inter);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
}
.btn-outline-white::before { content: ''; position: absolute; inset: 0; width: 0; background: var(--white); transition: width 0.38s cubic-bezier(0.22,1,0.36,1); z-index: -1; }
.btn-outline-white:hover::before { width: 100%; }
.btn-outline-white:hover { color: var(--bordeaux) !important; border-color: var(--white); }

/* ============================================================
   Navbar
============================================================ */
.navbar-mg {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: padding var(--transition), box-shadow var(--transition);
}

.navbar-mg.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark) !important;
    transition: color var(--transition) !important;
    position: relative;
    padding: 6px 14px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    width: 0;
    height: 1px;
    background: var(--bordeaux);
    transition: width var(--transition);
}

.nav-link:hover                    { color: var(--bordeaux) !important; }
.nav-link:hover::after             { width: calc(100% - 28px); }
.nav-link.active-section           { color: var(--bordeaux) !important; }
.nav-link.active-section::after    { width: calc(100% - 28px); }

/* CTA button in navbar */
.nav-cta-btn {
    display: inline-block;
    background-color: var(--bordeaux);
    color: #ffffff !important;
    font-family: var(--inter);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 22px;
    border-radius: 0;
    transition: background-color var(--transition);
    line-height: 1.4;
    white-space: nowrap;
}
.nav-cta-btn {
    /* add fill-from-left on nav CTA too */
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.nav-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--bordeaux-dark);
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}
.nav-cta-btn:hover { background-color: var(--bordeaux); color: #ffffff !important; }
.nav-cta-btn:hover::before { width: 100%; }

/* Burger button */
.navbar-toggler { border: none !important; padding: 4px 6px; box-shadow: none !important; outline: none !important; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 24px;
}

/* Mobile nav open state */
#navbarNav.show {
    background: var(--white);
    border-top: 1px solid var(--grey-light);
    padding: 16px 0 20px;
}
#navbarNav .nav-link { padding: 10px 16px !important; font-size: 0.8rem; }
#navbarNav .nav-link:hover { background: var(--off-white); }
#navbarNav .nav-link::after { display: none; }
#navbarNav .nav-cta-btn { display: block; text-align: center; }

/* ============================================================
   Hero — parallax version
============================================================ */

/* Outer clip wrapper: contains the overflow so the bg image never
   bleeds onto sections below, while letting the section itself stay
   overflow:visible so the parallax JS can translate heroBg freely */
.hero-clip {
    overflow: hidden;
    position: relative;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* NO overflow:hidden here — it would clip the parallax bg */
    background: transparent;
}

/* The parallax background layer */
.hero-parallax-bg {
    position: absolute;
    /* Extra vertical space: parallax moves this up by ~150px max,
       so we need overflow top+bottom to avoid white gaps */
    top: -30%;
    left: 0;
    right: 0;
    /* Height covers section + extra bleed for movement */
    height: 160%;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.93) 28%, rgba(255,255,255,0.58) 58%, rgba(255,255,255,0) 100%),
        url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
    will-change: transform;
    z-index: 0;
    /* NO animation here — JS handles transform exclusively */
}

.hero-content-wrap {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bordeaux);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--bordeaux);
}

/* Split text title */
.hero-split-text {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--dark);
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: wordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.split-word:nth-child(1) { animation-delay: 0.15s; }
.split-word:nth-child(2) { animation-delay: 0.23s; }
.split-word:nth-child(3) { animation-delay: 0.31s; }
.split-word:nth-child(4) { animation-delay: 0.39s; }
.split-word:nth-child(5) { animation-delay: 0.47s; }
.split-word:nth-child(6) { animation-delay: 0.55s; }
.split-word:nth-child(7) { animation-delay: 0.63s; }
.split-word:nth-child(8) { animation-delay: 0.71s; }
.split-word:not(:last-child) { margin-right: 0.22em; }

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

/* Hero eyebrow + lead + buttons fade */
.reveal-fade {
    opacity: 0;
    animation: fadeSlideUp 0.7s ease forwards;
    animation-delay: var(--reveal-delay, 0.2s);
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow.reveal-fade { --reveal-delay: 0.05s; }

.hero-section .lead {
    font-size: 1rem;
    font-weight: 300;
    color: var(--grey);
    max-width: 440px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* ============================================================
   Collections section
============================================================ */
.collections-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0;
}

.collections-slider-clip { overflow: hidden; }

.collections-slider {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.collection-slide {
    flex: 0 0 calc((100% - 48px) / 3); /* (100% - 2×gap) / 3 items */
    min-width: 0;
}

.slider-arrows { display: flex; gap: 10px; align-items: center; }

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--grey-light);
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    flex-shrink: 0;
}
.slider-arrow:hover { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--white); }
.slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-arrow:disabled:hover { background: var(--white); border-color: var(--grey-light); color: var(--dark); }

/* Category cards */
.category-card {
    position: relative;
    overflow: hidden;
    height: 440px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

/* Inner frame — starts small at center, expands to edges on hover */
.category-card::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    z-index: 3;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease;
    pointer-events: none;
}

.category-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
    display: block;
}
.category-card:hover img { transform: scale(1.07); }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
    transition: background var(--transition);
}
.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(76,28,40,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.category-overlay h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; color: white; }

.category-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 12px;
    margin-top: 4px;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.category-card:hover .category-desc { opacity: 1; transform: translateY(0); }

.category-overlay-btn {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition), color var(--transition);
}
.category-overlay-btn::after { content: '→'; }
.category-card:hover .category-overlay-btn { color: white; gap: 14px; }

/* ============================================================
   About / La Marque
============================================================ */
.about-section { padding: 100px 0; background: var(--white); }

.about-img-wrap { position: relative; }

.about-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    background: var(--bordeaux);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.about-badge-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge .num {
    font-family: var(--playfair);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

.about-content { padding: 20px 0 20px 60px; }

.about-content h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.12; margin-bottom: 20px; }

.about-content p { font-size: 0.95rem; line-height: 2; color: var(--grey); margin-bottom: 20px; }

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--grey-light);
}

.about-stat-num {
    font-family: var(--playfair);
    font-size: 2rem;
    font-weight: 600;
    color: var(--bordeaux);
    line-height: 1;
}

.about-stat-lbl {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 4px;
}

/* ============================================================
   Features dark band
============================================================ */
.features-section { padding: 80px 0; background: var(--dark); }

.feature-item {
    padding: 40px 32px;
    border-left: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    transition: border-color var(--transition), background var(--transition);
}
.feature-item:hover { border-color: var(--bordeaux); background: rgba(76,28,40,0.08); }

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(76,28,40,0.25);
    border: 1px solid rgba(76,28,40,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #e0a0b0;
    transition: background var(--transition), border-color var(--transition), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.feature-item:hover .feature-icon-wrap {
    background: rgba(76,28,40,0.5);
    border-color: var(--bordeaux);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(76, 28, 40, 0.35);
}
.feature-icon-wrap svg { width: 34px; height: 34px; }

.feature-item h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.feature-item p { font-size: 0.84rem; line-height: 1.85; color: rgba(255,255,255,0.4); margin: 0; }

/* ============================================================
   Products
============================================================ */
.products-section { padding: 100px 0; background: var(--off-white); }

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}
.product-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.product-img-link { display: block; text-decoration: none; }

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
    display: block;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76,28,40,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-img-overlay svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }

/* VanillaTilt glare fix */
.product-card .js-tilt-glare { border-radius: 0; }

.product-body { padding: 20px 24px 24px; border-top: 1px solid var(--grey-light); background: var(--white); }

.product-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 6px; }

.product-name { font-size: 1.1rem; font-family: var(--playfair); margin-bottom: 4px; }
.product-name a { color: var(--dark); text-decoration: none; transition: color var(--transition); }
.product-name a:hover { color: var(--bordeaux); }

.product-ref { font-size: 0.72rem; color: var(--grey); }

.product-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bordeaux);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: gap var(--transition);
}
.product-link:hover { gap: 12px; color: var(--bordeaux); }

/* ============================================================
   CTA Band
============================================================ */
.cta-band {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-band-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}
.cta-band:hover .cta-band-bg { transform: scale(1.03); }

.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(76,28,40,0.92) 0%, rgba(76,28,40,0.65) 50%, rgba(0,0,0,0.3) 100%);
}

.cta-band-content { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; color: white; }
.cta-band-content h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); color: white; margin-bottom: 16px; }
.cta-band-content p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 440px; line-height: 1.9; }

/* ============================================================
   Testimonials
============================================================ */
.testimonials-section { padding: 100px 0; background: var(--white); }

.testimonials-slider-wrap {
    position: relative;
    padding: 0 56px;
}
.testimonials-clip { overflow: hidden; }

.testimonials-track {
    display: flex;
    gap: 24px;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--grey-light);
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.testimonial-arrow:hover { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--white); }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

.testimonial-card {
    padding: 36px 32px 32px;
    border: 1px solid var(--grey-light);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card::after {
    content: '\201C';
    font-family: var(--playfair);
    font-size: 7rem;
    line-height: 1;
    color: var(--bordeaux);
    opacity: 0.07;
    position: absolute;
    bottom: -10px;
    right: 20px;
    pointer-events: none;
}
.testimonial-card:hover { border-color: var(--bordeaux); box-shadow: 0 8px 32px rgba(76,28,40,0.07); }

.testimonial-stars { color: var(--bordeaux); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; display: block; }
.testimonial-text { font-size: 0.93rem; line-height: 1.85; color: var(--grey); font-style: italic; flex: 1; margin-bottom: 20px; }

.testimonial-footer { padding-top: 16px; border-top: 1px solid var(--grey-light); }
.testimonial-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); }
.testimonial-role { font-size: 0.7rem; color: var(--grey); margin-top: 3px; }

.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.testimonials-dot.active { background: var(--bordeaux); transform: scale(1.3); }

/* ============================================================
   Footer
============================================================ */
.footer-mg { background: #111111; padding: 72px 0 32px; overflow-x: hidden; }

.footer-logo { height: 34px; opacity: 0.65; margin-bottom: 16px; }

.footer-tagline { font-style: italic; font-family: var(--playfair); color: rgba(255,255,255,0.3); font-size: 0.9rem; }

.footer-heading {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 18px;
    font-family: var(--inter);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-contact-item { font-size: 0.82rem; color: rgba(255,255,255,0.4); display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--bordeaux); }
.footer-contact-item a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: rgba(255,255,255,0.8); }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all var(--transition);
    border-radius: 0;
}
.footer-social-link:hover { border-color: var(--bordeaux); background: var(--bordeaux); color: var(--white); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 52px 0 28px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }

.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-legal a { color: inherit; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   Back to top (desktop only)
============================================================ */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--bordeaux);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    border-radius: 0;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--bordeaux-dark); }

@media (max-width: 991px) { #back-to-top { display: none; } }

/* ============================================================
   Bootstrap Icons — sizing in context
============================================================ */

/* Slider arrows */
.slider-arrow .bi,
.testimonial-arrow .bi {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature icons */
.feature-icon-wrap .bi {
    font-size: 1.75rem;
    line-height: 1;
}

/* Footer social */
.footer-social-link .bi {
    font-size: 1rem;
    line-height: 1;
}

/* Footer contact */
.footer-contact-item .bi {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--bordeaux);
}

/* Product link arrow */
.product-link .bi {
    font-size: 0.8rem;
    transition: transform var(--transition);
}
.product-link:hover .bi { transform: translateX(5px); }

/* Back to top */
#back-to-top .bi { font-size: 1.1rem; line-height: 1; }

/* Remove old SVG-specific rules that no longer apply */
/* product overlay uses bi-eye inline */
