/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-on-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: var(--color-primary);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: var(--spacing-md);
    min-height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    height: 72px;
}

.logo:hover { transform: none; }

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Button - Removed conflicting styles, using hamburger-menu-toggle instead */

@media (max-width: 768px) {
    /* Mobile menu button styles removed - using hamburger-menu-toggle from hamburger-menu.css */

    .header-inner {
        padding: 0.75rem var(--spacing-md);
    }
    
    /* Mobile navigation styles removed - using hamburger-menu.css implementation instead */
    
    /* Removed old theme styles - using brand system variables */
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Menu open overlay */
    .menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }
    
    /* Removed old theme styles - using brand system variables */
    
    .footer-contact li i {
        font-size: 1.2rem;
        color: var(--brand-gold);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        margin-right: 0.5rem;
    }
    
    /* Location Links */
    .location-links {
        margin-top: 1.2rem;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    
.location-link {
    font-size: 1.05rem;
    gap: 0.8rem;
    justify-content: flex-start;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: row;
    text-align: left;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
    
    .location-link:last-child {
        border-bottom: none;
    }
    
    .location-link i {
        color: var(--brand-gold);
        font-size: 1.1rem;
        min-width: 24px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0.5rem;
    }
    
    .location-link .location-city {
        font-weight: 600;
        color: var(--text-light);
        margin-right: 0.3rem;
        white-space: nowrap;
    }
    
    .location-link span:not(.location-city) {
        color: rgba(255, 255, 255, 0.95);
        flex: 1;
    }
    
    /* Quick Links Section */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .location-link .location-city {
        font-size: 0.95rem;
    }
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-menu li {
    position: relative;
    display: flex;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.65rem 1.1rem;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border-radius: var(--radius-btn);
    letter-spacing: 0.01em;
    display: block;
    text-align: center;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Add a subtle hover effect */
.nav-menu a:hover {
    background-color: rgba(var(--color-cream-rgb), 0.8);
    color: var(--color-primary);
    box-shadow: none;
}

.nav-menu a:focus-visible,
.nav-menu a.active {
    background-color: rgba(var(--color-cream-rgb), 0.88);
    color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

/* Removed old active fill styles (border-only pill used) */

/* Header nav link colors on brand header */
header .nav-menu a { color: var(--color-on-primary) !important; }
header .nav-menu a:hover,
header .nav-menu a:focus-visible {
  background-color: rgba(var(--color-cream-rgb), 0.82) !important;
  color: var(--color-primary) !important;
  box-shadow: none !important;
  outline: none;
}
/* Active: rectangular cream highlight */
header .nav-menu a.active {
  background-color: rgba(var(--color-cream-rgb), 0.92) !important;
  color: var(--color-primary) !important;
  border: none !important;
  border-radius: var(--radius-btn) !important;
  box-shadow: none !important;
}

/* Hero Section - Full Bleed */
.hero {
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--text-light);
    padding: 0;
    box-shadow: inset 0 -15px 15px -15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Default hero background for home page */
.hero#home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/heroes/home-hero.webp');
}

/* Hero backgrounds for menu and gallery pages - override via inline style in HTML */
.menu-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/heroes/menu-hero.webp');
}

.gallery-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/heroes/gallery-hero.webp');
}

/* Override container constraints for hero */
.hero .container {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* removed SVG pattern */
    opacity: 0.0;
    pointer-events: none;
}

/* Hero Background Icons */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/icons/coffee-pot.png'),
        url('../assets/icons/loaf-of-bread.png'),
        url('../assets/icons/croissant.png'),
        url('../assets/icons/cup-of-coffee.png'),
        url('../assets/icons/sandwich.png'),
        url('../assets/icons/cake.png'),
        url('../assets/icons/donut.png');
    background-repeat: no-repeat;
    background-size: 80px, 60px, 70px, 50px, 90px, 65px, 55px;
    background-position: 
        10% 20%,
        85% 15%,
        15% 70%,
        80% 75%,
        50% 90%,
        5% 50%,
        95% 40%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: var(--font-family-primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* About Section - Modern Design */
.about-section {
    padding: 80px 0 100px;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

/* About Section Background Icons */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/icons/bread-basket.png'),
        url('../assets/icons/small-cake.png'),
        url('../assets/icons/round-coffee-table.png'),
        url('../assets/icons/small-berry-branch.png'),
        url('../assets/icons/burger.png');
    background-repeat: no-repeat;
    background-size: 100px, 70px, 80px, 60px, 90px;
    background-position: 
        5% 10%,
        90% 20%,
        10% 80%,
        85% 70%,
        50% 50%;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.section-title {
    font-family: var(--font-family-primary);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.01em;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 0.3rem;
    margin-left: auto;
    margin-right: auto;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 0;
    height: 100%;
}

/* Quote Card */
.about-quote-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.quote-icon {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.about-quote-card blockquote {
    font-family: var(--font-family-primary);
    font-size: 1.375rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    position: relative;
}

.quote-attribution {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Story Content */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.story-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.story-title {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 1px;
}

.story-text {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Quote styles moved to brand-system.css for consistency */

.story-timeline {
    margin: 0;
    padding: 0;
}

.timeline-item {
    margin: 0;
    padding: 0;
}

.timeline-item h3 {
    font-family: var(--font-family-primary);
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-family: var(--font-family-primary);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.timeline-item p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.3;
}

/* Community focus styles moved to brand-system.css for consistency */

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.image-container:hover {
    transform: translateY(-4px);
}

.about-staff-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
    transition: transform 0.4s ease;
}

.image-container:hover .about-staff-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--color-cream);
}

.overlay-content p {
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    margin: 0;
    color: rgba(247, 242, 230, 0.9);
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .about-text {
        gap: 0;
    }
    
    .about-quote {
        order: 1;
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .about-image {
        order: 2;
        margin: 1rem auto;
        max-width: 90%;
        justify-content: center;
        top: 0;
    }
    
    .story-timeline {
        order: 3;
        flex-grow: 0;
        margin-bottom: 0.5rem;
    }
    
    .community-focus {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        order: 4;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 30px 0 40px;
    }
    
    .about-text {
        gap: 0;
    }
    
    .about-quote {
        margin-bottom: 0;
    }
    
    .about-image {
        margin: 0.75rem auto;
        max-width: 95%;
    }
    
    .story-timeline {
        margin: 0;
    }
    
    .timeline-item {
        margin-bottom: 0.5rem;
    }
    
    .timeline-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .timeline-item p:last-child {
        line-height: 1.3;
    }
    
    .community-focus {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Menu Section */
.menu-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--background-light);
    position: relative;
    box-shadow: inset 0 -5px 10px -5px rgba(0, 0, 0, 0.03);
}

/* Best Sellers Section - Reduced Padding */
#best-sellers {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Best Sellers Background Icons */
#best-sellers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/icons/croissant.png'),
        url('../assets/icons/donut.png'),
        url('../assets/icons/small-cake.png'),
        url('../assets/icons/loaf-of-bread.png'),
        url('../assets/icons/cake.png');
    /* Tile icons subtly like a wallpaper - smaller and spaced out */
    background-repeat: space, space, space, space, space;
    background-size: 110px, 100px, 120px, 130px, 105px;
    background-position:
        0 0,
        60px 80px,
        120px 30px,
        180px 110px,
        35px 160px;
    opacity: 0.035;
    z-index: 0;
    pointer-events: none;
}

/* Menu items styling moved to styles.css */

.menu-item-image {
    aspect-ratio: 4/3; /* consistent crop */
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    background-color: var(--background-card);
    position: relative;
    border: 1px solid var(--border-color); /* subtle brand border around image */
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
    display: block;
    will-change: transform;
    transform-origin: center;
}

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

.menu-item-info {
    padding: var(--spacing-md);
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.35;
}

.menu-item:hover .menu-item-title { color: var(--color-secondary); }

/* Best Sellers (homepage) — tighter layout without secondary info */
/* Coffee Section */
.coffee-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--background-alt);
    /* removed SVG pattern */
    position: relative;
    box-shadow: inset 0 -5px 10px -5px rgba(0, 0, 0, 0.03);
}

/* Gallery Section - Moved to components.css for consistency */

/* Gallery Section Background Icons */
.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/icons/coffee-pot.png'),
        url('../assets/icons/cup-of-coffee.png'),
        url('../assets/icons/sandwich.png'),
        url('../assets/icons/bread-basket.png'),
        url('../assets/icons/round-coffee-table.png');
    /* Tile icons subtly like a wallpaper - smaller and spaced out */
    background-repeat: space, space, space, space, space;
    background-size: 110px, 100px, 120px, 130px, 105px;
    background-position:
        0 0,
        60px 80px,
        120px 30px,
        180px 110px,
        35px 160px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Lightbox styles - Moved to styles.css for consistency */

/* Locations Section */
.locations-section {
    padding: var(--spacing-lg) 0 var(--section-spacing-desktop) 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

/* Locations Section Background Icons */
.locations-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('../assets/icons/round-coffee-table.png'),
        url('../assets/icons/small-berry-branch.png'),
        url('../assets/icons/cup-of-coffee.png'),
        url('../assets/icons/bread-basket.png'),
        url('../assets/icons/small-cake.png');
    /* Tile icons subtly like a wallpaper - smaller and spaced out */
    background-repeat: space, space, space, space, space;
    background-size: 110px, 100px, 120px, 130px, 105px;
    background-position:
        0 0,
        60px 80px,
        120px 30px,
        180px 110px,
        35px 160px;
    opacity: 0.035;
    z-index: 0;
    pointer-events: none;
}

.branch-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.branch-address i {
    color: var(--primary-color);
}

.hours-dropdown {
    margin-bottom: 1rem;
    width: 100%;
}

.hours-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(177, 122, 80, 0.05);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: 600;
}

.hours-toggle:hover {
    background: rgba(177, 122, 80, 0.1);
}

.hours-toggle i.far.fa-clock {
    color: var(--brand-gold);
    margin-right: 0.5rem;
}

.hours-toggle span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.hours-toggle[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}


.hours-content {
    display: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
}


.hours-content.show {
    display: block;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    line-height: 1.5;
    min-height: 2.2rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--brand-gold);
    text-align: left;
    flex: 1 1 50%;
    padding-right: 0.5rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.time {
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
    flex: 1 1 50%;
    padding-left: 0.5rem;
    white-space: nowrap;
}

/* Closed status styling */
.hours-row .time.closed,
.hours-row .time:has(span.closed),
.hours-row .time:contains("Closed") {
    color: var(--brand-gold);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Legacy dark theme overrides removed */

/* Reviews Section */
.reviews-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}


.google-reviews-widget {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(12, 35, 64, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-gold), var(--color-terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin: 0 0 0.25rem 0;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--brand-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.review-content p {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.reviews-cta .btn i {
    font-size: 1.1rem;
}

.reviewer-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.5rem;
}

.review-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: var(--brand-terracotta);
    text-decoration: underline;
}

.reviews-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--background-light);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
}

.contact-form {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(58, 46, 40, 0.08);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(58, 46, 40, 0.12);
    border-color: var(--border-distinct);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* Footer
---------------------------------------------------- */
footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.1);
}

/* Footer Background Icons */
footer::before {
    content: none;
}

/* Ensure all content appears above background icons */
.container, .section-title, .about-content, .menu-items, .gallery-grid, .reviews-container, .footer-grid {
    position: relative;
    z-index: 5;
}

/* Legacy dark theme footer removed */

/* --- About Alfresco Section Refined --- */
.about-alfresco-bg {
  background: var(--background-light);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.about-alfresco-title {
  font-family: var(--font-family-primary);
  color: var(--primary-color);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  position: relative;
  text-align: left;
}
.about-alfresco-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-top: 0.4rem;
}
.about-alfresco-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-alfresco-left {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.about-alfresco-quote {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-3);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 0 14px rgba(var(--color-primary-rgb, 0, 0, 0), 0.06);
  padding: var(--spacing-6) var(--spacing-6) var(--spacing-6) var(--spacing-8);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5rem;
}
.about-alfresco-quote-icon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 2.2rem;
  color: var(--brand-gold);
  opacity: 0.18;
  pointer-events: none;
}
.about-alfresco-quote blockquote {
  margin: 0;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  z-index: 1;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
}
.about-alfresco-body {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.about-alfresco-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.about-alfresco-section p {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  line-height: 1.7;
  text-align: left;
}
.about-alfresco-card {
  background: var(--neutral-surface);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(58,46,40,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-top: 1.2rem;
  text-align: center;
  max-width: 420px;
}
.about-alfresco-card h3 {
  font-family: var(--font-family-primary);
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-alfresco-card p {
  font-family: var(--font-family-primary);
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 340px;
}
.about-alfresco-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.about-alfresco-image {
  background: var(--neutral-surface);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(58,46,40,0.13);
  overflow: hidden;
  padding: 0.5rem;
  max-width: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-color);
}
.about-alfresco-image img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .about-alfresco-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-alfresco-right {
    margin-top: 1.5rem;
    justify-content: flex-start;
  }
  .about-alfresco-image {
    max-width: 100%;
  }
  .about-alfresco-card {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .about-alfresco-bg {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .about-alfresco-title {
    font-size: 1.5rem;
  }
  .about-alfresco-quote {
    padding: 1.1rem 1rem 1rem 2.2rem;
    font-size: 1.1rem;
    min-height: unset;
  }
  .about-alfresco-body {
    gap: 1rem;
  }
  .about-alfresco-section h3 {
    font-size: 1rem;
  }
  .about-alfresco-section p {
    font-size: 0.98rem;
  }
  .about-alfresco-left {
    gap: 1.2rem;
  }
  .about-alfresco-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    font-size: 0.98rem;
    max-width: 100%;
  }
}
/* --- End About Alfresco Section Refined --- */

/* Single-theme mode: dark theme about section overrides removed */

/* Media Queries for Section Spacing */
@media (max-width: 992px) {
    .menu-section {
        padding: var(--section-spacing-tablet) 0;
    }
    
    #best-sellers {
        padding: var(--spacing-lg) 0;
    }
    
    .coffee-section {
        padding: var(--section-spacing-tablet) 0;
    }
    
    /* Gallery section styles moved to gallery.css */
    
    .locations-section {
        padding: var(--spacing-md) 0 var(--section-spacing-tablet) 0;
    }
    
    .contact-section {
        padding: var(--section-spacing-tablet) 0;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: var(--section-spacing-mobile) 0;
    }
    
    #best-sellers {
        padding: var(--spacing-md) 0;
    }
    
    .coffee-section {
        padding: var(--section-spacing-mobile) 0;
    }
    
    /* Gallery section styles moved to gallery.css */
    
    .locations-section {
        padding: var(--spacing-md) 0 var(--section-spacing-mobile) 0;
    }
    
    .contact-section {
        padding: var(--section-spacing-mobile) 0;
    }
} 

/* Single-theme mode: removed dark theme hours overrides */

.hours-content {
    display: none;
    padding: 0.5rem 0;
}

.hours-content.show {
    display: block;
}

/* Footer hours styling */
.footer-section .day {
    color: var(--text-light) !important;
}

.footer-section .time.closed {
    color: var(--brand-gold) !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer hours table specific styling */
.footer-section .hours-table td:first-child {
    color: var(--text-light) !important;
}

.footer-section .hours-row .day {
    color: var(--text-light) !important;
}

/* Branch Cards - Hours Dropdown */
.branch-card .hours-content .day {
    color: var(--brand-gold) !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.branch-card .hours-content .time.closed {
    color: var(--color-terracotta) !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background-color: rgba(var(--color-terracotta-rgb), 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(var(--color-terracotta-rgb), 0.2);
}

/* Footer Hours Section */
.hours-group .day {
    color: var(--text-light) !important;
}

.hours-group .time.closed {
    color: var(--brand-gold) !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} 

/* Single-theme mode: branch card evening/dark overrides removed */

/* Mobile Footer - Modern Redesign */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        margin-bottom: 2.5rem;
        width: 100%;
        position: relative;
    }
    
    /* Logo section stays centered */
    .footer-section:first-child {
        align-items: center;
        text-align: center;
    }
    
    .footer-section:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -1.25rem;
        left: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Section Headers */
    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        width: 100%;
        text-align: left;
        padding-bottom: 0.5rem;
        position: relative;
        font-weight: 600;
        color: var(--text-light);
    }
    
    .footer-section:first-child h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--brand-gold);
    }
    
    .footer-section:first-child h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Contact Section - Mobile Optimized */
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .footer-contact li {
        margin-bottom: 0;
        text-align: left;
        width: 100%;
        padding: 0.75rem 0;
        display: flex;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact li:last-child {
        border-bottom: none;
    }
    
    .footer-contact li a {
        font-size: 0.95rem;
        gap: 0.75rem;
        justify-content: flex-start;
        align-items: flex-start;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: row;
        text-align: left;
        width: 100%;
        padding: 0;
        line-height: 1.5;
    }
    
    .footer-contact .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        text-align: left;
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-contact .location-city {
        font-weight: 600;
        color: var(--brand-gold);
        margin-right: 0.5rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .footer-contact .tel-number {
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .footer-contact li i {
        font-size: 1rem;
        color: var(--brand-gold);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 18px;
        height: 18px;
        margin-right: 0.75rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    /* Location Links - Mobile Optimized */
    .location-links {
        margin-top: 1rem;
        gap: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }
    
    .location-link {
        font-size: 0.95rem;
        gap: 0.75rem;
        justify-content: flex-start;
        align-items: flex-start;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: row;
        text-align: left;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1.5;
    }
    
    .location-link:last-child {
        border-bottom: none;
    }
    
    .location-link i {
        color: var(--brand-gold);
        font-size: 1rem;
        min-width: 18px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0.75rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .location-link .location-city {
        font-weight: 600;
        color: var(--brand-gold);
        margin-right: 0.5rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .location-link span:not(.location-city) {
        color: rgba(255, 255, 255, 0.9);
        flex: 1;
        font-size: 0.9rem;
    }
    
    /* Quick Links Section */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .footer-links a {
        font-size: 1.05rem;
        padding: 0.5rem 0;
        text-align: center;
        width: 100%;
        max-width: 200px;
        display: block;
        color: rgba(255, 255, 255, 0.95);
        transition: color 0.3s ease;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section:not(:last-child)::after {
        bottom: -1rem;
        width: 90%;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a,
    .footer-contact li a,
    .location-link {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
    
    .footer-contact li,
    .location-links {
        max-width: 260px;
    }
    
    .footer-contact li i {
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
    
    .location-link i {
        font-size: 1rem;
        min-width: 22px;
    }
    
    .footer-contact .contact-info {
        font-size: 0.95rem;
    }
    
    .location-link .location-city {
        font-size: 0.95rem;
    }
} 

/* Contact Section Mobile Refinements */
@media (max-width: 768px) {
  .footer-contact li {
    justify-content: center;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.4rem 0;
    width: 100%;
    max-width: 300px;
  }
  
  .footer-contact li a {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
  }
  
  .footer-contact .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
  }
  
  .footer-contact .location-city {
    margin-right: 0.25rem;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .footer-contact .tel-number {
    margin-left: 0.15rem;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .footer-contact li i {
    font-size: 1.1rem;
    min-width: 20px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-contact li {
    max-width: 280px;
    padding: 0.35rem 0;
  }
  
  .footer-contact li a {
    font-size: 0.95rem;
    padding: 0.35rem 0.4rem;
  }
  
  .footer-contact li i {
    font-size: 1rem;
    min-width: 18px;
  }
  
  .footer-contact .contact-info {
    font-size: 0.95rem;
  }
  
  .footer-contact .location-city {
    font-size: 0.95rem;
  }
  
  .footer-contact .tel-number {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .footer-contact li {
    max-width: 260px;
  }
  
  .footer-contact li a {
    font-size: 0.9rem;
    padding: 0.3rem 0.35rem;
  }
  
  .footer-contact li i {
    font-size: 0.95rem;
    min-width: 16px;
  }
  
  .footer-contact .contact-info {
    font-size: 0.9rem;
  }
}
