/* ============================================================
   CHI SIAMO PAGE - STILI ELEGANTI E COERENTI
   ============================================================ */

:root {
    --primary-color: #d8b46a;
    --bg-clear: #fbf9f5;
    --text-dark-main: #261f1d;
    --text-dark-muted: #6e6460;
    --font-titles: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

.chi-siamo-section {
    background-color: var(--bg-clear);
    padding: 5rem 0;
    font-family: var(--font-body);
}

.chi-siamo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* Header Elegante */
.chi-siamo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chi-siamo-header .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.chi-siamo-header h1 {
    font-family: var(--font-titles);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--text-dark-main);
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
}

.chi-siamo-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-dark-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.chi-siamo-header .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

/* Story Rows */
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.story-row.reverse {
    direction: rtl;
}

.story-row.reverse > * {
    direction: ltr;
}

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

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(38, 31, 29, 0.12);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.story-text h2 {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.chi-siamo-cta {
    background: linear-gradient(135deg, rgba(216, 180, 106, 0.08) 0%, rgba(216, 180, 106, 0.04) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 5rem;
}

.chi-siamo-cta h3 {
    font-family: var(--font-titles);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark-main);
    margin-bottom: 1rem;
}

.chi-siamo-cta p {
    font-size: 1.05rem;
    color: var(--text-dark-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 180, 106, 0.25);
}

/* Animazione */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .story-row {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .story-image {
        height: 350px;
    }

    .story-text h2 {
        font-size: 1.9rem;
    }

    .chi-siamo-cta {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .chi-siamo-section {
        padding: 3rem 0;
    }

    .chi-siamo-header {
        margin-bottom: 3rem;
    }

    .chi-siamo-header h1 {
        font-size: 2rem;
    }

    .chi-siamo-header .subtitle {
        font-size: 0.95rem;
    }

    .story-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .story-row.reverse {
        direction: ltr;
    }

    .story-image {
        height: 300px;
    }

    .story-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }

    .chi-siamo-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .chi-siamo-cta h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .chi-siamo-container {
        padding: 0 4vw;
    }

    .chi-siamo-header h1 {
        font-size: 1.6rem;
    }

    .chi-siamo-header .subtitle {
        font-size: 0.9rem;
    }

    .story-image {
        height: 250px;
    }

    .story-text h2 {
        font-size: 1.4rem;
    }

    .story-text p {
        font-size: 0.9rem;
    }

    .chi-siamo-cta {
        padding: 1.5rem;
    }

    .cta-button {
        flex-direction: column;
        width: 100%;
    }
}
  font-size: 1.8rem;
  color: var(--accent-gold-dark);
  border-bottom: 1px solid rgba(176, 145, 100, 0.2);
  padding-bottom: 10px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.bar-section .menu-item {
  margin-bottom: 25px;
  transition: transform 0.2s ease;
}

.bar-section .menu-item:hover {
  transform: translateX(4px);
}

.bar-section .item-details {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.bar-section .item-name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* I puntini di sospensione adattati al fondo chiaro */
.bar-section .item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(38, 31, 29, 0.15);
  margin: 0 15px;
}

.bar-section .item-price {
  font-family: var(--font-titles);
  font-weight: 600;
  color: var(--text-dark-main); /* Il prezzo scuro spicca magnificamente sul fondo avorio */
  font-size: 1.1rem;
}

.bar-section .item-description {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  margin-top: 5px;
  font-weight: 300;
  line-height: 1.4;
}