/* ============================================================
   PLY HOUSE — Premium Plywood & Hardware
   Color Palette: Warm walnut, tan/gold, charcoal, cream
   Art Direction: Minimal, warm, 3D elements, earthy textures
   ============================================================ */

/* ======================== CSS VARIABLES ======================== */
:root {
    /* Primary - Warm Walnut */
    --primary: #6B4226;
    --primary-light: #8B6914;
    --primary-dark: #3D2415;
    --primary-50: rgba(107, 66, 38, 0.05);
    --primary-100: rgba(107, 66, 38, 0.1);
    --primary-200: rgba(107, 66, 38, 0.2);

    /* Accent - Golden Tan */
    --accent: #C49A6C;
    --accent-light: #D4B896;
    --accent-dark: #A07B4F;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF7F2;
    --cream: #F5F0E8;
    --sand: #E8E0D4;
    --gray-100: #F0EDE8;
    --gray-200: #D8D2C8;
    --gray-300: #B8B0A4;
    --gray-400: #8A8279;
    --gray-500: #6B6560;
    --gray-600: #4A4540;
    --gray-700: #3A3530;
    --gray-800: #2C2824;
    --gray-900: #1A1816;
    --dark: #141210;

    /* Text */
    --text-primary: #1A1816;
    --text-secondary: #4A4540;
    --text-muted: #8A8279;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-light-muted: rgba(255, 255, 255, 0.6);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-sans: 'DM Sans', 'Inter', -apple-system, sans-serif;

    /* Layout */
    --section-padding: 7rem 0;
    --container-width: 1200px;
    --container-padding: 0 1.5rem;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 24, 22, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 24, 22, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 24, 22, 0.12);
    --shadow-xl: 0 24px 64px rgba(26, 24, 22, 0.16);
    --shadow-glow: 0 0 40px rgba(196, 154, 108, 0.2);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ======================== RESET ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Global Lucide icon consistency */
[data-lucide] svg,
i svg,
.lucide {
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

/* ======================== UTILITIES ======================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-label-light {
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title-light {
    color: var(--white);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-desc-light {
    color: var(--text-light-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 66, 38, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 66, 38, 0.4);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ======================== PRELOADER ======================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-panels {
    display: flex;
    gap: 8px;
    perspective: 600px;
}

.preloader-panel {
    width: 24px;
    height: 60px;
    border-radius: 4px;
    animation: preloaderFloat 1.4s ease-in-out infinite;
}

.preloader-panel:nth-child(1) {
    background: var(--accent-light);
    animation-delay: 0s;
}

.preloader-panel:nth-child(2) {
    background: var(--accent);
    animation-delay: 0.15s;
}

.preloader-panel:nth-child(3) {
    background: var(--primary);
    animation-delay: 0.3s;
}

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); opacity: 0.6; }
    50% { transform: translateY(-16px) rotateY(15deg); opacity: 1; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--accent-light);
    letter-spacing: 8px;
    animation: preloaderPulse 1.4s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.navbar-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 18, 16, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.5rem 0.5rem 0.5rem 0.75rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 0.5px rgba(255, 255, 255, 0.08) inset;
    transition: var(--transition);
    max-width: fit-content;
}

.navbar.scrolled .navbar-pill {
    background: rgba(20, 18, 16, 0.65);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 0.5px rgba(255, 255, 255, 0.06) inset;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 100;
    padding-right: 0.5rem;
}

.logo-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition-fast);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

/* When hovering siblings, dim the active link */
.nav-links:hover .nav-link.active:not(:hover) {
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

/* Nav CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: #E8553D;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 0.3rem;
}

.nav-cta:hover {
    background: #D44A34;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 85, 61, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--white);
}

.navbar:not(.scrolled) .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(4px);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 18, 16, 0.5);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* ======================== HERO ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.03);
}

.hero-bg-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 8, 6, 0.88) 0%,
        rgba(14, 12, 10, 0.78) 40%,
        rgba(20, 18, 16, 0.65) 100%
    );
    z-index: 1;
}

/* Hero 3D Floating Panels */
/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    border: 1px solid rgba(196, 154, 108, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    background: rgba(196, 154, 108, 0.08);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: fit-content;
    max-width: 92%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem 2.5rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 1.2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 154, 108, 0.15);
    color: var(--accent);
}

.hero-stat-icon svg {
    width: 16px;
    height: 16px;
}

.hero-stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.hero-stat-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: var(--text-light-muted);
    letter-spacing: 0.3px;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

/* ======================== MARQUEE ======================== */
.marquee-section {
    padding: 1.2rem 0;
    background: var(--primary);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

.marquee-dot {
    font-size: 0.6rem !important;
    opacity: 0.5;
    color: var(--accent-light) !important;
}

@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

/* ======================== SCATTERED PLYWOOD SHOWCASE ======================== */
.cascade-section {
    position: relative;
    padding: 5rem 0;
    background: var(--off-white);
    overflow: hidden;
}

.cascade-strip {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ply-block {
    position: absolute;
    left: var(--bx);
    top: var(--by);
    width: var(--bw);
    height: var(--bh);
    border-radius: 8px;
    overflow: hidden;
    background-color: #C49A6C;
    transform: rotate(var(--br, 0deg));
    will-change: transform;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.ply-block img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.ply-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.06) 100%
    );
    border-radius: 8px;
    pointer-events: none;
}

.ply-block:hover {
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
    .cascade-strip {
        max-width: 900px;
        height: 500px;
    }
    .ply-block {
        --bw-scale: 0.85;
    }
}

@media (max-width: 860px) {
    .cascade-section {
        padding: 3.5rem 0;
    }
    .cascade-strip {
        max-width: 700px;
        height: 440px;
    }
}

@media (max-width: 640px) {
    .cascade-section {
        padding: 2.5rem 0;
    }
    .cascade-strip {
        max-width: 100%;
        height: 380px;
    }
    .ply-block {
        transform: rotate(calc(var(--br, 0deg) * 0.5)) scale(0.7);
    }
}

/* ======================== ABOUT ======================== */
.about {
    padding: var(--section-padding);
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

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

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image {
    position: relative;
}

.about-experience {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-exp-number {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: var(--accent-light);
}

.about-exp-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1.4;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--white);
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ======================== PRODUCTS ======================== */
.products {
    padding: var(--section-padding);
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    -webkit-mask-image: radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 18, 16, 0.9) 0%,
        rgba(20, 18, 16, 0.3) 50%,
        rgba(20, 18, 16, 0.1) 100%
    );
    transition: var(--transition);
}

.product-card:hover .product-card-overlay {
    background: linear-gradient(
        to top,
        rgba(20, 18, 16, 0.95) 0%,
        rgba(20, 18, 16, 0.4) 50%,
        rgba(20, 18, 16, 0.2) 100%
    );
}

.product-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-card-content {
    transform: translateY(0);
}

.product-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--white);
    margin-bottom: 1rem;
}

.product-card-icon svg {
    width: 20px;
    height: 20px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.product-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-link svg {
    transform: translate(3px, -3px);
}

/* ======================== SHOWCASE ======================== */
.showcase {
    padding: var(--section-padding);
    background: var(--dark);
    overflow: hidden;
}

.showcase-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    perspective: 1800px;
    padding: 4rem 0 2rem;
    min-height: 420px;
}

.showcase-panel {
    width: 100px;
    height: 320px;
    border-radius: var(--radius-sm);
    background: var(--panel-color);
    transform: rotateY(var(--panel-angle));
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: panelReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--panel-delay);
}

.showcase-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.showcase-panel:hover {
    transform: rotateY(0deg) scale(1.08) translateY(-20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    width: 140px;
    z-index: 10;
}

.showcase-panel-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.8rem;
    z-index: 2;
}

.panel-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.showcase-panel:hover .panel-label {
    opacity: 1;
    transform: translateY(0);
}

@keyframes panelReveal {
    from {
        opacity: 0;
        transform: rotateY(var(--panel-angle)) translateY(60px);
    }
    to {
        opacity: 1;
        transform: rotateY(var(--panel-angle)) translateY(0);
    }
}

/* ======================== WHY CHOOSE US ======================== */
.why-us {
    padding: var(--section-padding);
    background: var(--off-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    grid-auto-rows: minmax(220px, auto);
}

.bento-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
}

.bento-large {
    grid-column: span 2;
    min-height: 300px;
}

.bento-full {
    grid-column: 1 / -1;
}

.bento-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.bento-card:hover .bento-card-bg {
    transform: scale(1.05);
}

.bento-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 18, 16, 0.85) 0%,
        rgba(20, 18, 16, 0.5) 100%
    );
}

.bento-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-solid {
    background: var(--cream);
}

.bento-accent {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.bento-accent h3,
.bento-accent p {
    color: var(--white);
}

.bento-accent .bento-icon {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.bento-dark {
    background: var(--gray-800);
    color: var(--white);
}

.bento-dark h3,
.bento-dark p {
    color: var(--text-light);
}

.bento-dark .bento-icon {
    background: var(--accent);
    color: var(--white);
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--white);
    margin-bottom: 1rem;
}

/* Icons on image-bg bento cards (with overlay) */
.bento-card-overlay ~ .bento-card-content .bento-icon {
    background: var(--accent);
    color: var(--white);
}

.bento-icon svg {
    width: 22px;
    height: 22px;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.bento-solid h3 {
    color: var(--text-primary);
}

.bento-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light-muted);
}

.bento-solid p {
    color: var(--text-secondary);
}

/* ======================== BRANDS MARQUEE ======================== */
.brands-section {
    padding: 3rem 0;
    background: var(--cream);
}

.brands-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.brands-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.brands-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.brands-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    white-space: nowrap;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.brand-sep {
    font-size: 0.5rem;
    color: var(--gray-300);
}

/* ======================== PROCESS ======================== */
.process {
    padding: var(--section-padding);
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--sand);
    z-index: 0;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    opacity: 0.4;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.process-step.active .process-step-number {
    opacity: 1;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--white);
    margin: 0 auto 1.5rem;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: var(--shadow-sm);
}

.process-step.active .process-step-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(107, 66, 38, 0.25);
}

@keyframes stepPopIn {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: var(--shadow-sm);
    }
    60% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 14px 32px rgba(107, 66, 38, 0.3);
    }
    100% {
        transform: translateY(-6px) scale(1);
        box-shadow: 0 12px 28px rgba(107, 66, 38, 0.25);
    }
}

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

.process-step:hover .process-step-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(107, 66, 38, 0.25);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.process-step.active .process-step-title {
    opacity: 1;
}

.process-step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.process-step.active .process-step-desc {
    opacity: 1;
}

/* ======================== GALLERY ======================== */
.gallery {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 18, 16, 0.7) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--off-white);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card > * {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 2rem;
}

.star-filled {
    color: var(--accent);
    fill: var(--accent);
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--sand);
    color: var(--text-secondary);
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.testimonial-btn svg {
    width: 18px;
    height: 18px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sand);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ======================== STATS ======================== */
.stats {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent-dark));
    z-index: 0;
}

.stats-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-suffix {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

/* ======================== CONTACT ======================== */
.contact {
    padding: var(--section-padding);
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-light-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(196, 154, 108, 0.1);
    color: var(--accent);
    border: 1px solid rgba(196, 154, 108, 0.15);
}

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

.contact-detail strong {
    display: block;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.contact-detail p {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8279' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select option {
    background: var(--gray-800);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: rgba(196, 154, 108, 0.05);
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
}

.contact-form .btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--gray-900);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.footer .logo-icon {
    color: var(--accent);
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-tagline {
    color: var(--text-light-muted);
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact-links svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    min-width: 16px;
    margin-top: 3px;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ======================== RESPONSIVE — 1024px ======================== */
@media (max-width: 1024px) {
    .hero-panels {
        display: none;
    }

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

    .about-grid {
        gap: 3rem;
    }

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

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

    .bento-large {
        grid-column: span 2;
    }

    .bento-full {
        grid-column: span 2;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .showcase-gallery {
        gap: 10px;
    }

    .showcase-panel {
        width: 80px;
        height: 260px;
    }
}

/* ======================== RESPONSIVE — 860px ======================== */
@media (max-width: 860px) {
    .navbar-pill {
        width: calc(100% - 2rem);
        max-width: 100%;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 2rem 2rem;
        gap: 0;
        z-index: 95;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
        border-radius: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-primary) !important;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-50);
        color: var(--primary) !important;
    }

    .nav-cta {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-line {
        display: none;
    }

    .hero-stats {
        display: none;
    }

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

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .showcase-gallery {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        perspective: none;
    }

    .showcase-panel {
        width: 70px;
        height: 180px;
        transform: rotateY(0deg) !important;
    }

    .showcase-panel:hover {
        transform: scale(1.06) translateY(-10px) !important;
        width: 90px;
    }

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

/* ======================== RESPONSIVE — 640px ======================== */
@media (max-width: 640px) {
    :root {
        --section-padding: 4.5rem 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-content {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        height: 320px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .bento-full {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-experience {
        right: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .marquee-content span {
        font-size: 0.9rem;
    }

    .showcase-panel {
        width: 55px;
        height: 150px;
    }

    .testimonial-card {
        padding: 0 1rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
    }
}

/* ======================== RESPONSIVE — 400px ======================== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .about-content .btn {
        width: 100%;
        justify-content: center;
    }

    .showcase-panel {
        width: 45px;
        height: 120px;
    }
}
