:root {
--bg: #F5EAD4;
--card: rgba(255,255,255,0.75);
--text: #2f2f2f;
--accent: #a44a2f;
--accent2: #d97757;

--soft: #fff4ed;
--shadow: 0 10px 40px rgba(0,0,0,0.08);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--bg);
color: var(--text);
overflow-x: hidden;
position: relative;
}
.bg-decoration {
position: fixed;
inset: 0;
background:
radial-gradient(circle at top left, rgba(212,132,95,0.18), transparent
30%),
radial-gradient(circle at bottom right, rgba(255,180,120,0.18),
transparent 30%);
z-index: -1;
}
.page {
max-width: 1200px;
margin: auto;
padding: 24px;
}
/* NAVBAR */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 28px;
position: sticky;
top: 20px;

z-index: 1000;
backdrop-filter: blur(14px);
background: rgba(255,255,255,0.65);
border: 1px solid rgba(255,255,255,0.4);
border-radius: 24px;
box-shadow: var(--shadow);
}
.brand img {
height: 80px;
transition: transform .4s ease;
}
.brand img:hover {
transform: scale(1.05) rotate(-2deg);
}
nav {
display: flex;
align-items: center;
gap: 18px;
}
nav a {
text-decoration: none;
color: var(--text);
font-weight: 500;
position: relative;
transition: .3s ease;
}
nav a::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 2px;
background: var(--accent);
transition: .3s ease;
}
nav a:hover::after {
width: 100%;
}
nav a:hover {
color: var(--accent);

}
#lang-select {
border: none;
padding: 10px 14px;
border-radius: 12px;
background: var(--accent);
color: white;
cursor: pointer;
font-weight: 600;
}
/* HERO */
.hero {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
align-items: center;
gap: 60px;
padding: 90px 0;
}
.tag {
display: inline-block;
background: rgba(164,74,47,0.1);
color: var(--accent);
padding: 10px 18px;
border-radius: 999px;
font-size: .9rem;
margin-bottom: 18px;
}
.subtitle {
letter-spacing: 4px;
color: var(--accent);
margin-bottom: 10px;
}
.hero-text h1 {
font-size: clamp(3rem, 6vw, 5rem);
line-height: 1;
margin-bottom: 24px;
}
.description {
font-size: 1.05rem;
line-height: 1.9;
color: #5a5a5a;

margin-bottom: 30px;
}
.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.cta,
.secondary-btn {
padding: 16px 28px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
transition: .35s ease;
}
.cta {
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: white;
box-shadow: 0 12px 24px rgba(164,74,47,0.3);
}
.secondary-btn {
border: 2px solid var(--accent);
color: var(--accent);
}
.cta:hover,
.secondary-btn:hover {
transform: translateY(-5px);
}
.hero-image {
position: relative;
}
.image-placeholder {
height: 480px;
border-radius: 32px;
background:
linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
border: 2px dashed rgba(164,74,47,0.4);
display: flex;
align-items: center;
justify-content: center;
text-align: center;

color: var(--accent);
font-weight: 600;
backdrop-filter: blur(12px);
box-shadow: var(--shadow);
}
.image-placeholder.small {
height: 320px;
}
/* INFO */
.info-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin-bottom: 80px;
}
.glass {
background: rgba(255,255,255,0.55);
backdrop-filter: blur(14px);
border: 1px solid rgba(255,255,255,0.3);
}
.info-card {
padding: 35px;
border-radius: 28px;
box-shadow: var(--shadow);
transition: .4s ease;
}
.info-card:hover {
transform: translateY(-8px);
}
.info-card h2 {
margin-bottom: 14px;
color: var(--accent);
}
/* CARDS */
.section-title {
text-align: center;
margin-bottom: 40px;
font-size: 2.2rem;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 28px;
margin-bottom: 90px;
}

/* ========================= */
/* HORIZONTAL SERVICES */
/* ========================= */

.services-grid{

    display:flex;

    flex-direction:column;

    gap:40px;

    width:100%;
}

/* CARD */

.service-card{

    position:relative;

    width:100%;

    min-height:420px;

    border-radius:40px;

    overflow:hidden;

    display:flex;
    align-items:flex-end;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.2);

    transition:.6s ease;

    cursor:pointer;
}

/* HOVER */

.service-card:hover{

    transform:
    translateY(-10px)
    scale(1.01);
}

.service-card:hover{

    transform:
    translateY(-10px)
    scale(1.01);
}

/* IMAGE */

.service-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

.service-card:hover .service-image{

    transform:scale(1.08);
}

.service-card:hover .service-image{

    transform:scale(1.08);
}

/* OVERLAY */

.service-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.15)
    );
}

/* CONTENT */

.service-content{

    position:relative;

    z-index:2;

    max-width:650px;

    padding:60px;

    color:white;
}

.service-content h3{

    font-size:clamp(2.5rem,5vw,4rem);

    margin-bottom:20px;

    font-weight:700;
}

.service-content p{

    font-size:1.1rem;

    line-height:1.9;

    color:rgba(255,255,255,0.92);
}

@media(max-width:768px){

    .service-card{

        min-height:320px;
    }

    .service-content{

        padding:30px;
    }

    .service-content h3{

        font-size:2rem;
    }

}

.reveal{

    opacity:0;

    transform:
    translateY(80px)
    scale(.96);

    transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{

    opacity:1;

    transform:
    translateY(0)
    scale(1);
}

.card {
background: white;
border-radius: 28px;
padding: 36px;
text-align: center;
box-shadow: var(--shadow);
transition: .4s ease;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
width: 100%;
height: 6px;
top: 0;
left: 0;
background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.card:hover {
transform: translateY(-10px) scale(1.02);
}
.card-icon {
font-size: 3rem;
margin-bottom: 20px;
}
.card h3 {
margin-bottom: 14px;
color: var(--accent);
}
/* GALLERY */
.gallery-section {
margin-bottom: 90px;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.gallery-item {
height: 240px;
border-radius: 24px;
background: rgba(255,255,255,0.55);
border: 2px dashed rgba(164,74,47,0.35);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--accent);
transition: .4s ease;
backdrop-filter: blur(8px);
}
.gallery-item:hover {
transform: scale(1.03);
}
/* ABOUT */
.about-card {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
align-items: center;
background: white;
padding: 40px;
border-radius: 30px;
box-shadow: var(--shadow);
}
.about-text h2 {
margin-bottom: 20px;
font-size: 2rem;
color: var(--accent);
}
.about-text p {
margin-bottom: 18px;
line-height: 1.9;
}

/* FOOTER */
footer {
margin-top: 100px;
text-align: center;
padding: 50px 20px;
color: #666;
}
footer h3 {
color: var(--accent);
margin-bottom: 10px;
}
/* ANIMATIONS */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 1s ease;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.floating {
animation: floating 5s ease-in-out infinite;
}
@keyframes floating {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-12px);
}
100% {
transform: translateY(0px);
}
}
/* RESPONSIVE */

@media (max-width: 768px) {
.navbar {
flex-direction: column;
gap: 20px;
}
nav {
flex-wrap: wrap;
justify-content: center;
}
.hero {
padding-top: 60px;
}
.hero-text {
text-align: center;
}
.hero-buttons {
justify-content: center;
}
.image-placeholder {
height: 320px;
}
}

.whatsapp-float {
position: fixed;
width: 65px;
height: 65px;
bottom: 30px;
right: 30px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
z-index: 9999;
transition: .3s ease;
animation: pulse 2s infinite;
}
.whatsapp-float img {
width: 34px;
}
.whatsapp-float:hover {
transform: scale(1.12);
}
@keyframes pulse {
0% {

box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
}
70% {
box-shadow: 0 0 0 18px rgba(37,211,102,0);
}
100% {
box-shadow: 0 0 0 0 rgba(37,211,102,0);
}
}

.carousel-section {
margin: 100px 0;
}
.carousel-container {
overflow: hidden;

border-radius: 28px;
}
.carousel-track {
display: flex;
width: max-content;
animation: scrollCarousel 18s linear infinite;
gap: 24px;
}
.carousel-slide {
min-width: 320px;
height: 240px;
border-radius: 24px;
background: rgba(255,255,255,0.7);
border: 2px dashed rgba(164,74,47,0.35);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--accent);
}
@keyframes scrollCarousel {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}


.theme-toggle {
position: fixed;
top: 25px;
right: 25px;
width: 55px;
height: 55px;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 1.3rem;
background: white;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
z-index: 9999;
}
body.dark-mode {
background: #1B263B;
color: #f5f5f5;
}
body.dark-mode .card,
body.dark-mode .about-card,
body.dark-mode .info-card,
body.dark-mode .navbar {
background: #1B263B;
color: white;
}

body.dark-mode nav a,
body.dark-mode p,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
color: white;
}


.menu-hero {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
align-items: center;
gap: 60px;
padding: 90px 0;
}
.hero-content h1 {
font-size: clamp(3rem, 6vw, 5rem);
margin: 20px 0;
}
.hero-content p {
line-height: 1.9;
margin-bottom: 30px;
color: #666;
}
.hero-food-image {
position: relative;
}

.featured-section {
margin-bottom: 80px;
}
.featured-card {
padding: 40px;
border-radius: 30px;
display: flex;
justify-content: space-between;
gap: 30px;
align-items: center;
box-shadow: var(--shadow);
}
.featured-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
max-width: 620px;
min-width: 0;
text-align: left;
}
.featured-label {
color: var(--accent);
font-weight: 700;
letter-spacing: 2px;
display: inline-flex;
width: fit-content;
margin-bottom: 10px;
padding: 4px 8px;
background: rgba(255,255,255,0.58);
border: 1px solid rgba(198,40,88,0.24);
}
.featured-copy h2 {
margin: 0 0 4px;
font-size: clamp(1.45rem, 2.4vw, 2.2rem);
line-height: 1.16;
}
.featured-copy h1 {
margin: 0 0 16px;
font-size: clamp(2.45rem, 5vw, 4.9rem);
line-height: .98;
overflow-wrap: anywhere;
}
.featured-copy p {
max-width: 590px;
margin: 0;
font-size: 1.05rem;
line-height: 1.85;
}
.mini-image {
width: 180px;
height: 180px;
border-radius: 24px;
border: 2px dashed rgba(164,74,47,0.35);
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
font-weight: 600;
}
.menu-section {
margin-bottom: 100px;
}
.menu-filters {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
margin-bottom: 50px;
}
.filter-btn {
border: none;
padding: 14px 24px;
border-radius: 999px;

cursor: pointer;
background: white;
font-weight: 600;
transition: .35s ease;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.filter-btn.active,
.filter-btn:hover {
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: white;
transform: translateY(-4px);
}
.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}
.menu-item-card {
background: white;
border-radius: 28px;
overflow: hidden;
box-shadow: var(--shadow);
transition: .4s ease;
}
.menu-item-card:hover {
transform: translateY(-10px);
}
.menu-image-placeholder {
height: 240px;
background: rgba(255,255,255,0.65);
border-bottom: 2px dashed rgba(164,74,47,0.25);
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
font-weight: 600;
}
.item-details {
padding: 28px;
}
.item-top {

display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
margin-bottom: 14px;
}
.item-title {
font-size: 1.3rem;
color: var(--accent);
}
.item-price {
font-weight: 700;
font-size: 1.1rem;
}
.item-desc {
line-height: 1.8;
color: #666;
margin-bottom: 22px;
}
.add-btn {
width: 100%;
border: none;
padding: 14px;
border-radius: 16px;
cursor: pointer;
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: white;
font-weight: 600;
transition: .3s ease;
}
.add-btn:hover {
transform: scale(1.03);
}
.hidden {
display: none;
}
.reservation-section {
margin: 100px 0;
}
.reservation-card {

background: white;
border-radius: 32px;
padding: 50px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
box-shadow: var(--shadow);
}
.reservation-form {
display: flex;
flex-direction: column;
gap: 18px;
}
.reservation-form input {
padding: 16px;
border-radius: 14px;
border: 1px solid #ddd;
font-family: inherit;
font-size: 1rem;
}
.toast {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(100px);
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: white;
padding: 16px 24px;
border-radius: 999px;
font-weight: 600;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
opacity: 0;
transition: .4s ease;
z-index: 9999;
}
.toast.show {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
@media(max-width:768px){
.featured-card,
.reservation-card {

padding: 30px;
}
.mini-image {
width: 100%;
}
}

/* ========================= */
/* NOSOTROS */
/* ========================= */

.about-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 60px;
    padding: 90px 0;
}

.about-hero-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.about-hero-text p {
    line-height: 1.9;
    color: #666;
    font-size: 1.05rem;
}

.about-hero-image {
    position: relative;
}

/* HISTORIA */

.history-section {
    margin: 100px 0;
}

.history-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 50px;

    background: white;
    border-radius: 32px;
    padding: 45px;

    box-shadow: var(--shadow);
}

.section-mini-title {
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
}

.history-text h2 {
    margin: 20px 0;
    font-size: 2.5rem;
}

.history-text p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* FILOSOFIA INSTITUCIONAL */

.institution-section {
    margin-bottom: 100px;
    scroll-margin-top: 150px;
}

.institution-header {
    max-width: 780px;
    margin-bottom: 34px;
}

.institution-header h2 {
    margin: 18px 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.institution-header p {
    line-height: 1.9;
    color: #666;
}

.institution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.institution-card,
.institution-objective {
    background: white;
    border-radius: 28px;
    padding: 38px;
    box-shadow: var(--shadow);
}

.institution-card span,
.institution-objective span {
    display: inline-block;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.institution-card h3 {
    color: var(--accent);
    margin-bottom: 16px;
}

.institution-card p,
.institution-objective p {
    color: #666;
    line-height: 1.9;
}

.institution-objective {
    margin-top: 28px;
}

/* VALORES */

.values-section {
    margin-bottom: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.value-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    text-align: center;

    box-shadow: var(--shadow);

    transition: .4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--accent);
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* EXPERIENCIA */

.experience-section {
    margin-bottom: 100px;
}

.experience-card {
    border-radius: 32px;
    padding: 50px;

    box-shadow: var(--shadow);
}

.experience-content {
    margin-bottom: 40px;
}

.experience-content h2 {
    margin: 20px 0;
    font-size: 2.5rem;
}

.experience-content p {
    line-height: 1.9;
    color: #666;
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.gallery-mini {
    height: 220px;

    border-radius: 24px;

    background: rgba(255,255,255,0.6);

    border: 2px dashed rgba(164,74,47,0.3);

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

    color: var(--accent);

    font-weight: 600;

    transition: .4s ease;
}

.gallery-mini:hover {
    transform: scale(1.03);
}

/* RESPONSIVE */

@media(max-width:768px){

    .history-card,
    .experience-card {
        padding: 30px;
    }

    .history-text h2,
    .experience-content h2 {
        font-size: 2rem;
    }

}

/* ========================= */
/* CONTACTO */
/* ========================= */

.contact-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 60px;

    padding: 90px 0;
}

.contact-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;

    margin: 20px 0;
}

.contact-text p {
    color: #666;
    line-height: 1.9;
}

.contact-section {
    margin-bottom: 100px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 40px;

    padding: 50px;
    border-radius: 32px;

    box-shadow: var(--shadow);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 18px;

    background: rgba(255,255,255,0.6);

    padding: 22px;
    border-radius: 22px;

    margin-bottom: 22px;

    transition: .4s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card span {
    font-size: 1.8rem;
}

.info-card h4 {
    margin-bottom: 6px;
    color: var(--accent);
}

.info-card p {
    color: #666;
}

/* FORM */

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;

    padding: 18px;

    border-radius: 18px;

    border: none;

    background: rgba(255,255,255,0.7);

    font-family: inherit;
    font-size: 1rem;

    outline: none;

    transition: .3s ease;
}

.input-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 54px;
}

.input-group select option {
    background: #101018;
    color: #fff;
}

.input-group input[readonly] {
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.9;
}

.date-field input[type="date"] {
    padding-right: 54px;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

.date-field::after {
    content: "📅";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
    line-height: 1;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0 0 0 auto;
    cursor: pointer;
    opacity: 0;
    width: 58px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.input-group:has(select)::after {
    content: "⌄";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-54%);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    transform: scale(1.01);

    box-shadow: 0 0 0 3px rgba(164,74,47,0.2);
}

.btn-primary {
    border: none;

    padding: 18px 24px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #a44a2f,
        #d17b49
    );

    color: white;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: .4s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

/* MAPA */

.map-section {
    margin-bottom: 100px;
}

.map-card {
    background: white;

    border-radius: 32px;

    padding: 40px;

    box-shadow: var(--shadow);
}

.map-card h2 {
    margin-bottom: 30px;
}

.map-placeholder {
    height: 420px;

    border-radius: 24px;

    background: rgba(164,74,47,0.08);

    border: 2px dashed rgba(164,74,47,0.3);

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

    color: var(--accent);

    font-weight: 600;
}

/* REDES */

.social-section {
    margin-bottom: 100px;
}

.contact-social-section {
    margin-bottom: 58px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 24px;
}

.social-card {
    background: white;

    border-radius: 24px;

    padding: 35px;

    text-decoration: none;

    color: var(--text);

    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    box-shadow: var(--shadow);

    transition: .4s ease;
}

.social-card span {
    font-size: 1.5rem;
}

.social-card .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.social-card .social-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-card .social-icon-facebook {
    background: #1877f2;
}

.social-card .social-icon-instagram {
    background: transparent;
    border-radius: 12px;
}

.social-card .social-icon-whatsapp {
    background: #25d366;
}

.social-card .social-icon-instagram svg {
    width: 36px;
    height: 36px;
    fill: none;
}

.social-card:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */

@media(max-width:768px){

    .contact-container,
    .map-card {
        padding: 28px;
    }

}

/* MAPA REAL */

.map-container {
    width: 100%;
    height: 420px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;

    border: none;

    filter: grayscale(0.1) contrast(1.05);

    transition: .4s ease;
}

.map-container iframe:hover {
    transform: scale(1.01);
}

/* ========================= */
/* MENU PDF VISUAL */
/* ========================= */

.menu-showcase{
    padding:80px 0;
}

.menu-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.menu-header h2{
    font-size:clamp(2.5rem,5vw,4rem);
    margin:20px 0;
}

.menu-header p{
    color:#666;
    line-height:1.8;
}

.menu-gallery{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.menu-image-card{
    position:relative;

    width:100%;

    border-radius:32px;

    overflow:hidden;

    background:white;

    box-shadow:var(--shadow);

    transition:.5s ease;
}

.menu-image-card:hover{
    transform:translateY(-10px);
}

.menu-image-card img{
    width:100%;

    display:block;

    object-fit:cover;

    transition:.5s ease;
}

.menu-image-card img:hover{
    transform:scale(1.02);
}

.menu-download{
    display:flex;
    justify-content:center;

    margin-top:50px;
}

/* ========================= */
/* PARA LAS IMAGENES */
/* ========================= */

.featured-image{
    width:80%;
    height:80%;

    object-fit:cover;

    border-radius:32px;

    box-shadow:var(--shadow);

    transition:.5s ease;
}

.featured-image:hover{
    transform:scale(1.02);
}

/* ========================= */
/* HERO IMAGE PREMIUM */
/* ========================= */

.hero-image-container{

    position:relative;

    width:120%;
    height:540px;

    overflow:hidden;
    border-radius:60px;
    box-shadow:
    0 25px 50px rgba(0,0,0,0.18);
    animation:heroFloating 6s ease-in-out infinite;
}

.hero-image{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.hero-image-container:hover .hero-image{

    transform:scale(1.05) rotate(1deg);
}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
}

/* FLOATING */

@keyframes heroFloating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* PLATILLO CHEF */

.chef-image{
    width:250px;
    height:250px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:var(--shadow);

    transition:.4s ease;
}

.chef-image:hover{
    transform:scale(1.05) rotate(1deg);
}

/* VAPOR */



.steam{
    position:absolute;

    width:30px;
    height:30px;

    background:rgba(255,255,255,0.4);

    border-radius:50%;

    filter:blur(10px);

    animation:steamAnimation 4s infinite ease-in-out;
}

.steam1{
    left:40px;
    top:20px;
}

.steam2{
    left:80px;
    top:10px;

    animation-delay:1s;
}

.steam3{
    left:120px;
    top:25px;

    animation-delay:2s;
}

@keyframes steamAnimation{

    0%{
        transform:translateY(0) scale(1);
        opacity:0;
    }

    50%{
        opacity:.5;
    }

    100%{
        transform:translateY(-60px) scale(2);
        opacity:0;
    }

}

.chef-image{
    position:relative;

    z-index:2;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.2),
    0 0 40px rgba(209,123,73,0.35);
}

.chef-image-container{
    animation:floatingFood 5s ease-in-out infinite;
}

@keyframes floatingFood{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

.chef-image-container::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:50%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    z-index:3;

    animation:shimmer 5s infinite;
}

@keyframes shimmer{

    100%{
        left:200%;
    }

}

.reveal{
    opacity:0;
    transform:translateY(80px);

    transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ========================= */
/* CONTACT HERO IMAGE */
/* ========================= */

.contact-hero-image-container{

    position:relative;

    width:100%;
    height:650px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.2),
    0 0 50px rgba(209,123,73,0.15);

    animation:contactFloating 6s ease-in-out infinite;
}

/* IMAGE */

.contact-hero-image{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

.contact-hero-image-container:hover .contact-hero-image{

    transform:scale(1.08);
}

/* OVERLAY */

.contact-hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
}

/* FLOATING */

@keyframes contactFloating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}
@media(max-width:768px){

    .contact-hero-image-container{

        height:340px;
    }

}

/* ========================= */
/* HERO VIDEO */
/* ========================= */

.hero-video-container{

    position:relative;

    width:100%;
    height:700px;

    overflow:hidden;

    border-radius:40px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.2);

    animation:heroFloating 6s ease-in-out infinite;
}

.hero-video{

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-video-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.08)
    );
}

.sound-btn{

    position:absolute;

    bottom:20px;
    right:20px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.2);

    backdrop-filter:blur(10px);

    color:white;

    font-size:1.2rem;

    cursor:pointer;

    z-index:10;

    transition:.4s ease;
}

.sound-btn:hover{

    transform:scale(1.1);

    background:rgba(255,255,255,0.3);
}

/* ========================= */
/* EXPERIENCE SECTION */
/* ========================= */

.experience-section{

    display:grid;

    grid-template-columns:
    1.2fr
    1fr;

    gap:40px;

    align-items:center;

    margin-top:100px;
}

/* ========================= */
/* VIDEO */
/* ========================= */

.experience-video-container{

    position:relative;

    width:80%;
    height:700px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.2);

    animation:floatingVideo 6s ease-in-out infinite;
}

.experience-video{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.experience-video-container:hover .experience-video{

    transform:scale(1.05);
}

/* OVERLAY */

.experience-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.05)
    );
}

/* ========================= */
/* CARDS */
/* ========================= */

.experience-cards{

    display:flex;

    flex-direction:column;

    gap:30px;
}

.experience-card{

    background:white;

    padding:45px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:.5s ease;
}

.experience-card:hover{

    transform:
    translateY(-10px)
    scale(1.02);
}

.experience-card h3{

    font-size:2.2rem;

    color:var(--accent);

    margin-bottom:20px;

    line-height:1.2;
}

.experience-card p{

    line-height:1.9;

    color:#666;

    font-size:1.05rem;
}

/* FLOATING */

@keyframes floatingVideo{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

@media(max-width:992px){

    .experience-section{

        grid-template-columns:1fr;
    }

    .experience-video-container{

        height:400px;
    }

}

.sound-btn{

    position:absolute;

    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.2);

    backdrop-filter:blur(10px);

    color:white;

    font-size:1.3rem;

    cursor:pointer;

    z-index:20;

    transition:.4s ease;
}

.sound-btn:hover{

    transform:scale(1.1);

    background:rgba(255,255,255,0.3);
}

/* ========================= */
/* CAROUSEL */
/* ========================= */

.carousel-container{

    overflow:hidden;

    margin-top:40px;
}

.carousel-track{

    display:flex;

    gap:25px;

    transition:transform .6s ease;
}

/* SLIDE */

.carousel-slide{

    min-width:320px;
    height:220px;

    border-radius:25px;

    overflow:hidden;

    position:relative;

    flex-shrink:0;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.15);

    cursor:pointer;
}

/* IMAGEN */

.carousel-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

/* HOVER */

.carousel-slide:hover img{

    transform:scale(1.1);
}

/* OVERLAY */

.carousel-slide::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.3),
        transparent
    );
}

/* ========================= */
/* ABOUT IMAGE */
/* ========================= */

.about-image-container{

    position:relative;

    width:100%;
    height:320px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.15);

    transition:.6s ease;

    animation:aboutFloat 6s ease-in-out infinite;
}

/* IMAGEN */

.about-img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

/* HOVER */

.about-image-container:hover .about-img{

    transform:scale(1.08);
}

/* OVERLAY */

.about-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
}

/* ANIMACIÓN */

@keyframes aboutFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

.about-link{

    display:block;
}

.about-link:hover{

    cursor:pointer;
}
.about-link:hover .about-img{

    transform:scale(1.1);
}

/* ========================= */
/* ABOUT BUTTON */
/* ========================= */

.about-btn{

    display:inline-block;

    margin-top:25px;

    padding:14px 28px;

    background:var(--accent);

    color:white;

    font-weight:600;

    border-radius:30px;

    text-decoration:none;

    transition:.4s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.15);
}

/* HOVER */

.about-btn:hover{

    transform:
    translateY(-3px)
    scale(1.05);

    background:#b85c35; /* un tono más oscuro */

    box-shadow:
    0 15px 35px rgba(0,0,0,0.2);
}

.about-btn{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ========================= */
/* HISTORY IMAGE */
/* ========================= */

.history-image-container{

    position:relative;

    width:100%;
    height:350px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.15);

    transition:.6s ease;

    animation:historyFloat 6s ease-in-out infinite;
}

/* IMAGEN */

.history-img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

/* HOVER */

.history-image-container:hover .history-img{

    transform:scale(1.08);
}

/* OVERLAY */

.history-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.05)
    );
}

/* ANIMACIÓN */

@keyframes historyFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ========================= */
/* EXPERIENCE BLOCK */
/* ========================= */

.experience-card{

    display:grid;

    grid-template-columns: 1fr 1fr;

    gap:40px;

    align-items:center;

    background:#f5f5f5;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.1);
}

/* TEXTO */

.experience-text h2{

    font-size:2.5rem;

    margin:20px 0;

}

.experience-text p{

    color:#666;

    line-height:1.8;
}

.mini-tag{

    background:#f0d6c7;

    padding:6px 12px;

    border-radius:20px;

    font-size:.8rem;

    font-weight:600;

}

/* ========================= */
/* GALERÍA */
/* ========================= */

.experience-gallery{

    display:grid;

    grid-template-columns: 1fr 1fr;

    gap:20px;
}

/* IMÁGENES */

.gallery-item{

    width:100%;
    height:140px;

    border-radius:20px;

    overflow:hidden;

    position:relative;
}

.gallery-item.large{

    grid-column: span 2;

    height:180px;
}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

@media(max-width:768px){

    .experience-card{

        grid-template-columns:1fr;
    }

    .experience-gallery{

        grid-template-columns:1fr 1fr;
    }

}

.experience-section{

    display:flex;

    justify-content:flex-end;
}

.experience-card{

    width:750px; /* ajusta a tu gusto */

}

/* ========================= */
/* SLIDE RIGHT ANIMATION */
/* ========================= */

.slide-right{

    opacity:0;

    transform:
    translateX(120px);

    transition:
    opacity 1s ease,
    transform 1s ease;
}

/* CUANDO APARECE */

.slide-right.active{

    opacity:1;

    transform:
    translateX(0);
}

.slide-right{

    opacity:0;

    filter:blur(10px);

    transform:translateX(120px);

    transition:1s ease;
}

.slide-right.active{

    opacity:1;

    filter:blur(0);

    transform:translateX(0);
}

/* ========================= */
/* CHEFS PAGE */
/* ========================= */

:root{

    --bg:#efe3d1;

    --card:#f8f4ee;

    --accent:#c46b42;

    --text:#242424;

    --gray:#666;
}

body{

    background:var(--bg);

    color:var(--text);

    font-family:sans-serif;

    overflow-x:hidden;
}

/* ========================= */
/* HERO */
/* ========================= */

.chefs-hero{

    min-height:90vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    padding:100px 8%;
}

/* TEXT */

.chefs-hero-text{

    animation:slideLeft 1.2s ease;
}

.hero-tag{

    display:inline-block;

    background:#e8d3bf;

    padding:12px 22px;

    border-radius:30px;

    color:var(--accent);

    font-weight:600;

    margin-bottom:30px;
}

.chefs-hero-text h1{

    font-size:clamp(4rem,9vw,7rem);

    line-height:0.95;

    margin-bottom:30px;
}

.chefs-hero-text p{

    font-size:1.15rem;

    line-height:1.9;

    color:var(--gray);

    max-width:600px;
}

/* HERO IMAGE */

.chefs-hero-image{

    position:relative;

    height:650px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.2);

    animation:floatingHero 6s ease-in-out infinite;
}

.chefs-hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

.chefs-hero-image:hover img{

    transform:scale(1.08);
}

.chefs-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.3),
        transparent
    );
}

/* ========================= */
/* SECTION */
/* ========================= */

.chefs-section{

    padding:120px 8%;
}

/* TITLE */

.section-header{

    margin-bottom:70px;
}

.section-header h2{

    font-size:4rem;

    margin-bottom:20px;
}

.section-header p{

    color:var(--gray);

    font-size:1.1rem;

    max-width:700px;

    line-height:1.8;
}

.section-header p {
    color: rgba(255, 248, 236, 0.82);
    font-size: 1.18rem;
    font-weight: 500;
    max-width: 780px;
}

/* ========================= */
/* CHEFS GRID */
/* ========================= */

.chefs-grid{

    display:flex;

    flex-direction:column;

    gap:50px;
}

/* CARD */

.chef-card{

    position:relative;

    display:grid;

    grid-template-columns:
    420px
    1fr;

    gap:50px;

    align-items:center;

    background:var(--card);

    padding:40px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    transition:.6s ease;

    opacity:0;

    transform:
    translateX(100px);

    filter:blur(10px);
}

/* ACTIVE */

.chef-card.active{

    opacity:1;

    transform:translateX(0);

    filter:blur(0);
}

/* HOVER */

.chef-card:hover{

    transform:
    translateY(-10px)
    scale(1.01);
}

/* IMAGE */

.chef-image{

    position:relative;

    height:420px;

    border-radius:30px;

    overflow:hidden;
}

.chef-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;
}

.chef-card:hover .chef-image img{

    transform:scale(1.08);
}

/* IMAGE OVERLAY */

.chef-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        transparent
    );
}

/* CONTENT */

.chef-content h3{

    font-size:3rem;

    margin-bottom:15px;
}

.chef-role{

    display:inline-block;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.chef-content p{

    color:var(--gray);

    line-height:2;

    margin-bottom:30px;
}

/* SPECIALTIES */

.specialties{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.specialties span{

    background:#ead7c6;

    color:var(--accent);

    padding:12px 20px;

    border-radius:30px;

    font-weight:600;

    transition:.4s ease;
}

.specialties span:hover{

    transform:translateY(-3px);

    background:var(--accent);

    color:white;
}

/* ========================= */
/* QUOTE SECTION */
/* ========================= */

.quote-section{

    padding:120px 8%;
}

.quote-card{

    position:relative;

    background:white;

    padding:80px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

    text-align:center;
}

.quote-card h2{

    font-size:3rem;

    line-height:1.4;

    max-width:900px;

    margin:auto;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes floatingHero{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-80px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .chefs-hero{

        grid-template-columns:1fr;
    }

    .chef-card{

        grid-template-columns:1fr;
    }

    .chef-image{

        height:350px;
    }

    .chefs-hero-image{

        height:450px;
    }

}

@media(max-width:768px){

    .chefs-hero-text h1{

        font-size:4rem;
    }

    .section-header h2{

        font-size:3rem;
    }

    .chef-content h3{

        font-size:2.3rem;
    }

    .quote-card{

        padding:50px 30px;
    }

    .quote-card h2{

        font-size:2rem;
    }

}

/* ========================= */
/* CHEFS HERO VIDEO */
/* ========================= */

.chefs-hero-video-container{

    position:relative;

    height:650px;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.2);

    animation:floatingHero 6s ease-in-out infinite;
}

.chefs-hero-video{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* ========================= */
/* RESPONSIVE MOBILE */
/* ========================= */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:2rem;

    color:var(--text);

    cursor:pointer;

    z-index:9999;
}

/* ========================= */
/* TABLETS */
/* ========================= */

@media(max-width:992px){

    /* HERO */

    .hero{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;
    }

    .hero-text{

        order:2;
    }

    .hero-image-container{

        height:450px;
    }

    /* EXPERIENCE */

    .experience-section{

        grid-template-columns:1fr;

        gap:30px;
    }

    /* SERVICES */

    .services-grid{

        grid-template-columns:1fr;
    }

    /* ABOUT */

    .about-card{

        grid-template-columns:1fr;
    }

    /* CAROUSEL */

    .carousel-slide{

        min-width:300px;
    }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

    body{

        overflow-x:hidden;
    }

    /* NAVBAR */

    .navbar{

        padding:20px;
    }

    .menu-toggle{

        display:block;
    }

    .navbar nav{

        position:fixed;

        top:0;

        right:-100%;

        width:280px;

        height:100vh;

        background:rgba(255,255,255,0.95);

        backdrop-filter:blur(20px);

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:30px;

        transition:.5s ease;

        z-index:999;
    }

    /* ACTIVE */

    .navbar nav.active{

        right:0;
    }

    .navbar nav a{

        font-size:1.2rem;
    }

    /* HERO */

    .hero{

        padding-top:50px;
    }

    .hero h1{

        font-size:4rem;
    }

    .description{

        font-size:1rem;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .hero-image-container{

        height:350px;
    }

    /* VIDEO */

    .hero-video-container{

        height:300px;
    }

    /* EXPERIENCE */

    .experience-cards{

        grid-template-columns:1fr;
    }

    /* SECTION TITLES */

    .section-title{

        font-size:2.5rem;
    }

    /* ABOUT */

    .about-image-container{

        height:280px;
    }

    /* FOOTER */

    footer{

        text-align:center;
    }

}

/* ========================= */
/* AJUSTE RESPONSIVE FINAL */
/* ========================= */

html,
body {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
}

.page {
    width: min(100%, 1200px);
}

.hero-image-container,
.hero-video-container,
.experience-video-container,
.contact-hero-image-container,
.chefs-hero-video-container,
.history-image-container,
.about-image-container,
.menu-image-card,
.service-card,
.chef-card,
.featured-card,
.history-card,
.contact-container,
.map-card,
.quote-card {
    max-width: 100%;
}

.hero-image-container {
    width: 100%;
}

.home-experience-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    justify-content: initial;
    align-items: center;
}

.home-experience-section .experience-video-container {
    width: 100%;
}

.home-experience-section .experience-card {
    width: auto;
    display: block;
    background: white;
}

.tepeapulco-home-experience {
    margin-top: 70px;
}

.about-experience-section {
    display: block;
}

.about-experience-section .experience-card {
    width: 100%;
    max-width: none;
}

.menu-image-card img,
.service-image,
.history-img,
.about-img,
.contact-hero-image,
.hero-image,
.featured-image,
.chef-image img,
.gallery-item img {
    display: block;
}

@media(max-width:768px){
    .page {
        padding: 14px;
        overflow: visible;
    }

    .navbar {
        top: 10px;
        padding: 12px 14px;
        border-radius: 18px;
        gap: 12px;
    }

    .brand img {
        height: 56px;
        max-width: 46vw;
        object-fit: contain;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        line-height: 1;
    }

    .navbar nav {
        width: min(84vw, 320px);
        padding: 84px 22px 28px;
        justify-content: flex-start;
        align-items: stretch;
        gap: 16px;
        overflow-y: auto;
    }

    .navbar nav a,
    #lang-select {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero,
    .menu-hero,
    .about-hero,
    .contact-hero,
    .chefs-hero {
        grid-template-columns: 1fr !important;
        min-height: auto;
        padding: 42px 0 !important;
        gap: 24px;
        text-align: center;
    }

    .hero-text {
        order: initial;
    }

    .hero h1,
    .menu-hero h1,
    .about-hero h1,
    .contact-hero h1,
    .chefs-hero-text h1 {
        font-size: clamp(2.2rem, 12vw, 3.35rem) !important;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .description,
    .hero-content p,
    .about-hero-text p,
    .contact-text p,
    .chefs-hero-text p {
        font-size: .98rem;
        line-height: 1.7;
    }

    .tag {
        max-width: 100%;
        line-height: 1.35;
    }

    .hero-buttons,
    .menu-download {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cta,
    .secondary-btn,
    .btn-primary,
    .about-btn {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-image-container,
    .hero-video-container,
    .contact-hero-image-container,
    .chefs-hero-video-container {
        width: 100%;
        height: clamp(260px, 70vw, 360px) !important;
        border-radius: 24px;
    }

    .featured-section,
    .menu-showcase,
    .history-section,
    .values-section,
    .contact-section,
    .map-section,
    .social-section,
    .carousel-section,
    .about-section,
    .quote-section {
        padding: 36px 0;
    }

    .featured-card,
    .history-card,
    .contact-container,
    .about-card,
    .chef-card,
    .about-experience-section .experience-card {
        grid-template-columns: 1fr !important;
        width: 100%;
        padding: 22px !important;
        border-radius: 22px;
    }

    .home-experience-section,
    .about-experience-section {
        display: grid;
        grid-template-columns: 1fr !important;
        justify-content: initial;
        gap: 22px;
        margin-top: 40px;
    }

    .home-experience-section .experience-video-container {
        width: 100%;
        height: clamp(260px, 76vw, 360px) !important;
        order: 1;
        border-radius: 24px;
    }

    .home-experience-section .experience-cards {
        width: 100%;
        order: 2;
        gap: 16px;
    }

    .home-experience-section .experience-card {
        width: 100%;
        display: block;
        padding: 22px;
    }

    .home-experience-section .experience-card h3 {
        font-size: 1.45rem;
    }

    .about-experience-section .experience-card {
        width: 100%;
    }

    .slide-right {
        transform: translateY(24px);
        filter: none;
    }

    .slide-right.active {
        transform: translateY(0);
    }

    .experience-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item,
    .gallery-item.large {
        grid-column: auto;
        height: 180px;
    }

    .services-grid,
    .values-grid,
    .social-grid,
    .grid,
    .menu-gallery,
    .chefs-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .service-card {
        min-height: 300px;
        border-radius: 22px;
    }

    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-track {
        gap: 16px;
        width: max-content;
        animation: none !important;
        transform: none !important;
        transition: none;
        touch-action: pan-x;
    }

    .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .carousel-slide {
        flex: 0 0 min(78vw, 300px);
        min-width: min(78vw, 300px);
        height: 200px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .menu-image-card {
        border-radius: 18px;
    }

    .featured-image,
    .chef-image {
        width: 100%;
        height: auto;
    }

    .menu-header h2,
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
        line-height: 1.15;
    }

    .map-container {
        height: 320px;
        border-radius: 18px;
    }

    .contact-info .info-card {
        padding: 20px;
        align-items: flex-start;
        overflow-wrap: anywhere;
    }

    .input-group input,
    .input-group textarea {
        width: 100%;
        font-size: 16px;
    }

    footer {
        margin-top: 42px;
        padding-inline: 12px;
    }
}

@media(max-width:768px){
    .hero-video-container,
    .experience-video-container,
    .chefs-hero-video-container {
        animation: none !important;
    }

    .sound-btn {
        touch-action: manipulation;
        pointer-events: auto;
        z-index: 20;
    }
}

/* ========================= */
/* FLAT BLACK THEME */
/* ========================= */

*,
*::before,
*::after {
    background-image: none !important;
}

:root {
    --bg: #151515;
    --card: #0d0d12;
    --text: #fff8ef;
    --muted-text: #d9d1c6;
    --accent: #ff3f9d;
    --accent2: #ffd23f;
    --mex-blue: #1aa7ff;
    --mex-green: #21c45a;
    --mex-purple: #9b5cff;
    --mex-pink: #ff3f9d;
    --soft: #151018;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

html,
body {
    background: #151515 !important;
    color: var(--text);
}

.bg-decoration {
    display: none;
}

.navbar {
    background: var(--bone) !important;
    border: 1px solid rgba(255, 210, 63, 0.55);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.navbar nav {
    background: var(--bone) !important;
}

nav a {
    color: #000000 !important;
    font-weight: 600;
}

nav a:hover {
    color: #9d245c !important;
}

nav a::after {
    background: var(--accent) !important;
}

#lang-select {
    background: var(--mex-purple) !important;
    color: #ffffff;
}

.cta,
.btn-select {
    background: var(--mex-pink) !important;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(255, 63, 157, 0.28);
}

.btn-primary {
    background: var(--mex-blue) !important;
    color: #041018;
    box-shadow: 0 12px 26px rgba(26, 167, 255, 0.22);
}

.secondary-btn {
    background: transparent !important;
    border: 2px solid var(--accent2);
    color: var(--accent2);
}

.about-btn {
    background: var(--mex-green) !important;
    border: 2px solid var(--mex-green);
    color: #031006;
}

.secondary-btn:hover,
.about-btn:hover,
.cta:hover,
.btn-primary:hover,
.btn-select:hover {
    filter: brightness(1.08);
}

.tag,
.mini-tag,
.featured-label,
.chef-role,
.section-mini-title {
    background: #14141d !important;
    border: 1px solid #2f2f42;
    color: var(--accent2);
}

.section-title,
.menu-header h2 {
    color: var(--accent2) !important;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.hero-text h1,
.menu-hero h1,
.about-hero-text h1,
.contact-text h1,
.chefs-hero-text h1 {
    color: #ffffff;
    text-shadow: none;
}

.description,
.hero-content p,
.about-hero-text p,
.contact-text p,
.chefs-hero-text p,
.menu-header p,
.menu-header h3,
.history-text p,
.value-card p,
.experience-card p,
.contact-info,
.contact-form,
.social-card,
footer p {
    color: var(--muted-text);
}

.info-card,
.featured-card,
.history-card,
.value-card,
.experience-card,
.contact-container,
.map-card,
.social-card,
.quote-card,
.about-card,
.menu-image-card,
.restaurant-option,
.chef-card {
    background: #0d0d12 !important;
    border: 1px solid #262636;
    box-shadow: var(--shadow);
}

.info-card:nth-child(4n + 1),
.value-card:nth-child(4n + 1),
.social-card:nth-child(4n + 1) {
    border-color: var(--mex-pink);
}

.info-card:nth-child(4n + 2),
.value-card:nth-child(4n + 2),
.social-card:nth-child(4n + 2) {
    border-color: var(--mex-blue);
}

.info-card:nth-child(4n + 3),
.value-card:nth-child(4n + 3),
.social-card:nth-child(4n + 3) {
    border-color: var(--mex-green);
}

.info-card:nth-child(4n),
.value-card:nth-child(4n),
.social-card:nth-child(4n) {
    border-color: var(--mex-purple);
}

.service-card,
.hero-image-container,
.hero-video-container,
.experience-video-container,
.contact-hero-image-container,
.history-image-container,
.about-image-container,
.chefs-hero-video-container {
    background: #0d0d12 !important;
    border: 1px solid #303044;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.62);
}

.hero-overlay,
.hero-video-overlay,
.contact-hero-overlay,
.history-overlay,
.about-overlay,
.service-overlay,
.chefs-overlay,
.experience-overlay {
    background: rgba(0, 0, 0, 0.42) !important;
}

.input-group input,
.input-group textarea,
select {
    background: #101018 !important;
    border: 1px solid #303044;
    color: var(--text);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a9a195;
}

.sound-btn {
    background: #11111a !important;
    border: 1px solid var(--accent2);
    color: #ffffff;
}

.value-icon {
    color: var(--mex-pink);
}

.service-content h3,
.featured-card h1,
.featured-card h2,
.history-text h2,
.value-card h3,
.experience-card h3,
.experience-text h2,
.contact-info h2,
.contact-form h2,
.map-card h2,
.quote-card h2,
footer h3 {
    color: #ffffff;
    text-shadow: none;
}

@media(max-width:768px){
    .menu-toggle {
        background: rgba(255, 255, 255, 0.42) !important;
        border: 1px solid rgba(33, 26, 20, 0.14) !important;
        border-radius: 999px;
        color: #000000 !important;
        text-shadow: none !important;
    }

    .menu-toggle.active {
        position: fixed;
        top: 22px;
        right: 22px;
        z-index: 10000;
    }

    .navbar nav {
        padding-top: 118px;
    }

    .navbar nav {
        background: var(--bone) !important;
        border-left: 1px solid rgba(255, 210, 63, 0.55);
    }

    .navbar nav a,
    #lang-select {
        background: var(--bone-soft) !important;
        border: 1px solid rgba(33, 26, 20, 0.14);
    }

    .navbar nav a {
        color: #000000 !important;
    }
}

/* ========================= */
/* BONE CARD BLOCKS */
/* ========================= */

:root {
    --bone: #f3ead8;
    --bone-soft: #fff7e8;
    --bone-text: #211a14;
    --bone-muted: #4f4438;
}

.info-card,
.featured-card,
.history-card,
.value-card,
.experience-card,
.contact-container,
.map-card,
.social-card,
.quote-card,
.about-card,
.restaurant-option,
.chef-card {
    background: var(--bone) !important;
    color: var(--bone-text) !important;
    border-color: rgba(255, 210, 63, 0.55);
}

.info-card h2,
.featured-card h1,
.featured-card h2,
.history-text h2,
.value-card h3,
.experience-card h3,
.experience-text h2,
.contact-info h2,
.contact-form h2,
.map-card h2,
.quote-card h2,
.chef-content h3,
.restaurant-option h3 {
    color: var(--bone-text) !important;
}

.info-card p,
.featured-card p,
.history-card p,
.history-text p,
.value-card p,
.experience-card p,
.experience-text p,
.contact-container p,
.contact-container a,
.map-card p,
.social-card,
.quote-card p,
.about-card p,
.chef-card p,
.restaurant-option p {
    color: var(--bone-muted) !important;
}

.featured-label,
.chef-role,
.mini-tag,
.section-mini-title {
    background: var(--bone-soft) !important;
    color: #9d245c !important;
    border-color: rgba(157, 36, 92, 0.25);
}

@media(max-width:480px){
    .page {
        padding: 10px;
    }

    .navbar {
        padding: 10px 12px;
    }

    .brand img {
        height: 50px;
    }

    .navbar nav {
        width: 100vw;
        right: -110%;
        border-radius: 0;
    }

    .navbar nav.active {
        right: 0;
    }

    .hero,
    .menu-hero,
    .about-hero,
    .contact-hero,
    .chefs-hero {
        padding: 32px 0 !important;
    }

    .featured-card,
    .history-card,
    .contact-container,
    .about-card,
    .chef-card,
    .about-experience-section .experience-card,
    .home-experience-section .experience-card {
        padding: 18px !important;
    }

    .map-container {
        height: 280px;
    }
}

@media(hover:none) and (pointer:coarse){
    .service-card:hover,
    .menu-image-card:hover,
    .featured-image:hover,
    .chef-image:hover,
    .hero-image-container:hover .hero-image,
    .contact-hero-image-container:hover .contact-hero-image,
    .history-image-container:hover .history-img,
    .about-image-container:hover .about-img,
    .gallery-item:hover img {
        transform: none;
    }
}

@media(max-width:768px){
    .hero-food-image,
    .about-hero-image,
    .contact-image {
        width: 100%;
    }

    .featured-card .chef-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .featured-card .chef-image-container .chef-image {
        width: min(260px, 100%);
        height: auto;
    }

    .featured-copy {
        width: 100%;
        text-align: left;
    }

    .featured-copy h1 {
        margin-bottom: 12px;
        font-size: clamp(2.1rem, 12vw, 3rem);
    }

    .featured-copy p {
        font-size: .98rem;
        line-height: 1.75;
    }

    .chef-card .chef-image {
        height: 260px;
    }

    .chef-card .chef-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .navbar nav {
        right: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .navbar nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .chef-card {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .chef-card:hover {
        transform: none;
    }

    .chef-image-container {
        overflow: hidden;
    }

    .steam1 {
        left: 34%;
    }

    .steam2 {
        left: 48%;
    }

    .steam3 {
        left: 62%;
    }
}

/* ========================= */
/* BLACK MEXICAN COLOR THEME */
/* ========================= */

:root {
    --bg: #030305;
    --card: rgba(15, 14, 22, 0.88);
    --text: #fff7ea;
    --muted-text: #d8ccbc;
    --accent: #ff3f9d;
    --accent2: #ffd23f;
    --mex-blue: #00b7ff;
    --mex-green: #20d66b;
    --mex-purple: #9b5cff;
    --mex-pink: #ff3f9d;
    --soft: rgba(255, 63, 157, 0.12);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

body {
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 63, 157, 0.22), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(0, 183, 255, 0.18), transparent 24%),
        radial-gradient(circle at 18% 88%, rgba(32, 214, 107, 0.16), transparent 25%),
        radial-gradient(circle at 86% 82%, rgba(155, 92, 255, 0.20), transparent 26%),
        #030305;
    color: var(--text);
}

.bg-decoration {
    background:
        linear-gradient(120deg, rgba(255, 210, 63, 0.06), transparent 36%),
        radial-gradient(circle at top left, rgba(255, 63, 157, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 183, 255, 0.14), transparent 30%);
}

.navbar {
    background: rgba(7, 7, 12, 0.78);
    border: 1px solid rgba(255, 210, 63, 0.18);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.42),
        0 0 38px rgba(255, 63, 157, 0.12);
}

nav a,
.description,
.hero-content p,
.about-hero-text p,
.contact-text p,
.chefs-hero-text p,
.menu-header p,
.menu-header h3,
.history-text p,
.value-card p,
.experience-card p,
.contact-info,
.contact-form,
.social-card,
footer p {
    color: var(--muted-text);
}

nav a:hover,
.section-mini-title,
.featured-label,
.chef-role,
.mini-tag {
    color: var(--accent2);
}

nav a::after {
    background: linear-gradient(90deg, var(--mex-pink), var(--mex-blue), var(--mex-green));
}

#lang-select,
.cta,
.btn-primary,
.btn-select {
    background: linear-gradient(135deg, var(--mex-pink), var(--mex-purple) 48%, var(--mex-blue));
    color: #fff;
    box-shadow:
        0 14px 28px rgba(255, 63, 157, 0.28),
        0 0 24px rgba(0, 183, 255, 0.18);
}

.btn-primary:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
    filter: none;
}

.secondary-btn,
.about-btn {
    border: 2px solid var(--accent2);
    color: var(--accent2);
    background: rgba(255, 210, 63, 0.08);
}

.secondary-btn:hover,
.about-btn:hover {
    background: linear-gradient(135deg, var(--accent2), var(--mex-green));
    color: #111;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 63, 157, 0.20), rgba(0, 183, 255, 0.14));
    color: #fff2f9;
    border: 1px solid rgba(255, 210, 63, 0.22);
}

.subtitle,
.section-title,
.menu-header h2,
.hero-text h1,
.menu-hero h1,
.about-hero-text h1,
.contact-text h1,
.chefs-hero-text h1,
.featured-card h1,
.featured-card h2,
.history-text h2,
.value-card h3,
.experience-card h3,
.experience-text h2,
.contact-info h2,
.contact-form h2,
.map-card h2,
.quote-card h2,
footer h3 {
    color: #fffaf0;
    text-shadow:
        0 0 20px rgba(255, 63, 157, 0.18),
        0 0 36px rgba(0, 183, 255, 0.12);
}

.section-title,
.menu-header h2 {
    background: linear-gradient(90deg, var(--mex-pink), var(--accent2), var(--mex-green), var(--mex-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-card,
.featured-card,
.history-card,
.value-card,
.experience-card,
.contact-container,
.map-card,
.social-card,
.quote-card,
.about-card,
.menu-image-card,
.restaurant-option,
.chef-card {
    background:
        linear-gradient(145deg, rgba(17, 16, 26, 0.94), rgba(8, 8, 12, 0.88)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.info-card:nth-child(3n + 1),
.value-card:nth-child(3n + 1),
.social-card:nth-child(3n + 1) {
    border-color: rgba(255, 63, 157, 0.34);
}

.info-card:nth-child(3n + 2),
.value-card:nth-child(3n + 2),
.social-card:nth-child(3n + 2) {
    border-color: rgba(0, 183, 255, 0.34);
}

.info-card:nth-child(3n),
.value-card:nth-child(3n),
.social-card:nth-child(3n) {
    border-color: rgba(32, 214, 107, 0.34);
}

.info-card h2,
.service-content h3,
.value-icon,
.value-card h3,
.chef-content h3 {
    color: var(--accent2);
}

.service-card,
.hero-image-container,
.hero-video-container,
.experience-video-container,
.contact-hero-image-container,
.history-image-container,
.about-image-container,
.chefs-hero-video-container {
    border: 1px solid rgba(255, 210, 63, 0.18);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 34px rgba(255, 63, 157, 0.16);
}

.hero-overlay,
.hero-video-overlay,
.contact-hero-overlay,
.history-overlay,
.about-overlay,
.service-overlay,
.chefs-overlay,
.experience-overlay {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.15)),
        radial-gradient(circle at 20% 20%, rgba(255, 63, 157, 0.18), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(0, 183, 255, 0.14), transparent 34%);
}

.menu-image-card {
    background: #0a0a0f;
}

.menu-image-card img {
    background: #111;
}

.input-group input,
.input-group textarea,
.search-box,
select {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 247, 234, 0.62);
}

.sound-btn {
    background: rgba(5, 5, 10, 0.58);
    border: 1px solid rgba(255, 210, 63, 0.36);
    box-shadow: 0 0 24px rgba(255, 210, 63, 0.16);
}

footer {
    color: var(--text);
}

@media(max-width:768px){
    .navbar nav {
        background:
            radial-gradient(circle at top left, rgba(255, 63, 157, 0.18), transparent 36%),
            radial-gradient(circle at bottom right, rgba(0, 183, 255, 0.16), transparent 34%),
            rgba(5, 5, 10, 0.98);
        border-left: 1px solid rgba(255, 210, 63, 0.22);
    }

    .navbar nav a,
    #lang-select {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 14px;
    }
}

/* ========================= */
/* FINAL THEME OVERRIDES */
/* ========================= */

*,
*::before,
*::after {
    background-image: none !important;
}

:root {
    --bg: #151515;
    --bone: #f3ead8;
    --bone-soft: #fff7e8;
    --bone-text: #000000;
    --bone-muted: #4f4438;
}

html,
body {
    background: #151515 !important;
}

.bg-decoration {
    display: none !important;
}

.navbar,
.navbar nav,
.info-card,
.featured-card,
.history-card,
.value-card,
.experience-card,
.contact-container,
.map-card,
.social-card,
.quote-card,
.about-card,
.restaurant-option,
.chef-card {
    background: var(--bone) !important;
    color: var(--bone-text) !important;
}

.navbar {
    border: 1px solid rgba(255, 210, 63, 0.55);
}

nav a,
.navbar nav a {
    color: #000000 !important;
    font-weight: 600;
}

nav a:hover {
    color: #9d245c !important;
}

.info-card h2,
.featured-card h1,
.featured-card h2,
.history-text h2,
.value-card h3,
.experience-card h3,
.experience-text h2,
.contact-info h2,
.contact-form h2,
.map-card h2,
.quote-card h2,
.chef-content h3,
.restaurant-option h3 {
    color: var(--bone-text) !important;
}

.info-card p,
.featured-card p,
.history-card p,
.history-text p,
.value-card p,
.experience-card p,
.experience-text p,
.contact-container p,
.contact-container a,
.map-card p,
.social-card,
.quote-card p,
.about-card p,
.chef-card p,
.restaurant-option p {
    color: var(--bone-muted) !important;
}

.cta,
.btn-select {
    background: #ff3f9d !important;
    color: #ffffff !important;
}

.btn-primary {
    background: #1aa7ff !important;
    color: #041018 !important;
}

.secondary-btn {
    background: transparent !important;
    border: 2px solid #ffd23f;
    color: #ffd23f !important;
}

.about-btn {
    background: #21c45a !important;
    border: 2px solid #21c45a;
    color: #031006 !important;
}

#lang-select {
    background: #9b5cff !important;
    color: #ffffff !important;
}

.hero-overlay,
.hero-video-overlay,
.contact-hero-overlay,
.history-overlay,
.about-overlay,
.service-overlay,
.chefs-overlay,
.experience-overlay {
    background: rgba(0, 0, 0, 0.42) !important;
}

.institution-card,
.institution-objective {
    background:
        linear-gradient(145deg, rgba(17, 16, 26, 0.94), rgba(8, 8, 12, 0.88)),
        var(--card) !important;
    border: 1px solid rgba(255, 210, 63, 0.18);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.institution-card:nth-child(1) {
    border-color: rgba(255, 63, 157, 0.34);
}

.institution-card:nth-child(2) {
    border-color: rgba(0, 183, 255, 0.34);
}

.institution-section .section-mini-title {
    display: inline-flex;
    align-items: center;
    background: rgba(7, 8, 13, 0.86) !important;
    border: 1px solid rgba(255, 210, 63, 0.45);
    border-radius: 999px;
    color: #ffd23f !important;
    padding: 9px 16px;
}

.institution-header h2,
.institution-card h3 {
    color: #fff7ea !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.institution-header p,
.institution-card p,
.institution-objective p {
    color: #eadfce !important;
}

.institution-card span,
.institution-objective span {
    color: #ffd23f !important;
}

.institution-objective {
    border-color: rgba(255, 210, 63, 0.36);
}

.institution-card,
.institution-objective {
    background:
        linear-gradient(145deg, rgba(18, 17, 29, 0.98), rgba(7, 8, 13, 0.96)),
        var(--card) !important;
}

.values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media(max-width:900px){
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:620px){
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){
    .navbar #mobileMenu.active {
        padding: 118px 22px 28px !important;
    }

    .navbar nav {
        background: var(--bone) !important;
        border-left: 1px solid rgba(255, 210, 63, 0.55);
    }

    .navbar nav a {
        background: var(--bone-soft) !important;
        color: #000000 !important;
        border: 1px solid rgba(33, 26, 20, 0.14);
    }

    .hero-video-container,
    .experience-video-container,
    .chefs-hero-video-container {
        animation: none !important;
    }

    .sound-btn {
        touch-action: manipulation;
        pointer-events: auto;
        z-index: 20;
    }
}

/* ========================= */
/* SITE FOOTER */
/* ========================= */

.site-footer {
    margin-top: clamp(64px, 8vw, 110px);
    padding: 30px;
    text-align: left;
    color: var(--muted-text);
    background-color: rgba(8, 8, 12, 0.9);
    border: 1px solid rgba(255, 210, 63, 0.24);
    border-radius: 28px;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.selector-footer {
    margin-top: 28px;
    margin-bottom: 20px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 28px;
    align-items: start;
}

.selector-footer .footer-main {
    grid-template-columns: minmax(260px, 300px) minmax(280px, 360px) max-content;
    gap: clamp(28px, 4vw, 52px);
    justify-content: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 10px 16px;
    background-color: #f2e8d4;
    border: 1px solid rgba(255, 210, 63, 0.46);
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.footer-logo img {
    display: block;
    width: min(190px, 100%);
    height: auto;
    object-fit: contain;
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
    color: var(--muted-text);
    line-height: 1.65;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selector-footer .footer-column:last-child {
    width: max-content;
    max-width: 100%;
}

.footer-column h4 {
    margin: 0 0 4px;
    color: #fff7ea;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted-text);
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--accent2);
    transform: translateX(3px);
}

.footer-branch-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column .footer-branch-button {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    color: #fff7ea;
    background: rgba(242, 232, 212, 0.08);
    border: 1px solid rgba(255, 210, 63, 0.18);
    border-radius: 14px;
}

.footer-column .footer-branch-button:hover {
    color: #fff7ea;
    background: rgba(255, 210, 63, 0.12);
}

.footer-branch-button strong {
    font-size: 0.92rem;
    color: var(--accent2);
}

.footer-branch-button span {
    color: var(--muted-text);
    font-size: 0.88rem;
    line-height: 1.45;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

@media(max-width:900px){
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .selector-footer .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .selector-footer .footer-column:last-child {
        width: auto;
    }
}

@media(max-width:620px){
    .site-footer {
        margin-top: 46px;
        width: 100%;
        padding: 22px;
        border-radius: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .selector-footer .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================= */
/* ACTIVE NAVIGATION */
/* ========================= */

.navbar nav a.active-nav,
.navbar nav a[aria-current="page"] {
    color: #111111 !important;
    background-color: rgba(255, 210, 63, 0.52);
    border: 1px solid rgba(157, 36, 92, 0.24);
    border-radius: 999px;
    padding: 9px 14px;
    box-shadow:
        0 10px 22px rgba(255, 210, 63, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.navbar nav a.active-nav::after,
.navbar nav a[aria-current="page"]::after {
    left: 14px;
    right: 14px;
    bottom: 5px;
    width: auto;
    height: 2px;
    background: #9d245c !important;
}

@media(max-width:768px){
    .navbar nav a.active-nav,
    .navbar nav a[aria-current="page"] {
        background: linear-gradient(135deg, rgba(255, 210, 63, 0.78), rgba(255, 244, 205, 0.96)) !important;
        border-color: rgba(157, 36, 92, 0.34) !important;
        color: #111111 !important;
        box-shadow: 0 12px 24px rgba(255, 210, 63, 0.18);
    }

    .navbar nav a.active-nav::after,
    .navbar nav a[aria-current="page"]::after {
        left: 18px;
        right: 18px;
        bottom: 8px;
    }
}

/* ========================= */
/* MOBILE NAVBAR LAYOUT */
/* ========================= */

@media(max-width:768px){
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 14px !important;
        min-height: 82px;
        padding: 14px 18px !important;
    }

    .navbar .brand {
        flex: 0 1 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
    }

    .navbar .brand a {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar .brand img {
        height: clamp(46px, 13vw, 58px) !important;
        max-width: min(56vw, 210px) !important;
        object-fit: contain;
    }

    .navbar .menu-toggle {
        flex: 0 0 50px;
        width: 50px !important;
        height: 50px !important;
        margin-left: auto;
    }
}

@media(max-width:480px){
    .navbar {
        min-height: 76px;
        padding: 12px 14px !important;
    }

    .navbar .brand img {
        max-width: min(52vw, 180px) !important;
    }

    .navbar .menu-toggle {
        flex-basis: 46px;
        width: 46px !important;
        height: 46px !important;
    }
}

/* ========================= */
/* MOBILE ABOUT VIDEO */
/* ========================= */

@media(max-width:768px){
    .about-hero {
        padding-bottom: 8px !important;
        gap: 22px !important;
    }

    .about-hero .about-hero-image {
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .about-hero .hero-video-container {
        width: 100% !important;
        max-width: 100%;
        height: clamp(360px, 105vw, 500px) !important;
        aspect-ratio: auto;
        border-radius: 22px !important;
        margin-top: 4px;
    }

    .about-hero .hero-video {
        object-fit: cover;
        object-position: center;
    }

    .about-hero .sound-btn {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
    }

    .history-section {
        margin-top: 12px !important;
        padding-top: 18px !important;
    }
}

@media(max-width:480px){
    .about-hero .hero-video-container {
        height: clamp(360px, 108vw, 440px) !important;
    }

    .about-hero .sound-btn {
        width: 44px;
        height: 44px;
        right: 12px;
        bottom: 12px;
    }

    .history-section {
        margin-top: 8px !important;
        padding-top: 14px !important;
    }
}

/* ========================= */
/* CHEF PHOTO SIZE */
/* ========================= */

.chefs-grid .chef-card {
    grid-template-columns: minmax(460px, 500px) 1fr;
    gap: 64px;
    padding: 48px;
}

.team-section-header {
    margin-top: 10px;
}

.waiters-grid {
    margin-bottom: 120px;
}

.chefs-grid .chef-card .chef-image {
    width: min(430px, 100%);
    height: 500px;
    min-height: 500px;
    justify-self: center;
}

@media(max-width:992px){
    .chefs-grid .chef-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .chefs-grid .chef-card .chef-image {
        width: min(420px, 100%);
        height: 430px;
        min-height: 430px;
    }
}

@media(max-width:768px){
    .chefs-grid .chef-card {
        padding: 22px;
    }

    .chefs-grid .chef-card .chef-image {
        width: 100%;
        height: 380px;
        min-height: 380px;
    }
}

@media(max-width:480px){
    .chefs-grid .chef-card .chef-image {
        height: 340px;
        min-height: 340px;
    }
}

/* ========================= */
/* SAHAGUN PAGE */
/* ========================= */

.sahagun-page {
    --sahagun-red: #c62858;
    --sahagun-yellow: #ffd23f;
    --sahagun-blue: #1aa7ff;
    --sahagun-green: #20c95a;
}

.sahagun-hero,
.sahagun-intro,
.sahagun-highlights,
.sahagun-gallery,
.sahagun-cta {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.sahagun-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 58px;
    padding: 58px 0 92px;
}

.sahagun-hero-media {
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0, 0, 0, .34);
}

.sahagun-hero-media img,
.sahagun-intro-grid img,
.sahagun-feature-card img,
.sahagun-gallery-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sahagun-hero-content h1 {
    margin: 14px 0 20px;
    color: #fff8ec;
    font-size: clamp(3.1rem, 6vw, 6.4rem);
    line-height: .98;
}

.sahagun-hero-content .description {
    max-width: 620px;
    color: rgba(255, 248, 236, .84);
    font-size: 1.16rem;
    line-height: 1.85;
}

.sahagun-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 52px;
    padding: 28px 0 108px;
}

.sahagun-intro .mini-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
}

.sahagun-intro-text h2,
.sahagun-gallery .section-header h2,
.sahagun-cta h2 {
    margin-top: 0;
    color: #fff8ec;
    font-size: clamp(2.35rem, 4vw, 4.6rem);
    line-height: 1.06;
}

.sahagun-intro-text p,
.sahagun-gallery .section-header p,
.sahagun-cta p {
    color: rgba(255, 248, 236, .8);
    font-size: 1.1rem;
    line-height: 1.85;
}

.sahagun-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.sahagun-intro-grid img,
.sahagun-gallery-grid figure {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .25);
}

.sahagun-intro-grid img:first-child {
    align-self: stretch;
}

.sahagun-intro-grid img {
    aspect-ratio: 1 / 1.08;
    height: auto;
    object-position: center;
}

.sahagun-highlights {
    padding: 0 0 118px;
}

.sahagun-highlights .section-title {
    margin-bottom: 38px;
}

.sahagun-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sahagun-feature-card {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.sahagun-feature-card img {
    position: absolute;
    inset: 0;
    transition: transform .8s ease;
}

.sahagun-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, .9), rgba(8, 8, 10, .2) 58%, rgba(8, 8, 10, .05));
}

.sahagun-feature-card:hover img {
    transform: scale(1.06);
}

.sahagun-feature-card div {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.sahagun-feature-card h3 {
    color: #fff8ec;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sahagun-feature-card p {
    color: rgba(255, 248, 236, .78);
    line-height: 1.7;
}

.sahagun-gallery {
    padding-bottom: 110px;
}

.sahagun-gallery .section-header {
    margin-bottom: 34px;
}

.sahagun-gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    grid-auto-rows: 260px;
    gap: 18px;
}

.sahagun-gallery-grid figure {
    margin: 0;
}

.sahagun-gallery-grid .large {
    grid-row: span 2;
}

.sahagun-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 100px;
    padding: 48px;
    border-radius: 30px;
    background: var(--bone);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .22);
}

.sahagun-cta h2,
.sahagun-cta p {
    color: var(--bone-text);
}

.sahagun-cta p {
    max-width: 740px;
}

@media(max-width:992px){
    .sahagun-hero,
    .sahagun-intro {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sahagun-hero-content {
        order: -1;
    }

    .sahagun-hero-media {
        min-height: 520px;
    }

    .sahagun-card-grid,
    .sahagun-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sahagun-gallery-grid {
        grid-auto-rows: 320px;
    }

    .sahagun-gallery-grid .large {
        grid-row: span 1;
    }

    .sahagun-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width:768px){
    .sahagun-hero {
        padding: 32px 0 70px;
    }

    .sahagun-hero-media {
        min-height: 420px;
        border-radius: 24px;
    }

    .sahagun-intro {
        padding-bottom: 76px;
    }

    .sahagun-intro-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sahagun-intro-grid img,
    .sahagun-intro-grid img:first-child {
        height: 310px;
        aspect-ratio: auto;
    }

    .sahagun-feature-card {
        min-height: 390px;
    }

    .sahagun-gallery-grid {
        grid-auto-rows: 260px;
    }

    .sahagun-cta {
        padding: 28px;
        border-radius: 24px;
    }
}
