/* -- Variable -- */
:root {
    --primary: #DDD3C2;
    --secondary: #634305;
    --wine-red: #722F37;
    --wine-red-light: #8B3D47;
    --wine-red-dark: #5A252D;
    --bg-light: #EFEAE0;
    --black-10: #0000001A;
    --black-12: #0000001F;
    --black-20: #00000033;
    --black-40: #00000066;
    --black-60: #00000099;
    --black-80: #000000CC;
    --white-60: #FFFFFF99;
    --white-70: #FFFFFFB2;
    --white-80: #FFFFFFCC;
    --white-90: #FFFFFFCC;
    --gray-10: #F3F4F6;
    --gray-20: #E5E7EB;
    --gray-30: #D1D5DB;
    --gray-40: #9CA3AF;
    --gray-50: #6B7280;
    --gray-60: #4B5563;
    --gray-70: #374151;
    --gray-80: #1F2937;
    --gray-90: #111827;
    --text-color-1: #8D8686;
    --dark: #0D0D0D;
    --dark-50: #0D0D0D80;
}

/* -- Reset -- */
body {
    font-family: "DM Sans", sans-serif;
    color: var(--black-60);
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    background-color: var(--bg-light);
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

/* -- Typography -- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
}

h1,
.h1 {
    font-size: 140px;
    line-height: 140px;
}

h2,
.h2 {
    font-size: 100px;
    line-height: 100px;
}

h3,
.h3 {
    font-size: 74px;
    line-height: 82px;
}

h4,
.h4 {
    font-size: 40px;
    line-height: 42px;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 30px;
}

@media (max-width:1199px) {

    h1,
    .h1 {
        font-size: 116px;
        line-height: 116px;
    }

    h2,
    .h2 {
        font-size: 83px;
        line-height: 91px;
    }

    h3,
    .h3 {
        font-size: 60px;
        line-height: 68px;
    }

    h4,
    .h4 {
        font-size: 32px;
        line-height: 40px;
    }

}


@media (max-width:991px) {

    h1,
    .h1 {
        font-size: 96px;
        line-height: 96px;
    }

    h2,
    .h2 {
        font-size: 70px;
        line-height: 88px;
    }

    h3,
    .h3 {
        font-size: 50px;
        line-height: 58px;
    }

    h4,
    .h4 {
        font-size: 26px;
        line-height: 34px;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: 28px;
    }
}


@media (max-width:767px) {

    h1,
    .h1 {
        font-size: 80px;
        line-height: 88px;
    }

    h2,
    .h2 {
        font-size: 58px;
        line-height: 64px;
    }

    h3,
    .h3 {
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width:575px) {

    h1,
    .h1 {
        font-size: 66px;
        line-height: 76px;
    }

    h2,
    .h2 {
        font-size: 48px;
        line-height: 56px;
    }

    h3,
    .h3 {
        font-size: 35px;
        line-height: 43px;
    }
}

@media (max-width:425px) {

    h1,
    .h1 {
        font-size: 55px;
        line-height: 63px;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: 48px;
    }

    h3,
    .h3 {
        font-size: 30px;
        line-height: 38px;
    }

    h4,
    .h4 {
        font-size: 22px;
        line-height: 30px;
    }

    h5,
    .h5 {
        font-size: 18px;
        line-height: 26px;
    }
}


.text-display-1 {
    font-size: 200px;
    line-height: 170px;
}

.bellefair-font {
    font-family: "Bellefair", serif;
}

.tangerine-font {
    font-family: "Tangerine", serif;
}

.text-sub-head {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 22px;
}

.text-sub-head-medium {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 26px;
    font-weight: 500;
}

.text-body-1 {
    font-size: 24px;
    line-height: 22px;
}

.text-body-2 {
    font-size: 16px;
    line-height: 22px;
}


.text-caption {
    font-size: 14px;
    line-height: 18px;
}

.text-dark-color {
    color: var(--dark);
}

.text-dark-color-50 {
    color: var(--dark-50);
}

.text-color-1 {
    color: var(--text-color-1);
}

.text-white-60 {
    color: var(--white-60);
}

.text-white-70 {
    color: var(--white-70);
}

.text-white-80 {
    color: var(--white-80);
}

.text-white-90 {
    color: var(--white-90);
}


.text-black-40 {
    color: var(--black-40);
}

.text-black-60 {
    color: var(--black-60);
}

.text-black-80 {
    color: var(--black-80);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}


.container {
    padding-right: 6px;
    padding-left: 6px;
    width: 1308px;
    max-width: 100%;
}

.container.w-1079 {
    width: 1091px;
}

.container .row {
    margin-left: -6px !important;
    margin-right: -6px !important;

}

.container .row>* {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.main-container {
    z-index: 2;
}

.tf-btn {
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    letter-spacing: -0.06rem;
}

.tf-btn i {
    font-size: 18px;
}

.tf-btn.btn-bg-dark {
    background-color: var(--black);
}

.tf-btn.btn-bg-primary {
    color: var(--black);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: "Bellefair",
        serif;
}


@media (max-width:1439px) {
    .text-display-1 {
        font-size: 165px;
        line-height: 170px;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .container .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .container .row>* {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width:1200px) {
    .text-display-1 {
        font-size: 138px;
        line-height: 146px;
    }


}

@media (max-width:991px) {
    .text-display-1 {
        font-size: 105px;
        line-height: 113px;
    }


}

@media (max-width:767px) {
    .text-display-1 {
        font-size: 76px;
        line-height: 84px;
    }
}

@media (max-width:575px) {
    .text-display-1 {
        font-size: 50px;
        line-height: 84px;
    }
}

/* ========================================
   WINE RED ACCENT STYLES
   Refined secondary accent color
======================================== */

/* Accent text color utility */
.text-wine-red {
    color: var(--wine-red) !important;
}

/* Subtle wine red borders */
.border-wine-red {
    border-color: var(--wine-red) !important;
}

/* Wine red underline accent for emphasis */
.wine-red-underline {
    position: relative;
    display: inline-block;
}

.wine-red-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--wine-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.wine-red-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Section tags with wine red accent */
.editorial-tag,
.hero-eyebrow,
.spec-number {
    color: var(--wine-red) !important;
    font-weight: 500;
}

/* Subtle dividers with wine red */
.editorial-divider {
    background: linear-gradient(90deg, var(--wine-red) 0%, rgba(114, 47, 55, 0.3) 100%) !important;
}

/* Button hover states with wine red */
.tf-btn:hover,
.hero-btn:hover,
.btn-cta:hover {
    border-color: var(--wine-red);
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.15);
}

/* Link hover states */
a.item-link:hover,
a.btn_link:hover {
    color: var(--wine-red) !important;
}

/* Icon hover accents */
.icon-arrow-top-right2,
i[class*="icon-"] {
    transition: color 0.3s ease;
}

a:hover .icon-arrow-top-right2,
a:hover i[class*="icon-"] {
    color: var(--wine-red);
}

/* Stat item hover with wine red border */
.stat-item:hover {
    border-color: var(--wine-red);
}

/* Gallery overlay with wine red accent */
.gallery-overlay {
    background: linear-gradient(to top,
            rgba(114, 47, 55, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            transparent 100%);
}

/* Spec card hover accent */
.spec-card:hover {
    border-left: 3px solid var(--wine-red);
}

/* Material card hover */
.material-card:hover {
    border-color: var(--wine-red);
}

/* Benefit check marks with wine red */
.benefit-check {
    background: var(--wine-red) !important;
}

/* Process step numbers with wine red gradient */
.step-number {
    background: linear-gradient(135deg, var(--wine-red), var(--wine-red-light)) !important;
}

/* Subtle wine red highlight for key text */
.highlight-wine {
    background: linear-gradient(180deg, transparent 60%, rgba(114, 47, 55, 0.15) 60%);
    padding: 0 4px;
}

/* Navigation active state */
.box-nav-menu .item-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--wine-red);
}

.box-nav-menu .item-link {
    position: relative;
}

/* Scroll indicator with wine red accent */
.scroll-line {
    background: linear-gradient(to bottom,
            transparent,
            var(--wine-red),
            transparent) !important;
}

/* CTA section wine red gradient overlay */
.cta-content::before {
    background: radial-gradient(circle, rgba(114, 47, 55, 0.12) 0%, transparent 70%) !important;
}

/* Hover state for cards and interactive elements */
.gallery-item:hover,
.spec-card:hover .spec-title,
.material-card:hover h5 {
    color: var(--wine-red);
}

/* Subtle wine red glow on focus */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--wine-red);
    outline-offset: 2px;
}

/* Wine red accent for badges and labels */
.badge-wine,
.label-wine {
    background: var(--wine-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Subtle border accent on hover for images */
.editorial-image::after {
    border-color: rgba(114, 47, 55, 0.25) !important;
}

/* Wine red accent for form elements on focus */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--wine-red) !important;
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

/* ========================================
   PREMIUM ENHANCEMENTS
   Elevated visual effects for all pages
======================================== */

/* -- Grain Texture Overlay -- */
#wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* -- Gradient Text Utility -- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--wine-red) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -- Glassmorphism Card -- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

/* -- Animated Gradient Border -- */
.glow-border {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--wine-red),
        var(--primary),
        var(--wine-red-light),
        var(--primary));
    background-size: 300% 300%;
    animation: gradientBorder 6s ease infinite;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* -- Text Reveal Animation -- */
.text-reveal {
    overflow: hidden;
}

.text-reveal > * {
    transform: translateY(100%);
    animation: textReveal 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes textReveal {
    to { transform: translateY(0); }
}

/* -- Floating Animation -- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* -- Shimmer Effect for CTAs -- */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* -- Premium Section Divider -- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(114, 47, 55, 0.3) 20%,
        var(--wine-red) 50%,
        rgba(114, 47, 55, 0.3) 80%,
        transparent 100%);
    margin: 0;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--wine-red);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(114, 47, 55, 0.5);
}

/* -- Staggered Card Entrance -- */
.stagger-cards > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-cards > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-cards > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-cards > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-cards > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-cards > *:nth-child(6) { animation-delay: 0.6s; }

/* -- Premium Trust Bar -- */
.trust-bar {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wine-red), var(--wine-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* -- Premium CTA Section -- */
.premium-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(114, 47, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-cta h2 {
    font-family: 'Bellefair', serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.premium-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--wine-red);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(114, 47, 55, 0.45);
    background: var(--wine-red-light);
    color: #fff;
}

.cta-btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(4px);
}

/* -- Animated Counter -- */
.counter-value {
    font-family: 'Bellefair', serif;
    font-size: clamp(48px, 6vw, 80px);
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

/* -- Timeline Section (About Page) -- */
.timeline-section {
    padding: 100px 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--wine-red), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--wine-red);
    border-radius: 50%;
    border: 3px solid var(--dark);
    box-shadow: 0 0 20px rgba(114, 47, 55, 0.5);
    z-index: 2;
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    font-family: 'Bellefair', serif;
    font-size: 48px;
    color: var(--wine-red);
    margin-bottom: 8px;
    line-height: 1;
}

.timeline-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .timeline-line { left: 20px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-dot {
        left: 20px;
    }
}

/* -- Values Grid (About Page) -- */
.value-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wine-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(114, 47, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.2), rgba(114, 47, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--wine-red);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

/* -- Service Page Hero -- */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero .hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(114, 47, 55, 0.15);
    border: 1px solid rgba(114, 47, 55, 0.3);
    border-radius: 50px;
    color: var(--wine-red);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-family: 'Bellefair', serif;
    font-size: clamp(40px, 5vw, 72px);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- Smooth Page Transitions -- */
#wrapper {
    animation: pageLoad 0.6s ease-out;
}

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

/* -- Enhanced Header -- */
.tf-header-d7 {
    transition: all 0.4s ease;
}

.tf-header-d7.scrolled {
    background: rgba(13, 13, 13, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* -- Enhanced Link Hover -- */
.box-nav-menu .item-link {
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.box-nav-menu .item-link:hover {
    letter-spacing: 1px;
}

/* -- Scroll Progress Bar -- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red), var(--wine-red-light));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(114, 47, 55, 0.5);
}


/* ========================================
   SERVICE DETAIL PAGES – Premium Layout
   Channel Letters, Light Boxes, Non-Lit
======================================== */

/* -- HERO: Split Layout -- */
.section-service-detail-d7 .page-title-d7.bg-container {
    padding-bottom: 80px;
}

.service-hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0 0;
}

.hero-text-side {
    flex: 0 0 38%;
    max-width: 38%;
}

.hero-text-side .service-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 28px;
}

.hero-text-side .title-heading {
    font-size: clamp(40px, 5vw, 72px) !important;
    line-height: 1.05 !important;
    font-weight: 400 !important;
    letter-spacing: 6px !important;
    text-align: left;
}

.hero-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red), var(--wine-red-light));
    margin: 28px 0;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.55);
    font-family: "DM Sans", sans-serif;
}

.hero-image-side {
    flex: 1;
    min-width: 0;
}

.section-service-detail-d7 .thumb-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0 !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.section-service-detail-d7 .thumb-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Split hero responsive */
@media (max-width: 991px) {
    .service-hero-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .hero-text-side .service-breadcrumb {
        justify-content: center;
    }

    .hero-text-side .title-heading {
        text-align: center;
    }

    .hero-accent-line {
        margin: 24px auto;
    }
}

/* -- Breadcrumb -- */
.service-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.service-breadcrumb a {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: var(--wine-red) !important;
}

.service-breadcrumb .breadcrumb-sep {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.25);
}

.service-breadcrumb .breadcrumb-current {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
}

/* -- Eyebrow Label -- */
.service-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--wine-red) !important;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 44px;
}

.service-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--wine-red);
}

/* -- Section Eyebrow Centered -- */
.section-eyebrow-center {
    text-align: center;
    margin-bottom: 20px;
}

.section-eyebrow-center span {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--wine-red) !important;
    font-weight: 600;
    position: relative;
    padding: 0 24px;
}

.section-eyebrow-center span::before,
.section-eyebrow-center span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--wine-red), transparent);
}

.section-eyebrow-center span::before {
    right: 100%;
    background: linear-gradient(270deg, var(--wine-red), transparent);
}

.section-eyebrow-center span::after {
    left: 100%;
}

/* -- Section Divider -- Override for service pages -- */
.section-service-detail-d7 .section-divider {
    margin: 20px 0;
}

/* -- Overview Section -- */
.service-overview-section {
    padding: 100px 0 80px;
}

.service-overview-section h3 {
    position: relative;
    font-size: clamp(32px, 4vw, 50px) !important;
    line-height: 1.15 !important;
}

.service-overview-section p {
    line-height: 30px;
    font-size: 17px;
}

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 14px;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red), var(--wine-red-light));
}

.stat-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(114, 47, 55, 0.12) !important;
    border-color: transparent !important;
}

.stat-item h2 {
    margin-bottom: 10px;
    font-size: 52px !important;
    line-height: 1 !important;
    color: var(--wine-red) !important;
}

.stat-item p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* -- Gallery Section -- */
.gallery-section {
    padding: 50px 0 80px;
}

.gallery-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section-heading h3 {
    font-size: clamp(32px, 4vw, 50px) !important;
    line-height: 1.15 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* Gallery overlay: always visible at bottom */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px !important;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%) !important;
    opacity: 1 !important;
    transform: none !important;
    transition: padding 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    padding-bottom: 28px !important;
    transform: none !important;
    opacity: 1 !important;
}

.gallery-overlay h5 {
    margin-bottom: 4px;
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-overlay p {
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

/* -- Spec Cards -- */
.service-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 80px 0;
}

.spec-card {
    padding: 48px 40px 48px 44px;
    border: none !important;
    border-left: 4px solid var(--wine-red) !important;
    border-radius: 0 14px 14px 0 !important;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--wine-red), var(--wine-red-light));
    opacity: 1;
}

.spec-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 30px 60px rgba(114, 47, 55, 0.1) !important;
    border-left-color: var(--wine-red) !important;
    border-color: transparent !important;
}

.spec-card:hover::before {
    width: 6px;
}

.spec-number {
    display: inline-block;
    font-family: "Bellefair", serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: #fff !important;
    background: var(--wine-red);
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 400;
}

.spec-title {
    font-family: "Bellefair", serif;
    font-size: 26px !important;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--dark) !important;
}

.spec-card:hover .spec-title {
    color: var(--wine-red) !important;
}

.spec-desc {
    font-size: 15px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.55);
}

/* -- Benefits Section -- */
.benefits-section {
    padding: 100px 0;
}

.benefit-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 540px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.benefit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.benefit-image-wrapper:hover img {
    transform: scale(1.04);
}

.benefit-content {
    padding-left: 50px;
}

.benefit-content h3 {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    line-height: 1.15 !important;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.08);
}

.benefit-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px !important;
    background: var(--wine-red) !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.3);
}

.benefit-item h5 {
    margin-bottom: 6px;
    font-size: 20px;
    color: var(--dark);
}

.benefit-item p {
    line-height: 26px;
}

/* -- CTA Section: Dark Premium -- */
.cta-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.cta-content {
    text-align: center;
    padding: 100px 60px !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%) !important;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 600px !important;
    height: 600px !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, rgba(114, 47, 55, 0.25) 0%, transparent 65%) !important;
    pointer-events: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.cta-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-content h3 {
    position: relative;
    z-index: 1;
    color: #fff !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    letter-spacing: 3px !important;
    line-height: 1.15 !important;
}

.cta-content p {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 auto 40px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 17px !important;
    line-height: 30px !important;
}

.btn-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px !important;
    background: var(--wine-red) !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.4) !important;
    overflow: hidden;
    border: none !important;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(114, 47, 55, 0.5) !important;
    background: var(--wine-red-light) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.btn-cta i,
.btn-cta .icon-arrow-top-right2 {
    color: #fff !important;
}

/* -- Service Detail Responsive -- */
@media (max-width: 991px) {
    .service-overview-section {
        padding: 70px 0 50px;
    }

    .overview-stats-grid {
        margin-top: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .benefit-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .cta-content {
        padding: 80px 40px !important;
    }
}

@media (max-width: 768px) {
    .section-service-detail-d7 .page-title-d7 .title-heading {
        letter-spacing: 4px !important;
    }

    .service-overview-section {
        padding: 60px 0 40px;
    }

    .service-spec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 60px 0;
    }

    .spec-card {
        padding: 32px 28px 32px 32px;
    }

    .overview-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 28px 16px;
    }

    .stat-item h2 {
        font-size: 40px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .benefit-image-wrapper {
        min-height: 350px;
    }

    .benefit-item {
        padding: 16px 18px;
    }

    .cta-content {
        padding: 60px 24px !important;
    }

    .btn-cta {
        padding: 18px 36px !important;
    }

    .service-breadcrumb {
        gap: 8px;
    }

    .service-breadcrumb a,
    .service-breadcrumb .breadcrumb-current {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .gallery-overlay h5 {
        font-size: 14px !important;
    }
}

/* ========================================
   MOBILE OVERFLOW & PERFORMANCE FIXES
   Phase 1 – Home Page
======================================== */

/* 1. Overflow containment – prevents horizontal scroll from
      AOS translate animations and any overflowing child */
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
}

#wrapper {
    overflow-x: clip;
}

/* 2. Disable grain texture overlay on mobile – constant GPU composite */
@media (max-width: 991px) {
    #wrapper::before {
        display: none;
    }
}

/* 3. Disable backdrop-filter on mobile for performance */
@media (max-width: 767px) {
    .trust-bar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .process-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* 4. Trust bar responsive – stack items on mobile */
@media (max-width: 575px) {
    .trust-bar {
        padding: 28px 0;
    }

    .trust-item {
        padding: 0 12px;
        gap: 10px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .trust-text {
        font-size: 13px;
    }
}

/* 5. Contact form section on small mobile */
@media (max-width: 414px) {
    .contact-map-form {
        padding: 50px 0;
    }

    .enquiry-box {
        padding: 32px 20px;
    }

    .enquiry-box h3 {
        font-size: 22px;
    }
}

/* 6. Testimonial section mobile fixes */
@media (max-width: 575px) {
    .testimonial-centered .content {
        margin-top: -60px;
    }

    .testimonial-centered .h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .testimonial-heading h2 {
        font-size: 32px;
        line-height: 36px;
    }
}

/* 7. Core customers section mobile */
@media (max-width: 575px) {
    .core-customers {
        padding: 60px 0 40px;
    }

    .core-customers h3 {
        font-size: 24px;
    }

    .core-customers p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* 8. Why choose us mobile */
@media (max-width: 414px) {
    .why-card.why-card-vertical {
        padding: 32px 20px 28px;
        max-width: 100%;
    }

    .why-card.why-card-vertical h4 {
        font-size: 18px;
    }

    .why-card.why-card-vertical p {
        font-size: 14px;
    }
}

/* 9. Products section mobile */
@media (max-width: 414px) {
    .products-title {
        font-size: 30px;
    }

    .product-details {
        padding: 24px 20px 28px;
    }

    .product-large .product-details {
        padding: 28px 24px 32px;
    }

    .product-name {
        font-size: 22px;
    }

    .product-large .product-name {
        font-size: 24px;
    }

    .product-description {
        font-size: 14px;
    }
}

/* 10. Process section mobile */
@media (max-width: 575px) {
    .process-card {
        padding: 36px 20px;
    }

    .process-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .process-icon svg {
        width: 30px;
        height: 30px;
    }

    .process-title {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .process-text {
        font-size: 14px;
    }
}

/* 11. Divider glow mobile */
@media (max-width: 767px) {
    .section-divider-glow {
        margin: 60px 0;
    }
}

@media (max-width: 414px) {
    .section-divider-glow {
        margin: 40px 0;
    }
}

/* 12. Bento gallery mobile */
@media (max-width: 414px) {
    .work-action-header {
        margin-bottom: 40px;
    }

    .work-action-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .bento-caption {
        font-size: 20px;
    }
}

/* 13. Showreel section mobile */
@media (max-width: 575px) {
    .showreel-desc {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

/* 14. Footer mobile improvements */
@media (max-width: 414px) {
    .tf-footer-d7 .text-caption {
        font-size: 15px;
        line-height: 24px;
    }
}

/* ========================================
   PHASE 2 – CROSS-PAGE MOBILE FIXES
======================================== */

/* 15. Disable backdrop-filter on mobile across all pages */
@media (max-width: 767px) {
    .contact-card,
    .contact-hero-label,
    .ix-stat-card,
    .ix-label,
    .ix-feature-pill,
    .service-page-hero .hero-label {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* 16. Disable grain overlays on mobile */
@media (max-width: 991px) {
    .ix-grain {
        display: none;
    }
}

/* 17. Override will-change on mobile – reduce GPU layers */
@media (max-width: 767px) {
    .product-image,
    .product-showcase,
    .ix-bg img,
    .ix-inset-frame img,
    .service-icon {
        will-change: auto;
    }
}

/* 18. Work page hero – mobile responsive */
@media (max-width: 767px) {
    .projects-hero {
        padding: 100px 0 60px;
    }

    .projects-hero-content h1 {
        font-size: clamp(36px, 10vw, 54px);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stats span {
        font-size: 26px;
    }

    .hero-stats small {
        font-size: 11px;
    }
}

@media (max-width: 414px) {
    .projects-hero {
        padding: 90px 0 48px;
    }

    .projects-hero-content h1 {
        font-size: 32px;
    }

    .projects-hero-content p {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats span {
        font-size: 22px;
    }
}

/* 19. About page hero – smaller screens */
@media (max-width: 575px) {
    .about-hero-section h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .stat-block h2 {
        font-size: 36px;
    }

    .feature-number {
        font-size: 40px;
    }
}