    /* --- Variables & Reset --- */
    :root {
        --plum-dark: #4A2346;
        --plum-main: #6D4C6D;
        --plum-light: #957595;
        --plum-pale: #F3E5F3;
        
        --amber-main: #D48C38;
        --amber-light: #FAD7A1;
        --amber-pale: #FFF8E7;
        
        --cream: #FDFBF7;
        --white: #FFFFFF;
        --text-dark: #2C2C2C;
        --text-gray: #666666;
        
        --font-heading: 'Libre Baskerville', serif;
        --font-body: 'Outfit', sans-serif;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
        --radius: 12px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    /* --- Typography --- */
    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

    .eyebrow {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .plum-text { color: var(--plum-main); }
    .amber-text { color: var(--amber-main); }

    /* --- Layout --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .section {
        padding: 6rem 0;
    }

    .text-center { text-align: center; }
    .mt-4 { margin-top: 2rem; }

    /* --- Navigation --- */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

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

    .logo {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--plum-dark);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-icon {
        color: var(--amber-main);
    }

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

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: color 0.3s;
    }

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--plum-dark);
        transition: 0.3s;
    }

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

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

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

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

    .mobile-link {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--plum-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .btn-secondary:hover {
        background-color: var(--white);
        color: var(--plum-dark);
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        background-image: url('https://images.pexels.com/photos/34357798/pexels-photo-34357798.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(74, 35, 70, 0.85) 0%, rgba(74, 35, 70, 0.6) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 4rem; /* offset for fixed nav */
    }

    .hero-text {
        flex: 1;
        max-width: 600px;
        color: var(--white);
    }

    .hero-text .eyebrow {
        color: var(--amber-light);
    }

    .hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 480px;
    }

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

    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
        height: 400px;
    }

    .floating-card {
        position: absolute;
        background: var(--white);
        padding: 0.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 140px;
        animation: float 6s ease-in-out infinite;
    }

    .floating-card img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .floating-card span {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--plum-dark);
        text-align: center;
    }

    .card-1 { top: 20px; right: 20%; animation-delay: 0s; }
    .card-2 { bottom: 40px; right: 5%; animation-delay: 3s; }

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

    /* --- About Section --- */
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .image-wrapper {
        position: relative;
    }

    .main-img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
    }

    .accent-img {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 45%;
        border: 8px solid var(--cream);
        border-radius: var(--radius);
    }

    .text-content h2 {
        font-size: 2.5rem;
        color: var(--plum-dark);
        margin-bottom: 1.5rem;
    }

    .text-content p {
        color: var(--text-gray);
        margin-bottom: 1.5rem;
    }

    .feature-list {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 500;
    }

    .feature-list svg {
        color: var(--amber-main);
    }

    /* --- Menu Section --- */
    .bg-cream { background-color: var(--cream); }
    .bg-white { background-color: var(--white); }

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

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--plum-dark);
        margin-bottom: 1rem;
    }

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

    .menu-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.03);
    }

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .menu-img {
        height: 200px;
        overflow: hidden;
    }

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

    .menu-card:hover .menu-img img {
        transform: scale(1.05);
    }

    .menu-info {
        padding: 1.5rem;
    }

    .menu-info h3 {
        font-size: 1.25rem;
        color: var(--plum-dark);
        margin-bottom: 0.5rem;
    }

    .menu-info .desc {
        font-size: 0.9rem;
        color: var(--text-gray);
    }

    /* --- Roasting Section --- */
    .roasting-section {
        background-color: var(--plum-dark);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }
    
    /* Subtle pattern overlay */
    .roasting-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 30px 30px;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .roast-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .roast-content p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1.5rem;
    }

    .stats-row {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .stat {
        display: flex;
        flex-direction: column;
    }

    .stat .number {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--amber-light);
        font-weight: 700;
    }

    .stat .label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.6);
    }

    /* --- Visit Section --- */
    .visit-wrapper {
        background: var(--white);
        border-radius: 20px;
        box-shadow: var(--shadow-md);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .visit-info {
        padding: 4rem;
        background: var(--plum-pale);
    }

    .visit-info h2 {
        font-size: 2.5rem;
        color: var(--plum-dark);
        margin-bottom: 2rem;
    }

    .address {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hours h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: var(--plum-dark);
    }

    .hours ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hours li {
        display: flex;
        justify-content: space-between;
        max-width: 250px;
        font-size: 0.95rem;
    }

    .contact-details {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-details a {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: var(--plum-dark);
        font-weight: 500;
    }

    .contact-details a:hover {
        color: var(--amber-main);
    }

    .map-wrapper {
        height: 100%;
        min-height: 400px;
        position: relative;
    }

    .map-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .map-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-overlay {
        position: absolute;
        inset: 0;
        background: rgba(74, 35, 70, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .map-link:hover .map-overlay {
        opacity: 1;
    }

    .map-overlay span {
        background: var(--white);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        color: var(--plum-dark);
    }

    /* --- Footer --- */
    footer {
        background: var(--plum-dark);
        color: var(--white);
        padding: 5rem 0 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .footer-brand h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--amber-light);
    }

    .footer-form h4 {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        border: none;
        background: rgba(255,255,255,0.1);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 1rem;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255,255,255,0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: 2px solid var(--amber-main);
        background: rgba(255,255,255,0.15);
    }

    .full-width {
        width: 100%;
    }

    .form-status {
        margin-top: 1rem;
        font-size: 0.9rem;
        color: var(--amber-light);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.6);
    }

    /* --- Animations --- */
    .fade-in {
        opacity: 0;
        animation: fadeIn 1s ease forwards;
    }

    .fade-in:nth-child(2) {
        animation-delay: 0.3s;
    }

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

    .reveal-left, .reveal-right, .reveal-up {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .reveal-left { transform: translateX(-50px); }
    .reveal-right { transform: translateX(50px); }
    .reveal-up { transform: translateY(50px); }

    .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* --- Responsive --- */
    @media (max-width: 968px) {
        .nav-links { display: none; }
        .mobile-menu-btn { display: flex; }
        
        .hero-content {
            flex-direction: column;
            text-align: center;
            justify-content: center;
        }
        
        .hero-text h1 { font-size: 2.5rem; }
        .hero-buttons { justify-content: center; }
        .hero-visual { display: none; }
        
        .grid-2, .split-layout, .visit-wrapper, .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .accent-img { display: none; }
        .visit-info { padding: 2rem; }
        .visit-wrapper { display: flex; flex-direction: column; }
        .map-wrapper { min-height: 300px; }
    }

    @media (max-width: 480px) {
        .hero-text h1 { font-size: 2rem; }
        .hero-buttons { flex-direction: column; width: 100%; }
        .btn { width: 100%; text-align: center; }
        .stats-row { flex-direction: column; gap: 1.5rem; }
    }
