    :root {
        --navy: #0f172a;
        --navy-light: #1e293b;
        --gold: #d97706;
        --gold-light: #f59e0b;
        --cream: #f8fafc;
        --white: #ffffff;
        --text-dark: #334155;
        --text-light: #94a3b8;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Lato', sans-serif;
        --radius: 8px;
        --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-dark);
        background-color: var(--cream);
        line-height: 1.6;
    }

    h1, h2, h3 {
        font-family: var(--font-heading);
        color: var(--navy);
        line-height: 1.2;
    }

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

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--gold);
        color: var(--white);
    }

    .btn-primary:hover {
        background-color: var(--gold-light);
        transform: translateY(-2px);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--white);
        color: var(--white);
    }

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--navy);
    }

    .btn-white {
        background-color: var(--white);
        color: var(--navy);
    }

    .btn-white:hover {
        background-color: var(--cream);
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
    }

    .logo .dot {
        color: var(--gold);
    }

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

    .nav-links a {
        color: var(--white);
        font-weight: 500;
        font-size: 1.05rem;
    }

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--navy);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-menu a {
        color: var(--white);
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }

    .close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 3rem;
        cursor: pointer;
    }

    /* Hero */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-image: url('https://picsum.photos/seed/bakery-shop/1920/1080');
        background-size: cover;
        background-position: center;
        margin-top: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        color: var(--white);
        max-width: 800px;
    }

    .hero-tag {
        display: inline-block;
        background-color: var(--gold);
        color: var(--white);
        padding: 6px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        color: #cbd5e1;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    /* Sections */
    .section {
        padding: 6rem 0;
    }

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

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-header.light h2,
    .section-header.light p {
        color: var(--white);
    }

    /* Features */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background-color: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background-color: var(--navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--gold);
    }

    .feature-card h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .feature-card p {
        color: var(--text-light);
    }

    /* Products */
    .products {
        background-color: var(--navy);
        color: var(--white);
    }

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

    .product-card {
        background-color: var(--navy-light);
        border-radius: var(--radius);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .product-card:hover {
        transform: scale(1.02);
    }

    .product-image {
        height: 250px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .product-info {
        padding: 2rem;
    }

    .product-info h3 {
        color: var(--gold);
        margin-bottom: 0.75rem;
        font-size: 1.4rem;
    }

    .product-info p {
        color: #cbd5e1;
        font-size: 0.95rem;
    }

    /* CTA Banner */
    .cta-banner {
        background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
        padding: 5rem 0;
        text-align: center;
        color: var(--white);
    }

    .cta-banner h2 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-banner p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    /* Contact */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .contact-info .subtitle {
        color: var(--text-light);
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

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

    .info-list li {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .info-list svg {
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 4px;
    }

    .info-list strong {
        display: block;
        color: var(--navy);
        margin-bottom: 0.25rem;
    }

    .info-list span, .info-list a {
        color: var(--text-light);
    }

    .info-list a:hover {
        color: var(--gold);
    }

    .contact-form-wrapper {
        background-color: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .contact-form h3 {
        margin-bottom: 1.5rem;
        color: var(--navy);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 700;
        color: var(--navy);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e2e8f0;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

    .full-width {
        width: 100%;
    }

    .form-status {
        margin-top: 1rem;
        text-align: center;
        font-weight: 700;
        color: var(--gold);
    }

    /* Footer */
    .footer {
        background-color: var(--navy);
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-brand p {
        color: #cbd5e1;
        margin-top: 0.5rem;
    }

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

    .footer-links a {
        color: var(--white);
        font-weight: 500;
    }

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

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

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: flex;
        }

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

        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }
    }
