/* El Asador de Fukutoku */

:root {
    --a-ink: #1c1410;
    --a-ember: #b54a1e;
    --a-ember-deep: #8a3414;
    --a-cream: #f6f1ea;
    --a-stone: #d9cfc3;
    --a-muted: #6a5c52;
    --a-forest: #3d5c45;
    --a-white: #fff;
}

.asador-body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--a-ink);
    background: var(--a-cream);
}

.asador-header {
    background: rgba(28, 20, 16, 0.96);
    color: var(--a-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.asador-header.header-scrolled {
    background: rgba(28, 20, 16, 0.99);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.asador-header .header-container {
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.asador-header .header-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.asador-header .logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.asador-header .logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.15;
    color: #fff;
}

.asador-header .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0.2rem 0 0;
}

.asador-header .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.asador-header .nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.asador-header .nav-link:hover {
    opacity: 1;
    color: #f0c9a8;
}

.asador-header .nav-link.cta-primary,
.asador-header .nav-link.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.45rem 0.85rem;
}

.asador-header .nav-link.cta-primary {
    background: var(--a-ember);
    border-color: var(--a-ember);
}

.asador-header .language-selector {
    display: flex;
    gap: 0.3rem;
}

.asador-header .btn-lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    font-size: 0.75rem;
}

.asador-header .btn-lang.active,
.asador-header .btn-lang:hover {
    background: var(--a-ember);
    border-color: var(--a-ember);
}

.asador-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.asador-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1c1410;
}

.asador-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
}

.asador-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(28, 20, 16, 0.45) 0%, rgba(28, 20, 16, 0.62) 45%, rgba(28, 20, 16, 0.82) 100%),
        linear-gradient(90deg, rgba(28, 20, 16, 0.35) 0%, transparent 50%, rgba(28, 20, 16, 0.35) 100%);
}

.asador-hero-bg::after {
    content: 'ASADOR';
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 18vw, 10rem);
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.asador-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem;
    max-width: 720px;
    animation: asadorFade 0.9s ease both;
}

.asador-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    margin: 0 0 0.35rem;
    line-height: 1.1;
}

.asador-hero .hero-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin: 0 0 1rem;
    color: #f0c9a8;
}

.asador-hero .hero-claim {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 auto 1.75rem;
    max-width: 28em;
    opacity: 0.95;
}

.asador-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-asador {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-asador:hover {
    transform: translateY(-2px);
}

.btn-asador-primary {
    background: var(--a-ember);
    color: #fff;
}

.btn-asador-primary:hover {
    background: var(--a-ember-deep);
}

.btn-asador-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-asador-outline {
    background: transparent;
    color: var(--a-ember);
    border-color: var(--a-ember);
}

.btn-asador-outline:hover {
    background: rgba(181, 74, 30, 0.08);
}


.asador-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.asador-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    text-align: center;
    margin: 0 0 1rem;
    color: var(--a-ink);
}

.asador-divider {
    width: 64px;
    height: 2px;
    background: var(--a-ember);
    margin: 0 auto 1.5rem;
}

.asador-concept p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--a-muted);
    text-align: center;
    max-width: 38em;
    margin: 0 auto;
}

.asador-menu-placeholder {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--a-stone);
    background: rgba(255, 255, 255, 0.55);
}

.asador-menu-placeholder p {
    margin: 0;
    color: var(--a-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Galería Asador */
.asador-gallery-section {
    max-width: 1100px;
}

.asador-gallery-intro {
    text-align: center;
    color: var(--a-muted);
    margin: -0.5rem auto 1.75rem;
    max-width: 28em;
}

.asador-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.asador-gallery-video {
    grid-column: 1 / -1;
    margin: 0 0 0.35rem;
}

.asador-video-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1c1410;
    cursor: pointer;
    isolation: isolate;
}

.asador-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.asador-video-stage:hover .asador-video,
.asador-video-stage.is-playing .asador-video {
    transform: scale(1.03);
}

.asador-video-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(28, 20, 16, 0.55) 100%),
        linear-gradient(180deg, rgba(28, 20, 16, 0.15) 0%, transparent 35%, rgba(28, 20, 16, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.asador-video-stage.is-playing .asador-video-vignette {
    opacity: 0.35;
}

.asador-video-grain {
    position: absolute;
    inset: -20%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    animation: asadorGrain 4s steps(4) infinite;
}

.asador-video-embers {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.asador-video-embers span {
    position: absolute;
    bottom: -8%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd29a 0%, #b54a1e 55%, transparent 70%);
    opacity: 0;
    animation: asadorEmber 4.8s ease-in infinite;
}

.asador-video-embers span:nth-child(1) { left: 18%; animation-delay: 0s; }
.asador-video-embers span:nth-child(2) { left: 34%; width: 4px; height: 4px; animation-delay: 1.1s; }
.asador-video-embers span:nth-child(3) { left: 52%; animation-delay: 0.6s; }
.asador-video-embers span:nth-child(4) { left: 68%; width: 3px; height: 3px; animation-delay: 1.8s; }
.asador-video-embers span:nth-child(5) { left: 82%; animation-delay: 2.4s; }

.asador-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 76px;
    height: 76px;
    border: none;
    border-radius: 50%;
    background: rgba(181, 74, 30, 0.92);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(181, 74, 30, 0.45);
    animation: asadorPulse 2.4s ease-out infinite;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.asador-video-play svg {
    margin-left: 3px;
}

.asador-video-play-ring {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(240, 201, 168, 0.55);
    border-radius: 50%;
    animation: asadorRing 2.4s ease-out infinite;
}

.asador-video-stage.is-playing:hover .asador-video-play {
    opacity: 0.85;
    pointer-events: auto;
}

.asador-video-stage.is-playing:hover .asador-video-play svg {
    display: none;
}

.asador-video-stage.is-playing:hover .asador-video-play::before {
    content: '';
    width: 14px;
    height: 14px;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}


.asador-video-stage:hover .asador-video-play {
    background: #c45c26;
}

.asador-video-caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.15rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.asador-video-stage.is-playing .asador-video-caption {
    opacity: 0;
}

.asador-video-kicker {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    color: #f6f1ea;
    letter-spacing: 0.02em;
}

.asador-video-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(240, 201, 168, 0.9);
}

.asador-gallery-item {
    margin: 0;
    overflow: hidden;
    background: #1c1410;
    aspect-ratio: 4 / 3;
}

.asador-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.asador-gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes asadorPulse {
    0% { box-shadow: 0 0 0 0 rgba(181, 74, 30, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(181, 74, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(181, 74, 30, 0); }
}

@keyframes asadorRing {
    0% { transform: scale(0.92); opacity: 0.9; }
    100% { transform: scale(1.25); opacity: 0; }
}

@keyframes asadorEmber {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    15% { opacity: 0.85; }
    100% { transform: translateY(-120%) scale(0.4); opacity: 0; }
}

@keyframes asadorGrain {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-1%, 1%); }
    50% { transform: translate(1%, -1%); }
    75% { transform: translate(-1%, -1%); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 800px) {
    .asador-gallery {
        grid-template-columns: 1fr;
    }

    .asador-video-play {
        width: 64px;
        height: 64px;
    }
}

.asador-hours-box,
.asador-contact-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.asador-hours-box p,
.asador-contact-box p {
    color: var(--a-muted);
    margin: 0 0 1rem;
    line-height: 1.55;
}

.asador-schedule-table {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
}

.asador-schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--a-stone);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.asador-schedule-row:last-child {
    border-bottom: none;
}

.asador-schedule-day {
    font-weight: 600;
    color: var(--a-ink);
}

.asador-schedule-hours {
    color: var(--a-muted);
    text-align: right;
}

.asador-schedule-hours.closed {
    color: var(--a-ember);
    font-weight: 600;
}

.asador-map {
    margin-top: 1.75rem;
    border: 1px solid var(--a-stone);
    overflow: hidden;
    background: #fff;
}

.asador-map iframe {
    display: block;
    width: 100%;
    min-height: 280px;
}

.asador-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--a-ember);
    text-decoration: none;
}

.asador-phone:hover {
    text-decoration: underline;
}

.asador-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.asador-location-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.asador-footer {
    background: #1c1410;
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
}

.asador-footer img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.asador-footer p {
    margin: 0.25rem 0;
    opacity: 0.9;
}

.asador-footer a {
    color: #f0c9a8;
    text-decoration: none;
    font-weight: 600;
}

.asador-footer a:hover {
    text-decoration: underline;
}

.asador-footer .footer-credit {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.75;
}

.asador-footer .footer-credit a {
    color: #f0c9a8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Reutilizar modal cookies del design system si está cargado;
   fallback mínimo por si se usa solo asador.css */
.asador-body .cookie-modal {
    position: fixed;
    inset: auto 1rem 1rem auto;
    z-index: 2000;
}

@keyframes asadorFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .asador-header .desktop-nav {
        display: none;
    }

    .asador-header .hamburger {
        display: flex;
    }

    .asador-header .logo {
        width: 56px;
        height: 56px;
    }

    .asador-header .logo-text h1 {
        font-size: 1rem;
    }

    .asador-hero {
        min-height: 62vh;
    }
}
