/* ========================================
   VENICE KITCHEN — Luxury Cabinetry
   Aesthetic: Venetian Atelier
   ======================================== */

/* ---- 1. Variables & Reset ---- */
:root {
    --obsidian: #0a0a0a;
    --charcoal: #1a1a1a;
    --graphite: #2a2a2a;
    --slate: #3a3a3a;
    --brass: #b8956a;
    --brass-light: #d4b896;
    --brass-dark: #9a7a52;
    --cream: #f5f0eb;
    --ivory: #faf8f5;
    --warm-gray: #8a8578;
    --warm-gray-light: #b5b0a6;
    --white: #ffffff;
    --overlay-dark: rgba(10, 10, 10, 0.65);
    --overlay-darker: rgba(10, 10, 10, 0.8);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 80px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

::selection {
    background: var(--brass);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ---- 2. Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--obsidian);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }

p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
}

/* Brass accent line */
.brass-line {
    width: 60px;
    height: 1px;
    background: var(--brass);
    margin: 1.5rem 0;
}

.brass-line--center {
    margin-left: auto;
    margin-right: auto;
}

/* ---- 3. Layout ---- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1440px;
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--charcoal);
}

.section--cream {
    background: var(--cream);
}

.text-center {
    text-align: center;
}

/* Section header pattern */
.section-header {
    margin-bottom: 60px;
}

.section-header .label {
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    margin-bottom: 8px;
}

.section-header p {
    max-width: 560px;
    font-size: 1.05rem;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* ---- 4. Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--brass);
    color: var(--white);
    border-color: var(--brass);
}

.btn--primary:hover {
    background: var(--brass-dark);
    border-color: var(--brass-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--brass);
    border-color: var(--brass);
}

.btn--outline:hover {
    background: var(--brass);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
    border-color: var(--brass);
    color: var(--brass);
}

.btn--dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn--dark:hover {
    background: var(--obsidian);
    transform: translateY(-2px);
}

.btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* ---- 5. Header & Navigation ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header--transparent {
    background: transparent;
}

.header--solid {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header__logo img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header__logo:hover img {
    opacity: 0.8;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s var(--ease-out);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--brass);
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.4s var(--ease-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--obsidian);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    text-align: center;
}

.mobile-menu__nav a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--cream);
    padding: 12px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-menu__nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu__nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu__nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu__nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu__nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu__nav a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__nav a:hover {
    color: var(--brass);
}

/* ---- 6. Hero Section ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--obsidian);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 149, 106, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 149, 106, 0.06) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.75) 100%);
}

/* Vignette */
.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px 60px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Animated floating orbs */
.hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brass) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--brass-light) 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    animation: orbFloat2 15s ease-in-out infinite alternate;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 60px); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-60px, -80px); }
}

@keyframes orbFloat3 {
    0% { transform: translate(-50%, 0); }
    100% { transform: translate(-50%, -40px); }
}

/* Shimmer line across hero */
.hero__shimmer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--brass) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerSlide 4s ease-in-out infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes shimmerSlide {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Decorative corner accents */
.hero__corners {
    position: absolute;
    inset: 40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.hero__corners::before,
.hero__corners::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--brass);
    border-style: solid;
    border-width: 0;
}

.hero__corners::before {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px;
}

.hero__corners::after {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero__label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 24px;
    display: block;
}

.hero__title {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.08;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--brass-light);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brass), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero__content .label {
    margin-bottom: 16px;
    display: block;
}

.page-hero__content h1 {
    color: var(--white);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero__content .brass-line {
    margin: 20px auto 0;
}

/* ---- 7. Home Page ---- */

/* Brand Statement */
.brand-statement {
    padding: 120px 0;
    text-align: center;
}

.brand-statement__inner {
    max-width: 700px;
    margin: 0 auto;
}

.brand-statement h2 {
    margin-bottom: 12px;
}

.brand-statement h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--brass);
}

.brand-statement p {
    font-size: 1.1rem;
    line-height: 1.85;
}

/* Featured Categories */
.categories {
    padding: 0 0 120px;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.category-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-out);
}

.category-card:hover .category-card__img {
    transform: scale(1.08);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    transition: background 0.4s ease;
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 100%);
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    z-index: 2;
}

.category-card__content .label {
    margin-bottom: 8px;
    display: block;
    font-size: 0.65rem;
}

.category-card__content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card__content h3 {
    transform: translateY(-4px);
}

.category-card__content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.category-card:hover .category-card__content p {
    opacity: 1;
    transform: translateY(0);
}

.category-card__line {
    width: 40px;
    height: 1px;
    background: var(--brass);
    margin-top: 16px;
    transition: width 0.4s var(--ease-out);
}

.category-card:hover .category-card__line {
    width: 80px;
}

/* Stats */
.stats {
    background: var(--charcoal);
    padding: 80px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--brass);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    font-weight: 400;
}

/* CTA Band */
.cta-band {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
}

.cta-band__content {
    position: relative;
    z-index: 2;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- 8. About Page ---- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story__image {
    position: relative;
    overflow: hidden;
}

.about-story__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-story__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--brass);
    opacity: 0.3;
    pointer-events: none;
}

.about-story__text .label {
    margin-bottom: 16px;
    display: block;
}

.about-story__text h2 {
    margin-bottom: 8px;
}

.about-story__text .brass-line {
    margin-bottom: 24px;
}

.about-story__text p {
    font-size: 1.02rem;
    line-height: 1.85;
}

/* Specializations */
.specializations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.spec-card {
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--brass);
}

.spec-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.spec-card__icon i {
    font-size: 1.8rem;
    color: var(--brass);
}

.spec-card h4 {
    margin-bottom: 12px;
}

.spec-card p {
    font-size: 0.92rem;
}

/* Team */
.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.6s var(--ease-out);
}

.team-member:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.team-member__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
}

.team-member__overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-member__overlay span {
    font-size: 0.78rem;
    color: var(--brass-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ---- 9. Portfolio & Gallery ---- */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--brass);
    color: var(--brass);
    background: rgba(184, 149, 106, 0.06);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
    background: rgba(10, 10, 10, 0.4);
}

.gallery-item__overlay i {
    color: var(--white);
    font-size: 1.4rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-item__overlay i {
    opacity: 1;
    transform: scale(1);
}

/* Gallery item hidden for filtering */
.gallery-item.hidden {
    display: none;
}

/* ---- 10. MDF Doors Page ---- */
.products-intro {
    max-width: 600px;
}

.products-intro h2 {
    margin-bottom: 8px;
}

.products-intro p {
    font-size: 1.02rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brass);
}

.product-card__image {
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 24px;
}

.product-card__info h4 {
    margin-bottom: 4px;
}

.product-card__info p {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.product-card__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-card__link:hover {
    gap: 12px;
}

/* ---- 11. Showrooms Page ---- */
.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showroom-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
}

.showroom-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-out);
}

.showroom-card:hover .showroom-card__bg {
    transform: scale(1.06);
}

.showroom-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%);
    transition: background 0.4s ease;
}

.showroom-card:hover .showroom-card__overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.showroom-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    z-index: 2;
}

.showroom-card__content .label {
    margin-bottom: 8px;
    display: block;
    font-size: 0.65rem;
}

.showroom-card__content h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.showroom-card__content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.showroom-card__content .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.showroom-card:hover .showroom-card__content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ---- 12. Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    color: var(--brass);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-detail__icon {
    background: var(--brass);
    color: var(--white);
    border-color: var(--brass);
}

.contact-detail h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--obsidian);
    margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--warm-gray);
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--brass);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--obsidian);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--ivory);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8578' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    margin-top: 8px;
}

/* Map */
.map-section {
    padding: 0;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
}

/* ---- 13. Footer ---- */
.footer {
    background: var(--obsidian);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand img {
    height: 36px;
    margin-bottom: 20px;
}

.footer__brand p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--warm-gray-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    border-color: var(--brass);
    color: var(--brass);
    background: rgba(184, 149, 106, 0.08);
}

.footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 24px;
}

.footer__links a {
    display: block;
    color: var(--warm-gray);
    font-size: 0.92rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--brass-light);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--warm-gray);
    font-size: 0.92rem;
}

.footer__contact-item i {
    color: var(--brass);
    font-size: 0.8rem;
    margin-top: 5px;
    width: 16px;
}

.footer__contact-item a {
    color: var(--warm-gray);
    transition: color 0.3s ease;
}

.footer__contact-item a:hover {
    color: var(--brass-light);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--warm-gray);
}

/* ---- 14. Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    border-color: var(--brass);
    color: var(--brass);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox__nav:hover {
    border-color: var(--brass);
    color: var(--brass);
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ---- 15. Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- 16. Responsive ---- */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .categories__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        height: 380px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-story__image img {
        height: 400px;
    }

    .specializations__grid {
        grid-template-columns: 1fr 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-member:last-child {
        grid-column: span 2;
    }

    .team-member:last-child img {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showrooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showroom-card {
        height: 420px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero {
        min-height: 500px;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__scroll {
        display: none;
    }

    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .brand-statement {
        padding: 80px 0;
    }

    .category-card {
        height: 320px;
    }

    .category-card__content p {
        opacity: 1;
        transform: none;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stat__number {
        font-size: 2.6rem;
    }

    .specializations__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .team-member:last-child {
        grid-column: span 1;
    }

    .team-member img {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lightbox__prev,
    .lightbox__next {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero {
        min-height: 450px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

    .mobile-menu__nav a {
        font-size: 1.8rem;
    }

    .stat__number {
        font-size: 2.2rem;
    }

    .filter-bar {
        gap: 4px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.68rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 16px;
    }
}
