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

        :root {
            --bg-primary: #faf8f3;
            --bg-secondary: #f5f3ed;
            --text-primary: #2d2d2d;
            --text-secondary: #666666;
            --accent-primary: #c9a96e;
            --accent-light: #d4b896;
            --accent-secondary: #8b7355;
            --neutral-light: #fef9f3;
            --neutral-muted: #d9cfc0;
            --border-color: #e5dcd0;
            --shadow: rgba(201, 169, 110, 0.08);
        }

        html.dark-mode {
            --bg-primary: #1a1a1a;
            --bg-secondary: #242424;
            --text-primary: #f5f5f5;
            --text-secondary: #c0c0c0;
            --accent-primary: #d4a574;
            --accent-light: #e0b896;
            --accent-secondary: #c9985e;
            --neutral-light: #2a2a2a;
            --neutral-muted: #3d3d3d;
            --border-color: #3d3d3d;
            --shadow: rgba(212, 165, 116, 0.12);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Professional gradient background animation for luxury aesthetic */
        @keyframes floatSoft {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.03; }
            50% { transform: translateY(-15px) scale(1.05); opacity: 0.06; }
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes subtleGlow {
            0%, 100% { opacity: 0.05; }
            50% { opacity: 0.12; }
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            z-index: -2;
            overflow: hidden;
        }

        .bg-gradient {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.08;
            pointer-events: none;
        }

        .bg-gradient-1 {
            top: 10%;
            left: 5%;
            background: var(--accent-primary);
            animation: floatSoft 8s ease-in-out infinite;
        }

        .bg-gradient-2 {
            bottom: 15%;
            right: 10%;
            background: var(--accent-light);
            animation: floatSoft 10s ease-in-out infinite reverse;
        }

        .bg-element {
            position: absolute;
            opacity: 0.04;
            font-size: 80px;
            color: var(--accent-primary);
            pointer-events: none;
        }

        .bg-element:nth-child(3) { top: 15%; left: 8%; animation: subtleGlow 6s infinite; }
        .bg-element:nth-child(4) { bottom: 20%; right: 5%; animation: subtleGlow 7s infinite; }
        .bg-element:nth-child(5) { top: 55%; right: 8%; animation: subtleGlow 8s infinite; }

        /* Header with responsive navigation */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(250, 248, 243, 0.85);
            backdrop-filter: blur(10px);
            padding: 0.8rem 3rem;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        html.dark-mode header {
            background: rgba(26, 26, 26, 0.85);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
        }

        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
        }

        .logo {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-dark {
            display: none;
        }

        html.dark-mode .logo-light {
            display: none;
        }

        html.dark-mode .logo-dark {
            display: block;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #d4a574;
            letter-spacing: 2px;
        }

        .logo .tagline {
            font-size: 0.65rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 0.05rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-left: auto;
            margin-right: 2rem;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #d4a574;
            font-size: 1rem;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
            letter-spacing: 0.5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-primary);
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

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

        /* Shop button style */
        .shop-btn {
            padding: 8px 18px;
            border: 1px solid #d4a574;
            border-radius: 5px;
            background-color: #d4a574;
            color: #fff;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        /* Hover effect */
        .shop-btn:hover {
            background-color: transparent;
            color: #d4a574;
        }

        /* Dark mode adjustment */
        .dark-mode .shop-btn {
            border-color: #d4a574;
            color: #fff;
        }

        .dark-mode .shop-btn:hover {
            background-color: transparent;
            color: #d4a574;
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            background: var(--neutral-light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 6px var(--shadow);
            margin-left: 1.5rem;
        }

        .theme-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px var(--shadow);
        }

        /* ☀️ outlined look for light mode */
        .theme-toggle .theme-icon {
            font-size: 1rem;
            color: transparent;
            -webkit-text-stroke: 1.5px var(--accent-primary);
            transition: all 0.3s ease;
        }

        /* 🌙 solid fill for dark mode */
        html.dark-mode .theme-toggle {
            background: var(--accent-secondary);
        }

        html.dark-mode .theme-toggle .theme-icon {
            color: var(--accent-light);
            -webkit-text-stroke: 0;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-nav-toggle span {
            display: block;
            height: 2px;
            width: 100%;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--bg-primary);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 999;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .mobile-nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--accent-primary);
            padding-left: 10px;
        }

        .mobile-nav .theme-toggle {
            margin-top: 20px;
            align-self: flex-start;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        /* Hero section with improved spacing and visual hierarchy */
        .hero {
            margin-top: 50px;
            padding: 6rem 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            min-height: 85vh;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

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

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            margin-bottom: 0rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-family: 'Playfair Display', serif;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 200;
            letter-spacing: 1px;
        }

        .hero-image {
            width: 82%;
            aspect-ratio: 3/4;
            border-radius: 2px;
            overflow: hidden;
            animation: fadeIn 1s ease-out 0.3s both;
        }

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

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

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

        .hero-header {
            margin-bottom: 2.5rem;
        }

        .hero-label {
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            letter-spacing: 3px;
            color: #d4a574;
            margin-bottom: 0rem;
            font-weight: 400;
            text-transform: uppercase;
        }

        /* Enhanced button styling with smooth interactions */
        .cta-button,
        .secondary-button {
            display: inline-block;
            padding: 0.95rem 2.5rem;
            background: var(--accent-primary);
            color: white;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid var(--accent-primary);
            cursor: pointer;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow);
            background: var(--accent-secondary);
            border-color: var(--accent-secondary);
        }

        .secondary-button {
            background: transparent;
            color: var(--accent-primary);
        }

        .secondary-button:hover {
            background: var(--accent-primary);
            color: white;
        }

        /* Consistent spacing rhythm across all sections */
        .about {
            padding: 5rem 3rem;
            background: var(--bg-secondary);
            transition: background-color 0.3s ease;
        }

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

        .about-image {
            width: 70%;
            aspect-ratio: 3/4;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px var(--shadow);
        }

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

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #d4a574;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Collections with improved grid and overlay effects */
        .collections {
            padding: 5rem 3rem;
            background: var(--bg-primary);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            color: #d4a574;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3.5rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.7rem 1.8rem;
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            letter-spacing: 0.3px;
            border: none;
            font-family: inherit;
        }

        .filter-buttons a.filter-btn {
            text-decoration: none;
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            letter-spacing: 0.3px;
            font-family: inherit;
        }

        .filter-btn:hover,
        .filter-btn.active,
        .filter-buttons a.filter-btn:hover {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
            transform: translateY(-2px);
        }

        /* Irregular grid layout for visual interest */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            grid-auto-flow: dense;
        }

        .collection-item {
            aspect-ratio: 3/4;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 8px 20px var(--shadow);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: none;
        }

        .collection-item.active {
            display: block;
        }

        .collection-item:nth-child(2) {
            grid-column: span 1;
            grid-row: span 1;
        }

        .collection-item:nth-child(4) {
            grid-column: span 1;
        }

        .collection-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .collection-item:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 30px var(--shadow);
        }

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

        .collection-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .collection-overlay h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .collection-overlay p {
            font-size: 0.9rem;
            opacity: 0.95;
        }

        /* Pagination Styles */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
            padding: 1.5rem 0;
        }

        .pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 3px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 1rem;
            font-weight: 500;
        }

        .pagination-btn:hover:not(.disabled) {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
            transform: translateY(-2px);
        }

        .pagination-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .pagination-info {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0 1rem;
        }

        .page-numbers {
            display: flex;
            gap: 0.5rem;
            margin: 0 1rem;
        }

        .page-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 3px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .page-number.active {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
        }

        .page-number:hover:not(.active) {
            background: var(--accent-light);
            border-color: var(--accent-light);
            color: white;
        }

        /* Process section with professional icons */
        .process {
            padding: 5rem 3rem;
            background: var(--bg-secondary);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .step {
            background: var(--bg-primary);
            padding: 2.5rem;
            border-radius: 5px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid var(--border-color);
            animation: zoomIn 0.8s ease-out;
        }

        .step:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--shadow);
        }

        .step-icon {
            font-size: 2.8rem;
            color: var(--accent-primary);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .step:hover .step-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .step-number {
            font-family: 'Playfair Display', serif;
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 0.75rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .step h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 400;
        }

        .step p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* SGD Logos Section */
        .sgd-logos {
            padding: 5rem 3rem;
            background: var(--bg-primary);
        }

        .sgd-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .sgd-logo-item {
            background: var(--bg-secondary);
            padding: 2.5rem;
            border-radius: 5px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: slideInLeft 0.8s ease-out;
        }

        .sgd-logo-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--shadow);
        }

        .sgd-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sgd-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(0.3);
            transition: filter 0.3s ease;
        }

        .sgd-logo-item:hover .sgd-logo img {
            filter: grayscale(0);
        }

        .sgd-logo-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 400;
        }

        .sgd-logo-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Press section with images */
        .press {
            padding: 5rem 3rem;
            background: var(--bg-primary);
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .press-item {
            position: relative;
            background: var(--bg-secondary);
            border-radius: 5px;
            border: 2px solid var(--accent-primary);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 300px;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            animation: bounceIn 0.8s ease-out;
        }

        .press-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .press-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .press-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(201, 169, 110, 0.95) 100%);
            z-index: 2;
        }

        .press-logo {
            position: relative;
            z-index: 3;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 400;
            color: white;
            text-align: right;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            padding: 1.5rem;
            margin-top: auto;
        }

        .press-item h3 {
            position: relative;
            z-index: 3;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            text-align: right;
            padding: 0 1.5rem;
        }

        .press-item p {
            position: relative;
            z-index: 3;
            font-size: 1.1rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            text-align: right;
            padding: 0 1.5rem 1.5rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 3rem;
            background: var(--bg-secondary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-primary);
            padding: 2.5rem;
            border-radius: 5px;
            border-left: 3px solid var(--accent-primary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 25px rgba(139, 111, 71, 0.2);
            animation: fadeInUp 0.8s ease-out;
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.08);
            box-shadow: 0 18px 45px rgba(139, 111, 71, 0.35);
        }

        .testimonial-text {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.8;
            font-size: 1rem;
        }

        .testimonial-author {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            color: var(--accent-primary);
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 3rem;
            background: var(--bg-primary);
        }

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

        .contact-form {
            background: var(--bg-secondary);
            padding: 3rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
            transition: all 0.3s ease;
            animation: slideInRight 0.8s ease-out;
        }

        .contact-form:hover {
            box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5rem;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-group label i {
            color: var(--accent-primary);
            font-size: 0.85rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

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

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
            transform: translateY(-2px);
        }

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

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

        .info-card {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            animation: slideInLeft 0.8s ease-out;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 111, 71, 0.2);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .info-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .info-content a {
            color: var(--accent-primary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .info-content a:hover {
            color: var(--accent-secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            background: var(--accent-primary);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--accent-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
        }

        .business-hours {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            padding: 2rem;
            border-radius: 8px;
            color: white;
            text-align: center;
            animation: fadeIn 1s ease-out;
        }

        .business-hours h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .business-hours p {
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Thinner, refined footer */
        .footer {
            background: var(--bg-secondary);
            padding: 1.2rem 3rem;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content p {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

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

        .footer-links a {
            color: var(--accent-primary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

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

        /* Responsive pagination */
        @media (max-width: 768px) {
            .pagination {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .page-numbers {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .pagination-btn {
                width: 40px;
                height: 40px;
            }
            
            .page-number {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 4rem 2rem;
                gap: 2rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .about-image {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sgd-logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.6rem 1rem;
            }
            
            .logo img {
                height: 32px;
            }
            
            .logo h1 {
                font-size: 1rem;
            }
            
            .logo .tagline {
                font-size: 0.5rem;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-toggle {
                display: flex;
            }
            
            .hero {
                padding: 2rem 1rem;
                margin-top: 60px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 2rem;
            }
            
            .hero-label {
                font-size: 0.75rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 0.85rem;
            }
            
            .collections,
            .process,
            .sgd-logos,
            .press,
            .testimonials,
            .contact,
            .about {
                padding: 2rem 1rem;
            }
            
            .collections-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .step {
                padding: 1.2rem;
                border-radius: 8px;
            }
            
            .step-icon {
                font-size: 1.8rem;
            }
            
            .step h3 {
                font-size: 1rem;
            }
            
            .step p {
                font-size: 0.8rem;
            }
            
            .sgd-logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .sgd-logo-item {
                padding: 1.2rem;
                border-radius: 8px;
            }
            
            .sgd-logo {
                width: 80px;
                height: 80px;
            }
            
            .sgd-logo-item h3 {
                font-size: 1rem;
            }
            
            .sgd-logo-item p {
                font-size: 0.8rem;
            }
            
            .press-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .press-item {
                min-height: 350px;
            }
            
            .press-logo {
                font-size: 1rem;
            }
            
            .filter-buttons {
                gap: 0.5rem;
            }
            
            .filter-btn,
            .filter-buttons a.filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-form {
                padding: 1.5rem;
                border-radius: 10px;
            }
            
            .info-card {
                padding: 1rem;
                gap: 1rem;
                border-radius: 10px;
            }
            
            .info-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 8px;
            }
            
            .info-content h3 {
                font-size: 0.95rem;
            }
            
            .info-content p {
                font-size: 0.8rem;
            }
            
            .social-links a {
                width: 38px;
                height: 38px;
                font-size: 0.95rem;
                border-radius: 8px;
            }
            
            .testimonial-card {
                padding: 1.5rem;
                border-radius: 12px;
            }
            
            .testimonial-text {
                font-size: 0.85rem;
            }
            
            .testimonial-author {
                font-size: 0.8rem;
            }
            
            .footer-links {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .bg-gradient {
                width: 250px;
                height: 250px;
            }
            
            .bg-element {
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.5rem 0.8rem;
            }
            
            .logo img {
                height: 28px;
            }
            
            .logo h1 {
                font-size: 0.9rem;
            }
            
            .logo .tagline {
                font-size: 0.45rem;
            }
            
            .hero {
                padding: 1.5rem 0.8rem;
                min-height: auto;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.8rem;
            }
            
            .hero-image {
                width: 100%;
            }
            
            .section-header h2 {
                font-size: 1.4rem;
            }
            
            .section-header p {
                font-size: 0.75rem;
            }
            
            .about-content h2 {
                font-size: 1.5rem;
            }
            
            .about-content p {
                font-size: 0.85rem;
            }
            
            .collections,
            .process,
            .sgd-logos,
            .press,
            .testimonials,
            .contact,
            .about {
                padding: 1.5rem 0.8rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .sgd-logos-grid {
                grid-template-columns: 1fr;
            }
            
            .press-grid {
                grid-template-columns: 1fr;
            }
            
            .press-item {
                min-height: 400px;
            }
            
            .step,
            .testimonial-card,
            .sgd-logo-item {
                padding: 1rem;
                border-radius: 8px;
            }
            
            .step-icon {
                font-size: 1.5rem;
            }
            
            .step h3 {
                font-size: 0.95rem;
            }
            
            .step p {
                font-size: 0.75rem;
            }
            
            .footer {
                padding: 1rem;
            }
            
            .footer-content p,
            .footer-links a {
                font-size: 0.75rem;
            }
            
            .cta-button,
            .secondary-button {
                padding: 0.7rem 1.5rem;
                width: 100%;
                max-width: 280px;
                font-size: 0.85rem;
            }
            
            .business-hours {
                border-radius: 10px;
            }
            
            .business-hours h3 {
                font-size: 1.1rem;
            }
            
            .business-hours p {
                font-size: 0.8rem;
            }
        }