/* ============================================ */
/* CAFÉ AURORA — Sistema de Estilos             */
/* ============================================ */

/* ---- Reset y Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3D2817;
    background-color: #F5F0E8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================ */
/* VARIABLES CSS                                */
/* ============================================ */
:root {
    /* Colores primarios */
    --color-cream: #F5F0E8;
    --color-latte: #E8DCC8;
    --color-beige: #D4C4A8;
    --color-sand: #C9B896;

    /* Colores café */
    --color-coffee-light: #A68B6B;
    --color-coffee: #8B6F47;
    --color-coffee-dark: #5C4033;
    --color-espresso: #3D2817;

    /* Colores oliva */
    --color-olive-light: #9B9B7A;
    --color-olive: #7A7A5C;
    --color-olive-dark: #5C5C45;

    /* Fondos de sección */
    --color-bg-warm: #FAF6F0;
    --color-bg-olive: #8B8B6E;
    --color-bg-coffee: #5C4033;
    --color-bg-dark: #3D2817;

    /* Espaciado */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --space-3xl: 10rem;

    /* Tipografía */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;

    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-smooth: 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================ */
/* UTILIDADES                                   */
/* ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ============================================ */
/* SECCIONES                                    */
/* ============================================ */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-warm {
    background-color: var(--color-bg-warm);
}

.section-olive {
    background-color: var(--color-bg-olive);
    overflow: hidden;
}

/* ============================================ */
/* TIPOGRAFÍA DE SECCIONES                      */
/* ============================================ */
.overline {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-olive);
    margin-bottom: var(--space-sm);
}

.overline-light {
    color: var(--color-latte);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-espresso);
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-beige);
    margin: 0 auto;
}

.section-line-light {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ============================================ */
/* BOTONES                                      */
/* ============================================ */
.btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    border: 1px solid var(--color-coffee-dark);
    color: var(--color-coffee-dark);
    background: transparent;
}

.btn-primary:hover {
    background: var(--color-coffee-dark);
    color: var(--color-cream);
}

.btn-secondary {
    background: var(--color-olive);
    color: var(--color-cream);
    border: none;
}

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

/* ============================================ */
/* NAVEGACIÓN                                   */
/* ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1.25rem 0;
}

.nav-scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(61, 40, 23, 0.08);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

.nav-scrolled .nav-logo-img {
    filter: none;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    position: relative;
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-scrolled .nav-link {
    color: var(--color-espresso);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Toggle móvil */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all var(--transition-fast);
}

.nav-scrolled .nav-toggle-line {
    background: var(--color-espresso);
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(61, 40, 23, 0.35) 0%,
        rgba(61, 40, 23, 0.45) 50%,
        rgba(61, 40, 23, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    padding: 0 1.5rem;
}

.hero-logo-wrapper {
    margin-bottom: var(--space-md);
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.hero-welcome {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-sm);
    animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.95;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: heroFadeIn 1s ease-out 0.9s both;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    animation: heroFadeIn 1s ease-out 1.2s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: heroFadeIn 1s ease-out 1.8s both;
}

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

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* ============================================ */
/* INTRODUCCIÓN                                 */
/* ============================================ */
.intro {
    background-color: var(--color-cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.intro-text {
    max-width: 540px;
}

.intro-body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-coffee-dark);
    margin-bottom: var(--space-lg);
}

.intro-quote {
    padding-left: var(--space-md);
    border-left: 2px solid var(--color-beige);
}

.intro-quote blockquote {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--color-coffee-dark);
    line-height: 1.5;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(61, 40, 23, 0.12);
}

.intro-image-decorator {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-beige);
    border-radius: 4px;
    z-index: -1;
}

/* ============================================ */
/* PRODUCT CARDS — GRID EDITORIAL               */
/* ============================================ */
.products-grid {
    display: grid;
    gap: 1.5rem;
}

.editorial-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: auto auto;
}

.editorial-grid .product-card:nth-child(1) {
    grid-row: span 2;
}

.editorial-grid .product-card:nth-child(3) {
    grid-column: span 2;
}

/* Product Card Base */
.product-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(61, 40, 23, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    transition: background var(--transition-base);
}

.product-card:hover .product-card-overlay {
    background: linear-gradient(transparent 30%, rgba(61, 40, 23, 0.85) 100%);
}

.product-card-tag {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-latte);
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #FFFFFF;
    line-height: 1.2;
}

.product-card-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* ============================================ */
/* DRINKS GRID                                  */
/* ============================================ */
.drinks-grid {
    grid-template-columns: repeat(3, 1fr);
}

.drink-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61, 40, 23, 0.1);
}

.drink-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.drink-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.drink-card-content {
    padding: var(--space-md);
}

.drink-card-tag {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-olive);
    margin-bottom: 0.5rem;
    display: block;
}

.drink-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-espresso);
    margin-bottom: 0.5rem;
}

.drink-card-desc {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-coffee);
    line-height: 1.6;
}

/* ============================================ */
/* WAFFLES                                      */
/* ============================================ */
.waffle-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.waffle-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.waffle-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.waffle-image-badge {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.waffle-badge-text {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-coffee-dark);
    line-height: 1.4;
}

.waffle-content {
    padding: var(--space-md) 0;
}

.waffle-body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-coffee-dark);
    margin-bottom: var(--space-lg);
}

.waffle-variants {
    display: flex;
    gap: var(--space-lg);
}

.waffle-variant {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.waffle-variant-icon {
    font-size: 1.5rem;
}

.waffle-variant-name {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-olive);
}

/* ============================================ */
/* FOOD GRID                                    */
/* ============================================ */
.food-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.food-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.food-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.food-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.food-card:hover .food-card-image img {
    transform: scale(1.03);
}

.food-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(61, 40, 23, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    transition: background var(--transition-base);
}

.food-card:hover .food-card-overlay {
    background: linear-gradient(transparent 20%, rgba(61, 40, 23, 0.9) 100%);
}

.food-card-tag {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-latte);
    margin-bottom: 0.5rem;
}

.food-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.food-card-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================ */
/* FIN DE SEMANA — CREPAS                       */
/* ============================================ */
.weekend-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.weekend-subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}

.weekend-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.weekend-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.weekend-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.weekend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.weekend-card:hover .weekend-card-image img {
    transform: scale(1.03);
}

.weekend-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(61, 40, 23, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    transition: background var(--transition-base);
}

.weekend-card:hover .weekend-card-overlay {
    background: linear-gradient(transparent 30%, rgba(61, 40, 23, 0.85) 100%);
}

.weekend-card-tag {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-latte);
    margin-bottom: 0.5rem;
}

.weekend-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #FFFFFF;
    line-height: 1.2;
}

.weekend-card-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Weekend Hours Card */
.weekend-hours {
    position: relative;
    z-index: 2;
}

.weekend-hours-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    overflow: hidden;
}

.weekend-hours-block {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.weekend-hours-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-latte);
    margin-bottom: var(--space-sm);
}

.weekend-hours-time {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #FFFFFF;
    line-height: 1.3;
}

.weekend-hours-separator {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin: var(--space-xs) 0;
}

.weekend-hours-image {
    overflow: hidden;
}

.weekend-hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorador numérico */
.weekend-decorator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

/* ============================================ */
/* PROMOCIONES                                  */
/* ============================================ */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.promo-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61, 40, 23, 0.1);
}

.promo-card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.03);
}

.promo-card-content {
    padding: var(--space-md);
}

.promo-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--color-espresso);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.promo-card-desc {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-coffee);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.promo-card-desc strong {
    color: var(--color-olive);
    font-weight: 600;
}

.promo-card-note {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-olive);
}

/* ============================================ */
/* UBICACIÓN                                    */
/* ============================================ */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location-info {
    padding: var(--space-md) 0;
}

.location-details {
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.location-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.location-item-content {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-olive);
    margin-bottom: 0.25rem;
}

.location-value {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-espresso);
    line-height: 1.6;
}

.location-link {
    color: var(--color-coffee-light);
    transition: color var(--transition-fast);
}

.location-link:hover {
    color: var(--color-coffee-dark);
    text-decoration: underline;
}

.location-btn {
    margin-top: var(--space-md);
}

.location-images {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 1rem;
}

.location-image-main,
.location-image-secondary {
    border-radius: 4px;
    overflow: hidden;
}

.location-image-main img,
.location-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.location-image-main:hover img,
.location-image-secondary:hover img {
    transform: scale(1.02);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    background-color: var(--color-espresso);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    text-align: center;
    color: #FFFFFF;
}

.footer-decorator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-address {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--space-lg);
}

.footer-hours span {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================ */
/* SCROLL REVEAL ANIMATIONS                     */
/* ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* KEYFRAMES                                    */
/* ============================================ */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* RESPONSIVE — TABLET                          */
/* ============================================ */
@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-grid .product-card:nth-child(1) {
        grid-row: span 1;
    }

    .editorial-grid .product-card:nth-child(3) {
        grid-column: span 1;
    }

    .editorial-grid .product-card:nth-child(5) {
        grid-column: span 2;
    }

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

    .food-grid {
        grid-template-columns: 1fr 1fr;
    }

    .weekend-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .promo-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .weekend-decorator {
        font-size: 18rem;
    }
}

/* ============================================ */
/* RESPONSIVE — MÓVIL                           */
/* ============================================ */
@media (max-width: 640px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    /* Nav móvil */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(61, 40, 23, 0.15);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--color-espresso);
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Intro */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .intro-image-decorator {
        display: none;
    }

    /* Grids */
    .editorial-grid,
    .drinks-grid,
    .food-grid,
    .weekend-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .editorial-grid .product-card:nth-child(5),
    .promo-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Waffles */
    .waffle-layout {
        grid-template-columns: 1fr;
    }

    .waffle-image {
        order: -1;
    }

    /* Weekend */
    .weekend-hours-card {
        grid-template-columns: 1fr;
    }

    .weekend-hours-image {
        display: none;
    }

    .weekend-decorator {
        font-size: 12rem;
    }

    /* Location */
    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-images {
        order: -1;
        grid-template-rows: 1fr;
    }

    .location-image-secondary {
        display: none;
    }

    /* Footer */
    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }

    .footer-hours span {
        font-size: 0.75rem;
    }
}

/* ============================================ */
/* REDUCED MOTION                               */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}
