/* ============================================================
   BLACKWOOD — High-End Design Overhaul (taste-skill applied)
   Premium fonts · Spring motion · Double-Bezel · Tinted shadows
   ============================================================ */
:root {
    /* Surfaces — slightly tinted, never pure black */
    --black: #0a0a0a;
    --dark: #0f0f10;          /* tiny warm tint */
    --dark-card: #18181a;     /* nested card surface */
    --dark-elevated: #1f1f22; /* inner core */
    --dark-border: #26262a;
    --hairline: rgba(255, 255, 255, 0.06);  /* premium hairline */
    --hairline-strong: rgba(255, 255, 255, 0.10);

    /* Accents — desaturated for premium feel */
    --red: #e63232;
    --red-hover: #ff4545;
    --red-dark: #c42020;
    --red-glow: rgba(230, 50, 50, 0.18);

    /* Neutrals — single warm gray family */
    --white: #ffffff;
    --gray-light: #c2c0bd;    /* warm light gray (was cool #b0b0b0) */
    --gray: #8a8884;          /* warm mid */
    --gray-dark: #4a4844;
    --text-soft: #d8d6d2;     /* body text */

    /* Typography */
    --font-heading: 'Bebas Neue', system-ui, sans-serif;
    --font-body: 'Geist', system-ui, -apple-system, sans-serif;       /* premium swap */
    --font-serif: 'Instrument Serif', Georgia, serif;                  /* editorial accent */
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;               /* tabular figures */

    /* Spring easing curves (no more linear / ease) */
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

    /* Tinted shadows */
    --shadow-soft: 0 1px 2px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.25);
    --shadow-elevated: 0 2px 4px rgba(0,0,0,0.35), 0 24px 60px rgba(0,0,0,0.40);
    --shadow-red: 0 12px 36px var(--red-glow);

    /* Macro spacing rhythm */
    --space-section: clamp(80px, 12vw, 160px);
}

/* Tabular figures for any number-heavy content */
.tabular { font-variant-numeric: tabular-nums; }

/* Editorial serif accent (use sparingly on key words) */
.serif { font-family: var(--font-serif); font-weight: 400; }

/* ===== Subtle grain overlay (anti-flat) ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Logo Mark - BW monogram (clean letters, no background) */
.logo-mark {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 4px;
}

.logo-mark span {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
}

/* Wordmark inside a thin red frame — V2 signature */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    border: 1.5px solid var(--red);
    padding: 5px 22px 4px;
    gap: 4px;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 5px;
    color: var(--white);
    line-height: 0.95;
    text-align: center;
}

.logo-tagline {
    font-size: 8px;
    letter-spacing: 3.5px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
    border-top: 1px solid var(--red);
    padding-top: 3px;
    margin-top: 1px;
    width: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    .logo-text { display: none; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (min-width: 1200px) {
    .nav-menu { gap: 28px; }
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--red-hover);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--red);
    border: 1px solid rgba(192, 57, 43, 0.3);
    padding: 8px 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(56px, 8vw, 96px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
}

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-header h2,
.about-content h2,
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 28px 36px;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) 2.4fr auto;
    align-items: center;
    gap: 36px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateX(4px);
    border-color: var(--red);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    background: linear-gradient(90deg, rgba(215, 32, 39, 0.06) 0%, var(--dark-card) 55%);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .service-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 24px 22px;
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--black);
}

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

.about-content .section-tag {
    display: block;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--red);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--dark);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

.gallery-large img {
    min-height: 516px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

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

.gallery-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
    display: block;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
}

/* ===== PROCESS ===== */
/* Quick Quote Bar */
.quick-quote {
    padding: 56px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-quote-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.quick-quote-copy {
    text-align: center;
    margin-bottom: 28px;
}

.quick-quote-copy h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 8px;
    line-height: 1.15;
}

.quick-quote-copy p {
    color: var(--gray, #aaa);
    margin: 0 auto;
    font-size: 15px;
}

.quick-quote-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.6fr 1.2fr auto;
    gap: 10px;
    align-items: stretch;
}

.quick-quote-form input,
.quick-quote-form select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    min-width: 0;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
}

.quick-quote-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.quick-quote-form input:focus,
.quick-quote-form select:focus {
    outline: none;
    border-color: var(--red, #d72027);
    background: rgba(255, 255, 255, 0.07);
}

.quick-quote-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.quick-quote-form select option {
    background: #1a1a1a;
    color: #fff;
}

.quick-quote-form button[type="submit"] {
    white-space: nowrap;
    padding: 14px 22px;
}

.quick-quote-status {
    text-align: center;
    margin: 14px 0 0;
    font-size: 14px;
    min-height: 18px;
}

@media (max-width: 900px) {
    .quick-quote-form {
        grid-template-columns: 1fr 1fr;
    }
    .quick-quote-form button[type="submit"] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .quick-quote-form {
        grid-template-columns: 1fr;
    }
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

.mobile-cta-call {
    background: var(--red, #d72027);
    border-color: var(--red, #d72027);
}

.mobile-cta-call:hover,
.mobile-cta-text:hover,
.mobile-cta-quote:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-cta-call:hover {
    background: #b71b21;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
    /* Push footer up so sticky bar doesn't cover it */
    footer {
        padding-bottom: 90px !important;
    }
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 120px 0;
    background: var(--black);
}

.instagram-feed .section-desc a {
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.2s;
}

.instagram-feed .section-desc a:hover {
    opacity: 0.75;
}

.instagram-feed behold-widget {
    margin: 48px 0 56px;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.process {
    padding: 120px 0;
    background: var(--black);
}

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

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--dark-border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--red);
    margin-bottom: 16px;
    opacity: 0.6;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== DESIGN STUDIO ===== */
.design-studio {
    padding: 120px 0;
    background: var(--dark);
}

/* Product Lines */
.product-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.line-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s ease;
}

.line-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.line-card.featured {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(192,57,43,0.08) 0%, var(--dark-card) 40%);
}

.line-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.line-tier {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.line-white .line-tier { color: #ccc; }
.line-silver .line-tier { color: #a8a8a8; }
.line-black .line-tier { color: var(--red); }

.line-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.line-card > p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}

.line-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.line-card ul li {
    font-size: 13px;
    color: var(--gray-light);
    padding: 6px 0;
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    padding-left: 20px;
}

.line-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.line-white ul li::before { background: #ccc; }
.line-silver ul li::before { background: #a8a8a8; }
.line-black ul li::before { background: var(--red); }

.line-price {
    font-size: 14px;
    color: var(--gray);
}

.line-price strong {
    color: var(--white);
    font-size: 18px;
}

/* Studio Tool */
.studio-tool {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
}

.studio-steps {
    display: flex;
    border-bottom: 1px solid var(--dark-border);
}

.studio-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    transition: color 0.3s ease;
}

.studio-step.active {
    color: var(--white);
}

.studio-step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}

.studio-step.completed {
    color: var(--red);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.studio-step.active .step-num {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.studio-step.completed .step-num {
    border-color: var(--red);
    color: var(--red);
}

/* Studio Panels */
.studio-panel {
    display: none;
    padding: 48px;
}

.studio-panel.active {
    display: block;
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--dark-border);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--red);
    background: rgba(192,57,43,0.05);
}

.upload-icon {
    margin-bottom: 16px;
}

.upload-icon svg {
    width: 48px;
    height: 48px;
    color: var(--red);
}

.upload-area h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.upload-area p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.upload-previews {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.preview-thumb {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--dark-border);
}

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

.preview-thumb .remove-thumb {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-room-type {
    margin-bottom: 32px;
}

.upload-room-type label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gray-light);
}

.room-type-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.room-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-btn:hover { border-color: var(--red); color: var(--white); }
.room-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* Room Dimensions */
.room-dimensions {
    margin: 24px 0 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}

.room-dimensions > label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.dimensions-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.dimension-field {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color 0.3s ease;
}

.dimension-field:focus-within {
    border-color: var(--red);
}

.dimension-icon {
    color: var(--gray);
    margin-right: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dimension-field input {
    width: 100%;
    padding: 12px 4px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    outline: none;
    -moz-appearance: textfield;
}

.dimension-field input::-webkit-outer-spin-button,
.dimension-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dimension-field input::placeholder {
    color: var(--gray);
}

.dimension-unit {
    color: var(--gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-left: 4px;
}

.dimensions-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .dimensions-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Studio Form */
.studio-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.studio-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-nav-btns {
    display: flex;
    gap: 16px;
}

.studio-nav-btns .btn { flex: 1; text-align: center; }
.studio-back { max-width: 160px; flex: 0 !important; }

/* AI Loading */
.ai-loading {
    text-align: center;
    padding: 60px 0;
}

.ai-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--dark-border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

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

.ai-spinner .logo-mark {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.ai-spinner .logo-mark span {
    font-size: 24px;
}

.ai-loading h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.ai-loading-status {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.ai-progress {
    max-width: 400px;
    margin: 0 auto;
    height: 4px;
    background: var(--dark-border);
    border-radius: 2px;
    overflow: hidden;
}

.ai-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--red);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* AI Results */
.ai-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.ai-results-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 8px;
}

.ai-results-header p {
    font-size: 15px;
    color: var(--gray-light);
    font-weight: 300;
}

.ai-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ai-result-card {
    background: var(--black);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ai-result-card.featured {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(192,57,43,0.15);
}

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

/* Email Confirmation UI */
.ai-email-confirmation {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: rgba(39, 174, 96, 0.12);
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #27ae60;
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ai-email-confirmation h3 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.confirmation-email {
    font-size: 16px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 20px;
}

.confirmation-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
}

.confirmation-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.confirmation-line-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-light);
}

.line-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.line-dot.white { background: #e0e0e0; }
.line-dot.silver { background: #a0a0a0; }
.line-dot.black { background: var(--red); }

.confirmation-line-item strong {
    color: var(--white);
}

.confirmation-note {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    min-width: 200px;
}

/* Contact Bar */
.contact-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-light);
}

.contact-bar-item svg {
    width: 18px;
    height: 18px;
    color: var(--red);
}

.contact-bar-item a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.contact-bar-item a:hover { color: var(--red); }

/* ===== FORM (shared) ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--gray);
    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='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

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

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(192, 57, 43, 0.1);
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 300;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    padding: 4px 0;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-services li {
    font-size: 14px;
    color: var(--gray-light);
    padding: 4px 0;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

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

    .product-lines {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .ai-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .gallery-large img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--dark-border);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .nav-cta {
        margin-top: 16px;
    }

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

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

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

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

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

    .about-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

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

    .studio-panel {
        padding: 32px 20px;
    }

    .studio-step span:not(.step-num) {
        display: none;
    }

    .contact-bar {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-scroll {
        display: none;
    }
}

/* ===== PROJECTS PORTFOLIO ===== */
.projects-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 36px;
}

.projects-filter {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.projects-filter:hover {
    border-color: var(--red);
    color: var(--white);
}

.projects-filter.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    aspect-ratio: 4 / 5;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 18px 48px rgba(230, 50, 50, 0.18);
}

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

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 45%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}

.project-card-state {
    align-self: flex-start;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.project-card-photo-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.project-card-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.project-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.project-card-location {
    font-size: 13px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-card-cta {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.project-card:hover .project-card-cta {
    gap: 12px;
}

/* Project Modal */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.project-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.project-modal-content {
    position: relative;
    z-index: 1;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    padding: 48px 40px 36px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-modal.active .project-modal-content {
    transform: translateY(0);
}

.project-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
}

.project-modal-close:hover {
    color: var(--white);
    transform: scale(1.15);
}

.project-modal-state {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.project-modal-title {
    font-family: var(--font-heading);
    font-size: 42px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.05;
}

.project-modal-meta {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.project-modal-desc {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
}

.project-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.project-modal-gallery .project-photo {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    background: var(--dark-card);
}

.project-modal-gallery .project-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-modal-gallery .project-photo:hover {
    border-color: var(--red);
    transform: scale(1.02);
}

.project-modal-cta {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--dark-border);
    padding-top: 28px;
}

.projects-empty {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: var(--gray);
    border: 1px dashed var(--dark-border);
    border-radius: 14px;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .project-card-title {
        font-size: 20px;
    }
    .project-modal-content {
        padding: 36px 22px 28px;
    }
    .project-modal-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .projects-filter {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ===== SHOWROOM (Visit Us) ===== */
.showroom {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}

.showroom-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    margin-top: 48px;
    align-items: start;
}

/* Gallery */
.showroom-gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.showroom-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.showroom-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.showroom-thumb {
    background: none;
    border: 2px solid var(--dark-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    aspect-ratio: 4 / 3;
    transition: border-color 0.2s, transform 0.2s;
}

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

.showroom-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--gray-light);
}

.showroom-thumb.active {
    border-color: var(--red);
}

/* Info Card */
.showroom-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 36px 32px;
}

.showroom-info-card h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dark-border);
}

.showroom-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--dark-border);
}

.showroom-info-row:last-of-type {
    border-bottom: none;
    padding-bottom: 24px;
}

.showroom-info-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(230, 50, 50, 0.1);
    border: 1px solid rgba(230, 50, 50, 0.3);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.showroom-info-row strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 4px;
}

.showroom-info-row p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.showroom-info-row p a {
    color: var(--gray-light);
    transition: color 0.2s;
}

.showroom-info-row p a:hover {
    color: var(--red);
}

/* Visit Modal Form */
.visit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.visit-form .form-group {
    margin-bottom: 12px;
    text-align: left;
}

.visit-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    margin-bottom: 6px;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s;
}

.visit-form input:focus,
.visit-form select:focus,
.visit-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.visit-form textarea {
    resize: vertical;
    min-height: 70px;
}

.visit-form input[type="date"] {
    color-scheme: dark;
}

.visit-confirmation {
    text-align: center;
    padding: 12px 0;
}

@media (max-width: 900px) {
    .showroom-layout {
        grid-template-columns: 1fr;
    }
    .showroom-info-card {
        padding: 28px 24px;
    }
    .visit-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showroom-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    .showroom-thumb:nth-child(n+7) {
        display: none;
    }
}

/* ===== PARTNERS (Designers & Contractors) ===== */
.partners {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

/* Designer Network layout */
.designer-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.designer-benefit {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.designer-benefit:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 14px 34px rgba(230, 50, 50, 0.14);
}

.designer-benefit .partner-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.designer-benefit h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 8px;
}

.designer-benefit p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-light);
    font-weight: 300;
}

.designer-cta {
    background: linear-gradient(155deg, rgba(230, 50, 50, 0.12) 0%, var(--dark-card) 55%);
    border: 1px solid rgba(230, 50, 50, 0.3);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 32px auto 0;
}

.designer-cta .btn {
    max-width: 360px;
}

.designer-cta h3 {
    font-family: var(--font-heading);
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--white);
    margin: 4px 0 14px;
    line-height: 1.05;
}

.designer-cta > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
    font-weight: 300;
    margin-bottom: 28px;
}

@media (max-width: 1100px) {
    .designer-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .designer-benefits {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 16px 40px rgba(230, 50, 50, 0.15);
}

.partner-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 50, 50, 0.1);
    border: 1px solid rgba(230, 50, 50, 0.3);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
}

.partner-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}

.partner-card > p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.partner-features {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}

.partner-features li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 14px;
    color: var(--gray-light);
    border-bottom: 1px solid var(--dark-border);
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 3px var(--dark-card);
}

.partner-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .partner-card {
        padding: 32px 24px;
    }
}

/* ===== COMING SOON MODAL ===== */
.coming-soon-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.coming-soon-modal.active {
    opacity: 1;
    visibility: visible;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 48px 40px 36px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.coming-soon-modal.active .coming-soon-content {
    transform: translateY(0);
}

.coming-soon-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.coming-soon-close:hover { color: var(--white); }

.coming-soon-icon {
    color: var(--red);
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.coming-soon-text {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.coming-soon-actions {
    display: flex;
    justify-content: center;
}

/* ===== QUOTE REQUEST — ROOMS LIST & BUILDER ===== */
.rooms-list-wrap {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--dark-border);
}

.rooms-list-header {
    margin-bottom: 16px;
}

.rooms-list-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
}

.rooms-count {
    color: var(--red);
    margin-left: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
}

.rooms-list-hint {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

.rooms-empty {
    padding: 28px 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--dark-border);
    border-radius: 10px;
    color: var(--gray);
    font-size: 14px;
}

.room-summary-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.room-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.room-summary-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.room-summary-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-summary-info strong {
    color: var(--white);
    font-size: 16px;
}

.room-summary-dims {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 2px;
}

.room-summary-remove {
    background: none;
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    font-size: 22px;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.room-summary-remove:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.room-summary-notes {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
    color: var(--gray-light);
    font-size: 13px;
    line-height: 1.5;
}

.room-summary-photos {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.room-summary-photos img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--dark-border);
}

.room-builder {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 24px;
}

.room-builder-title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-border);
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.gallery-modal-content {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 48px 40px 40px;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s ease;
}

.gallery-modal.active .gallery-modal-content {
    transform: translateY(0) scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
}

.gallery-modal-close:hover {
    color: var(--white);
    transform: scale(1.15);
}

.gallery-modal-title {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 28px;
    color: var(--white);
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.gallery-modal-grid .gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.gallery-modal-grid .gallery-thumb:hover {
    border-color: var(--red);
    transform: scale(1.03);
}

.gallery-modal-grid .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-modal-grid .gallery-thumb .gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.gallery-modal-grid .gallery-thumb:hover .gallery-thumb-overlay {
    opacity: 1;
}

.gallery-thumb-overlay span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.gallery-modal-cta {
    text-align: center;
    padding-top: 8px;
}

/* View Gallery link on service cards */
.service-view-gallery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s, gap 0.2s;
}

.service-card:hover .service-view-gallery {
    color: var(--red-hover);
    gap: 10px;
}

/* Lightbox for full-size image */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    cursor: zoom-out;
}

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

.gallery-lightbox img {
    max-width: 92%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 36px 20px 28px;
    }

    .gallery-modal-title {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .gallery-modal-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ★ HIGH-END OVERHAUL — taste-skill overrides (loaded last)
   ============================================================ */

/* === Typography refinements === */
body {
    font-family: var(--font-body);
    color: var(--text-soft);
    font-feature-settings: "ss01", "ss02", "cv11";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
    max-width: 65ch;
}

/* Negative tracking for big headings */
h1, .hero h1,
.section-header h2 {
    letter-spacing: -0.015em;
}

/* === Floating Island Navbar (detached pill) === */
.navbar {
    padding: 16px 16px 0;
    background: transparent;
    border-bottom: none !important;
    transition: padding 600ms var(--ease-spring);
}
.navbar.scrolled {
    background: transparent;
    padding: 12px 16px 0;
    backdrop-filter: none;
    border-bottom: none;
}
.nav-container {
    max-width: 1280px;
    background: rgba(15, 15, 16, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--hairline);
    border-radius: 9999px;
    padding: 10px 18px 10px 14px;
    box-shadow: var(--shadow-soft);
    transition: all 600ms var(--ease-spring);
}
.navbar.scrolled .nav-container {
    background: rgba(15, 15, 16, 0.88);
    box-shadow: var(--shadow-elevated);
}

/* === Sections — macro whitespace === */
.services, .about, .gallery, .process, .design-studio,
.showroom, .partners {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

/* === Eyebrow tags — pill-shape with hairline === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(230, 50, 50, 0.08);
    border: 1px solid rgba(230, 50, 50, 0.25);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}
.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

/* === Headlines — bigger, more presence === */
.section-header h2 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    margin-bottom: 24px;
}
.section-desc {
    font-size: 16px;
    color: var(--gray-light);
    max-width: 60ch;
    margin: 0 auto 40px;
}

/* === Double-Bezel cards (Doppelrand) === */
.service-card,
.line-card,
.project-card,
.partner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--hairline);
    border-radius: 24px;
    padding: 6px;
    transition: transform 700ms var(--ease-spring),
                border-color 600ms var(--ease-spring),
                background 600ms var(--ease-spring);
    overflow: visible;
}
.service-card::before,
.line-card::before,
.partner-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--dark-card);
    border-radius: calc(24px - 6px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
    z-index: 0;
}
.service-card > *,
.line-card > *,
.partner-card > * {
    position: relative;
    z-index: 1;
}
.service-card,
.line-card,
.partner-card {
    padding: 6px !important;
}
/* Inner padding for the actual content */
.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card .service-view-gallery {
    padding-left: 28px;
    padding-right: 28px;
}
.service-card .service-icon { padding-top: 30px; padding-bottom: 0; }
.service-card .service-view-gallery { padding-bottom: 30px; }

/* Hover: lift + brighter hairline */
.service-card:hover,
.line-card:hover,
.partner-card:hover,
.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 50, 50, 0.45);
    box-shadow: var(--shadow-red), var(--shadow-soft);
}

/* === Premium buttons — magnetic + nested icon === */
.btn {
    transition: transform 500ms var(--ease-spring),
                background 400ms var(--ease-soft),
                box-shadow 500ms var(--ease-spring);
    border-radius: 9999px !important;
    letter-spacing: 0.02em;
    font-weight: 600;
    will-change: transform;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: scale(0.98);
}
.btn-primary {
    background: var(--red);
    box-shadow: 0 8px 24px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
    background: var(--red-hover);
    box-shadow: 0 14px 36px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-outline {
    border: 1px solid var(--hairline-strong);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    border-color: var(--hairline-strong);
    background: rgba(255,255,255,0.06);
}

/* === Service icons — softer, ambient red glow + white icon === */
.service-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(230,50,50,0.22), rgba(230,50,50,0.08));
    border: 1px solid rgba(230,50,50,0.30);
    border-radius: 16px;
    color: var(--white);  /* icon is WHITE for contrast on red glow */
    margin-bottom: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 28px rgba(230,50,50,0.18);
    transition: transform 600ms var(--ease-spring), box-shadow 600ms var(--ease-spring);
}
.service-icon svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    display: block;
    color: var(--white);
    stroke: var(--white);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.service-icon svg * {
    stroke: var(--white);
}
.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 14px 36px rgba(230,50,50,0.30);
}

/* === Hairlines instead of hard borders === */
.line-card,
.partner-features li,
.contact-bar,
.footer,
.studio-tool {
    border-color: var(--hairline) !important;
}

/* === Scroll reveals (already hooked via .fade-in in JS) === */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 900ms var(--ease-out-expo),
                transform 900ms var(--ease-out-expo),
                filter 900ms var(--ease-out-expo);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* === Project & gallery cards: brighter on hover === */
.project-card {
    border-radius: 20px !important;
}
.project-card-overlay {
    transition: background 600ms var(--ease-spring);
}

/* === Hero refinements === */
.hero h1 {
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: -0.025em;
}
.hero-subtitle {
    color: var(--text-soft);
    max-width: 56ch;
    margin: 24px auto;
}

/* === Tabular figures for stats === */
.stat-number,
.partner-features li,
.line-price strong {
    font-variant-numeric: tabular-nums;
}

/* === Footer hairline === */
.footer {
    border-top: 1px solid var(--hairline);
    padding-top: 80px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}

/* === Form inputs — soft surfaces === */
input, select, textarea {
    background: rgba(255,255,255,0.025) !important;
    border: 1px solid var(--hairline) !important;
    border-radius: 12px !important;
    transition: border-color 400ms var(--ease-soft),
                background 400ms var(--ease-soft),
                box-shadow 400ms var(--ease-soft);
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(230,50,50,0.55) !important;
    background: rgba(255,255,255,0.04) !important;
    box-shadow: 0 0 0 3px var(--red-glow) !important;
    outline: none !important;
}

/* === Mobile: collapse navbar pill to compact === */
@media (max-width: 768px) {
    .navbar { padding: 12px 12px 0; }
    .nav-container { padding: 8px 14px; }
    .section-header h2 { font-size: clamp(40px, 11vw, 64px); }
}

/* === Reduce motion respect === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

