/* ========== CSS VARIABLES ========== */
:root {
    --bg-primary: #080808;
    --bg-secondary: #0c0c0c;
    --bg-tertiary: #111111;
    --accent: #E8E000;
    --white: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-faint: rgba(255, 255, 255, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-hover: rgba(255, 255, 255, 0.04);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.15;
}

.serif {
    font-family: 'Spectral', serif;
}

.serif-italic {
    font-family: 'Spectral', serif;
    font-style: italic;
}

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

/* ========== REUSABLE COMPONENTS ========== */
.line-accent {
    width: 45px;
    height: 1px;
    background: var(--accent);
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.line-center {
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.section-label {
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
}

.section-title {
    font-family: 'Spectral', serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 48px;
}

.quote-author {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    display: block;
    letter-spacing: 0.1em;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 20px 44px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(232, 224, 0, 0.15);
}

.btn-primary.btn-dark {
    background: var(--bg-primary);
    color: var(--white);
}

.btn-primary.btn-dark:hover {
    background: #1a1a1a;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 20px 44px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--border-medium);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-family: inherit;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-arrow {
    font-size: 16px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(30px);
    padding: 16px 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 16px 32px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 101;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: 'Spectral', serif;
    font-size: 36px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: 20px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 480px;
    position: relative;
}

.hero-vertical-line {
    position: absolute;
    left: 40px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.hero-grid {
    display: contents;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 100px;
    position: relative;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-badge span {
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-family: 'Spectral', serif;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 440px;
    margin-bottom: 56px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.hero-image-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
}

.overlay-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.overlay-title {
    font-size: 24px;
    font-weight: 400;
}

/* ========== QUOTE STRIP ========== */
.quote-strip {
    padding: 60px 80px;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.quote-strip-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-strip-text {
    font-size: clamp(20px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.quote-strip-author {
    font-size: 12px;
    color: var(--accent);
    margin-top: 16px;
    letter-spacing: 0.15em;
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 100px 80px;
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    margin-top: 16px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 180px 80px;
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 140px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 28px;
}

.about-text strong {
    color: var(--accent);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-container {
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-quote {
    position: absolute;
    bottom: -40px;
    left: -60px;
    background: var(--accent);
    padding: 40px 36px;
    max-width: 300px;
}

.about-quote p {
    font-size: 20px;
    color: var(--bg-primary);
    line-height: 1.5;
}

.about-quote .quote-author {
    color: rgba(8, 8, 8, 0.6);
    margin-top: 16px;
}

/* ========== SERVICES SECTION WITH IMAGES ========== */
.services-section {
    padding: 160px 80px;
    background: var(--bg-secondary);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.services-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: -24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    border: 1px solid var(--border-subtle);
    background: var(--card-bg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.service-card:hover {
    background: var(--card-hover);
    border-color: rgba(232, 224, 0, 0.3);
    transform: translateY(-4px);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 40px 40px 48px;
}

.service-num {
    font-size: 16px;
    color: var(--text-faint);
    display: block;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.service-card:hover .service-num {
    color: var(--accent);
}

.service-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.services-quote {
    margin-top: 80px;
    padding: 60px;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.services-quote p {
    font-size: clamp(20px, 2.5vw, 26px);
    color: rgba(255, 255, 255, 0.7);
}

.services-quote .quote-author {
    color: var(--accent);
}

/* ========== SHOWCASE CAROUSEL - REDESIGNED ========== */
.showcase-section {
    position: relative;
    padding: 0;
    background: var(--bg-primary);
    height: auto;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.showcase-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 24px;
    padding: 0 120px;
}

.showcase-slide {
    flex: 0 0 calc(33.333% - 16px);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-slide:hover img {
    transform: scale(1.05);
}

.showcase-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-slide:hover .showcase-slide-info {
    transform: translateY(0);
}

.showcase-category {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.showcase-title {
    font-family: 'Spectral', serif;
    font-size: 24px;
    color: var(--white);
}

/* Carousel Arrows - Side positioned with fade */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.4);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0.5;
}

.showcase-arrow:hover {
    opacity: 1;
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(8, 8, 8, 0.8);
}

.showcase-prev {
    left: 30px;
}

.showcase-next {
    right: 30px;
}

.showcase-section:hover .showcase-arrow {
    opacity: 0.8;
}

.showcase-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: 10;
    margin-top: 24px;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.showcase-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Section Spacer */
.section-spacer {
    height: 100px;
    background: var(--bg-primary);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 160px 80px;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 300px;
    font-family: 'Spectral', serif;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    color: var(--bg-primary);
    line-height: 1.15;
    margin-bottom: 32px;
}

.cta-text {
    font-size: 18px;
    color: rgba(8, 8, 8, 0.7);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
}

/* ========== PORTFOLIO SECTION WITH IMAGES ========== */
.portfolio-section {
    padding: 180px 80px;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.project-list {
    border-top: 1px solid var(--border-light);
}

.project-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    align-items: center;
    gap: 40px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-item:hover {
    transform: translateX(10px);
}

.project-item:hover .project-title {
    color: var(--accent);
}

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

.project-image {
    width: 180px;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-content {
    display: flex;
    align-items: center;
}

.project-title {
    font-size: 32px;
    font-weight: 500;
    transition: color 0.4s ease;
}

.project-info {
    text-align: right;
}

.project-category {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.project-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== FULLBLEED SECTION ========== */
.fullbleed-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.fullbleed-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 100px;
}

.fullbleed-content {
    max-width: 500px;
}

.fullbleed-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
}

.fullbleed-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
}

/* ========== GALLERY SECTION - SCROLLABLE ========== */
.gallery-section {
    padding: 160px 80px 100px;
    background: var(--bg-secondary);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.gallery-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: -24px;
}

.gallery-filter {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: rgba(232, 224, 0, 0.1);
}

/* Scrollable Gallery Container */
.gallery-scroll-container {
    height: 600px;
    overflow-y: auto;
    padding-right: 20px;
    margin-bottom: 40px;
}

/* Custom scrollbar for gallery */
.gallery-scroll-container::-webkit-scrollbar {
    width: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
    background: var(--border-subtle);
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-item-category {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.gallery-item-title {
    font-family: 'Spectral', serif;
    font-size: 22px;
    margin-bottom: 4px;
}

.gallery-item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-more {
    text-align: center;
}

/* ========== FURNITURE SHOWCASE ========== */
.furniture-showcase {
    padding: 140px 80px;
    background: var(--bg-primary);
}

.furniture-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: center;
}

.furniture-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.furniture-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.furniture-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: end;
}

.furniture-img-main,
.furniture-img-secondary {
    overflow: hidden;
}

.furniture-img-main {
    aspect-ratio: 16/10;
}

.furniture-img-secondary {
    aspect-ratio: 1;
}

.furniture-img-main img,
.furniture-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.furniture-img-main:hover img,
.furniture-img-secondary:hover img {
    transform: scale(1.05);
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 100px 80px 160px;
    background: var(--bg-secondary);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 80px;
    max-width: 600px;
}

.team-intro {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: -24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    padding: 48px;
    border: 1px solid var(--border-subtle);
    background: var(--card-bg);
    transition: all 0.5s ease;
}

.team-member:hover {
    border-color: rgba(232, 224, 0, 0.3);
    transform: translateY(-4px);
}

.team-member-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(155deg, hsl(40, 15%, 30%) 0%, hsl(36, 12%, 18%) 100%);
    margin-bottom: 32px;
}

.team-member-name {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.team-member-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 140px 80px;
    background: var(--bg-primary);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.clients-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: -24px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.client-logo {
    aspect-ratio: 3/2;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: all 0.4s ease;
}

.client-logo:hover {
    border-color: var(--accent);
}

.client-placeholder {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
    padding: 180px 80px;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 100px;
    color: var(--accent);
    font-family: 'Spectral', serif;
    line-height: 0.5;
    margin-bottom: 56px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.45;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.author-name {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.author-project {
    font-size: 14px;
    color: var(--accent);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 160px 80px;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    padding: 40px;
    border: 1px solid var(--border-subtle);
    background: var(--card-bg);
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(232, 224, 0, 0.3);
}

.faq-question {
    font-family: 'Spectral', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--accent);
}

/* ========== SHOP CTA SECTION ========== */
.shop-cta-section {
    padding: 100px 80px;
    background: var(--bg-tertiary);
}

.shop-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shop-cta-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.shop-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.shop-cta-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.shop-cta-quote {
    padding: 48px;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.shop-cta-quote p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.shop-cta-quote .quote-author {
    color: var(--accent);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 160px 80px;
    background: var(--bg-primary);
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
}

.contact-content .section-title {
    margin-bottom: 32px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 56px;
    max-width: 420px;
}

.contact-info {
    padding-top: 20px;
}

.contact-item {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.contact-value {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.social-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.social-link:hover {
    color: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px 80px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: block;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.footer-social {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: var(--accent);
}

/* ========== ANIMATIONS ========== */
/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal reveal */
.reveal-x {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-x.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Image reveal with scale */
.image-reveal {
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-reveal.visible {
    opacity: 1;
}

.image-reveal img {
    transform: scale(1.15);
    transition: transform 1.68s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-reveal.visible img {
    transform: scale(1);
}

/* Line animation */
.line-accent {
    width: 0;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visible .line-accent,
.reveal.visible .line-accent {
    width: 45px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr 400px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 400px;
        gap: 80px;
    }
    
    .contact-grid {
        gap: 80px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-slide {
        flex: 0 0 calc(50% - 12px);
    }
    
    .showcase-track {
        padding: 0 100px;
    }
    
    .furniture-grid {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }
    
    .project-item {
        grid-template-columns: 150px 1fr 180px;
    }
    
    .project-image {
        width: 150px;
        height: 85px;
    }
    
    .project-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }
    
    .navbar.scrolled {
        padding: 16px 40px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
    display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 140px 40px 80px;
    }
    
    .hero-visual {
        height: 60vh;
    }
    
    .hero-image-container {
        height: 100%;
    }
    
    .hero-vertical-line {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .quote-strip {
        padding: 48px 40px;
    }
    
    .stats-section {
        padding: 60px 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .about-section {
        padding: 100px 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-quote {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -40px;
        margin-left: 20px;
        max-width: none;
    }
    
    .services-section {
        padding: 100px 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-section {
        height: auto;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .showcase-carousel {
        height: 50vh;
        min-height: 400px;
    }
    
    .showcase-track {
        padding: 0 80px;
    }
    
    .showcase-slide {
        flex: 0 0 calc(100% - 160px);
    }
    
    .showcase-arrow {
        width: 50px;
        height: 50px;
    }
    
    .showcase-prev {
        left: 15px;
    }
    
    .showcase-next {
        right: 15px;
    }
    
    .cta-section {
        padding: 100px 40px;
    }
    
    .cta-bg-text {
        font-size: 200px;
        right: -10%;
    }
    
    .portfolio-section {
        padding: 100px 40px;
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    
    .project-item {
        grid-template-columns: 120px 1fr;
        gap: 24px;
    }
    
    .project-info {
        display: none;
    }
    
    .project-image {
        width: 120px;
        height: 70px;
    }
    
    .project-content {
        gap: 20px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .fullbleed-section {
        height: 60vh;
    }
    
    .fullbleed-overlay {
        padding: 0 40px;
    }
    
    .gallery-section {
        padding: 100px 40px 80px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-scroll-container {
        height: 500px;
    }
    
    .furniture-showcase {
        padding: 100px 40px;
    }
    
    .furniture-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .furniture-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .team-section {
        padding: 80px 40px 100px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .team-member {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .team-member-image {
        margin-bottom: 0;
    }
    
    .clients-section {
        padding: 100px 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-section {
        padding: 100px 40px;
    }
    
    .faq-section {
        padding: 100px 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-cta-section {
        padding: 80px 40px;
    }
    
    .shop-cta-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-section {
        padding: 100px 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer {
        padding: 32px 40px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 120px 24px 60px;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }
    
    .hero-visual {
        height: 50vh;
    }
    
    .quote-strip {
        padding: 40px 24px;
    }
    
    .stats-section {
        padding: 48px 24px;
    }
    
    .stats-grid {
        gap: 32px;
    }
    
    .stat-value {
        font-size: clamp(36px, 10vw, 52px);
    }
    
    .about-section {
        padding: 80px 24px;
    }
    
    .services-section {
        padding: 80px 24px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 32px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .services-quote {
        padding: 40px 24px;
    }
    
    .showcase-section {
        height: auto;
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .showcase-carousel {
        height: 45vh;
        min-height: 350px;
    }
    
    .showcase-track {
        padding: 0 60px;
    }
    
    .showcase-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .showcase-prev {
        left: 10px;
    }
    
    .showcase-next {
        right: 10px;
    }
    
    .cta-section {
        padding: 80px 24px;
    }
    
    .portfolio-section {
        padding: 80px 24px;
    }
    
    .project-item {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 24px 0;
    }
    
    .project-image {
        width: 100px;
        height: 60px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .fullbleed-section {
        height: 50vh;
    }
    
    .fullbleed-overlay {
        padding: 0 24px;
        background: linear-gradient(to bottom, rgba(8, 8, 8, 0.7) 0%, rgba(8, 8, 8, 0.9) 100%);
        align-items: flex-end;
        padding-bottom: 40px;
    }
    
    .gallery-section {
        padding: 80px 24px 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-scroll-container {
        height: 450px;
        padding-right: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .furniture-showcase {
        padding: 80px 24px;
    }
    
    .furniture-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .furniture-img-secondary {
        aspect-ratio: 16/10;
    }
    
    .team-section {
        padding: 60px 24px 80px;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .team-member-image {
        max-width: 200px;
        margin-bottom: 24px;
    }
    
    .clients-section {
        padding: 80px 24px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-section {
        padding: 80px 24px;
    }
    
    .testimonial-quote {
        font-size: 60px;
        margin-bottom: 32px;
    }
    
    .testimonial-text {
        font-size: clamp(20px, 5vw, 32px);
    }
    
    .faq-section {
        padding: 80px 24px;
    }
    
    .faq-item {
        padding: 32px 24px;
    }
    
    .shop-cta-section {
        padding: 60px 24px;
    }
    
    .shop-cta-quote {
        padding: 32px;
    }
    
    .contact-section {
        padding: 80px 24px;
    }
    
    .contact-social {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .footer {
        padding: 24px;
    }
    
    .mobile-link {
        font-size: 28px;
    }
}

/* ========== PROJECT DIVISIONS SECTION ========== */
.divisions-section {
    padding: 120px 80px;
}

.divisions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.divisions-header {
    margin-bottom: 80px;
}

.divisions-intro {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin-top: 16px;
}

.divisions-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.division-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.division-item-reverse {
    direction: rtl;
}

.division-item-reverse > * {
    direction: ltr;
}

.division-num {
    font-size: 64px;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.division-title {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.division-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.division-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.division-tag {
    padding: 6px 16px;
    border: 1px solid rgba(232, 224, 0, 0.3);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 10px;
}

.division-images {
    position: relative;
    height: 450px;
}

.division-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    overflow: hidden;
}

.division-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.division-img-main:hover img {
    transform: scale(1.05);
}

.division-img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    height: 55%;
    overflow: hidden;
    box-shadow: -8px -8px 0 var(--bg);
}

.division-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.division-img-accent:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .divisions-section {
        padding: 80px 40px;
    }

    .division-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .division-item-reverse {
        direction: ltr;
    }

    .division-images {
        height: 350px;
    }

    .divisions-list {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .divisions-section {
        padding: 80px 24px;
    }

    .division-num {
        font-size: 48px;
    }

    .division-title {
        font-size: 28px;
    }

    .division-images {
        height: 280px;
    }

    .divisions-list {
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .division-images {
        height: 220px;
    }

    .division-img-accent {
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .hero-image-overlay {
        left: 24px;
        right: 24px;
        bottom: 40px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 16px 32px;
        font-size: 10px;
    }
    
    .section-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 32px;
    }
    
    .about-quote {
        padding: 28px 24px;
    }
    
    .about-quote p {
        font-size: 18px;
    }
    
    .cta-bg-text {
        font-size: 120px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .team-member-name {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .shop-cta-quote p {
        font-size: 18px;
    }
    
    .showcase-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .project-item {
        grid-template-columns: 80px 1fr;
    }
    
    .project-image {
        width: 80px;
        height: 50px;
    }
    
    .project-title {
        font-size: 18px;
    }
}
