/* ==========================================================================
   COFFEE-SHOP.CSS - Estilos específicos para Coffee Shop São Bento
   Chapada República
   ========================================================================== */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --coffee-brown: #46220e;
    --coffee-brown-light: #5a3015;
    --coffee-cream: #f5f0e6;
    --coffee-warm: #d4a574;
    --coffee-dark: #2d1508;
    --color-green: #4d593c;
}

/* ==========================================================================
   Coffee Page Base
   ========================================================================== */
.coffee-page {
    background: var(--coffee-cream);
}

/* ==========================================================================
   Header Coffee Theme
   ========================================================================== */
.header--coffee {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.header--coffee.scrolled {
    background: var(--coffee-brown);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header--coffee .logo--light {
    color: #fff;
}

.header--coffee .logo--light .logo-icon svg {
    fill: #fff;
}

.header--coffee .nav--light .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.header--coffee .nav--light .nav-link:hover,
.header--coffee .nav--light .nav-link.active {
    color: #fff;
}

.header--coffee .menu-toggle--light span {
    background: #fff;
}

/* ==========================================================================
   HERO - Coffee Shop São Bento
   Clean, elegant, using theme fonts
   ========================================================================== */

.coffee-hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--coffee-dark);
}

/* Background Image */
.coffee-hero-cinematic .coffee-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.coffee-hero-cinematic .coffee-hero-bg-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center 40%;
    will-change: transform;
}

/* Gradient Overlay - Stronger for better text readability */
.coffee-hero-cinematic .coffee-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(35, 18, 5, 0.6) 0%,
        rgba(35, 18, 5, 0.5) 30%,
        rgba(35, 18, 5, 0.6) 60%,
        rgba(35, 18, 5, 0.9) 100%
    );
}

/* Main Content */
.coffee-hero-cinematic .coffee-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* Tag */
.coffee-hero-cinematic .coffee-hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-warm);
    margin-bottom: 20px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

/* Title */
.coffee-hero-cinematic .coffee-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 4px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 0.4s forwards;
}

/* Subtitle */
.coffee-hero-cinematic .coffee-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 0.6s forwards;
}

/* CTA Buttons */
.coffee-hero-cinematic .coffee-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 0.8s forwards;
}

.btn-coffee-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--coffee-warm);
    color: var(--coffee-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-coffee-primary:hover {
    background: #e0b585;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.btn-coffee-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-coffee-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Scroll Indicator */
.coffee-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease-out 1s forwards;
}

.coffee-hero-scroll .scroll-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.coffee-hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.coffee-hero-scroll .scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--coffee-warm);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

@keyframes scrollBounce {
    0%, 100% {
        top: 0;
        opacity: 1;
    }
    50% {
        top: 100%;
        opacity: 0.3;
    }
}

/* ==========================================================================
   HERO RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
    .coffee-hero-cinematic {
        min-height: 550px;
    }

    .coffee-hero-cinematic .coffee-hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .coffee-hero-cinematic {
        min-height: 100svh;
    }

    .coffee-hero-cinematic .coffee-hero-content {
        padding: 0 20px;
    }

    .coffee-hero-cinematic .coffee-hero-tag {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .coffee-hero-cinematic .coffee-hero-title {
        font-size: clamp(1.8rem, 10vw, 3rem);
        margin-bottom: 16px;
    }

    .coffee-hero-cinematic .coffee-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .coffee-hero-cinematic .coffee-hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-coffee-primary,
    .btn-coffee-secondary {
        width: 100%;
        max-width: 260px;
        padding: 14px 24px;
    }

    .coffee-hero-scroll {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .coffee-hero-cinematic .coffee-hero-content {
        padding: 0 16px;
    }

    .coffee-hero-cinematic .coffee-hero-title {
        font-size: clamp(1.6rem, 12vw, 2.5rem);
    }

    .coffee-hero-cinematic .coffee-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Old Coffee Hero (deprecated)
   ========================================================================== */
.coffee-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coffee-hero .coffee-hero-bg {
    position: absolute;
    inset: 0;
}

.coffee-hero .coffee-hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.coffee-hero .coffee-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(46, 21, 8, 0.4) 0%,
        rgba(46, 21, 8, 0.6) 50%,
        rgba(46, 21, 8, 0.8) 100%
    );
}

.coffee-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.coffee-hero-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coffee-warm);
    margin-bottom: 20px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: 30px;
}

.coffee-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 20px;
    line-height: 0.9;
}

.coffee-hero-title span {
    display: block;
    color: var(--coffee-warm);
}

.coffee-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coffee-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.coffee-hero-scroll span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coffee-hero-scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   Coffee Story (Nova seção)
   ========================================================================== */
.coffee-story {
    padding: 120px 24px;
    background: var(--coffee-cream);
}

.coffee-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coffee-story-content .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(70, 34, 14, 0.1);
    border-radius: 20px;
}

.coffee-story-content .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 24px;
    line-height: 1.1;
}

.coffee-story-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--coffee-brown);
    margin: 0 0 20px;
    font-weight: 500;
}

.coffee-story-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a4a3f;
    margin: 0 0 16px;
}

.coffee-story-image {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.coffee-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coffee-story-image:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Coffee Menu Section
   ========================================================================== */
.coffee-menu {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
}

.coffee-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.coffee-menu-header .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-warm);
    margin-bottom: 12px;
}

.coffee-menu-header .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px;
}

.coffee-menu-header .section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.coffee-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coffee-menu-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.coffee-menu-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 165, 116, 0.4);
    transform: translateY(-8px);
}

.coffee-menu-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-warm);
    border-radius: 50%;
}

.coffee-menu-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--coffee-brown);
}

.coffee-menu-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px;
}

.coffee-menu-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   Coffee Experience Section
   ========================================================================== */
.coffee-experience {
    padding: 100px 24px;
    background: var(--coffee-cream);
}

.coffee-experience-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coffee-experience-content .coffee-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--coffee-brown);
    margin: 0 0 30px;
    padding: 0;
    border: none;
    background: none;
}

.coffee-experience-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a4a3f;
    margin: 0 0 20px;
}

/* ==========================================================================
   Coffee Location Section (Atualizado)
   ========================================================================== */
.coffee-location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.coffee-location-info .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(70, 34, 14, 0.1);
    border-radius: 20px;
}

.coffee-location-info .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 30px;
}

.coffee-location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.coffee-location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.coffee-location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 34, 14, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.coffee-location-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--coffee-brown);
}

.coffee-location-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--coffee-brown);
    margin: 0 0 4px;
}

.coffee-location-item p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5a4a3f;
    margin: 0;
}

.coffee-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--coffee-brown);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coffee-instagram-btn:hover {
    background: var(--coffee-dark);
    transform: translateY(-2px);
}

.coffee-instagram-btn svg {
    width: 20px;
    height: 20px;
}

.coffee-location-map {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.coffee-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Coffee About
   ========================================================================== */
.coffee-about {
    padding: 120px 24px;
    background: var(--coffee-cream);
}

.coffee-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coffee-about-text .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(70, 34, 14, 0.1);
    border-radius: 20px;
}

.coffee-about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 24px;
    line-height: 1.1;
}

.coffee-about-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--coffee-brown);
    margin: 0 0 20px;
    font-weight: 500;
}

.coffee-about-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a4a3f;
    margin: 0 0 16px;
}

.coffee-about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    min-height: 500px;
}

.coffee-about-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.coffee-about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(70, 34, 14, 0.2) 100%);
    pointer-events: none;
}

.coffee-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coffee-about-image:hover img {
    transform: scale(1.08);
}

.coffee-about-image--main {
    flex: 2;
    min-height: 320px;
}

.coffee-about-image--secondary {
    flex: 1;
    min-height: 160px;
}

/* ==========================================================================
   Coffee Features
   ========================================================================== */
.coffee-features {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    position: relative;
    overflow: hidden;
}

.coffee-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--coffee-warm) 50%, transparent 100%);
    opacity: 0.4;
}

.coffee-features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--coffee-warm) 50%, transparent 100%);
    opacity: 0.4;
}

.coffee-features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coffee-feature {
    text-align: center;
    padding: 48px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coffee-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coffee-warm), rgba(212, 165, 116, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.coffee-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.coffee-feature:hover::before {
    transform: scaleX(1);
}

.coffee-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coffee-warm) 0%, #c49660 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    transition: transform 0.3s ease;
}

.coffee-feature:hover .coffee-feature-icon {
    transform: scale(1.1);
}

.coffee-feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
}

.coffee-feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--coffee-brown);
    stroke-width: 1.5;
}

.coffee-feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.625rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}

.coffee-feature p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ==========================================================================
   Coffee Gallery
   ========================================================================== */
.coffee-gallery {
    padding: 100px 24px;
    background: var(--coffee-cream);
}

.coffee-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.coffee-gallery-header .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
}

.coffee-gallery-header .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0;
}

.coffee-gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.coffee-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

.coffee-gallery-item:hover img {
    transform: scale(1.1);
}

.coffee-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.coffee-gallery-item--wide {
    grid-column: span 2;
}

/* ==========================================================================
   Coffee Quote
   ========================================================================== */
.coffee-quote {
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    text-align: center;
}

.coffee-quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.coffee-quote blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 30px;
}

.coffee-quote-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--coffee-warm);
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Coffee Reviews
   ========================================================================== */
.coffee-reviews {
    padding: 100px 24px;
    background: var(--coffee-cream);
}

.coffee-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.coffee-reviews-info .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
}

.coffee-reviews-info .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0;
}

.coffee-reviews-score {
    text-align: right;
}

.coffee-reviews-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--coffee-brown);
    line-height: 1;
}

.coffee-reviews-stars {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    margin: 8px 0;
}

.coffee-reviews-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--coffee-warm);
}

.coffee-reviews-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #7a6a5f;
}

.coffee-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.coffee-review-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(70, 34, 14, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(70, 34, 14, 0.15);
}

.coffee-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.coffee-review-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-brown);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    border-radius: 50%;
}

.coffee-review-author {
    flex: 1;
}

.coffee-review-name {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--coffee-brown);
    margin-bottom: 4px;
}

.coffee-review-stars {
    display: flex;
    gap: 2px;
}

.coffee-review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--coffee-warm);
}

.coffee-review-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5a4a3f;
    margin: 0;
}

/* ==========================================================================
   Coffee Instagram
   ========================================================================== */
.coffee-instagram {
    padding: 100px 24px;
    background: var(--coffee-brown);
}

.coffee-instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.coffee-instagram-header .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-warm);
    margin-bottom: 12px;
}

.coffee-instagram-header .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
}

.coffee-instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.coffee-instagram-handle:hover {
    color: #fff;
}

.coffee-instagram-handle svg {
    width: 24px;
    height: 24px;
}

.coffee-instagram-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.coffee-instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

.coffee-instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 34, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coffee-instagram-overlay svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.coffee-instagram-item:hover img {
    transform: scale(1.1);
}

.coffee-instagram-item:hover .coffee-instagram-overlay {
    opacity: 1;
}

/* ==========================================================================
   Coffee Location
   ========================================================================== */
.coffee-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.coffee-location-content {
    padding: 80px 60px;
    background: var(--coffee-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coffee-location-content .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
}

.coffee-location-content .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 24px;
}

.coffee-location-address {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a4a3f;
    margin: 0 0 30px;
}

.coffee-location-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.coffee-location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #5a4a3f;
}

.coffee-location-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--coffee-brown);
    flex-shrink: 0;
}

.btn-coffee-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--coffee-brown);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.btn-coffee-dark:hover {
    background: var(--coffee-dark);
    transform: translateY(-2px);
}

.btn-coffee-dark svg {
    width: 20px;
    height: 20px;
}

.coffee-location-map {
    background: #ddd;
}

.coffee-location-map iframe {
    display: block;
}

/* ==========================================================================
   Footer Coffee Theme
   ========================================================================== */
.footer--coffee {
    background: var(--coffee-dark);
}

.footer--coffee .footer-logo {
    color: #fff;
}

.footer--coffee .footer-description {
    color: rgba(255, 255, 255, 0.7);
}

.footer--coffee .footer-social a {
    color: rgba(255, 255, 255, 0.7);
}

.footer--coffee .footer-social a:hover {
    color: var(--coffee-warm);
}

.footer--coffee .footer-column h4 {
    color: var(--coffee-warm);
}

.footer--coffee .footer-links li,
.footer--coffee .footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer--coffee .footer-links a:hover {
    color: #fff;
}

.footer--coffee .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer--coffee .footer-copyright {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Large Tablets / Small Desktop */
@media (max-width: 1200px) {
    .coffee-story-container {
        gap: 60px;
    }

    .coffee-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .coffee-about-container {
        gap: 60px;
    }

    .coffee-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .coffee-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .coffee-gallery-item--wide {
        grid-column: span 1;
    }

    .coffee-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coffee-instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .coffee-location-container {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .coffee-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coffee-story-image {
        order: -1;
        min-height: 300px;
    }

    .coffee-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coffee-about-images {
        flex-direction: row;
        min-height: 350px;
    }

    .coffee-about-image--main {
        flex: 1.5;
        min-height: unset;
    }

    .coffee-about-image--secondary {
        flex: 1;
        min-height: unset;
    }

    .coffee-feature {
        padding: 36px 20px;
    }

    .coffee-gallery-item--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .coffee-reviews-grid {
        gap: 20px;
    }

    .coffee-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .coffee-location {
        grid-template-columns: 1fr;
    }

    .coffee-location-map {
        height: 400px;
        aspect-ratio: 16/9;
    }

    .coffee-location-container {
        grid-template-columns: 1fr;
    }

    .coffee-location-map {
        aspect-ratio: 16/9;
        height: auto;
        max-height: 400px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    /* Hero Section */
    .coffee-hero {
        min-height: 500px;
        height: auto;
        padding: 100px 0 60px;
    }

    .coffee-hero-title {
        font-size: 3rem;
    }

    .coffee-hero-subtitle {
        font-size: 1.0625rem;
    }

    .coffee-hero-scroll {
        bottom: 24px;
    }

    /* Story Section */
    .coffee-story {
        padding: 80px 20px;
    }

    .coffee-story-image {
        min-height: 250px;
    }

    /* Menu Section */
    .coffee-menu {
        padding: 80px 20px;
    }

    .coffee-menu-card {
        padding: 30px 20px;
    }

    /* About Section */
    .coffee-about {
        padding: 80px 20px;
    }

    .coffee-about-images {
        flex-direction: column;
        min-height: auto;
    }

    .coffee-about-image--main {
        min-height: 280px;
    }

    .coffee-about-image--secondary {
        min-height: 180px;
    }

    /* Features Section */
    .coffee-features {
        padding: 70px 20px;
    }

    .coffee-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .coffee-feature {
        padding: 28px 16px;
    }

    .coffee-feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .coffee-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .coffee-feature h3 {
        font-size: 1.375rem;
    }

    .coffee-feature p {
        font-size: 0.875rem;
    }

    /* Gallery Section */
    .coffee-gallery {
        padding: 80px 20px;
    }

    .coffee-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .coffee-gallery-item--large,
    .coffee-gallery-item--wide {
        grid-column: span 2;
    }

    /* Quote Section */
    .coffee-quote {
        padding: 80px 20px;
    }

    /* Reviews Section */
    .coffee-reviews {
        padding: 80px 20px;
    }

    .coffee-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .coffee-reviews-score {
        text-align: left;
    }

    .coffee-reviews-stars {
        justify-content: flex-start;
    }

    .coffee-reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Instagram Section */
    .coffee-instagram {
        padding: 80px 20px;
    }

    .coffee-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Location Section */
    .coffee-location-content {
        padding: 60px 24px;
    }

    .coffee-location-map {
        height: 350px;
    }

    /* Buttons - touch-friendly min-height */
    .coffee-instagram-btn,
    .btn-coffee-dark {
        min-height: 48px;
        padding: 14px 24px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    /* Hero Section */
    .coffee-hero {
        min-height: 450px;
        padding: 80px 16px 50px;
    }

    .coffee-hero-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .coffee-hero-title {
        font-size: 2.5rem;
    }

    .coffee-hero-subtitle {
        font-size: 0.9375rem;
    }

    .coffee-hero-scroll {
        display: none;
    }

    /* Story Section */
    .coffee-story {
        padding: 60px 16px;
    }

    .coffee-story-content .section-title {
        font-size: 1.75rem;
    }

    .coffee-story-image {
        min-height: 200px;
    }

    /* Menu Section */
    .coffee-menu {
        padding: 60px 16px;
    }

    .coffee-menu-header .section-title {
        font-size: 2rem;
    }

    .coffee-menu-grid {
        grid-template-columns: 1fr;
    }

    .coffee-menu-card {
        padding: 28px 20px;
    }

    .coffee-menu-icon {
        width: 60px;
        height: 60px;
    }

    .coffee-menu-icon svg {
        width: 28px;
        height: 28px;
    }

    /* About Section */
    .coffee-about {
        padding: 60px 16px;
    }

    .coffee-about-title {
        font-size: 1.75rem;
    }

    .coffee-about-image--main {
        min-height: 220px;
    }

    .coffee-about-image--secondary {
        min-height: 150px;
    }

    /* Features Section */
    .coffee-features {
        padding: 60px 16px;
    }

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

    .coffee-feature {
        padding: 32px 24px;
    }

    .coffee-feature-icon {
        width: 70px;
        height: 70px;
    }

    .coffee-feature-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Gallery Section */
    .coffee-gallery {
        padding: 60px 16px;
    }

    .coffee-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .coffee-gallery-item--large,
    .coffee-gallery-item--wide {
        grid-column: span 1;
    }

    /* Quote Section */
    .coffee-quote {
        padding: 60px 16px;
    }

    .coffee-quote blockquote {
        font-size: 1.25rem;
    }

    /* Reviews Section */
    .coffee-reviews {
        padding: 60px 16px;
    }

    .coffee-reviews-number {
        font-size: 3rem;
    }

    .coffee-review-card {
        padding: 24px;
    }

    /* Instagram Section */
    .coffee-instagram {
        padding: 60px 16px;
    }

    .coffee-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Location Section */
    .coffee-location-content {
        padding: 50px 16px;
    }

    .coffee-location-map {
        height: 280px;
    }

    .coffee-location-info .section-title {
        font-size: 1.75rem;
    }

    .coffee-location-icon {
        width: 44px;
        height: 44px;
    }

    .coffee-location-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   NEW SECTIONS - Enhanced Design
   ========================================================================== */

/* ==========================================================================
   Full Gallery Section with Masonry Layout
   ========================================================================== */
.coffee-gallery-full {
    padding: 100px 24px;
    background: #fff;
}

.coffee-gallery-full-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-gallery-full-header {
    text-align: center;
    margin-bottom: 60px;
}

.coffee-gallery-full-header .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(70, 34, 14, 0.08);
    border-radius: 20px;
}

.coffee-gallery-full-header .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 16px;
}

.coffee-gallery-full-header .section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #5a4a3f;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Masonry Grid */
.coffee-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 34, 14, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-overlay svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */
.coffee-instagram-feed {
    padding: 100px 24px;
    background: var(--coffee-brown);
}

.coffee-instagram-feed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-instagram-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 24px;
}

.instagram-header-content .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-warm);
    margin-bottom: 8px;
}

.instagram-header-content .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.instagram-follow-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--coffee-brown);
}

.instagram-follow-btn svg {
    width: 20px;
    height: 20px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 34, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post-overlay svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

/* ==========================================================================
   Location Section - Redesigned
   ========================================================================== */
.coffee-location-section {
    background: var(--coffee-cream);
}

.coffee-location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.coffee-location-info-card {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coffee-location-info-card .section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(70, 34, 14, 0.08);
    border-radius: 20px;
    width: fit-content;
}

.coffee-location-info-card .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--coffee-brown);
    margin: 0 0 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coffee-brown);
    border-radius: 12px;
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.location-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--coffee-brown);
    margin: 0 0 6px;
}

.location-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5a4a3f;
    margin: 0;
}

.location-text p a {
    color: var(--coffee-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-text p a:hover {
    color: #3d4730;
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--coffee-brown);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background: #3d4730;
    transform: translateY(-2px);
}

.btn-email svg {
    width: 20px;
    height: 20px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--coffee-brown);
    color: var(--coffee-brown);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: var(--coffee-brown);
    color: #fff;
    transform: translateY(-2px);
}

.btn-instagram svg {
    width: 20px;
    height: 20px;
}

.coffee-location-map-wrapper {
    min-height: 400px;
}

.coffee-location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Chapada Republica CTA Section
   ========================================================================== */
.chapada-cta-section {
    padding: 100px 24px;
    background: var(--color-green);
}

.chapada-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chapada-cta-content {
    padding-right: 40px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.chapada-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 16px 0 24px;
    line-height: 1.1;
}

.chapada-cta-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

.chapada-cta-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-category {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}

.cta-category-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}

.chapada-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    color: var(--color-green);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.chapada-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chapada-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.chapada-cta-btn:hover svg {
    transform: translateX(4px);
}

.chapada-cta-images {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    height: 500px;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
}

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

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

.cta-image--main {
    height: 100%;
}

.cta-image--secondary {
    align-self: end;
    height: 60%;
}

/* ==========================================================================
   Responsive - New Sections
   ========================================================================== */

/* Large Tablets / Small Desktop */
@media (max-width: 1200px) {
    .coffee-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .chapada-cta-container {
        gap: 50px;
    }

    .chapada-cta-images {
        height: 450px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .coffee-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 150px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .coffee-location-wrapper {
        grid-template-columns: 1fr;
    }

    .coffee-location-map-wrapper {
        min-height: 350px;
        aspect-ratio: 16/9;
    }

    .chapada-cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chapada-cta-content {
        padding-right: 0;
        text-align: center;
    }

    .chapada-cta-categories {
        justify-content: center;
    }

    .chapada-cta-images {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Landscape - New Sections */
@media (max-width: 768px) {
    /* Gallery Full Section */
    .coffee-gallery-full {
        padding: 80px 20px;
    }

    .coffee-gallery-full-header .section-title {
        font-size: 2rem;
    }

    .coffee-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 12px;
    }

    .gallery-item--tall {
        grid-row: span 2;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    /* Lightbox - Touch Friendly */
    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }

    /* Instagram Feed Section */
    .coffee-instagram-feed {
        padding: 80px 20px;
    }

    .coffee-instagram-feed-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .instagram-header-content .section-title {
        font-size: 2rem;
    }

    .instagram-follow-btn {
        min-height: 48px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Location Section */
    .coffee-location-info-card {
        padding: 60px 24px;
    }

    .coffee-location-info-card .section-title {
        font-size: 2rem;
    }

    .location-details {
        gap: 20px;
    }

    .location-icon {
        width: 48px;
        height: 48px;
    }

    .location-icon svg {
        width: 22px;
        height: 22px;
    }

    .location-actions {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email,
    .btn-instagram {
        justify-content: center;
        min-height: 48px;
    }

    .coffee-location-map-wrapper {
        min-height: 300px;
    }

    /* Chapada CTA Section */
    .chapada-cta-section {
        padding: 80px 20px;
    }

    .chapada-cta-title {
        font-size: 2rem;
    }

    .chapada-cta-btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .chapada-cta-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 16px;
    }

    .cta-image--main {
        height: 300px;
    }

    .cta-image--secondary {
        height: 200px;
    }
}

/* Mobile Portrait - New Sections */
@media (max-width: 480px) {
    /* Gallery Full Section */
    .coffee-gallery-full {
        padding: 60px 16px;
    }

    .coffee-gallery-full-header .section-title {
        font-size: 1.75rem;
    }

    .coffee-gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 8px;
    }

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Lightbox */
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    /* Instagram Feed Section */
    .coffee-instagram-feed {
        padding: 60px 16px;
    }

    .instagram-header-content .section-title {
        font-size: 1.75rem;
    }

    .instagram-follow-btn {
        width: 100%;
        justify-content: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .instagram-post {
        border-radius: 6px;
    }

    /* Location Section */
    .coffee-location-info-card {
        padding: 50px 16px;
    }

    .coffee-location-info-card .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .location-details {
        gap: 16px;
    }

    .location-detail-item {
        gap: 14px;
    }

    .location-icon {
        width: 44px;
        height: 44px;
    }

    .location-text h4 {
        font-size: 0.9375rem;
    }

    .location-text p {
        font-size: 0.875rem;
    }

    .coffee-location-map-wrapper {
        min-height: 280px;
    }

    /* Chapada CTA Section */
    .chapada-cta-section {
        padding: 60px 16px;
    }

    .chapada-cta-title {
        font-size: 1.75rem;
    }

    .chapada-cta-text {
        font-size: 1rem;
    }

    .chapada-cta-categories {
        gap: 8px;
        margin-bottom: 28px;
    }

    .cta-category {
        padding: 8px 14px;
    }

    .cta-category-name {
        font-size: 0.8125rem;
    }

    .cta-image--main {
        height: 260px;
    }

    .cta-image--secondary {
        height: 180px;
    }
}
