        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --warm-cream: #FAF7F2;
            --warm-beige: #F0EBE3;
            --warm-tan: #D4C4B0;
            --warm-brown: #8B7355;
            --deep-brown: #5C4A3A;
            --charcoal: #2D2A26;
            --soft-black: #1A1816;
            --accent-gold: #C4A574;
            --accent-terracotta: #C17F5E;
            --text-primary: #2D2A26;
            --text-secondary: #6B6560;
            --white: #FFFFFF;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--warm-tan) var(--warm-cream);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-primary);
            line-height: 1.7;
            background: var(--warm-cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--warm-cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--warm-tan);
            border-radius: 4px;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 1.5px solid var(--deep-brown);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s ease, opacity 0.15s ease;
            mix-blend-mode: difference;
        }

        .cursor.hover {
            transform: scale(2);
            background: rgba(196, 165, 116, 0.3);
            border-color: var(--accent-gold);
        }

        /* Loading Screen */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--soft-black);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--warm-cream);
            letter-spacing: 0.3em;
            font-weight: 300;
            overflow: hidden;
        }

        .loader-logo span {
            display: inline-block;
            animation: revealLetter 0.6s ease forwards;
            opacity: 0;
            transform: translateY(100%);
        }

        @keyframes revealLetter {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loader-line {
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            margin-top: 2rem;
            animation: expandLine 2s ease forwards 0.8s;
        }

        @keyframes expandLine {
            to {
                width: 150px;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(250, 247, 242, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1rem 4%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.15em;
            transition: color 0.3s ease;
        }

        nav.hero-visible .nav-logo {
            color: var(--white);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.1em;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        nav.hero-visible .nav-links a {
            color: var(--white);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-phone {
            font-size: 0.85rem;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        nav.hero-visible .nav-phone {
            color: var(--white);
        }

        .nav-cta {
            padding: 0.8rem 1.8rem;
            background: transparent;
            border: 1px solid var(--charcoal);
            color: var(--charcoal);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        nav.hero-visible .nav-cta {
            border-color: var(--white);
            color: var(--white);
        }

        .nav-cta:hover {
            background: var(--charcoal);
            color: var(--white);
        }

        nav.hero-visible .nav-cta:hover {
            background: var(--white);
            color: var(--charcoal);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 1.5px;
            background: var(--charcoal);
            transition: all 0.3s ease;
        }

        nav.hero-visible .menu-toggle span {
            background: var(--white);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .hero-media::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(26, 24, 22, 0.3) 0%,
                rgba(26, 24, 22, 0.1) 40%,
                rgba(26, 24, 22, 0.4) 100%
            );
            z-index: 1;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            animation: heroZoom 20s ease infinite alternate;
        }

        @keyframes heroZoom {
            0% { transform: scale(1.1) translateY(0); }
            100% { transform: scale(1.15) translateY(-2%); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            color: var(--white);
        }

        .hero-subtitle {
            font-size: 0.8rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.5s;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 300;
            line-height: 1.15;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.7s;
        }

        .hero-title em {
            font-style: italic;
            color: var(--accent-gold);
        }

        .hero-description {
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 3rem;
            opacity: 0.9;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.9s;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s ease forwards 1.1s;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary {
            padding: 1.1rem 2.8rem;
            background: var(--accent-gold);
            color: var(--soft-black);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: var(--warm-brown);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(196, 165, 116, 0.3);
        }

        .btn-secondary {
            padding: 1.1rem 2.8rem;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--soft-black);
            border-color: var(--white);
        }

        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            color: var(--white);
            opacity: 0;
            animation: fadeUp 1s ease forwards 1.5s;
        }

        .hero-scroll span {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--white), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

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

        /* Section Styles */
        section {
            padding: clamp(5rem, 10vw, 8rem) 4%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-terracotta);
            margin-bottom: 1.5rem;
            display: block;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.05rem;
            color: var(--text-secondary);
            font-weight: 300;
            line-height: 1.8;
        }

        /* Story Section */
        .story-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: var(--warm-beige);
            z-index: 0;
        }

        .story-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .story-content {
            padding-right: 3rem;
        }

        .story-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            font-weight: 300;
            color: var(--warm-tan);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: -3rem;
        }

        .story-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .story-text {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        .story-link {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--deep-brown);
            text-decoration: none;
            letter-spacing: 0.1em;
            margin-top: 1.5rem;
            transition: gap 0.3s ease;
        }

        .story-link:hover {
            gap: 1.5rem;
        }

        .story-link svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .story-link:hover svg {
            transform: translateX(5px);
        }

        .story-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            padding: 2rem;
        }

        .story-image {
            overflow: hidden;
            position: relative;
        }

        .story-image:first-child {
            grid-column: span 2;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .story-image:first-child {
            height: 350px;
        }

        .story-image:not(:first-child) {
            height: 250px;
        }

        /* Features Section */
        .features-section {
            background: var(--warm-cream);
        }

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

        .feature-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: var(--warm-tan);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-beige);
            border-radius: 50%;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--accent-gold);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--deep-brown);
            transition: stroke 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            stroke: var(--white);
        }

        .feature-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .feature-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Collections Section */
        .collections-section {
            background: var(--soft-black);
            color: var(--white);
            position: relative;
        }

        .collections-section .section-title {
            color: var(--white);
        }

        .collections-section .section-description {
            color: rgba(255,255,255,0.7);
        }

        .collections-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .collection-card {
            position: relative;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        .collection-card:first-child {
            grid-column: span 2;
            grid-row: span 2;
            height: auto;
        }

        .collection-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .collection-card:hover img {
            transform: scale(1.1);
        }

        .collection-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(26, 24, 22, 0.9) 0%,
                rgba(26, 24, 22, 0.2) 50%,
                transparent 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            transition: background 0.5s ease;
        }

        .collection-card:hover .collection-overlay {
            background: linear-gradient(
                to top,
                rgba(26, 24, 22, 0.95) 0%,
                rgba(26, 24, 22, 0.4) 60%,
                rgba(26, 24, 22, 0.2) 100%
            );
        }

        .collection-tag {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.8rem;
        }

        .collection-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            transform: translateY(0);
            transition: transform 0.5s ease;
        }

        .collection-card:first-child .collection-title {
            font-size: 2.5rem;
        }

        .collection-subtitle {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .collection-arrow {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .collection-card:hover .collection-arrow {
            opacity: 1;
            transform: translateY(0);
        }

        .collection-arrow svg {
            width: 20px;
            height: 20px;
            stroke: var(--white);
            transform: rotate(-45deg);
        }

        /* Brands Section */
        .brands-section {
            background: var(--warm-beige);
            position: relative;
            overflow: hidden;
        }

        .brands-section::before {
            content: 'MERKEN';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Cormorant Garamond', serif;
            font-size: 15vw;
            font-weight: 300;
            color: var(--warm-tan);
            opacity: 0.15;
            white-space: nowrap;
            pointer-events: none;
        }

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

        .brands-marquee {
            display: flex;
            gap: 5rem;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .brand-item {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .brand-item:hover {
            opacity: 1;
        }

        .brand-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--charcoal);
            letter-spacing: 0.1em;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: var(--white);
            position: relative;
        }

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

        .testimonial-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 400;
            font-style: italic;
            color: var(--charcoal);
            line-height: 1.6;
            margin-bottom: 3rem;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 8rem;
            position: absolute;
            top: -3rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--warm-tan);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .testimonial-name {
            font-weight: 500;
            color: var(--charcoal);
            letter-spacing: 0.05em;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 0;
            background: var(--warm-cream);
        }

        .gallery-header {
            padding: clamp(4rem, 8vw, 6rem) 4%;
            text-align: center;
        }

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

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

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

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

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(26, 24, 22, 0);
            transition: background 0.5s ease;
        }

        .gallery-item:hover::after {
            background: rgba(26, 24, 22, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--deep-brown), var(--soft-black));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
            opacity: 0.1;
        }

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

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 1.2rem 3rem;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .cta-btn-primary {
            background: var(--accent-gold);
            color: var(--soft-black);
            border: none;
        }

        .cta-btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(196, 165, 116, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.4);
            color: var(--white);
        }

        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--soft-black);
            border-color: var(--white);
        }

        /* Contact Section */
        .contact-section {
            background: var(--warm-cream);
        }

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

        .contact-info {
            padding-right: 3rem;
        }

        .contact-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 2rem;
        }

        .contact-text {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--warm-beige);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--deep-brown);
        }

        .contact-label {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .contact-value {
            font-size: 1.1rem;
            color: var(--charcoal);
        }

        .contact-value a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--accent-terracotta);
        }

        .contact-map {
            position: relative;
            height: 100%;
            min-height: 500px;
            background: var(--warm-beige);
            overflow: hidden;
        }

        .contact-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .map-overlay {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            background: var(--white);
            padding: 2rem;
            max-width: 300px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .map-overlay h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .map-overlay p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .map-overlay a {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--deep-brown);
            text-decoration: none;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--soft-black);
            color: var(--white);
            padding: clamp(4rem, 8vw, 6rem) 4% 2rem;
        }

        .footer-top {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand {
            padding-right: 3rem;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-description {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-column h4 {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 1rem;
        }

        .footer-column ul a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-column ul a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .collection-card:first-child {
                grid-column: span 2;
                grid-row: span 1;
                height: 500px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: span 2;
            }
        }

        @media (max-width: 968px) {
            .nav-links,
            .nav-contact {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .story-section::before {
                display: none;
            }

            .story-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .story-content {
                padding-right: 0;
            }

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

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

            .collection-card,
            .collection-card:first-child {
                grid-column: span 1;
                height: 400px;
            }

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

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding-right: 0;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: span 1;
                padding-right: 0;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 4rem 5%;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

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

            .cta-buttons {
                flex-direction: column;
            }

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

        /* Page transitions */
        .page {
            display: none;
            animation: pageIn 0.6s ease forwards;
        }

        .page.active {
            display: block;
        }

        @keyframes pageIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

/* Top Bar */
.topbar {
    background: var(--soft-black);
    color: var(--warm-cream);
    padding: 0.6rem 4%;
    font-size: 0.8rem;
    text-align: center;
}

.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.topbar a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.topbar a:hover {
    text-decoration: underline;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--soft-black);
    color: var(--warm-cream);
    padding: 0.6rem 4%;
    font-size: 0.8rem;
    text-align: center;
}

.topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.topbar a:hover {
    opacity: 0.8;
}

/* Nav CTA Solid variant */
.nav-cta-solid {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    border-color: var(--charcoal) !important;
}

nav.hero-visible .nav-cta-solid {
    background: var(--white) !important;
    color: var(--charcoal) !important;
    border-color: var(--white) !important;
}

@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--soft-black) 0%, var(--deep-brown) 100%);
    padding: 10rem 4% 6rem;
    text-align: center;
    color: var(--white);
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Contact Main Section */
.contact-main {
    padding: clamp(4rem, 8vw, 6rem) 4%;
    background: var(--warm-cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Column */
.contact-info {
    position: sticky;
    top: 120px;
}

.contact-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-intro-text {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.contact-detail-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--deep-brown);
}

.contact-detail-content h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.contact-detail-content p {
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-content a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: var(--accent-gold);
}

.contact-detail-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-terracotta) !important;
    font-weight: 500;
}

/* Parking Info */
.contact-parking {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-brown) 100%);
    border-radius: 8px;
    color: var(--white);
}

.contact-parking-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-parking-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
}

.contact-parking-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-parking-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--accent-terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--warm-tan);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--warm-cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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='%236B6560' 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 1rem center;
    padding-right: 2.5rem;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-gold);
}

.checkbox-label a {
    color: var(--accent-terracotta);
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--accent-gold);
    color: var(--soft-black);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: var(--warm-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 165, 116, 0.3);
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* Form Messages */
.form-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #E8F5E9;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.form-success svg {
    width: 24px;
    height: 24px;
    stroke: #2E7D32;
    flex-shrink: 0;
}

.form-success p {
    color: #2E7D32;
    margin: 0;
}

.form-errors {
    padding: 1.5rem;
    background: #FFEBEE;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #C62828;
}

/* Map Section */
.contact-map-section {
    background: var(--warm-beige);
}

.contact-map-container {
    max-width: 100%;
    line-height: 0;
}

.contact-map-container iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(20%) contrast(1.1);
}

/* Service Section */
.contact-service-section {
    padding: clamp(4rem, 8vw, 6rem) 4%;
    background: var(--white);
}

.contact-service-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-service-icon {
    width: 64px;
    height: 64px;
    background: var(--warm-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--deep-brown);
}

.contact-service-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-service-text,
.contact-service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* FAQ Section */
.contact-faq-section {
    padding: clamp(4rem, 8vw, 6rem) 4%;
    background: var(--warm-cream);
}

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

.contact-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--charcoal);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 4% 4rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-service-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-map-container iframe {
        height: 350px;
    }
}
