@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Manrope:wght@300;400;600;800&display=swap');

:root {
    --color-bg-light: #F9F9F9;
    /* Calacatta White */
    --color-obsidian: #080808;
    /* Deep Dark */
    --color-charcoal: #141414;
    /* Slightly lighter dark */
    --color-brass: #C5A059;
    /* Luxury Metallic Accent */
    --color-brass-dim: #8A7346;
    --color-text-light: #E0E0E0;
    --color-text-dark: #1A1A1A;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Fixed Typographic Scale */
    --fs-h1: clamp(3rem, 8vw, 6.5rem);
    --fs-h2: clamp(2.5rem, 6vw, 4rem);
    --fs-h3: 1.8rem;
    --fs-body: 1.05rem;
    --fs-label: 0.8rem;

    --transition-slow: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Smooth Scrolling Behaviour */
    scroll-behavior: smooth;

    /* Luxury Spacing Tokens */
    --section-spacing: clamp(8rem, 15vh, 12rem);
}

/* --- Foundation --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor everywhere */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-obsidian);
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Scroll Lock for Mobile Menu */
body.nav-active {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
    position: fixed;
}

section {
    scroll-margin-top: 0px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.dark-section {
    background-color: var(--color-obsidian);
    color: var(--color-text-light);
}

/* --- Custom Cursor & Spotlight --- */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--color-brass);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, mix-blend-mode 0.3s;
    mix-blend-mode: difference;
}

body:has(.dark-section:hover) .cursor-spotlight {
    background: rgba(197, 160, 89, 0.8);
    mix-blend-mode: normal;
    box-shadow: 0 0 60px 30px rgba(197, 160, 89, 0.1);
}

a:hover~.cursor-spotlight,
button:hover~.cursor-spotlight,
.btn-magnetic:hover~.cursor-spotlight {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-brass);
    backdrop-filter: blur(2px);
}

/* --- Reveal Animations --- */
.reveal-mask {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

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

/* --- Navigation: The Editorial Header --- */
.nav {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.85);
    /* Always dark for luxury feel */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1000;
    transition: var(--transition-fast);
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 0.9;
    padding-left: 1.25rem;
    position: relative;
    border-left: 2px solid var(--color-brass);
    transition: var(--transition-fast);
}

.logo:hover {
    padding-left: 1.75rem;
    border-left-width: 4px;
}

.logo-top {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    /* Extreme architectural tracking */
    color: var(--color-brass);
    margin-bottom: 0.2rem;
}

.logo-mid {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.logo-bot {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.1rem;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-brass);
}

.nav-socials {
    display: none;
}

/* Hidden on desktop */
.btn-menu-messenger {
    display: none !important;
}

/* Magnetic Buttons */
.btn-magnetic {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--color-brass);
    color: var(--color-brass) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
}

.btn-magnetic:hover {
    background: var(--color-brass);
    color: var(--color-obsidian) !important;
}

.btn-primary {
    background: var(--color-brass);
    color: var(--color-obsidian) !important;
    border: none;
}

.btn-primary:hover {
    background: var(--color-bg-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
}

.burger-icon {
    width: 30px;
    height: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    width: 100%;
    height: 1px;
    background: var(--color-brass);
    transition: var(--transition-fast);
}

.nav-active .burger-icon span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.nav-active .burger-icon span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
}

/* --- Hero: Cinematic Editorial Triptych --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-obsidian);
}

.hero-triptych {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    z-index: 1;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) grayscale(10%);
    /* Deepened for legibility */
    transition: var(--transition-slow);
}

.hero-panel:hover img {
    filter: brightness(0.8) grayscale(0%);
    transform: scale(1.05);
}

.reveal-panel {
    opacity: 0;
    transform: scale(1.1);
    /* Pre-scale for a lens-zoom effect */
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-panel.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-triptych .reveal-panel:nth-child(2) {
    transition-delay: 0.08s;
}

.hero-triptych .reveal-panel:nth-child(3) {
    transition-delay: 0.15s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Atmospheric Scrim: Darkens edges and creates a central shadow pocket for text */
    background: radial-gradient(circle at center, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.8) 100%),
        linear-gradient(to top, var(--color-obsidian) 5%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: var(--fs-h1);
    font-weight: 300;
    line-height: 1;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    /* Ambient Occlusion Shadow for depth */
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero-text h1 span {
    display: block;
    font-style: italic;
    color: var(--color-brass);
    /* Subtle glow for the accent text */
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* --- Section: Editorial Layout (Philosophy) --- */
.philosophy {
    padding-top: var(--section-spacing);
    background: var(--color-obsidian);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 80vh;
    gap: 0;
}

.editorial-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

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

.editorial-content {
    display: flex;
    align-items: center;
    padding: 6vw;
    background: var(--color-obsidian);
}

.editorial-text {
    max-width: 550px;
}

.editorial-text h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.editorial-text p {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.label-brass {
    font-family: var(--font-body);
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-brass);
    display: block;
    margin-bottom: 1.5rem;
}

.phil-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.phil-content p {
    font-size: var(--fs-body);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.phil-image {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

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

.phil-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 2rem;
}

.stat-item h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-bg-light);
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brass);
    margin-top: 0.5rem;
}

/* --- Expertise: Collections --- */
.expertise {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-light);
}

.exp-header {
    text-align: center;
    margin-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-header h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 300;
    margin: 1rem 0 2rem 0;
}

.exp-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.7;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    /* The architectural slab look */
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.exp-item {
    position: relative;
    overflow: hidden;
    background: var(--color-obsidian);
    aspect-ratio: 1;
}

.exp-item.wide {
    grid-column: span 8;
    aspect-ratio: auto;
    min-height: 500px;
}

.exp-item.narrow {
    grid-column: span 4;
    aspect-ratio: auto;
    min-height: 500px;
}

.exp-item.tall {
    grid-row: span 2;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-slow);
}

.exp-item:hover .exp-img {
    opacity: 0.3;
    transform: scale(1.03);
}

.exp-content {
    position: absolute;
    inset: 0;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-bg-light);
    z-index: 2;
    /* Deeper atmospheric scrim for luxury legibility */
    background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.2) 60%, transparent 100%);
}

.exp-content h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.exp-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.8;
    /* Luxury Editorial Line-Height */
    font-weight: 300;
}

.view-project-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brass);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.exp-item:hover .view-project-link {
    opacity: 1;
    transform: translateY(0);
}

/* --- Bento Portfolio Grid (Commissions) --- */
.gallery-section {
    padding: var(--section-spacing) 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 300;
    margin: 1rem 0 3rem 0;
}

.filter-bar {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 1rem;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    opacity: 0.5;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-brass);
    transition: var(--transition-fast);
}

.filter-btn.active {
    opacity: 1;
    color: var(--color-brass);
}

.filter-btn.active::after {
    width: 100%;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-charcoal);
    transition: var(--transition-slow);
}

.gallery-item.h-wide {
    grid-column: span 2;
}

.gallery-item.v-tall {
    grid-row: span 2;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition-slow);
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.2;
    filter: grayscale(0%);
}

.item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-slow);
}

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

.item-overlay h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-bg-light);
    margin-bottom: 0.5rem;
}

.item-overlay p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brass);
}

/* --- Contact: Showroom Consultation --- */
.contact {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-light);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: flex-start;
}

.contact-text h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 300;
    line-height: 1.1;
    margin: 1rem 0 2rem 0;
}

.contact-text p {
    opacity: 0.7;
    max-width: 400px;
}

/* Premium Channel Cards */
.contact-channels {
    margin-top: 3.5rem;
    display: grid;
    gap: 1.5rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: rgba(8, 8, 8, 0.02);
    border: 1px solid rgba(8, 8, 8, 0.08);
    text-decoration: none;
    color: var(--color-text-dark);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-charcoal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.channel-card:hover {
    color: var(--color-text-light);
    border-color: var(--color-brass);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(8, 8, 8, 0.08);
}

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

.channel-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0; /* Prevents icon wrap from being squeezed by long sibling text */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-brass);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.channel-card:hover .channel-icon-wrap {
    background: var(--color-brass);
    color: var(--color-obsidian);
    transform: rotate(-8deg) scale(1.05);
}

.channel-details {
    flex-grow: 1;
    min-width: 0; /* Crucial flexbox fix: allows text wrapping on children rather than overflowing container */
    position: relative;
    z-index: 2;
}

.channel-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brass-dim);
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.5s ease;
}

.channel-card:hover .channel-label {
    color: var(--color-brass);
}

.channel-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    transition: color 0.5s ease;
    white-space: nowrap; /* Enforce single line on desktop */
}

.channel-card:hover .channel-value {
    color: var(--color-text-light);
}

.channel-arrow {
    color: var(--color-brass);
    flex-shrink: 0; /* Prevents arrow from deforming */
    position: relative;
    z-index: 2;
    opacity: 0.3;
    transform: translateX(-10px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.channel-card:hover .channel-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-form-wrap form {
    display: grid;
    gap: 1.5rem;
}

.field {
    position: relative;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--color-brass);
}

.field label {
    position: absolute;
    left: 0;
    top: 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
    pointer-events: none;
}

.field input:focus~label,
.field input:not(:placeholder-shown)~label,
.field textarea:focus~label,
.field textarea:not(:placeholder-shown)~label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--color-brass);
}

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

/* --- Footer --- */
.footer {
    padding: 8vh 0 4vh 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.7fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.5;
    max-width: 300px;
}

.footer-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brass);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.footer-links a,
.footer-links li {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-brass);
}

.footer-info a[href^="mailto:"] {
    white-space: nowrap; /* Enforce single line on desktop */
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Responsive Overrides --- */
@media (max-width: 1024px) {
    :root {
        --fs-h1: 3.5rem;
        --fs-h2: 2.8rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

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

    .editorial-image {
        height: 60vh;
    }

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

@media (max-width: 768px) {
    :root {
        --fs-h1: 2.5rem;
        --fs-h2: 2.1rem;
        --section-spacing: 5rem;
    }

    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    /* Nav Mobile - Fixed Alignment */
    .nav {
        padding: 1rem 0;
        width: 100%;
    }

    .nav-container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .logo-top {
        font-size: 0.7rem;
    }

    .logo-mid {
        font-size: 1.5rem;
    }

    /* Mobile Navigation - Architectural Catalog Style */
    /* Mobile Navigation - Architectural Catalog Style with Dynamic Mobile Height */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height to prevent iOS address bar cutoffs */
        background: var(--color-obsidian);
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Start from top so it scrolls naturally */
        align-items: center;
        padding: clamp(5rem, 10vh, 7rem) 1.5rem 3rem 1.5rem; /* Safe padding for sticky header and iOS home bar */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease;
        z-index: 100;
        overflow-y: auto; /* Enable vertical scrolling if items overflow */
        -webkit-overflow-scrolling: touch; /* Silky momentum scrolling for iOS Safari */
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links > a {
        font-size: clamp(1.3rem, 4.5vh, 1.8rem);
        font-family: var(--font-display);
        color: var(--color-bg-light);
        width: 85%;
        padding: clamp(0.6rem, 2vh, 1.25rem) 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.15);
        display: flex;
        align-items: baseline;
        gap: 1rem;
        transition: none;
        /* Zero animation for total stability */
    }

    /* Architectural Step Numbers */
    .nav-links > a::before {
        font-family: var(--font-sans);
        font-size: 0.7rem;
        font-style: italic;
        color: var(--color-brass);
        letter-spacing: 0.1em;
    }

    .nav-links > a[href="#philosophy"]::before {
        content: "01";
    }

    .nav-links > a[href="#collections"]::before {
        content: "02";
    }

    .nav-links > a[href="#portfolio"]::before {
        content: "03";
    }

    /* Static Solid CTA - Guaranteed Visibility & Auto-scaling Padding */
    .nav-links > a:nth-child(4) {
        margin-top: clamp(2rem, 5vh, 3.5rem);
        background: var(--color-brass) !important;
        color: #080808 !important;
        /* Force obsidian black text */
        border: none;
        padding: clamp(1rem, 2.5vh, 1.5rem) 1.5rem;
        width: 85%;
        max-width: 320px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 800;
        border-radius: 0;
        line-height: 1;
    }

    .nav-links > a:nth-child(4)::before {
        display: none;
    }

    /* Secondary Messenger CTA */
    .btn-menu-messenger {
        margin-top: clamp(0.6rem, 1.5vh, 1rem) !important;
        background: transparent !important;
        color: var(--color-brass) !important;
        border: 1px solid rgba(197, 160, 89, 0.4) !important;
        padding: clamp(1rem, 2.5vh, 1.5rem) 1.5rem !important;
        width: 85% !important;
        max-width: 320px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        font-family: var(--font-sans) !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.15em !important;
        text-transform: uppercase !important;
        font-weight: 800 !important;
        border-radius: 0 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .btn-menu-messenger::before {
        display: none !important;
    }

    .btn-menu-messenger:hover {
        background: rgba(197, 160, 89, 0.08) !important;
        border-color: var(--color-brass) !important;
        transform: translateY(-2px) !important;
    }

    .btn-menu-messenger svg {
        fill: currentColor !important;
        transition: transform 0.4s ease !important;
    }

    .btn-menu-messenger:hover svg {
        transform: scale(1.1) rotate(5deg) !important;
    }

    .nav-socials {
        display: flex;
        gap: 1.5rem;
        margin-top: clamp(2rem, 5vh, 3.5rem);
        margin-bottom: 1.5rem; /* Prevents button clipping on bottom of page */
        border-top: none;
        width: auto;
        justify-content: center;
        align-items: center;
    }
    
    .btn-nav-social {
        width: 3rem !important;
        height: 3rem !important;
        border-radius: 50% !important;
        border: 1px solid rgba(197, 160, 89, 0.3) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--color-brass) !important;
        background: rgba(197, 160, 89, 0.05) !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    .btn-nav-social:hover {
        background: var(--color-brass) !important;
        color: var(--color-obsidian) !important;
        border-color: var(--color-brass) !important;
        transform: translateY(-2px) !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 101;
        margin-right: -0.5rem;
    }

    .cursor-spotlight {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    /* Hero Mobile - Width Fix */
    .hero {
        height: 90vh;
        min-height: 600px;
        padding: 0;
        display: flex;
        align-items: flex-end;
        width: 100%;
    }

    .hero-triptych {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-panel:nth-child(2),
    .hero-panel:nth-child(3) {
        display: none;
    }

    .hero-panel {
        height: 100%;
        width: 100%;
    }

    .hero-panel img {
        filter: brightness(0.4);
    }

    .hero-overlay {
        background: linear-gradient(to top, var(--color-obsidian) 10%, transparent 60%);
    }

    .hero-content {
        width: 100%;
        padding: 0 1.5rem 10% 1.5rem;
    }

    .hero-text {
        width: 100%;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        width: 100%;
    }

    .hero-text p {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    .hero-actions .btn-magnetic {
        margin-left: 0 !important;
        width: 100%;
        max-width: none;
        text-align: center;
    }

    /* Stacking & Layout */
    .philosophy {
        padding-top: 0;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
    }

    .editorial-image {
        height: 60vh;
        width: 100%;
    }

    .editorial-content {
        padding: 4rem 1.5rem;
        width: 100%;
    }

    .editorial-text {
        width: 100%;
    }

    .editorial-text h2 {
        font-size: 2.2rem;
    }

    .phil-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        border-top: 1px solid rgba(197, 160, 89, 0.1);
        padding-top: 2rem;
        width: 100%;
    }

    /* Collections & Gallery - Cinematic Carousel */
    .exp-header,
    .gallery-header {
        text-align: left;
        align-items: flex-start;
        margin-bottom: 3rem;
        width: 100%;
        padding: 0 1.5rem;
    }

    .exp-header h2,
    .gallery-header h2 {
        font-size: 2.2rem;
    }

    .exp-grid,
    .gallery-bento {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 0 1.5rem 2rem 1.5rem;
        background: transparent;
        border: none;
        width: 100vw;
        margin-left: -1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .exp-grid::-webkit-scrollbar,
    .gallery-bento::-webkit-scrollbar {
        display: none;
    }

    .exp-item,
    .gallery-item {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        height: 60vh !important;
        aspect-ratio: auto;
        width: auto !important;
    }

    .exp-content {
        padding: 2rem;
        width: 100%;
    }

    .exp-content h3 {
        font-size: 2rem;
    }

    .item-overlay {
        opacity: 1;
        transform: none;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 70%);
        justify-content: flex-end;
        padding: 2rem 1.5rem;
        align-items: flex-start;
        text-align: left;
    }

    .item-overlay h4 {
        font-size: 1.6rem;
        line-height: 1.2;
        word-break: normal;
    }

    /* Contact & Form */
    .contact {
        padding: 4rem 0;
        width: 100%;
    }

    .contact-text h2 {
        font-size: 2.3rem;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 4rem;
        width: 100%;
    }

    .channel-value {
        font-size: 1.4rem;
        white-space: normal !important;
        word-break: normal !important; /* Prevents ugly mid-word character breaks */
        overflow-wrap: break-word !important;
        line-height: 1.3;
    }

    .footer-info a[href^="mailto:"] {
        white-space: normal !important;
        word-break: normal !important; /* Prevents ugly mid-word character breaks */
        overflow-wrap: break-word !important;
    }

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

    .btn-magnetic {
        width: 100%;
        text-align: center;
        padding: 1.25rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 0;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
        width: 100%;
    }

    .footer-copy {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }
}

/* --- Back to Top Button (Stacked) --- */
.back-to-top {
    position: fixed;
    bottom: 6.5rem; /* Stacked above the floating Facebook button */
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-brass);
    color: var(--color-obsidian);
}

/* Floating Facebook Contact Hub (Right-Anchored & Stacked) */
.floating-contact-hub {
    position: fixed;
    bottom: 2rem;
    right: 2rem; /* Anchored to bottom-right corner */
    height: 3.5rem;
    width: 3.5rem;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-brass);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Icon on the right, text expanding left */
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 3.5rem;
    animation: hub-subtle-pulse 3s infinite;
}

.floating-hub-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 2;
}

.floating-hub-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-10px); /* Slide text from right to left */
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
}

.floating-contact-hub:hover {
    max-width: 12.5rem;
    width: auto;
    background: var(--color-brass);
    color: var(--color-obsidian);
    border-color: var(--color-brass);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
    animation: none;
}

.floating-contact-hub:hover .floating-hub-icon {
    transform: rotate(12deg) scale(1.1);
}

.floating-contact-hub:hover .floating-hub-text {
    opacity: 1;
    transform: translateX(0);
}

/* Subtle pulse animation in resting state */
@keyframes hub-subtle-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(197, 160, 89, 0.2);
    }
    70% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

@media (max-width: 768px) {
    .floating-contact-hub {
        bottom: 1.5rem;
        right: 1.5rem;
        height: 3rem;
        width: 3rem;
        border-radius: 50%;
    }
    
    .floating-hub-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .floating-contact-hub:hover {
        max-width: 3rem;
        width: 3rem;
        background: rgba(8, 8, 8, 0.85);
        color: var(--color-brass);
        border-color: rgba(197, 160, 89, 0.3);
    }
    
    .floating-contact-hub:hover .floating-hub-text {
        display: none;
    }

    .back-to-top {
        bottom: 5.5rem; /* Stack above floating button on mobile */
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
}

/* --- Cinematic Lightbox Slider --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(25px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

.lightbox-slider {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lightbox-slider::-webkit-scrollbar {
    display: none;
}

.lightbox-slide {
    flex: 0 0 100vw;
    height: 100%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-slide img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-brass);
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-brass);
    color: var(--color-obsidian);
}

@media (max-width: 768px) {
    .lightbox-slide {
        padding: 1rem;
    }

    .lightbox-slide img {
        max-width: 100%;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}