
        /* Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

        /* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background: #F5F0EB;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-weight: 600;
        }

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

        /* Header */
        .header {
            background: #8B1A4A;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: #C9A96E;
        }

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

        .nav a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .nav a:hover {
            color: #C9A96E;
        }

        .nav a.active {
            color: #C9A96E;
            border-bottom: 2px solid #C9A96E;
        }

        .nav .phone-link {
            background: #C9A96E;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
        }

        .nav .phone-link:hover {
            background: white;
            color: #8B1A4A;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: #C9A96E;
            color: #8B1A4A;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
            background: #d4b87a;
        }

        .btn-secondary {
            background: #8B1A4A;
            color: white;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 26, 74, 0.3);
        }

        .btn-accent {
            background: #2E7D32;
            color: white;
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: #8B1A4A;
        }

        /* Hero */
        .hero {
            padding: 100px 0;
            background: linear-gradient(135deg, #8B1A4A 0%, #4a1030 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero h1 span {
            color: #C9A96E;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

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

        .hero-image {
            text-align: center;
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .hero-image .icon {
            font-size: 5rem;
            display: block;
            margin-bottom: 1rem;
        }

        .hero-image .sub-text {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-light {
            background: white;
        }

        .section-dark {
            background: #8B1A4A;
            color: white;
        }

        .section-cream {
            background: #F5F0EB;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        .section-dark .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
        }

        .card .icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .card h3 {
            color: #8B1A4A;
            margin-bottom: 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Fabric Categories */
        .fabric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .fabric-category {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s;
            cursor: pointer;
        }

        .fabric-category:hover {
            border-color: #C9A96E;
            transform: translateY(-3px);
        }

        .fabric-category .icon {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 10px;
        }

        .fabric-category h4 {
            color: #8B1A4A;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        /* Calculator */
        .calculator-box {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            max-width: 600px;
            margin: 0 auto;
        }

        .calculator-box .form-group {
            margin-bottom: 20px;
        }

        .calculator-box label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .calculator-box input,
        .calculator-box select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .calculator-box input:focus,
        .calculator-box select:focus {
            border-color: #C9A96E;
            outline: none;
        }

        .result-box {
            background: #F5F0EB;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
            display: none;
            border: 2px solid #C9A96E;
        }

        .result-box.show {
            display: block;
            animation: fadeIn 0.5s;
        }

        .result-box .result-number {
            font-size: 3rem;
            font-weight: 700;
            color: #8B1A4A;
            margin: 10px 0;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .result-box .result-label {
            color: #666;
            font-size: 1.1rem;
        }

        /* Blog Post */
        .blog-post {
            max-width: 800px;
            margin: 40px auto;
            padding: 50px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        .blog-post h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #8B1A4A;
        }

        .blog-post .meta {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .blog-post h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: #8B1A4A;
        }

        .blog-post h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 0.8rem;
            color: #8B1A4A;
        }

        .blog-post p {
            margin-bottom: 1rem;
            color: #444;
        }

        .blog-post ul,
        .blog-post ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }

        .blog-post li {
            margin: 0.5rem 0;
            color: #444;
        }

        .blog-post .highlight-box {
            background: #F5F0EB;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #C9A96E;
        }

        .blog-post .cta-box {
            background: #8B1A4A;
            color: white;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
        }

        .blog-post .cta-box h3 {
            color: white;
            margin-bottom: 15px;
        }

        .blog-post .cta-box p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }

        /* FAQ */
        .faq-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #8B1A4A;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .faq-question:hover {
            color: #C9A96E;
        }

        .faq-answer {
            margin-top: 10px;
            display: none;
            color: #555;
        }

        .faq-answer.show {
            display: block;
        }

        /* Email Capture */
        .email-capture {
            padding: 80px 0;
            background: #8B1A4A;
            color: white;
        }

        .email-capture .container {
            text-align: center;
        }

        .email-capture h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .email-capture p {
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem auto;
            font-size: 1.1rem;
        }

        .email-capture .input-group {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .email-capture input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
        }

        .email-capture input:focus {
            outline: 2px solid #C9A96E;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: rgba(255,255,255,0.8);
            padding: 60px 0 30px;
        }

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

        .footer h4 {
            color: white;
            font-family: 'Playfair Display', 'Georgia', serif;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin: 8px 0;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: #C9A96E;
        }

        .footer .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer .social-links a {
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 50%;
            display: inline-block;
        }

        .footer .social-links a:hover {
            background: #C9A96E;
            color: #8B1A4A;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-buttons {
                justify-content: center;
            }

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

        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav {
                justify-content: center;
                gap: 1rem;
            }

            .nav a {
                font-size: 0.85rem;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section {
                padding: 50px 0;
            }

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

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

            .calculator-box {
                padding: 20px;
            }

            .blog-post {
                padding: 20px;
            }

            .blog-post h1 {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer .social-links {
                justify-content: center;
            }

            .email-capture h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .fabric-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .fabric-category {
                padding: 15px;
            }

            .fabric-category .icon {
                font-size: 2rem;
            }
        }
        