/* About page — rich layout */

.nosotros-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    overflow: hidden;
}

.nosotros-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.nosotros-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 14, 13, 0.35) 0%,
        rgba(15, 14, 13, 0.75) 55%,
        rgba(15, 14, 13, 0.95) 100%
    );
}

.nosotros-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.nosotros-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
    color: var(--color-cream);
}

.nosotros-hero-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

.nosotros-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nosotros-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
    background: rgba(34, 31, 28, 0.65);
    color: var(--color-gold-light);
    font-size: 0.85rem;
}

.nosotros-stats {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.nosotros-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.nosotros-stat {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.nosotros-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1.1;
}

.nosotros-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nosotros-story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.nosotros-story-block--reverse .nosotros-story-media {
    order: 2;
}

.nosotros-story-block--reverse .nosotros-story-copy {
    order: 1;
}

.nosotros-story-media .image-frame {
    border-radius: 14px;
    overflow: hidden;
}

.nosotros-story-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nosotros-story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--color-cream);
    margin: 0 0 0.75rem;
}

.nosotros-story-copy p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.nosotros-story-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.nosotros-story-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--color-text-muted);
}

.nosotros-story-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.nosotros-gallery {
    background: var(--color-bg-soft);
}

.nosotros-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
}

.nosotros-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

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

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

.nosotros-gallery-item--1 { grid-column: span 7; grid-row: span 2; }
.nosotros-gallery-item--2 { grid-column: span 5; }
.nosotros-gallery-item--3 { grid-column: span 5; }
.nosotros-gallery-item--4 { grid-column: span 12; }

.nosotros-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1rem 0.85rem;
    background: linear-gradient(transparent, rgba(15, 14, 13, 0.9));
    font-size: 0.8rem;
    color: var(--color-gold-light);
}

.nosotros-dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.nosotros-dish-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.nosotros-dish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.35);
}

.nosotros-dish-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nosotros-dish-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
}

.nosotros-dish-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin: 0 0 0.35rem;
}

.nosotros-dish-card-body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.nosotros-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.nosotros-value-card {
    background: linear-gradient(145deg, var(--color-bg-card), var(--color-bg-soft));
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.nosotros-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--color-gold);
    font-size: 1.4rem;
}

.nosotros-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-cream);
    margin: 0 0 0.5rem;
}

.nosotros-value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.nosotros-location-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    overflow: hidden;
}

.nosotros-location-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.nosotros-location-copy {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nosotros-location-copy h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-cream);
    margin: 0 0 1rem;
}

.nosotros-location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.nosotros-location-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--color-text-muted);
}

.nosotros-location-list i {
    color: var(--color-gold);
    margin-top: 0.2rem;
}

.nosotros-cta {
    background: linear-gradient(135deg, rgba(107, 28, 42, 0.35), rgba(15, 14, 13, 0.9));
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nosotros-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.nosotros-cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-cream);
    margin: 0 0 0.75rem;
}

.nosotros-cta-box p {
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

@media (max-width: 991px) {
    .nosotros-stats-grid,
    .nosotros-dishes-grid,
    .nosotros-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nosotros-story-block,
    .nosotros-location-box {
        grid-template-columns: 1fr;
    }

    .nosotros-story-block--reverse .nosotros-story-media,
    .nosotros-story-block--reverse .nosotros-story-copy {
        order: unset;
    }

    .nosotros-location-copy {
        padding: 1.5rem;
    }

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

    .nosotros-gallery-item--1,
    .nosotros-gallery-item--2,
    .nosotros-gallery-item--3,
    .nosotros-gallery-item--4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .nosotros-gallery-item--1 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 575px) {
    .nosotros-stats-grid,
    .nosotros-dishes-grid,
    .nosotros-values-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-hero {
        min-height: 70vh;
    }
}
