/* ==========================================
   ELEVÉ - Global Stylesheet
   Premium Custom Furniture & Interiors
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5BC;
    --gold-dark: #B8960C;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-card: #111111;
    --white: #FAFAFA;
    --white-off: #F0EDE8;
    --gray: #888;
    --gray-light: #AAA;
    --gray-dark: #444;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--gold-light);
}

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

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.8;
}

/* ==========================================
   Layout
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section--dark {
    background: var(--black);
}

.section--soft {
    background: var(--black-soft);
}

.grid {
    display: grid;
    gap: 2rem;
}

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

.flex {
    display: flex;
}

.flex--center {
    align-items: center;
    justify-content: center;
}

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

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
}

.btn--primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--black);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn--dark:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.25rem 3rem;
    font-size: 0.85rem;
}

.btn svg, .btn .arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn:hover svg, .btn:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================
   Navigation
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-decoration: none;
    font-weight: 400;
}

.nav__logo span {
    font-size: 0.6em;
    display: block;
    letter-spacing: 0.35em;
    color: var(--gray);
    font-family: var(--font-body);
    font-weight: 300;
    margin-top: -2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--gold);
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav__dropdown-trigger svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    min-width: 240px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.5rem);
}

.nav__dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: var(--transition);
}

.nav__dropdown-menu li a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    padding-left: 2rem;
}

/* Mobile Menu */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.nav__hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
    padding: 4rem 1rem 2rem;
    box-sizing: border-box;
}

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

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu__close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
}

.mobile-menu__links li {
    margin: 1.5rem 0;
}

.mobile-menu__links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.mobile-menu__links a:hover {
    color: var(--gold);
}

.mobile-menu__sub {
    list-style: none;
    margin-top: 0.5rem;
}

.mobile-menu__sub a {
    font-size: 1rem !important;
    color: var(--gray) !important;
    font-family: var(--font-body) !important;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
    box-sizing: border-box;
}

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

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero__label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__label::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero__title em {
    color: var(--gold);
    font-style: italic;
}

.hero__desc {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll,
.hero__scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   Page Header (for inner pages)
   ========================================== */
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.page-header__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header__breadcrumb {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-header__breadcrumb a {
    color: var(--gray);
}

.page-header__breadcrumb a:hover {
    color: var(--gold);
}

.page-header__breadcrumb .sep {
    color: var(--gold);
}

.page-header__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

.page-header__desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.8;
}

/* ==========================================
   Product / Gallery Cards
   ========================================== */
.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: var(--black-card);
    transition: var(--transition);
    group: true;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.product-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 1rem;
}

.gallery-grid--masonry {
    display: block;
    columns: 3;
    column-gap: 1rem;
}

.gallery-grid--masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-height: 400px;
}

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

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item__overlay svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: var(--gold);
    color: var(--black);
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__nav:hover {
    background: var(--gold);
    color: var(--black);
}

.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }

/* ==========================================
   Feature / Stats Section
   ========================================== */
.stats {
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ==========================================
   Service Cards
   ========================================== */
.service-card {
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: var(--black-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--black);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card__link:hover {
    gap: 1rem;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial__quote::before {
    content: none;
}

.testimonial__author {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.testimonial__role {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.05);
    margin: 2rem;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    margin-bottom: 1.5rem;
}

.cta__desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ==========================================
   Contact Form
   ========================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.03);
}

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

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

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

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__brand {
    max-width: 350px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer__logo span {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.3em;
    color: var(--gray);
    font-family: var(--font-body);
    font-weight: 300;
}

.footer__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer__heading {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    align-items: flex-start;
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    font-size: 0.8rem;
    color: var(--gray);
}

.footer__bottom a {
    color: var(--gold);
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.8s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Utility
   ========================================== */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.pt-0 { padding-top: 0; }

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.gold-line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Split layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.split__image {
    position: relative;
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__image::after {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: -1;
}

/* Process / Steps */
.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process__step {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.process__step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    display: block;
    margin-bottom: 1rem;
}

.process__step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.process__step-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================
   Loading Screen
   ========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader__text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
}

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

/* ==========================================
   Category filter tabs
   ========================================== */
.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split--reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
    .section { padding: 5rem 0; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .process__steps { grid-template-columns: 1fr; }
    .hero { padding: 5rem 0 3rem; }
    .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 1rem; }
    .hero__desc { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
    .hero__label { margin-bottom: 1rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { text-align: center; justify-content: center; }
    .hero__scroll-indicator { display: none; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .gallery-grid--masonry { columns: 2; }

    .page-header { padding: 10rem 0 4rem; }

    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }

    .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
    .stats__grid { grid-template-columns: 1fr; }
    .gallery-grid--masonry { columns: 1; }
    .hero { min-height: 90vh; }
    .mobile-menu__links a { font-size: 1.5rem; }
    .mobile-menu__links li { margin: 1rem 0; }
}

/* ==========================================
   Custom Furniture Page
   ========================================== */

/* Intro Section */
.intro {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.2rem;
    margin-bottom: 30px;
    color: var(--white);
}
.intro h2 em {
    color: var(--gold);
    font-style: italic;
}
.intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 0.02rem;
}
.intro .gold-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 35px auto;
}

/* Filter Section */
.filter-section {
    padding: 0 50px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 0 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}
.product-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Product Card Extended */
.product-card__image .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover .product-card__image .overlay { opacity: 1; }
.product-card__image .view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 10px 28px;
    border: 1px solid var(--gold);
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.product-card:hover .product-card__image .view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.product-card__desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 300;
}

/* Process Section */
.process-section {
    padding: 120px 50px;
    background: var(--dark);
}
.process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}
.process-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.process-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}
.process-section .section-header p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    margin-top: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.process-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
}
.process-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.03);
}
.process-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}
.process-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}
.process-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-bottom: 15px;
    color: var(--white);
}
.process-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 300;
}

/* Materials Section */
.materials-section {
    padding: 120px 50px;
}
.materials-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}
.materials-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.materials-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}
.materials-section .section-header p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    margin-top: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.material-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: var(--dark);
    transition: all 0.4s ease;
}
.material-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.material-card__icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}
.material-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.05rem;
}
.material-card p {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 120px 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.03) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.2rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cta-button {
    display: inline-block;
    padding: 18px 55px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.3s ease;
    z-index: -1;
}
.cta-button:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.cta-button:hover::before { left: 0; }
.cta-contacts {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-contacts a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
}
.cta-contacts a:hover { color: var(--gold); }

/* Lightbox Caption */
.lightbox__caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.lightbox__caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
}
.lightbox__caption p {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Custom Furniture Responsive */
@media (max-width: 1024px) {
    .product-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .intro { padding: 60px 25px; }
    .intro h2 { font-size: 1.4rem; letter-spacing: 0.1rem; }
    .intro p { font-size: 0.95rem; }
    .filter-section { padding: 0 25px 40px; }
    .products-section { padding: 0 25px 80px; }
    .product-grid--3 { grid-template-columns: 1fr; gap: 25px; }
    .process-section { padding: 80px 25px; }
    .process-grid { grid-template-columns: 1fr; gap: 25px; }
    .process-card { padding: 35px 25px; }
    .materials-section { padding: 80px 25px; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .material-card { padding: 30px 15px; }
    .cta-section { padding: 80px 25px; }
    .cta-button { padding: 15px 40px; font-size: 0.8rem; }
    .cta-contacts { flex-direction: column; gap: 15px; }
}
@media (max-width: 480px) {
    .materials-grid { grid-template-columns: 1fr; }
}

/* Hero Ken Burns Animation */
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-2%, -1%);
    }
    100% {
        transform: scale(1.08) translate(1%, -2%);
    }
}
