:root {
    --primary: #111111;
    --accent: #b0914f;
    /* Muted Gold/Brass */
    --bg-light: #fcfcfc;
    --bg-white: #ffffff;
    --text-main: #222222;
    --text-muted: #777777;
    --spacing-xs: 1.5rem;
    --spacing-sm: 3rem;
    --spacing-md: 4.5rem;
    /* Reduced from 6rem */
    --spacing-lg: 7.5rem;
    /* Reduced from 10rem */
    --spacing-xl: 10rem;
    /* Reduced from 14rem */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-main);
}

.container {
    max-width: 1280px;
    /* Adjusted from 1400px for a more concentrated premium look */
    margin: 0 auto;
    padding: 0 4rem;
    /* Significantly increased from 1.5rem */
}

section {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.headline-lg {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 auto var(--spacing-sm);
    /* Added auto margins for centering */
    max-width: 1000px;
}

.headline-md {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 auto var(--spacing-sm);
    /* Added auto margins for centering */
    max-width: 1000px;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    z-index: 100;
}

.logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    text-align: center;
    /* Center text content */
    position: relative;
    background: #000;
    color: white;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Slightly darker for better readability with center text */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center flex items */
}

.hero-content h1,
.hero-content p {
    color: white;
}

.hero-content .headline-lg {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Reduced from 4.5rem */
    margin: 0 auto 2rem;
    max-width: 900px;
}

.hero-content .subheadline {
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Blocks */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.img-frame {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 8px;
    /* Subtle rounded corners for a modern professional look */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.img-frame img,
.img-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.split-grid:hover .img-frame img {
    transform: scale(1.03);
}

/* Lists */
.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.check-list li::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--accent);
    margin: 1rem 1.5rem 0 0;
    flex-shrink: 0;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.process-item {
    padding-top: 2rem;
    border-top: 1px solid #eeeeee;
}

.process-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.process-item h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    /* Reduced for a more compact, premium look */
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
    /* Consistent with .img-frame */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
    /* Standardized with .img-frame */
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.portfolio-item.feat {
    grid-column: span 8;
    height: 600px;
    /* More balanced height */
}

.portfolio-item.side {
    grid-column: span 4;
    height: 600px;
}

.portfolio-item.third {
    grid-column: span 4;
    height: 400px;
}

/* Excellence / Authority */
.exclusivity-box {
    padding: var(--spacing-md);
}

.authority-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
}

/* Form */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 2.5rem;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #dddddd;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--primary);
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid #eeeeee;
}

.faq-item:first-child {
    border-top: 1px solid #eeeeee;
}

.faq-q {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: var(--bg-white);
    border-top: 1px solid #eeeeee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--spacing-sm);
    border-top: 1px solid #f5f5f5;
    text-align: center;
    font-size: 0.55rem;
    color: #999999;
    letter-spacing: 0.1em;
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@media (max-width: 1024px) {

    .split-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .img-frame {
        height: 450px;
    }

    .portfolio-item.feat,
    .portfolio-item.side,
    .portfolio-item.third {
        grid-column: span 12;
        height: 350px;
    }
}

@media (max-width: 768px) {

    /* Reset and basics */
    .container {
        padding: 0 1.5rem !important;
        width: 100% !important;
    }

    /* Force Header to be a solid bar at the VERY top */
    .header {
        position: relative !important;
        display: block !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 2.5rem 0 !important;
        background-color: #000000 !important;
        text-align: center !important;
        z-index: 1000 !important;
        height: auto !important;
    }

    .header .logo {
        height: 32px !important;
        /* Slightly smaller for better fit */
        width: auto !important;
        margin: 0 auto !important;
        display: block !important;
        filter: brightness(0) invert(1) !important;
    }

    /* Hero section starts below the header */
    .hero {
        height: auto !important;
        min-height: calc(100vh - 80px) !important;
        padding: 4rem 0 8rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
    }

    /* High specificity for typography to ensure it overrides desktop clamp values */
    .hero .hero-content {
        margin-top: 0 !important;
        padding: 0 1.5rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero .hero-content .eyebrow {
        font-size: 0.75rem !important;
        letter-spacing: 0.2em !important;
        margin-bottom: 2rem !important;
        margin-top: 1rem !important;
    }

    .hero .hero-content .headline-lg {
        font-size: 1.85rem !important;
        /* More aggressive reduction for mobile readability */
        line-height: 1.3 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
    }

    .hero .hero-content .subheadline,
    .hero .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    /* Process Grid */
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .btn-sticky {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: 1.5rem !important;
        width: calc(100% - 3rem) !important;
        padding: 1.1rem !important;
        font-size: 0.85rem !important;
        z-index: 999 !important;
    }

    /* Showroom / Portfolio Grid Mobile Fix */
    .portfolio-grid {
        gap: 1.5rem !important;
        grid-template-columns: 1fr !important;
        /* Force single column */
    }

    .portfolio-item,
    .portfolio-item.feat,
    .portfolio-item.side,
    .portfolio-item.third {
        grid-column: span 12 !important;
        /* Full width */
        height: 380px !important;
        /* Balanced height for mobile */
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }

    .exclusivity-box {
        padding: 4rem 1.5rem !important;
    }
}