  :root {
            /* Palette Definition */
            --bg-off-white: #F9F7F2;
            --bg-white: #FFFFFF;
            --text-dark: #2C2C2C;
            --text-grey: #555555;
            
            /* Accents */
            --accent-blue: #AEC6CF; /* Pastel/Light Blue */
            --accent-blue-dark: #8daab6;
            --accent-gold: #D4AF37; /* Metallic Gold */
            --accent-gold-light: #eacb66;
            
            /* Layout */
            --max-width: 1200px;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-off-white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, .brand-font {
            font-family: 'Playfair Display', serif;
        }

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

        ul {
            list-style: none;
        }

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

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

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

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

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

        .btn-blue:hover {
            background-color: var(--accent-blue-dark);
        }

        /* --- Header --- */
        header {
            background-color: var(--bg-off-white);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--accent-blue);
        }

        nav ul {
            display: flex;
            gap: 25px;
        }

        nav ul li a {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--text-dark);
        }

        nav ul li a:hover, .active-link {
            color: var(--accent-gold);
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            height: 85vh;
            background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-overlay {
            background: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
        }

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

        .hero-title {
            font-size: 4rem;
            color: white;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
            border: 3px solid var(--accent-gold);
            padding: 20px 40px;
            display: inline-block;
            background: rgba(0,0,0,0.2);
            backdrop-filter: blur(2px);
        }
        
        .hero-title span {
            display: block;
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--accent-blue);
        }

        /* --- Menu Section --- */
        .menu-preview-section {
            background-color: var(--accent-blue); 
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .menu-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .menu-text {
            flex: 1;
            padding-right: 50px;
            min-width: 300px;
        }

        .menu-text h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--bg-off-white);
            text-transform: uppercase;
        }

        .menu-features {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 10px;
            color: var(--accent-gold);
            background: white;
        }

        .feature-item p {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .menu-image-group {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            min-width: 300px;
        }

        .floating-img {
            max-width: 350px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: rotate(-5deg);
        }

        /* --- Trio Showcase --- */
        .showcase-section {
            padding: 80px 20px;
            background-color: var(--bg-off-white);
            text-align: center;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: var(--max-width);
            margin: 0 auto 50px;
        }

        .showcase-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .showcase-text h2 {
            color: var(--accent-gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .showcase-text p {
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--text-grey);
        }

        /* --- Baker/Process Section --- */
        .baker-section {
            background-color: #f0ece3;
            padding: 100px 20px;
            position: relative;
        }

        .baker-container {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .baker-frame {
            position: relative;
            max-width: 800px;
            width: 100%;
        }

        .baker-frame img {
            width: 100%;
            border-radius: 5px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .baker-frame::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-gold);
            z-index: 1;
        }

        /* --- Branding Bar --- */
        .branding-bar {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?q=80&w=2070&auto=format&fit=crop');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            padding: 60px 0;
            text-align: center;
        }
        
        .branding-bar h2 {
            color: var(--bg-off-white);
            font-size: 3.5rem;
            text-transform: uppercase;
        }
        
        .branding-bar span {
            color: var(--accent-gold);
        }

        /* --- Social Section --- */
        .social-section {
            background-color: var(--accent-gold); 
            padding: 80px 20px;
            text-align: center;
        }

        .social-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: white;
            text-transform: uppercase;
        }

        .social-icons-top {
            margin-bottom: 30px;
            font-size: 2rem;
            color: white;
        }
        
        .social-icons-top i {
            margin: 0 10px;
            cursor: pointer;
        }

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

        .social-grid img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .social-grid img:hover {
            transform: scale(1.02);
        }

        /* --- Loyalty Section --- */
        .loyalty-section {
            background-color: #1a1a1a;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            padding: 100px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .loyalty-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        .loyalty-card-graphic {
            width: 400px;
            height: 250px;
            background: linear-gradient(45deg, var(--accent-gold), #f3dfa2);
            border-radius: 15px;
            margin: 0 auto 30px;
            position: relative;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            text-align: left;
            color: #333;
        }
        
        .loyalty-text h3 {
            color: var(--accent-gold);
            font-size: 2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .burger-stack {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            z-index: 1;
            opacity: 0.8;
        }

        /* --- Footer --- */
        footer {
            background-color: #f0ece3;
            padding: 60px 20px 20px;
            text-align: center;
            color: var(--text-grey);
        }

        .footer-grid {
            display: flex;
            justify-content: center;
            gap: 100px; 
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-col h4 {
            margin-bottom: 20px;
            color: var(--text-dark);
            text-transform: uppercase;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent-blue);
        }

        .copyright {
            border-top: 1px solid #ddd;
            padding-top: 20px;
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .menu-container { flex-direction: column; text-align: center; }
            .menu-text { padding-right: 0; margin-bottom: 40px; }
            .menu-features { justify-content: center; }
            .social-grid { grid-template-columns: 1fr; }
            .nav-container { flex-direction: column; gap: 15px; }
            .branding-bar h2 { font-size: 2rem; }
            .footer-grid { gap: 40px; }
            .loyalty-card-graphic { width: 100%; }
        }
    </style>