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

        html, body {
            background: #F9F7F4;
        }

        body {
            font-family: 'Crimson Text', serif;
            line-height: 1.6;
            color: #1a1a1a;
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden;
        }

        /* TWEAKABLE COLORS - EDITMODE-BEGIN */
        :root {
            --primary: #8B7355;
            --primary-light: #D4C4B0;
            --accent: #C4A57B;
            --dark: #3D3D3D;
            --light: #F9F7F4;
            --border: #E5E5E5;
            --hero-height: 800px;
            --hero-gold: #D4AF87;
            --header-sticky: sticky;
        }
        /* TWEAKABLE COLORS - EDITMODE-END */

        /* Header / Nav */
        header {
            padding: 0;
            border-bottom: 1px solid var(--border);
            background: white;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #8B7355, #C4A57B, #8B7355, transparent);
            animation: slideGradient 3s infinite;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1px 40px;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
            position: relative;
            z-index: 1;
        }



        @keyframes slideGradient {
            0% { left: -100%; }
            50% { left: 50%; }
            100% { left: 100%; }
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo img {
            height: 120px;
            width: auto;
            object-fit: contain;
            mix-blend-mode: multiply;
        }

        .logo-svg {
            height: 120px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 16px;
            flex: 1;
            justify-content: center;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        .nav-right {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-shrink: 0;
        }

        .search-box {
            display: none;
        }

        .search-icon {
            width: 20px;
            height: 20px;
            stroke: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-icon:hover {
            stroke: #1a1a1a;
        }

        .account-icon {
            width: 20px;
            height: 20px;
            stroke: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .account-icon:hover {
            stroke: #1a1a1a;
        }

        .cart-icon {
            width: 20px;
            height: 20px;
            stroke: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cart-icon:hover {
            stroke: #1a1a1a;
        }

        .account-btn {
            display: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1f2937 100%);
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
            border-bottom: none;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(196, 165, 123, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(30px) translateX(-20px); }
        }

        .hero-left {
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C4A57B;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: slideInDown 0.8s ease-out;
        }

        .hero-eyebrow::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #C4A57B;
            border-radius: 50%;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 72px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            animation: slideInUp 0.8s ease-out 0.1s both;
        }

        .hero-title .gold {
            color: #C4A57B;
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #b0b8c1;
            line-height: 1.8;
            margin-bottom: 40px;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .hero-cta {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .hero-cta:hover {
            color: #C4A57B;
            gap: 12px;
        }

        .announcement-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Quiz Card */
        .quiz-card {
            background: #fff;
            border-radius: 4px;
            padding: 44px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
            animation: slideInRight 0.8s ease-out 0.2s both;
        }

        .quiz-progress {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #999;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quiz-progress::before {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        .quiz-title {
            font-family: 'Crimson Text', serif;
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-weight: 500;
            letter-spacing: -0.5px;
        }

        .quiz-subtitle {
            font-size: 13px;
            color: #999;
            margin-bottom: 32px;
        }

        .quiz-question {
            margin-bottom: 28px;
        }

        .quiz-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .quiz-option {
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 3px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            color: #333;
            background: white;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .quiz-option:hover {
            border-color: #C4A57B;
            background: #fffbf0;
            transform: translateY(-2px);
        }

        .quiz-option.selected {
            background: #C4A57B;
            color: white;
            border-color: #C4A57B;
        }

        .quiz-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e0e0e0;
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .quiz-next {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 11px 24px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .quiz-next:hover {
            background: #1f2937;
            transform: translateY(-2px);
        }

        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 16px 48px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }

        .cta-button:hover {
            background: var(--accent);
        }

        /* Product Grid */
        .products-section {
            padding: 80px 0;
            background: white;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-title {
            font-size: 56px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 48px;
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .product-card {
            background: var(--light);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-align: center;
            padding: 20px;
        }

        .product-info {
            padding: 28px;
        }

        .product-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .product-info p {
            font-size: 15px;
            color: #999;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .product-cta {
            background: var(--dark);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
        }

        .product-cta:hover {
            background: var(--primary);
        }

                /* Bestsellers Section */
        .bs-section {
            padding: 100px 0;
            background: var(--cream, #faf8f5);
        }
        .bs-head {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
            padding: 0 40px;
        }
        .bs-eyebrow {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 16px;
            font-weight: 600;
        }
        .bs-head h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.05;
            color: var(--dark);
        }
        .bs-head h2 em {
            font-style: italic;
            color: var(--accent);
        }
        .bs-head p {
            font-size: 18px;
            color: #666;
            line-height: 1.7;
        }
        .bs-cat-label {
            max-width: 1100px;
            margin: 0 auto 24px;
            padding: 0 40px;
            display: flex;
            align-items: baseline;
            gap: 16px;
        }
        .bs-cat-label:not(:first-of-type) {
            margin-top: 60px;
        }
        .bs-cat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 600;
        }
        .bs-cat-label h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
        }
        .bs-list {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            gap: 20px;
        }
        .bs-row {
            display: grid;
            grid-template-columns: 240px 1fr auto;
            gap: 32px;
            align-items: center;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid var(--border, rgba(0,0,0,0.08));
        }
        .bs-row:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .bs-img {
            height: 180px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: white;
            position: relative;
        }
        .bs-rank {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: white;
            color: var(--dark);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .bs-content {
            padding: 20px 0;
        }
        .bs-stars {
            color: var(--accent);
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 6px;
        }
        .bs-stars span {
            color: #999;
            margin-left: 6px;
            font-size: 12px;
            letter-spacing: 0;
        }
        .bs-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--dark);
        }
        .bs-feat {
            font-size: 13px;
            color: #777;
            margin: 0;
        }
        .bs-actions {
            padding: 0 32px 0 0;
            text-align: right;
        }
        .bs-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .bs-price small {
            font-size: 12px;
            color: #999;
            font-weight: 400;
        }
        .bs-actions a {
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s;
        }
        .bs-actions a:hover {
            background: var(--primary);
        }
        @media (max-width: 768px) {
            .bs-row {
                grid-template-columns: 1fr;
            }
            .bs-actions {
                padding: 0 24px 24px;
                text-align: left;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .bs-price { margin-bottom: 0; }
            .bs-content { padding: 0 24px; }
            .bs-head h2 { font-size: 40px; }
        }

                /* Bestseller two-column layout */
        .bs-cols {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .bs-cols .bs-cat-label,
        .bs-cols .bs-list {
            max-width: none;
            padding: 0;
        }
        .bs-cols .bs-cat-label:not(:first-of-type) {
            margin-top: 0;
        }
        .bs-cols .bs-row {
            grid-template-columns: 140px 1fr auto;
            gap: 20px;
        }
        .bs-cols .bs-img {
            height: 140px;
            font-size: 44px;
        }
        .bs-cols .bs-content h3 {
            font-size: 20px;
        }
        .bs-cols .bs-actions {
            padding: 0 20px 0 0;
        }
        .bs-cols .bs-price {
            font-size: 22px;
            margin-bottom: 6px;
        }
        .bs-cols .bs-actions a {
            padding: 8px 16px;
            font-size: 12px;
        }
        @media (max-width: 1024px) {
            .bs-cols {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }
        @media (max-width: 600px) {
            .bs-cols .bs-row {
                grid-template-columns: 1fr;
            }
            .bs-cols .bs-actions {
                padding: 0 20px 20px;
                text-align: left;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .bs-cols .bs-price { margin-bottom: 0; }
            .bs-cols .bs-content { padding: 0 20px; }
        }

/* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            /* body padding removed in 1.4.3 — full-bleed sections handle their own padding */
        }

        @media (max-width: 1024px) {
            nav {
                gap: 18px;
            }

            nav a {
                font-size: 13px;
            }

            .hero h1 {
                font-size: 52px;
                margin-bottom: 18px;
            }

            .hero p {
                font-size: 18px;
                margin-bottom: 28px;
            }

            .section-title {
                font-size: 48px;
                margin-bottom: 44px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 28px;
            }

            .product-image {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 16px 20px;
                align-items: flex-start;
            }

            header::before {
                height: 2px;
            }

            .logo img {
                height: 40px;
            }

            nav {
                flex-wrap: wrap;
                gap: 16px;
                width: 100%;
                justify-content: flex-start;
            }

            nav a {
                font-size: 12px;
            }

            .nav-right {
                gap: 16px;
                width: 100%;
                justify-content: flex-start;
            }

            .search-icon,
            .account-icon,
            .cart-icon {
                width: 18px;
                height: 18px;
            }

            .hero {
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 28px;
                margin-bottom: 16px;
            }

            .hero p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            .product-section {
                padding: 40px 20px;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .product-card {
                max-width: 100%;
            }

            .product-image {
                height: 200px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .usp-section {
                padding: 40px 20px;
            }

            .usp-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .usp-item h3 {
                font-size: 16px;
            }

            .usp-item p {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0 16px;
            }

            header {
                flex-direction: column;
                gap: 12px;
                padding: 8px 0;
            }

            .logo img {
                height: 32px;
            }

            nav {
                flex-direction: column;
                gap: 8px;
                width: 100%;
            }

            nav a {
                font-size: 11px;
                padding: 6px 0;
            }

            .nav-right {
                gap: 12px;
                width: 100%;
            }

            .search-icon,
            .account-icon,
            .cart-icon {
                width: 16px;
                height: 16px;
            }

            .hero {
                padding: 40px 0;
            }

            .hero h1 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .hero p {
                font-size: 14px;
                margin-bottom: 18px;
            }

            .hero-content {
                padding: 0 16px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 12px;
                width: 100%;
            }

            .products-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 24px;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .product-image {
                height: 150px;
                font-size: 11px;
            }

            .product-info {
                padding: 16px;
            }

            .product-info h3 {
                font-size: 14px;
            }

            .product-info p {
                font-size: 12px;
            }

            .product-price {
                font-size: 14px;
            }

            .usp-section {
                padding: 40px 0;
            }

            .usp-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .usp-item h3 {
                font-size: 14px;
            }

            .usp-item p {
                font-size: 12px;
            }
        }
        .usp-section {
            background: var(--primary);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .usp-item h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .usp-item p {
            font-size: 15px;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Footer V3 - Big Statement */
        .footer-v3 {
            background: #1a1612;
            color: white;
            padding: 100px 40px 30px;
            position: relative;
            overflow: hidden;
        }
        .footer-v3::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(196,165,123,0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .footer-statement {
            max-width: 1000px;
            margin: 0 auto 80px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .footer-eyebrow {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 20px;
            font-weight: 600;
        }
        .footer-statement h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 28px;
            color: white;
        }
        .footer-statement h2 em {
            font-style: italic;
            color: var(--accent);
        }
        .footer-cta {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .footer-cta:hover {
            background: white;
            transform: translateY(-2px);
        }
        .footer-grid-v3 {
            max-width: 1200px;
            margin: 0 auto 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .footer-grid-v3 h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 18px;
            font-weight: 600;
        }
        .footer-grid-v3 a {
            display: block;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 14px;
            padding: 6px 0;
            transition: color 0.3s;
        }
        .footer-grid-v3 a:hover {
            color: white;
        }
        .footer-bottom-v3 {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            position: relative;
            z-index: 1;
        }
        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
        }
        .footer-legal a {
            color: rgba(255,255,255,0.55);
            font-size: 12px;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .footer-legal a:hover {
            color: white;
        }
        .footer-copyright {
            white-space: nowrap;
        }
        .footer-socials {
            display: flex;
            gap: 14px;
        }
        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            transition: all 0.3s;
            text-decoration: none;
        }
        .footer-socials a:hover {
            border-color: var(--accent);
            background: var(--accent);
            color: var(--dark);
        }
        @media (max-width: 768px) {
            .footer-statement h2 { font-size: 40px; }
            .footer-grid-v3 { grid-template-columns: 1fr 1fr; }
            .footer-bottom-v3 { flex-direction: column; gap: 16px; }
        }

        /* Tweaks Toggle */
        .tweaks-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 24px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            z-index: 999;
            transition: background 0.2s;
        }

        .tweaks-toggle:hover {
            background: var(--accent);
        }

        /* Color Tweaks Panel */
        .tweaks-panel {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: white;
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            min-width: 320px;
            display: none;
        }

        .tweaks-panel.active {
            display: block;
        }

        .tweaks-panel h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .tweak-option {
            margin-bottom: 16px;
        }

        .tweak-label {
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }

        .color-option {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .color-swatch {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border 0.2s;
        }

        .color-swatch.active {
            border-color: var(--dark);
        }

        .close-tweaks {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #999;
        }

        /* Announcement Bar */
        @keyframes bounce-smooth {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-2px); }
        }

        .announcement-bar {
            background: linear-gradient(135deg, #1a1510 0%, #2c2415 50%, #1a1510 100%);
            color: white;
            padding: 18px 60px;
            text-align: center;
            font-size: 15px;
            font-weight: 600;
            position: relative;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 0.8px;
            text-transform: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .announcement-bar p {
            margin: 0;
            display: inline-block;
            animation: bounce-smooth 2.5s ease-in-out infinite;
        }

        .announcement-bar p::before {
            content: '✦';
            color: #D4AF87;
            margin-right: 10px;
            font-size: 14px;
        }

        .announcement-bar p::after {
            content: '✦';
            color: #D4AF87;
            margin-left: 10px;
            font-size: 14px;
        }

        /* Announcement Bar Styles */
        .announcement-bar.style-gradient {
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .announcement-bar.style-solid {
            background: var(--primary);
            letter-spacing: 0.5px;
        }

        .announcement-bar.style-light {
            background: var(--primary-light);
            color: var(--dark);
        }

        .announcement-bar.style-dark {
            background: var(--dark);
        }

        .announcement-bar.style-minimal {
            background: white;
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding: 16px 60px;
        }

        .announcement-bar.style-bold {
            background: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            padding: 16px 60px;
        }

    