@import url(https://fonts.googleapis.com/css?family=Abel);
@import url('https://fonts.googleapis.com/css?family=Great+Vibes');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #C4A57B;
    --gold-dim: rgba(196,165,123,0.15);
    --cream: #F5EDDC;
    --brown: #5B2C0E;
    --dark-brown: #8D6339;
    --copper: #6B4C30;
    --card-bg: #FBF7EF;
    --card-border: rgba(91,44,14,0.1);
}
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'Abel', sans-serif; color: var(--brown); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2 { font-family: 'Great Vibes', cursive; font-weight: 400; line-height: 1.15; }
h3 { font-family: 'Abel', sans-serif; font-weight: 600; line-height: 1.4; letter-spacing: 0.5px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 1rem 0; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(245,237,220,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--card-border); padding: 0.8rem 0; }
.nav.scrolled .nav-logo img { max-height: 52px; }
.nav.scrolled .nav-links a { font-size: 0.62rem; }
.nav.scrolled .nav-cta-btn { padding: 0.4rem 1.05rem !important; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; }
.nav-logo img { max-height: 65px; width: auto; filter: brightness(10); transition: all 0.4s ease; }
.nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: all 0.4s ease; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.nav.scrolled .nav-links a { color: var(--brown); text-shadow: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 1px; background: var(--gold); transition: all 0.3s; transform: translateX(-50%); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn { border: 1px solid var(--gold) !important; padding: 0.5rem 1.3rem; background: var(--gold) !important; color: #fff !important; transition: all 0.3s !important; }
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { box-shadow: 0 4px 15px rgba(196,165,123,0.4) !important; transform: translateY(-1px); }
.nav.scrolled .nav-cta-btn { background: var(--gold) !important; border-color: var(--gold) !important; color: #fff !important; }
.nav-dd { position: relative; }
.nav-dd .dd-menu { display: none; position: absolute; top: 100%; left: -20px; background: var(--cream); border: 1px solid var(--card-border); min-width: 190px; padding: 0.6rem 0; padding-top: 1rem; }
.nav-dd:hover .dd-menu { display: block; }
.dd-menu a { display: block; padding: 0.5rem 1.3rem; font-size: 0.75rem; letter-spacing: 1px; color: var(--brown) !important; text-shadow: none !important; }
.hamburger { display: none; background: none; border: none; color: var(--brown); font-size: 1.4rem; cursor: pointer; }

/* HERO - CINEMATIC */
.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/image/hero_image.png') center/cover no-repeat; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74,42,21,0.85) 0%, rgba(74,42,21,0.5) 40%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 10rem 3rem 3rem; max-width: 1400px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.8rem; background: rgba(196,165,123,0.15); border: 1px solid rgba(196,165,123,0.3); padding: 0.5rem 1.2rem; margin-bottom: 2rem; margin-top: 3rem; width: fit-content; }
.hero-badge span { color: #D4BFA0; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.hero-badge i { color: var(--gold); font-size: 0.7rem; }
.hero h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); color: #fff; max-width: 700px; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.9; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-glow { background: var(--gold); color: #fff; padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; box-shadow: 0 4px 20px rgba(196,165,123,0.3); }
.btn-glow:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--gold); color: #fff; padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; background: var(--gold); transition: all 0.3s; }
.btn-outline:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.btn-brown { background: var(--gold); border: 1px solid var(--gold); color: #fff; padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; }
.btn-brown:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.hero-right-info { position: absolute; right: 3rem; bottom: 8rem; z-index: 1; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-end; }
.hero-stat { text-align: right; }
.hero-stat-num { font-family: 'Great Vibes', cursive; font-size: 2.8rem; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.hero-social { display: flex; gap: 0.8rem; }
.hero-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.85rem; transition: all 0.3s; }
.hero-social a:hover { border-color: var(--gold); color: var(--gold); }

/* SECTION COMMON */
.section { padding-top: 6rem; padding-bottom: 6rem; }
.section-divider { padding: 0; line-height: 0; width: 100%; }
.section-divider::after { content: ''; display: block; width: 100%; height: 1.5px; background: rgba(58,31,14,0.18); box-shadow: 0 1px 4px rgba(58,31,14,0.1); }
.gold-line { width: 50px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.gold-line-center { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }
.section-tag { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.section-sub { color: var(--copper); max-width: 550px; font-size: 0.95rem; }

/* REVIEWS */
.reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 2rem 0; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.r-card { flex: 0 0 360px; scroll-snap-align: start; background: #FBF7EF; border: 1px solid var(--card-border); padding: 2.5rem; box-shadow: 0 2px 15px rgba(91,44,14,0.04); transition: all 0.4s; position: relative; }
.r-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.r-card:hover { border-color: rgba(196,165,123,0.35); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(91,44,14,0.08); }
.r-card:hover::before { opacity: 1; }
.r-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.r-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--brown); margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.r-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--copper); }
.r-quote { position: absolute; top: 1.5rem; right: 2rem; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(196,165,123,0.15); line-height: 1; }

/* QUICK ACTIONS BAR */
.quick-bar { background: var(--dark-brown); }
.quick-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-item { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.8rem 2rem; text-decoration: none; color: #fff; transition: all 0.3s; border-right: 1px solid rgba(255,255,255,0.08); }
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(196,165,123,0.1); }
.quick-item i { font-size: 1.3rem; color: var(--gold); }
.quick-item-text { display: flex; flex-direction: column; }
.quick-item-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.quick-item-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

/* ABOUT - OVERLAPPING LAYOUT */
.about-section { position: relative; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 550px; }
.about-image { background: url('/image/hero_image.png') center/cover no-repeat; position: relative; }
.about-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--cream) 100%); }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4rem 4rem 2rem; position: relative; z-index: 1; }
.about-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-content p { color: var(--copper); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.2rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--card-border); }
.stat { text-align: center; }
.stat-num { font-family: 'Great Vibes', cursive; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--copper); margin-top: 0.3rem; }

/* MENUS - TABBED */
.menus-section { text-align: center; }
.menu-tabs { display: flex; justify-content: center; gap: 0; margin-top: 2.5rem; margin-bottom: 3rem; border: 1px solid var(--card-border); width: fit-content; margin-left: auto; margin-right: auto; }
.menu-tab { padding: 0.9rem 2rem; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; background: transparent; border: none; color: var(--copper); cursor: pointer; transition: all 0.3s; font-family: 'Abel', sans-serif; border-right: 1px solid var(--card-border); }
.menu-tab:last-child { border-right: none; }
.menu-tab.active, .menu-tab:hover { background: var(--dark-brown); color: #fff; }
.menu-panels { position: relative; }
.menu-panel { display: none; animation: fadeIn 0.4s ease; }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.menu-panel-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; text-align: left; cursor: pointer; transition: all 0.3s; }
.menu-panel-info h3 { font-size: 2.2rem; margin-bottom: 1rem; }
.menu-panel-info p { color: var(--copper); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.menu-panel-info .menu-highlights-list { list-style: none; margin-bottom: 2rem; }
.menu-panel-info .menu-highlights-list li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--copper); display: flex; align-items: center; gap: 0.6rem; }
.menu-panel-info .menu-highlights-list li i { color: var(--gold); font-size: 0.7rem; }
.menu-panel-visual { background: var(--dark-brown); padding: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 350px; }
.menu-panel-visual i { font-size: 4rem; color: #fff; margin-bottom: 1.5rem; opacity: 0.8; }
.menu-panel-visual .panel-cta { color: #fff; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: baseline; gap: 0.6rem; transition: gap 0.3s; }
.menu-panel-visual .panel-cta:hover { gap: 1rem; }

/* EMAIL CLUB - MINIMAL */
.club-strip { background: var(--dark-brown); padding: 5rem 0; }
.club-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.club-text { text-align: center; }
.club-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.club-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.club-perks { display: flex; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; justify-content: center; }
.perk { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.perk i { color: var(--gold); font-size: 0.75rem; }
.club-form-wrap { display: flex; flex-direction: column; justify-content: center; max-width: 420px; }
.club-form { display: flex; flex-direction: column; gap: 0.8rem; }
.club-form input { width: 100%; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.95rem; font-family: 'Abel', sans-serif; outline: none; transition: border-color 0.3s; }
.club-form input::placeholder { color: rgba(255,255,255,0.4); }
.club-form input:focus { border-color: var(--gold); }
.club-form button { background: var(--gold); border: none; color: #fff; padding: 1rem 2.5rem; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'Abel', sans-serif; transition: all 0.3s; white-space: nowrap; }
.club-form button:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.club-promise { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; text-align: center; }

/* LOCATION */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.loc-info { display: flex; flex-direction: column; gap: 1.5rem; }
.loc-row { display: flex; gap: 1rem; }
.loc-row i { color: var(--gold); width: 18px; margin-top: 3px; }
.loc-row a { color: var(--brown); text-decoration: none; transition: color 0.3s; }
.loc-row a:hover { color: var(--gold); }
.hours-box { background: var(--card-bg); border: 1px solid var(--card-border); padding: 1.5rem; margin-top: 0.5rem; }
.hours-box h4 { font-family: 'Abel', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.h-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; }
.h-row + .h-row { border-top: 1px solid var(--card-border); }
.h-closed { color: #C66; font-weight: 600; }
.map-box { border: 1px solid var(--card-border); overflow: hidden; min-height: 400px; }
.map-box iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* CTA */
.cta-full { text-align: center; padding: 5rem 2rem; position: relative; background: var(--card-bg); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.cta-full h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--dark-brown); padding: 4rem 0 2rem; }
.footer, .footer p, .footer .footer-desc { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--gold) !important; }
.footer-logo img { filter: brightness(10); max-height: 65px; width: auto; margin-bottom: 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; }
.footer h4 { font-family: 'Abel', sans-serif; font-size: 0.80rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links li { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-bottom { text-align: center; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (min-width: 1441px) {
    .container { max-width: 1400px; padding-left: 2rem; padding-right: 2rem; }
    .nav-inner { max-width: 1600px; }
    .hero-content { max-width: 1600px; }
    .hero h1 { font-size: 5.5rem; }
    .section-title { font-size: 3.5rem; }
    .about-content { padding: 4rem 5rem 4rem 3rem; }
}
@media (max-width: 1200px) {
    .nav-inner { padding: 0 2rem; }
    .nav-links { gap: 1.5rem; }
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-content { padding: 0 2rem; }
    .hero-right-info { right: 2rem; }
    .about-content { padding: 3rem 2rem 3rem 1.5rem; }
    .club-inner { gap: 3rem; }
}
/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.products-grid > div { background: var(--card-bg); border: 1px solid var(--card-border); padding: 2rem 1.5rem; text-align: center; }
.products-grid > div > div:first-child { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.products-grid > div h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.products-grid > div p { color: var(--copper); font-size: 0.85rem; }
@media (max-width: 1024px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .about-inner { grid-template-columns: 1fr; }
    .about-image { min-height: 350px; }
    .about-image::after { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%); }
    .about-content { padding: 3rem 2rem; }
    .menu-panel-content { grid-template-columns: 1fr; }
    .menu-panel-visual { min-height: 200px; }
    .loc-grid { grid-template-columns: 1fr; }
    .club-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-right-info { display: none; }
    .quick-inner { grid-template-columns: 1fr; }
    .quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .quick-item:last-child { border-bottom: none; }
    .cta-btns { flex-wrap: wrap; justify-content: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* NAV */
    .nav { padding: 1.5rem 0; }
    .nav.scrolled { padding: 1.4rem 0; }
    .nav.menu-open { background: rgba(245,237,220,0.98) !important; padding: 1.5rem 0 !important; position: fixed; }
    .nav-logo img { max-height: 48px; }
    .nav.scrolled .nav-logo img { max-height: 48px; }
    .nav.menu-open .nav-logo img { filter: none !important; max-height: 48px; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; background: #F5EDDC; padding: 5rem 2rem; gap: 1.5rem; justify-content: center; align-items: center; z-index: 9999; overflow-y: auto; }
    .nav-links a { color: var(--brown) !important; text-shadow: none !important; font-size: 0.85rem !important; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; z-index: 10000; position: relative; }
    .nav-dd:hover .dd-menu { display: none; }
    .nav-dd .dd-menu { display: none; position: static; background: transparent; border: none; min-width: auto; padding: 0.5rem 0 0; text-align: center; }
    .nav-dd.open .dd-menu { display: block !important; }
    .dd-menu a { padding: 0.4rem 0; font-size: 0.78rem !important; color: var(--gold) !important; }
    .nav-inner { padding: 0 1.5rem; }
    /* CONTAINER */
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    /* HERO */
    .hero { min-height: 550px; }
    .hero-content { padding: 0 2.5rem; }
    .hero h1 { font-size: 3rem; margin-bottom: 1.2rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
    .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-btns a { text-align: center; }
    .hero-badge { margin-bottom: 1.5rem; }
    .hero-badge span { font-size: 0.65rem; letter-spacing: 2px; }
    /* SECCIONES */
    .section { padding-top: 3rem; padding-bottom: 3rem; }
    .section-tag { margin-bottom: 0.6rem; font-size: 0.72rem; }
    .gold-line { margin-bottom: 1rem; }
    .gold-line-center { margin-bottom: 1rem; }
    .section-title { font-size: 2rem; margin-bottom: 0.8rem; }
    .section-sub { margin-bottom: 0; }
    /* ABOUT */
    .about-image { min-height: 280px; }
    .about-content { padding: 2rem 1.25rem; }
    .about-content h2 { margin-bottom: 1.2rem; }
    .about-content p { margin-bottom: 1rem; }
    .about-stats { flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; }
    /* MENUS */
    .menu-tabs { flex-direction: column; width: 100%; margin-top: 2rem; margin-bottom: 2rem; }
    .menu-tab { border-right: none; border-bottom: 1px solid var(--card-border); }
    .menu-tab:last-child { border-bottom: none; }
    .menu-panel-visual { min-height: 150px; padding: 2rem; }
    .menu-panel-visual i { font-size: 2.5rem; margin-bottom: 1rem; }
    .menu-panel-info h3 { font-size: 1.8rem; }
    /* PRODUCTS */
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    /* EMAIL CLUB */
    .club-form { flex-direction: column; }
    .club-form input, .club-form button { width: 100%; }
    .club-text { text-align: center; }
    .club-text h2 { margin-bottom: 0.6rem; }
    .club-perks { justify-content: center; margin-top: 0.8rem; }
    /* CTA */
    .cta-full { padding: 3rem 1.5rem; }
    .cta-full h2 { font-size: 2rem; }
    .cta-btns { flex-direction: column; align-items: center; width: 100%; }
    .cta-btns a { width: 100%; max-width: 320px; text-align: center; }
    /* LOCATION */
    .loc-grid { gap: 2rem; margin-top: 2rem; }
    .map-box { min-height: 280px; }
    .map-box iframe { min-height: 280px; }
    /* QUICK BAR */
    .quick-item { padding: 1.2rem 1.5rem; }
    /* FOOTER */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-logo img { max-height: 50px; margin-bottom: 0.8rem; }
    .footer-desc { font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    /* HERO */
    .hero { min-height: 450px; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero-sub { font-size: 0.9rem; margin-bottom: 1.8rem; }
    .hero-badge { padding: 0.4rem 0.8rem; margin-bottom: 1.2rem; }
    .hero-badge span { font-size: 0.6rem; letter-spacing: 2px; }
    .hero-content { padding: 0 1.25rem; }
    .btn-glow, .btn-outline, .btn-brown { padding: 0.85rem 2rem; font-size: 0.72rem; letter-spacing: 1.5px; }
    /* SECCIONES */
    .section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .section-tag { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 0.5rem; }
    .gold-line { margin-bottom: 0.8rem; }
    .gold-line-center { margin-bottom: 0.8rem; }
    .section-title { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .section-sub { font-size: 0.88rem; }
    /* PRODUCTS */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .products-grid > div { padding: 1.2rem 0.8rem; }
    .products-grid > div > div:first-child { font-size: 1.5rem; margin-bottom: 0.6rem; }
    .products-grid > div h3 { font-size: 0.95rem; }
    .products-grid > div p { font-size: 0.78rem; }
    /* ABOUT */
    .about-image { min-height: 220px; }
    .about-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
    .about-content p { font-size: 0.88rem; }
    .about-stats { gap: 1.2rem; margin-top: 1.2rem; padding-top: 1.2rem; }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.65rem; }
    /* MENUS */
    .menu-tabs { margin-top: 1.5rem; margin-bottom: 1.5rem; }
    .menu-tab { padding: 0.7rem 1.5rem; font-size: 0.72rem; }
    .menu-panel-info h3 { font-size: 1.5rem; }
    .menu-panel-info p { font-size: 0.88rem; }
    .menu-highlights-list li { font-size: 0.82rem; }
    .menu-panel-visual { min-height: 120px; padding: 1.5rem; }
    .menu-panel-visual i { font-size: 2rem; }
    /* EMAIL CLUB */
    .club-text h2 { font-size: 1.8rem; }
    .club-text p { font-size: 0.85rem; }
    .perk { font-size: 0.78rem; }
    /* QUICK BAR */
    .quick-item { padding: 1rem 1.25rem; }
    .quick-item i { font-size: 1.1rem; }
    .quick-item-title { font-size: 0.75rem; }
    .quick-item-sub { font-size: 0.65rem; }
    /* CTA */
    .cta-full { padding: 2.5rem 1.25rem; }
    .cta-full h2 { font-size: 1.8rem; }
    /* LOCATION */
    .loc-row { font-size: 0.88rem; }
    .hours-box { padding: 1.2rem; }
    .h-row { font-size: 0.82rem; }
    .map-box { min-height: 220px; }
    .map-box iframe { min-height: 220px; }
    /* FOOTER */
    .footer-desc { font-size: 0.82rem; }
    .footer-links a, .footer-links li { font-size: 0.82rem; }
    .footer-bottom { font-size: 0.72rem; }
}
@media (max-width: 375px) {
    .container { padding-left: 0.85rem; padding-right: 0.85rem; }
    .hero h1 { font-size: 1.9rem; margin-bottom: 0.8rem; }
    .hero-sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .hero-badge span { font-size: 0.55rem; }
    .hero-content { padding: 0 1rem; }
    .btn-glow, .btn-outline, .btn-brown { padding: 0.75rem 1.5rem; font-size: 0.7rem; }
    .section-tag { font-size: 0.68rem; margin-bottom: 0.4rem; }
    .section-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
    .about-image { min-height: 200px; }
    .about-content h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
    .stat-num { font-size: 1.8rem; }
    .menu-panel-info h3 { font-size: 1.3rem; }
    .club-text h2 { font-size: 1.6rem; }
    .cta-full h2 { font-size: 1.6rem; }
    .loc-grid { margin-top: 1.5rem; }
    .loc-row { font-size: 0.85rem; }
    .footer-grid { gap: 1.5rem; }
    .nav-logo img { max-height: 50px; }
}
@media (max-width: 320px) {
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .hero h1 { font-size: 1.6rem; margin-bottom: 0.6rem; }
    .hero-sub { font-size: 0.8rem; margin-bottom: 1.2rem; }
    .hero-badge { padding: 0.3rem 0.6rem; margin-bottom: 1rem; }
    .hero-badge span { font-size: 0.5rem; letter-spacing: 1.5px; }
    .btn-glow, .btn-outline, .btn-brown { padding: 0.7rem 1.2rem; font-size: 0.68rem; letter-spacing: 1px; }
    .section { padding-top: 2rem; padding-bottom: 2rem; }
    .section-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
    .section-title { font-size: 1.4rem; margin-bottom: 0.4rem; }
    .about-image { min-height: 180px; }
    .about-content { padding: 1.5rem 0.75rem; }
    .about-content h2 { font-size: 1.4rem; margin-bottom: 0.6rem; }
    .about-content p { font-size: 0.82rem; }
    .about-stats { gap: 1rem; }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: 0.6rem; }
    .menu-tabs { margin-top: 1.2rem; margin-bottom: 1.2rem; }
    .menu-tab { padding: 0.6rem 1rem; font-size: 0.68rem; }
    .menu-panel-info h3 { font-size: 1.2rem; }
    .menu-panel-info p { font-size: 0.82rem; }
    .menu-highlights-list li { font-size: 0.78rem; }
    .menu-panel-visual { min-height: 100px; }
    .club-text h2 { font-size: 1.4rem; }
    .perk { font-size: 0.72rem; }
    .quick-item { padding: 0.8rem 1rem; gap: 0.7rem; }
    .quick-item-title { font-size: 0.7rem; }
    .quick-item-sub { font-size: 0.6rem; }
    .cta-full { padding: 2rem 1rem; }
    .cta-full h2 { font-size: 1.4rem; }
    .hours-box { padding: 1rem; }
    .h-row { font-size: 0.78rem; padding: 0.4rem 0; }
    .loc-row { font-size: 0.82rem; }
    .map-box { min-height: 180px; }
    .map-box iframe { min-height: 180px; }
    .footer { padding: 2rem 0 1rem; }
    .footer-logo img { max-height: 50px; }
    .footer-desc { font-size: 0.78rem; }
    .footer-links a, .footer-links li { font-size: 0.78rem; }
    .nav-logo img { max-height: 42px; }
}
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 400px; height: auto; padding-top: 5rem; padding-bottom: 2rem; }
    .hero-content { padding: 0 2rem; justify-content: center; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero-sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .hero-btns { flex-direction: row; max-width: none; }
    .hero-btns a { width: auto; }
}
    
