/* =============================================
   DELARTE CAFE & BRUNCH — Modern Redesign
   ============================================= */

/* --- Variables --- */
:root {
    --brown-900: #1a0f08;
    --brown-800: #444444;
    --brown-700: #444444;
    --brown-600: #6b3f20;
    --brown-500: #8b5e3c;
    --brown-400: #a67c5b;
    --brown-300: #c4a882;
    --brown-200: #dcc8aa;
    --brown-100: #f0e6d6;
    --brown-50:  #faf6ef;

    --olive: #6b7c5e;
    --olive-light: #8a9a7c;
    --olive-dark: #556b48;
    --sage: #c5c4b0;
    --sage-light: #d4d3c2;

    --green: #25D366;

    --text: #444444;
    --text-secondary: #444444;
    --text-light: #8a8a8a;
    --white: #ffffff;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --nav-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brown-700);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-center .section-desc {
    margin: 0 auto;
}

.section-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--sage);
    color: var(--brown-800);
    font-weight: 600;
    border: 1px solid var(--sage-light);
}

.btn-primary:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--ease);
    padding: 0 0;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo-img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.navbar.scrolled .nav-logo-img {
    border-color: var(--brown-200);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a {
    color: var(--brown-700);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--olive);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown-800);
    background: var(--sage);
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--sage-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--brown-700);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,15,8,0.45) 0%,
        rgba(45,26,14,0.35) 50%,
        rgba(26,15,8,0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 700px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   NOSOTROS
   ============================================= */
.nosotros {
    background: var(--brown-50);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nosotros-text .section-desc {
    margin-bottom: 40px;
}

.nosotros-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--olive);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.img-card:hover img {
    transform: scale(1.05);
}

.img-card-tall {
    grid-row: span 2;
}

/* =============================================
   MENU SHOWCASE
   ============================================= */
.menu-section {
    background: var(--white);
}

.menu-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.menu-card-large {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: auto;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s;
}

.menu-card:hover .menu-card-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.menu-card-badge {
    display: inline-block;
    background: var(--sage);
    color: var(--brown-800);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 8px;
}

.menu-card-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
}

.menu-card-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    margin-bottom: 8px;
}

.menu-card-price {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
}

.menu-cta {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   CAFE / DRINKS
   ============================================= */
.cafe-section {
    background: var(--brown-50);
}

.cafe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cafe-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cafe-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.cafe-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.cafe-img-small {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cafe-img-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 70%;
    transition: transform 0.5s var(--ease);
}

.cafe-img-small:hover img {
    transform: scale(1.05);
}

.cafe-text .section-desc {
    margin-bottom: 32px;
}

.cafe-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--brown-100);
    color: var(--brown-600);
}

.method-icon svg {
    width: 22px;
    height: 22px;
}

.method h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown-700);
    margin-bottom: 4px;
}

.method p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =============================================
   REVIEWS / RATING
   ============================================= */
.reviews-section {
    background: var(--white);
}

.review-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.review-card-inner {
    text-align: center;
}

.review-business {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.review-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.review-business-info {
    text-align: left;
}

.review-business-info h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--brown-800);
}

.review-business-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-prompt {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.star-btn {
    padding: 4px;
    transition: transform 0.2s var(--ease);
}

.star-btn svg {
    width: 44px;
    height: 44px;
    fill: #d1d5db;
    stroke: none;
    transition: fill 0.2s, transform 0.15s;
}

.star-btn:hover {
    transform: scale(1.15);
}

.star-btn.active svg,
.star-btn.hovered svg {
    fill: #facc15;
}

.review-hint {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    min-height: 1.5em;
}

/* --- Feedback Modal --- */
.feedback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s;
}

.feedback-modal.active {
    display: flex;
}

.feedback-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s var(--ease);
}

.feedback-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: color 0.2s;
    line-height: 1;
}

.feedback-close:hover {
    color: var(--text);
}

.feedback-header {
    text-align: center;
    margin-bottom: 28px;
}

.feedback-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.feedback-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}

.feedback-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feedback-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 12px;
}

.feedback-rating svg {
    width: 24px;
    height: 24px;
    fill: #facc15;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(107,124,94,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.thanks-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.thanks-icon svg {
    width: 32px;
    height: 32px;
}

.feedback-thanks {
    text-align: center;
    padding: 20px 0;
}

.feedback-thanks h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}

.feedback-thanks p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =============================================
   CONTACTO / SEDES
   ============================================= */
.contacto-section {
    background: var(--brown-50);
}

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

.sede-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.sede-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sede-featured {
    border: 2px solid var(--olive);
    position: relative;
}

.sede-badge {
    display: inline-block;
    background: var(--sage);
    color: var(--brown-800);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.sede-badge-cafe {
    background: #565555;
    color: var(--white);
}

.sede-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--brown-800);
    margin-bottom: 20px;
}

.sede-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.sede-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.sede-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--brown-400);
}

.sede-item a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.sede-item a:hover {
    color: var(--olive);
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--olive);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Redes sociales globales en sedes */
.sedes-redes-global {
    text-align: center;
    margin-top: 48px;
}

.sedes-redes-global p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.sedes-redes-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sede-red-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.sede-red-link:hover {
    background: var(--sage);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #565555;
    padding: 64px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.5);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sage-light);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--sage-light);
}

.social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 900;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .nosotros-grid,
    .cafe-grid {
        gap: 48px;
    }

    .menu-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card-large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Nav mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
        transition: right 0.4s var(--ease);
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--brown-700) !important;
        font-size: 1rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-cta { display: none; }

    /* Grid layouts */
    .nosotros-grid,
    .cafe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .sedes-grid {
        grid-template-columns: 1fr;
    }

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

    /* Hero */
    .hero-logo {
        width: 150px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    /* Review card */
    .review-card {
        padding: 28px;
    }

    .star-btn svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .menu-card {
        aspect-ratio: 4/3;
    }

    .nosotros-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .cafe-img-main img {
        height: 250px;
    }

    .cafe-img-small img {
        height: 150px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .star-btn svg {
        width: 32px;
        height: 32px;
    }

    .feedback-content {
        padding: 28px 20px;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}
