/* ==========================================================================
   RESTAURANTE SOLARINO - FINAL ART DIRECTION (PREMIUM)
   ========================================================================== */

:root {
    /* Ivory / Beige Base */
    --color-bg: #F8F6F2;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F0EBE3;
    
    /* Text */
    --color-text-main: #25221F;   
    --color-text-muted: #726A60;
    
    /* Accents */
    --color-accent: #A65A3D; 
    --color-border: #E8E0D5;
    
    /* Night Integration */
    --color-night-bg: #1A1816;
    --color-night-surface: #24211E;
    --color-night-text: #F8F6F2;
    --color-night-text-muted: #A19990;

    /* Typography */
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 12px;
    --space-sm: 24px;
    --space-md: 48px;
    --space-lg: 80px; 
    
    --container-max: 1280px;
    
    /* Shadows */
    --shadow-subtle: 0 10px 40px rgba(37,34,31, 0.05);
    
    --transition-fast: 0.2s ease;
    --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text-main);
}

p { margin-bottom: var(--space-sm); color: var(--color-text-muted); font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* Enforcing global text centering logic for main blocks where appropriate */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.heading-primary {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.heading-secondary {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

.heading-tertiary {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.lead-text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 650px;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section { padding: var(--space-lg) 0; }

.section-dark {
    background-color: var(--color-night-bg);
    color: var(--color-night-text);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-night-text); }
.section-dark p { color: var(--color-night-text-muted); }
.section-dark .overline { color: #D4B8AA; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.align-center { align-items: center; }

/* --- CARDS --- */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    border: none;
    transition: transform var(--transition-slow);
}
.card:hover { transform: translateY(-4px); }

.card-img-wrapper {
    position: relative;
    padding-top: 100%; 
    overflow: hidden;
    margin-bottom: var(--space-sm);
}
.card-img-wrapper.rect { padding-top: 66%; } 
.card-img-wrapper.tall { padding-top: 130%; } 

.card-img-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    transition: transform var(--transition-slow);
}
.card:hover .card-img-wrapper img { transform: scale(1.03); }

.card-content {
    display: flex; flex-direction: column; text-align: center;
    align-items: center;
    flex: 1; /* ocupa el espacio restante dentro de la card */
}
.card-content p {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    flex: 1; /* absorbe el hueco extra cuando el texto es más corto */
}
.card-content .btn { margin-top: auto; } /* ancla el botón siempre al fondo */

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-sm) var(--space-lg);
    background-color: var(--color-night-bg);
    overflow: hidden;
    text-align: center;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; background-color: var(--color-night-bg); }
.hero-bg img { width: 100%; height: 100%; animation: slowZoom 25s ease-out forwards; }

.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(rgba(26, 24, 22, 0.5), rgba(26, 24, 22, 0.8));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .heading-primary { color: var(--color-night-text); }
.hero .lead-text { color: var(--color-night-text-muted); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 500; cursor: pointer; transition: all var(--transition-slow);
    border: 1px solid transparent; min-width: 180px;
}

.btn-primary { background-color: var(--color-text-main); color: var(--color-surface); }
.btn-primary:hover { background-color: var(--color-accent); color: var(--color-surface); transform: translateY(-2px); }

.btn-outline { border-color: var(--color-text-main); color: var(--color-text-main); background: transparent; }
.btn-outline:hover { background-color: var(--color-text-main); color: var(--color-surface); transform: translateY(-2px); }

.section-dark .btn-outline { border-color: var(--color-night-text); color: var(--color-night-text); }
.section-dark .btn-outline:hover { background-color: var(--color-night-text); color: var(--color-night-bg); }

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: var(--space-sm) 0;
    z-index: 100; background: transparent; transition: var(--transition-slow);
}
.navbar.scrolled {
    padding: 16px 0; background: rgba(248, 246, 242, 0.98);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

/* BRAND LOGO Logic */
.nav-brand {
    display: block; 
    height: 48px;
    z-index: 101;
}
.nav-brand img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-slow);
}
/* If the original logo is dark, we invert it on transparent backgrounds so it shows */
.navbar:not(.scrolled) .nav-brand img { filter: brightness(0) invert(1); }
.navbar.scrolled .nav-brand img { filter: none; }

.nav-menu { display: flex; list-style: none; gap: var(--space-sm); align-items: center; }
.nav-link {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--color-night-text); opacity: 0.9;
}
.navbar.scrolled .nav-link { color: var(--color-text-main); }
.nav-link:hover, .nav-link.active { opacity: 1; border-bottom: 1px solid currentColor; }

/* Mobile Nav */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--color-night-text); cursor: pointer; }
.navbar.scrolled .mobile-toggle { color: var(--color-text-main); }
.mobile-nav-overlay {
    position: fixed; inset: 0; background: var(--color-bg); z-index: 999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity var(--transition-slow);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-overlay .nav-menu { flex-direction: column; gap: var(--space-sm); text-align: center; }
.mobile-nav-overlay .nav-link { color: var(--color-text-main); font-size: 1rem; }

/* --- CARTA MENU LISTS --- */
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { margin-bottom: var(--space-sm); border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-xs); }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; }
.menu-item-name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-text-main); }
.menu-item-price { font-size: 1.1rem; color: var(--color-accent); font-weight: 500; }
.menu-item-desc { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 4px; }

/* --- CURATED GALLERY GRID (EDITORIAL, ASIMÉTRICO) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: var(--space-sm);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm) var(--space-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: auto; /* anulamos el 1/1 genérico, aquí manda el grid */
    overflow: hidden;
    display: block;
}

.gallery-item img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }

/* El pulpo: doble de alto, columna izquierda */
.gallery-item-hero {
    grid-column: 1;
    grid-row: span 2;
}

/* Entrante y Carne: arriba a la derecha, uno junto al otro */
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }

/* Postre: abajo, ocupando el ancho de las dos columnas de la derecha */
.gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

/* Caption al hover */
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-sm);
    background: linear-gradient(to top, rgba(26,24,22,0.85), transparent);
    color: var(--color-night-text);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-slow);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------
/* --- SECCIÓN "EL CORTE" --- */
.section-cut {
    background: #161311;
    padding: var(--space-lg) var(--space-sm);
}

.cut-annotation-top {
    max-width: var(--container-max);
    margin: 0 auto var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B08D57;
    border-bottom: 0.5px solid #3A342E;
    padding-bottom: 14px;
}

.cut-layout {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    flex-wrap: wrap;
}

.cut-text {
    flex: 1 1 300px;
    min-width: 260px;
    padding-top: var(--space-sm);
}

.cut-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #EDE7DC;
    margin-bottom: var(--space-sm);
    text-align: left;
}

.cut-lead {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #A39B8E;
    max-width: 34ch;
    margin-bottom: var(--space-sm);
}

.cut-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #EDE7DC;
    border-bottom: 1px solid #7A2E1F;
    padding-bottom: 6px;
}
.cut-cta span { color: #B08D57; transition: transform var(--transition-fast); }
.cut-cta:hover span { transform: translateX(4px); }

.cut-diagram {
    position: relative;
    flex: 1 1 400px;
    min-width: 320px;
    display: flex;
}

.cut-photo {
    width: 65%;
    aspect-ratio: 3 / 4;
    background: #221E1A;
    border: 1px solid #3A342E;
    overflow: hidden;
}
.cut-photo img { width: 100%; height: 100%; object-fit: cover; }

.cut-label {
    position: absolute;
    left: 68%;
    display: flex;
    flex-direction: column;
    padding-left: 24px;
}
.cut-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 1px;
    background: #7A2E1F;
}
.cut-label-key {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B08D57;
}
.cut-label-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #EDE7DC;
}

.cut-label-1 { top: 15%; }
.cut-label-2 { top: 45%; }
.cut-label-3 { top: 75%; }

.trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.trio-item {
    padding: var(--space-lg) var(--space-md);
}



/* --- FORMS --- */
.split-img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.form-group { margin-bottom: var(--space-sm); text-align: left; }
.form-label { display: block; font-size: 0.8rem; margin-bottom: 8px; color: var(--color-text-muted); }
.form-control {
    width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid var(--color-border);
    background: transparent; font-family: var(--font-body); font-size: 1rem; color: var(--color-text-main);
}
.form-control:focus { outline: none; border-color: var(--color-text-main); }
select.form-control { appearance: none; border-radius: 0; }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 12px; margin-top: var(--space-sm); text-align: left; }
.checkbox-wrap input { margin-top: 4px; }
.checkbox-wrap label { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.4; }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150%);
    background: var(--color-night-bg); color: var(--color-night-text);
    padding: var(--space-sm); display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
    z-index: 1000; box-shadow: var(--shadow-subtle); max-width: 600px; width: 90%; transition: transform var(--transition-slow);
    text-align: center;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { color: var(--color-night-text-muted); font-size: 0.85rem; margin: 0; }
.cookie-actions { display: flex; gap: 12px; justify-content: center; width: 100%;}

/* --- SOLARINO / TARDEO SECTIONS --- */
.horarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.foto-grande-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.pilares-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cocteles-casa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--color-border); }
.cocteles-clasicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--color-border); }
.galeria-grid { display: grid; grid-template-columns: 2fr 2fr; height: 700px; }

/* --- RESPONSIVE POLISH --- */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 90vh; padding-top: 100px; }
    .split-img { min-height: 350px; }
    .section { padding: var(--space-md) 0; } /* 48px padding mobile */
    .cut-layout { flex-direction: column; }
    .cut-diagram { width: 100%; flex-direction: column; gap: var(--space-sm); }
    .cut-label { position: static; padding-left: 0; margin-top: 12px; }
    .cut-label::before { display: none; }
    .cut-photo { width: 100%; }
    .trio-item { padding: var(--space-md) var(--space-sm); }

    /* Tardeo: en tablet, todo a una columna directamente */
    .horarios-grid,
    .foto-grande-grid,
    .pilares-grid,
    .cocteles-casa-grid,
    .cocteles-clasicos-grid,
    .galeria-grid {
        grid-template-columns: 1fr !important;
    }
    .horarios-grid > div,
    .pilares-grid > div,
    .cocteles-casa-grid > div,
    .cocteles-clasicos-grid > div {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border) !important;
    }
    .horarios-grid > div:last-child,
    .pilares-grid > div:last-child,
    .cocteles-casa-grid > div:last-child,
    .cocteles-clasicos-grid > div:last-child {
        border-bottom: none !important;
    }
    .foto-grande-grid { min-height: auto !important; }
    .foto-grande-grid > div:last-child { border-left: none !important; }
    .galeria-grid { height: auto !important; }
    .galeria-grid > div { border-right: none !important; }
    .galeria-grid img { height: 260px !important; }
}



@media (max-width: 600px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .heading-primary { font-size: 2.5rem; }
    .heading-secondary { font-size: 2rem; }
    .trio-grid { grid-template-columns: 1fr; }
    .trio-item {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }
    .trio-item:last-child { border-bottom: none; }
}

/* --- TESTIMONIAL CAROUSEL --- */
.testimonial-carousel {
    position: relative;
    margin-top: var(--space-sm);
    
}

.testimonial-viewport {
    overflow: hidden; /* ahora el recorte se aplica solo aquí */
}


.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: var(--space-sm) 8px 0;
}

.testimonial-quote {
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    min-height: 120px;
}

.testimonial-author {
    color: var(--color-text-muted);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(248,246,242,0.25);
    color: var(--color-night-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.testimonial-arrow:hover {
    background: rgba(248,246,242,0.08);
    border-color: var(--color-night-text);
}
.testimonial-arrow-left { left: -50px; }
.testimonial-arrow-right { right: -50px; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-md);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(248,246,242,0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}
.testimonial-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* --- SECCIÓN KARAOKE --- */
.section-karaoke {
    background: var(--color-night-bg);
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    border-bottom: 1px solid rgba(248,246,242,0.08);
}

.section-karaoke .overline { color: #D4B8AA; }
.section-karaoke .heading-secondary { color: var(--color-night-text); }
.section-karaoke .lead-text { color: var(--color-night-text-muted); }

.karaoke-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    border: 1px solid rgba(248,246,242,0.12);
}

.karaoke-step {
    padding: var(--space-md) var(--space-sm);
    border-right: 1px solid rgba(248,246,242,0.12);
}
.karaoke-step:last-child { border-right: none; }

.karaoke-step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #B08D57;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.karaoke-step h3 {
    color: var(--color-night-text);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.karaoke-step p {
    font-size: 0.85rem;
    color: var(--color-night-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .karaoke-steps { grid-template-columns: 1fr; }
    .karaoke-step { border-right: none; border-bottom: 1px solid rgba(248,246,242,0.12); }
    .karaoke-step:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
    .testimonial-arrow { display: none; } /* en móvil se navega con swipe/dots */
}

/* =========================================================
   LANDING DE RESEÑAS
   ========================================================= */

.reviews-page {
    background: #111;
    min-height: 100vh;
}

.reviews-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 80px;
    overflow: hidden;

    /*
     * Puedes sustituir esta imagen por una foto potente
     * del restaurante que ya tengas dentro de /assets/.
     */
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, .96) 0%,
            rgba(10, 10, 10, .88) 42%,
            rgba(10, 10, 10, .60) 100%
        ),
        url('../assets/img/hero.jpg') center center / cover no-repeat;
}

.reviews-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255,255,255,.04),
            transparent 35%
        );
}

.reviews-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    margin-right: auto;
}

.reviews-eyebrow {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
}

.reviews-container h1 {
    margin: 0;

    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;

    color: #fff;
}

.reviews-container h1 em {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: #d8b273;
}

.reviews-intro {
    max-width: 560px;
    margin: 30px 0 0;

    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.7;
}

.reviews-actions {
    display: grid;
    gap: 14px;
    max-width: 570px;
    margin-top: 42px;
}

.review-button {
    min-height: 90px;

    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 18px;

    padding: 18px 22px;

    text-decoration: none;
    color: #111;
    background: #f5f2eb;
    border: 1px solid rgba(255,255,255,.13);

    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease;
}

.review-button:hover {
    transform: translateY(-3px);
    background: #fff;
}

.review-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 21px;
    font-weight: 700;
}

.google-icon {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

.tripadvisor-icon {
    background: #111;
    color: #fff;
}

.review-button-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-button-copy small {
    margin-bottom: 3px;

    color: #777;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.review-button-copy strong {
    color: #111;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 500;
}

.review-arrow {
    font-size: 28px;
    font-weight: 300;
    transition: transform .2s ease;
}

.review-button:hover .review-arrow {
    transform: translateX(4px);
}

.reviews-thanks {
    margin: 28px 0 0;

    color: rgba(255,255,255,.45);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 15px;
}


/* ==========================
   MÓVIL
   ========================== */

@media (max-width: 700px) {

    .reviews-hero {
        min-height: calc(100vh - 60px);
        align-items: flex-end;

        padding:
            90px
            20px
            max(50px, env(safe-area-inset-bottom));

        background:
            linear-gradient(
                180deg,
                rgba(10,10,10,.50) 0%,
                rgba(10,10,10,.82) 48%,
                rgba(10,10,10,.98) 100%
            ),
            url('../assets/img/hero.jpg') center center / cover no-repeat;
    }

    .reviews-container h1 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .reviews-intro {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.6;
    }

    .reviews-actions {
        margin-top: 30px;
    }

    .review-button {
        min-height: 82px;

        grid-template-columns: 46px 1fr auto;

        gap: 14px;
        padding: 16px;
    }

    .review-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .review-button-copy strong {
        font-size: 20px;
    }

    .review-arrow {
        font-size: 23px;
    }
}
