/* ==========================================================================
   VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Colors - Premium Italian Palette */
    --color-bg: #FDFBF7;           /* Warm cream/ivory background */
    --color-text-main: #2A2A2A;      /* Charcoal text */
    --color-text-light: #5A5A5A;     /* Secondary text */
    
    --color-primary: #556B2F;        /* Elegant Olive Green */
    --color-primary-hover: #455726;  
    
    --color-secondary: #8B2500;      /* Deep brick/tomato red */
    --color-secondary-hover: #6E1D00;
    
    --color-accent: #D2B48C;         /* Subtle soft terracotta/sand */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --px-container: 2rem;
    --section-py: 6rem;
    
    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

em {
    font-style: italic;
    color: var(--color-secondary);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--px-container);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-label--center {
    display: block;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title--center {
    text-align: center;
}

/* ==========================================================================
   COMPONENTS - BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-text-main);
}

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

.btn--outline-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn--white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-white {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn--outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-text-main);
}

/* ==========================================================================
   1. HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: var(--color-bg);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.header__logo-icon {
    font-size: 1.5rem;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    transition: color var(--transition-normal);
}

.header.scrolled .header__logo-name {
    color: var(--color-text-main);
}

.header__logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-normal);
}

.header.scrolled .header__logo-tagline {
    color: var(--color-text-light);
}

/* Desktop Nav */
.header__nav {
    display: none;
}

@media (min-width: 992px) {
    .header__nav {
        display: block;
    }
}

.header__nav-list {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .header__nav-link {
    color: var(--color-text-main);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    transition: width var(--transition-fast);
}

.header.scrolled .header__nav-link::after {
    background-color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header__actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .header__actions {
        display: flex;
    }
}

.header__cta-secondary {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.header.scrolled .header__cta-secondary {
    color: var(--color-text-main);
}

.header__cta-secondary:hover {
    color: var(--color-primary);
}

.header__cta-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.header__cta-primary:hover {
    background-color: var(--color-primary-hover);
}

/* Mobile Toggle */
.header__mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

@media (min-width: 992px) {
    .header__mobile-toggle {
        display: none;
    }
}

.header__mobile-toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-normal);
}

.header.scrolled .header__mobile-toggle-bar {
    background-color: var(--color-text-main);
}

.header.menu-open .header__mobile-toggle-bar {
    background-color: var(--color-text-main);
}

.header.menu-open .header__mobile-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.menu-open .header__mobile-toggle-bar:nth-child(2) {
    opacity: 0;
}

.header.menu-open .header__mobile-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.header.menu-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
}

.header__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.header__mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-main);
    display: block;
}

.header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__mobile-actions .header__cta-secondary {
    color: var(--color-text-main);
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--color-text-main);
}

.header__mobile-actions .header__cta-primary {
    text-align: center;
    padding: 1rem;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vmax; /* Full height initially */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 90vh; /* Slightly shorter on desktop */
    }
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--px-container);
    text-align: center;
    color: var(--color-white);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero__badge span {
    color: #FFD700; /* Gold star */
}

.hero__title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero__title em {
    color: var(--color-white);
    font-style: italic;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 5.5rem;
    }
}

.hero__subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.25rem;
    }
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .hero__ctas {
        flex-direction: row;
    }
}

.hero__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .hero__features {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

/* ==========================================================================
   3. THE EXPERIENCE (ABOUT)
   ========================================================================== */
.experience {
    padding: var(--section-py) 0;
    background-color: var(--color-white);
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .experience__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.experience__image-col {
    position: relative;
}

.experience__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.experience__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.experience__image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.3);
    margin: -1rem;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Fallback for margins if aspect-ratio doesn't work out as expected */
@media (min-width: 992px) {
    .experience__image-wrapper {
        margin-right: 2rem;
    }
}

.experience__image-badge {
    position: absolute;
    bottom: -2rem;
    right: 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-strong);
    padding: 1rem;
}

@media (min-width: 992px) {
    .experience__image-badge {
        right: -2rem;
        bottom: 2rem;
        width: 160px;
        height: 160px;
    }
}

.experience__image-badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 992px) {
    .experience__image-badge-number {
        font-size: 3rem;
    }
}

.experience__image-badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

@media (min-width: 992px) {
    .experience__image-badge-text {
        font-size: 0.8rem;
    }
}

.experience__divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 2rem;
}

.experience__text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.experience__highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience__highlight-icon {
    font-size: 1.5rem;
    background-color: var(--color-bg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.experience__highlight strong {
    display: block;
    font-weight: 600;
    color: var(--color-text-main);
}

.experience__highlight span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   4. VALUE PROPOSITION
   ========================================================================== */
.value-props {
    padding: var(--section-py) 0;
    background-color: var(--color-bg);
}

.value-props__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .value-props__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-props__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-prop-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.value-prop-card__icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.value-prop-card__icon-wrap::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed var(--color-white);
    border-radius: 50%;
    pointer-events: none;
}

.value-prop-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-prop-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-prop-card__text {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   5. DISHES
   ========================================================================== */
.dishes {
    padding: var(--section-py) 0;
    background-color: var(--color-white);
}

.dishes__subtitle {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 4rem;
    color: var(--color-text-light);
}

.dishes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dishes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dishes__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dish-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.dish-card__image-wrap {
    position: relative;
    padding-top: 66%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.dish-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card__image {
    transform: scale(1.05);
}

.dish-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-white);
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.dish-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-card__name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dish-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

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

/* ==========================================================================
   6. DELIVERY
   ========================================================================== */
.delivery {
    padding: var(--section-py) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.delivery .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.delivery .section-title {
    color: var(--color-white);
}

.delivery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .delivery__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.delivery__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.delivery__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.delivery__step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.delivery__step-number {
    width: 32px;
    height: 32px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.delivery__step-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.delivery__step-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.delivery__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.delivery__actions .btn--primary:hover {
    background-color: rgba(255,255,255,0.9);
}

.delivery__actions .btn--outline-dark {
    border-color: rgba(255,255,255,0.5);
    color: var(--color-white);
}

.delivery__actions .btn--outline-dark:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.delivery__visual {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.delivery__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

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

.delivery__floating-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background-color: var(--color-white);
    color: var(--color-text-main);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .delivery__floating-badge {
        bottom: 2rem;
        left: -2rem;
    }
}

.delivery__floating-badge svg {
    color: var(--color-primary);
}

.delivery__floating-badge div {
    display: flex;
    flex-direction: column;
}

.delivery__floating-badge span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   7. GALLERY
   ========================================================================== */
.gallery {
    padding: var(--section-py) 0;
    background-color: var(--color-bg);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 1.5rem;
    }
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (min-width: 768px) {
    .gallery__item--tall {
        grid-row: span 2;
    }
}

/* ==========================================================================
   8. REVIEWS
   ========================================================================== */
.reviews {
    padding: var(--section-py) 0;
    background-color: var(--color-white);
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.review-card__stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card__text {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.review-card__info {
    display: flex;
    flex-direction: column;
}

.review-card__info strong {
    font-size: 1rem;
}

.review-card__info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.reviews__rating {
    text-align: center;
    border-top: 1px solid var(--color-bg);
    padding-top: 2rem;
}

.reviews__rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.reviews__rating-text {
    color: var(--color-text-light);
}

/* ==========================================================================
   9. LOCATION
   ========================================================================== */
.location {
    padding: var(--section-py) 0;
    background-color: var(--color-bg);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .location__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.location__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location__detail svg {
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location__detail strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.location__detail span {
    color: var(--color-text-light);
    line-height: 1.5;
}

.location__phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.location__phone:hover {
    color: var(--color-primary);
}

.location__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.location__map {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .location__map {
        height: 500px;
    }
}

/* ==========================================================================
   10. HOURS & CONTACT
   ========================================================================== */
.hours {
    padding: var(--section-py) 0 4rem;
    background-color: var(--color-white);
}

.hours__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .hours__grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.hours__table {
    margin-bottom: 1.5rem;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-bg);
}

.hours__row:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 500;
}

.hours__time {
    color: var(--color-text-light);
    text-align: right;
}

.hours__time--closed {
    color: var(--color-secondary);
    font-weight: 500;
}

.hours__note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.hours__contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .hours__contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hours__contact-card {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hours__contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-white);
    border: 1px solid var(--color-bg);
}

.hours__contact-card svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hours__contact-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.hours__contact-card span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   11. FINAL CTA
   ========================================================================== */
.final-cta {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: var(--color-white);
}

.final-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.final-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.8); /* Charcoal with opacity */
}

.final-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.final-cta__title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.final-cta__title em {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .final-cta__title {
        font-size: 3.5rem;
    }
}

.final-cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-text-main);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

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

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer__brand {
    padding-right: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer__logo-icon {
    font-size: 2rem;
}

.footer__logo-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.footer__logo-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.footer__desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer__list a:hover {
    color: var(--color-primary);
}

.footer__list--hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__list--contact svg {
    color: var(--color-primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   UTILS & ANIMATIONS
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Simple Animation Classes for JS Intersection Observer */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 1.25rem 0;
    background-color: var(--color-bg);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--px-container);
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-banner__content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-banner__text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    max-width: 850px;
    line-height: 1.5;
}

.cookie-banner__link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner__link:hover {
    color: var(--color-primary-hover);
}

.cookie-banner__btn {
    white-space: nowrap;
    min-width: 120px;
}
