@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   EL GRINGO — Cantina premium · Tulum / Oaxaca
   ============================================================ */
:root {
    /* warm sand / cream */
    --sand: #f3e7d3;
    --sand-2: #ecdcc2;
    --paper: #fbf4e8;
    --paper-2: #f7eddc;
    /* terracotta / ocre / brick / wood */
    --terra: #c0532e;
    --terra-deep: #9e3d22;
    --ocre: #d98a35;
    --ocre-soft: #e3a955;
    --brick: #8c2d1b;
    --brick-deep: #6f2114;
    --wood: #7a4a2b;
    --gold: #d9a441;
    --cactus: #6e8b4f;
    --cactus-deep: #4f6a37;
    /* night (dark warm) */
    --noche: #20130d;
    --noche-2: #2c1a11;
    --noche-3: #3a241a;
    /* ink / text on light */
    --ink: #2b1c12;
    --ink-soft: #6e5945;
    --ink-faint: #a18d75;
    /* text on dark */
    --cream: #f3e7d3;
    --cream-dim: #cdb89c;
    --cream-faint: #8a755c;

    --line: rgba(43,28,18,0.14);
    --line-soft: rgba(43,28,18,0.08);
    --line-cream: rgba(243,231,211,0.16);

    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --expo: cubic-bezier(0.16, 1, 0.3, 1);
    --back: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-card: 0 26px 60px -28px rgba(60,26,12,0.55);
    --shadow-soft: 0 18px 40px -24px rgba(60,26,12,0.4);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--sand-2); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 6px; border: 2px solid var(--sand-2); }

body {
    font-family: var(--sans);
    background: var(--sand);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* paper grain overlay */
body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    background-size: 220px; mix-blend-mode: multiply; opacity: 0.6;
}

::selection { background: var(--terra); color: var(--paper); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== TYPE PRIMITIVES ===== */
.label {
    font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--terra); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.label::before { content: ''; width: 26px; height: 1.5px; background: var(--ocre); display: inline-block; }
.label.centered { justify-content: center; }
.label.on-dark { color: var(--ocre-soft); }
.label.on-dark::before { background: var(--ocre); }

.heading {
    font-family: var(--serif); font-weight: 400; line-height: 1.04;
    font-size: clamp(34px, 5vw, 72px); letter-spacing: -0.5px; color: var(--ink);
    font-optical-sizing: auto;
}
.heading em { font-style: italic; color: var(--terra); font-weight: 500; }
.heading.on-dark { color: var(--paper); }
.heading.on-dark em { color: var(--ocre-soft); }

.body-text {
    font-size: 16px; font-weight: 400; line-height: 1.8; color: var(--ink-soft); max-width: 520px;
}
.body-text.on-dark { color: var(--cream-dim); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 18px 38px; border-radius: 100px; position: relative; overflow: hidden;
    transition: transform 0.5s var(--expo), box-shadow 0.5s var(--expo), color 0.4s var(--expo);
    border: none; background: var(--terra); color: var(--paper);
    box-shadow: 0 12px 30px -12px rgba(192,83,46,0.7);
}
.btn span { position: relative; z-index: 1; }
.btn::before { content: ''; position: absolute; inset: 0; background: var(--brick); transform: translateY(101%); transition: transform 0.55s var(--expo); z-index: 0; }
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -14px rgba(140,45,27,0.75); }

.btn-ghost {
    background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none;
}
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-soft); }

.btn-cream { background: var(--paper); color: var(--brick); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5); }
.btn-cream::before { background: var(--ocre); }
.btn-cream:hover { color: var(--noche); }

.btn-outline-cream { background: transparent; color: var(--paper); border: 1.5px solid var(--line-cream); box-shadow: none; }
.btn-outline-cream::before { background: var(--paper); }
.btn-outline-cream:hover { color: var(--noche); border-color: var(--paper); }

/* ===== PAPEL PICADO DIVIDER ===== */
.papel { height: 46px; width: 100%; background: url('../img/papel.svg') repeat-x top center; background-size: auto 46px; opacity: 0.92; position: relative; z-index: 2; }
.papel.flip { transform: scaleY(-1); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--brick);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 26px;
    transition: opacity 1s var(--expo), visibility 1s, transform 1.1s var(--expo);
    overflow: hidden;
}
.preloader::before {
    content: ''; position: absolute; width: 150vmax; height: 150vmax; border-radius: 50%;
    background: radial-gradient(circle, var(--ocre) 0%, var(--terra) 38%, transparent 60%);
    opacity: 0; transform: scale(0.2); animation: sunrise 2s 0.2s var(--expo) forwards;
}
@keyframes sunrise { to { opacity: 0.55; transform: scale(1); } }
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.04); }
.preloader-mark { width: 92px; position: relative; z-index: 1; opacity: 0; transform: translateY(16px) scale(0.9); animation: plIn 0.9s 0.35s var(--back) forwards; }
.preloader-word { position: relative; z-index: 1; font-family: var(--serif); font-weight: 600; font-size: 30px; letter-spacing: 6px; text-transform: uppercase; color: var(--paper); opacity: 0; transform: translateY(14px); animation: plIn 0.9s 0.55s var(--expo) forwards; }
.preloader-bar { position: relative; z-index: 1; width: 120px; height: 2px; background: rgba(255,255,255,0.18); overflow: hidden; border-radius: 2px; }
.preloader-bar::after { content: ''; position: absolute; inset: 0; width: 0; background: var(--paper); animation: plBar 1.5s 0.5s var(--expo) forwards; }
@keyframes plIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes plBar { to { width: 100%; } }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 84px; padding: 0 44px;
    display: flex; align-items: center; justify-content: space-between; transition: all 0.5s var(--expo);
}
.nav::before { content: ''; position: absolute; inset: 0; background: rgba(251,244,232,0); backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); transition: all 0.5s var(--expo); z-index: -1; border-bottom: 1px solid transparent; }
.nav.scrolled { height: 68px; }
.nav.scrolled::before { background: rgba(251,244,232,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom-color: var(--line-soft); box-shadow: 0 10px 40px -24px rgba(60,26,12,0.5); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; transition: height 0.5s var(--expo); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
.nav.scrolled .nav-logo img { height: 36px; }
.nav-word { font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: 3px; text-transform: uppercase; color: var(--paper); transition: color 0.5s var(--expo), font-size 0.5s var(--expo); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.nav.scrolled .nav-word { color: var(--brick); font-size: 19px; text-shadow: none; }
.nav.light-context .nav-word { color: var(--brick); text-shadow: none; }

.nav-center { display: flex; gap: 34px; list-style: none; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-center a {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper);
    position: relative; padding: 6px 0; transition: color 0.3s; text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.nav-center a::after { content: ''; position: absolute; bottom: -1px; left: 50%; width: 0; height: 2px; background: var(--ocre); border-radius: 2px; transition: width 0.45s var(--expo), left 0.45s var(--expo); }
.nav-center a:hover::after { width: 100%; left: 0; }
.nav.scrolled .nav-center a, .nav.light-context .nav-center a { color: var(--ink); text-shadow: none; }
.nav.scrolled .nav-center a:hover, .nav.light-context .nav-center a:hover { color: var(--terra); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); background: var(--terra); padding: 13px 26px; border-radius: 100px; transition: all 0.45s var(--expo); position: relative; overflow: hidden; box-shadow: 0 10px 24px -12px rgba(192,83,46,0.8); }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--brick); transform: translateY(101%); transition: transform 0.5s var(--expo); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta-alt { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); border: 1.5px solid rgba(243,231,211,0.5); padding: 12px 24px; border-radius: 100px; transition: all 0.4s var(--expo); }
.nav.scrolled .nav-cta-alt, .nav.light-context .nav-cta-alt { color: var(--brick); border-color: var(--line); }
.nav-cta-alt:hover { background: var(--ocre); border-color: var(--ocre); color: var(--noche); }
@media (max-width: 980px) { .nav-cta-alt { display: none; } }

.burger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1001; }
.burger i { display: block; width: 100%; height: 2px; background: var(--paper); border-radius: 2px; position: absolute; left: 0; transition: all 0.4s var(--expo); box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.nav.scrolled .burger i, .nav.light-context .burger i { background: var(--brick); box-shadow: none; }
.burger i:nth-child(1) { top: 0; }
.burger i:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger i:nth-child(3) { bottom: 0; width: 64%; }
.burger.active i { background: var(--brick); }
.burger.active i:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.active i:nth-child(2) { opacity: 0; transform: translateX(-12px); }
.burger.active i:nth-child(3) { bottom: 50%; width: 100%; transform: translateY(50%) rotate(-45deg); }

/* mobile overlay */
.mobile-overlay { position: fixed; top: 0; left: 0; bottom: 0; width: 390px; max-width: 86vw; z-index: 1000; background: var(--paper); display: flex; flex-direction: column; justify-content: center; padding: 104px 44px 56px; transform: translateX(-100%); transition: transform 0.65s var(--expo); overflow-y: auto; box-shadow: 30px 0 80px -30px rgba(60,26,12,0.6); }
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px; background: url('../img/papel.svg') repeat-x; background-size: auto 38px; opacity: 0.9; }
.mobile-overlay-backdrop { position: fixed; inset: 0; z-index: 999; background: rgba(32,19,13,0.5); opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s; cursor: pointer; backdrop-filter: blur(2px); }
.mobile-overlay-backdrop.open { opacity: 1; visibility: visible; }
.mobile-overlay .side-close { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.mobile-overlay .side-close::before, .mobile-overlay .side-close::after { content: ''; position: absolute; top: 50%; left: 9px; width: 22px; height: 2px; background: var(--brick); border-radius: 2px; }
.mobile-overlay .side-close::before { transform: rotate(45deg); }
.mobile-overlay .side-close::after { transform: rotate(-45deg); }
.mobile-overlay > a { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line-soft); opacity: 0; transform: translateX(-26px); transition: transform 0.55s var(--expo), opacity 0.55s var(--expo), color 0.3s; }
.mobile-overlay.open > a { opacity: 1; transform: translateX(0); }
.mobile-overlay.open > a:nth-child(3){transition-delay:.05s}.mobile-overlay.open > a:nth-child(4){transition-delay:.1s}.mobile-overlay.open > a:nth-child(5){transition-delay:.15s}.mobile-overlay.open > a:nth-child(6){transition-delay:.2s}.mobile-overlay.open > a:nth-child(7){transition-delay:.25s}
.mobile-overlay > a:hover { color: var(--terra); }
.side-cta { margin-top: 26px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); background: var(--terra); padding: 17px 34px; border-radius: 100px; text-align: center; opacity: 0; transform: translateX(-26px); transition: transform 0.55s var(--expo) 0.3s, opacity 0.55s var(--expo) 0.3s, background 0.3s; }
.mobile-overlay.open .side-cta { opacity: 1; transform: translateX(0); }
.side-cta:hover { background: var(--brick); }
.side-cta-alt { margin-top: 12px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brick); border: 1.5px solid var(--line); padding: 16px 34px; border-radius: 100px; text-align: center; opacity: 0; transform: translateX(-26px); transition: transform 0.55s var(--expo) 0.36s, opacity 0.55s var(--expo) 0.36s, all 0.3s; }
.mobile-overlay.open .side-cta-alt { opacity: 1; transform: translateX(0); }
.side-cta-alt:hover { background: var(--ocre); border-color: var(--ocre); color: var(--noche); }
.side-info { margin-top: auto; padding-top: 28px; opacity: 0; transition: opacity 0.6s var(--expo) 0.4s; }
.mobile-overlay.open .side-info { opacity: 1; }
.side-info p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.side-info a { color: var(--terra); font-weight: 600; }

/* ===== FLOATING RESERVE ===== */
.floating-reserve {
    position: fixed; right: 22px; bottom: 22px; z-index: 900;
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--terra); color: var(--paper); padding: 15px 26px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    box-shadow: 0 16px 38px -12px rgba(140,45,27,0.8); opacity: 0; transform: translateY(28px) scale(0.92);
    transition: transform 0.6s var(--back), opacity 0.6s var(--expo), background 0.3s; pointer-events: none;
}
.floating-reserve.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-reserve:hover { background: var(--brick); transform: translateY(-3px) scale(1.02); }
.floating-reserve svg { width: 16px; height: 16px; }
.floating-reserve .fr-pulse { position: absolute; inset: 0; border-radius: 100px; border: 2px solid var(--ocre); opacity: 0; animation: frPulse 2.6s infinite; }
@keyframes frPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.18); opacity: 0; } }
@media (max-width: 600px) { .floating-reserve { right: 14px; bottom: 14px; padding: 14px 22px; font-size: 11px; } }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.18); transition: transform 13s linear; will-change: transform; }
.hero.in-view .hero-media img { transform: scale(1.04); }
.hero-dim { position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(105deg, rgba(32,19,13,0.82) 0%, rgba(110,45,20,0.34) 42%, rgba(217,138,53,0.12) 72%, rgba(32,19,13,0.2) 100%),
      linear-gradient(to top, rgba(32,19,13,0.92) 0%, rgba(32,19,13,0.18) 42%, rgba(32,19,13,0.36) 100%);
}
.hero-glow { position: absolute; z-index: 1; right: -8%; top: 8%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(227,169,85,0.42) 0%, rgba(192,83,46,0.18) 40%, transparent 66%); pointer-events: none; filter: blur(6px); }
.hero-inner { position: relative; z-index: 3; max-width: 1240px; width: 100%; margin: 0 auto; padding: 120px 44px 130px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--ocre-soft); margin-bottom: 26px; opacity: 0; transform: translateY(20px); filter: blur(4px); }
.hero-eyebrow span { width: 30px; height: 1.5px; background: var(--ocre); }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(58px, 10.5vw, 168px); line-height: 0.9; color: var(--paper); letter-spacing: -2px; text-shadow: 0 10px 50px rgba(0,0,0,0.6); }
.hero h1 .l1, .hero h1 .l2 { display: block; overflow: hidden; }
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(112%) rotate(4deg); }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--ocre-soft); }
.hero-sub { font-size: clamp(16px, 2vw, 21px); font-weight: 400; color: var(--cream); max-width: 560px; margin-top: 30px; line-height: 1.65; opacity: 0; transform: translateY(22px); filter: blur(5px); text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.hero-cta-wrap { margin-top: 42px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; opacity: 0; transform: translateY(22px); filter: blur(5px); }
.btn { box-sizing: border-box; }
.hero-meta { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 26px; opacity: 0; transform: translateY(20px); filter: blur(4px); }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; color: var(--cream); text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.hero-meta-item svg { width: 17px; height: 17px; color: var(--ocre-soft); flex-shrink: 0; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1s 2.6s var(--expo) forwards; }
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-dim); }
.hero-scroll i { width: 1.5px; height: 46px; background: linear-gradient(var(--ocre), transparent); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 60%; background: var(--paper); animation: tick 2s infinite; }
@keyframes tick { 0% { top: -60%; } 100% { top: 120%; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===== MARQUEE ===== */
.marquee { background: var(--brick); color: var(--paper); padding: 20px 0; overflow: hidden; user-select: none; position: relative; z-index: 2; border-top: 2px solid var(--brick-deep); }
.marquee-inner { display: flex; width: max-content; animation: slide 38s linear infinite; will-change: transform; }
.marquee-text { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(22px, 3vw, 34px); white-space: nowrap; padding: 0 6px; display: flex; align-items: center; }
.marquee-text span.star { width: 20px; height: 20px; margin: 0 26px; flex-shrink: 0; color: var(--ocre); }
.marquee:hover .marquee-inner { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ===== SECTION FRAME ===== */
.section { padding: 120px 44px; position: relative; }
.section.tight { padding: 90px 44px; }
.section.sand { background: var(--sand); }
.section.paper { background: var(--paper); }
.wrap { max-width: 1240px; margin: 0 auto; }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .label { justify-content: center; }
.sec-head .body-text { margin-top: 22px; }
.sec-head.center .body-text { margin-left: auto; margin-right: auto; }

/* ===== INTRO / VALUE ===== */
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.intro-copy h2 { margin-bottom: 6px; }
.intro-copy .body-text { margin-top: 24px; }
.intro-copy .body-text + .body-text { margin-top: 16px; }
.intro-media { position: relative; }
.intro-media img { width: 100%; border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-card); }
.intro-media .intro-badge { position: absolute; bottom: -26px; left: -26px; background: var(--brick); color: var(--paper); padding: 22px 28px; border-radius: 8px; box-shadow: var(--shadow-card); max-width: 230px; }
.intro-media .intro-badge strong { font-family: var(--serif); font-size: 30px; font-weight: 600; display: block; line-height: 1; color: var(--ocre-soft); }
.intro-media .intro-badge span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: var(--cream-dim); margin-top: 8px; display: block; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 100px; background: var(--paper-2); border: 1px solid var(--line-soft); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.chip svg { width: 16px; height: 16px; color: var(--terra); }

/* ===== SIGNATURE DISHES ===== */
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.dish-grid .dish:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dish { position: relative; overflow: hidden; border-radius: 10px; min-height: 260px; display: flex; box-shadow: var(--shadow-soft); transition: transform 0.6s var(--expo), box-shadow 0.6s var(--expo); cursor: pointer; }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.dish img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--expo), filter 0.8s; }
.dish:hover img { transform: scale(1.08); }
.dish::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,19,13,0.92) 0%, rgba(32,19,13,0.34) 48%, rgba(32,19,13,0.05) 100%); transition: opacity 0.5s; }
.dish-body { position: relative; z-index: 2; margin-top: auto; padding: 26px 26px 24px; width: 100%; }
.dish-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ocre-soft); margin-bottom: 8px; display: block; }
.dish-name { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--paper); display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.dish:nth-child(1) .dish-name { font-size: clamp(28px, 3vw, 40px); }
.dish-price { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ocre-soft); white-space: nowrap; }
.dish-desc { font-size: 13px; color: var(--cream-dim); margin-top: 8px; max-width: 90%; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--expo), opacity 0.5s var(--expo), margin 0.5s; }
.dish:hover .dish-desc { max-height: 90px; opacity: 1; }
.dish:nth-child(1) .dish-desc { max-height: 90px; opacity: 1; }
.dish-cta { text-align: center; margin-top: 56px; }

/* ===== HAPPY HOUR ===== */
.happy { position: relative; background: var(--noche); color: var(--paper); overflow: hidden; padding: 0; }
.happy-bg { position: absolute; inset: 0; z-index: 0; }
.happy-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; filter: saturate(1.05); }
.happy-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 78% 50%, rgba(217,138,53,0.3) 0%, transparent 60%), linear-gradient(95deg, var(--noche) 18%, rgba(32,19,13,0.62) 60%, rgba(32,19,13,0.4) 100%); }
.happy-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 120px 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.happy-copy .label { color: var(--ocre-soft); }
.happy-copy .label::before { background: var(--ocre); }
.happy h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 66px); color: var(--paper); line-height: 1.05; }
.happy h2 em { font-style: italic; color: var(--ocre-soft); }
.happy-copy p { color: var(--cream-dim); font-size: 16px; line-height: 1.8; max-width: 460px; margin-top: 20px; }
.happy-time { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 13px 24px; border-radius: 100px; border: 1.5px solid rgba(227,169,85,0.4); font-weight: 700; letter-spacing: 1px; }
.happy-time svg { width: 18px; height: 18px; color: var(--ocre-soft); }
.happy-disc { display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1; max-width: 360px; margin: 0 auto; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--terra), var(--brick) 75%); box-shadow: 0 30px 70px -26px rgba(0,0,0,0.7), inset 0 0 0 2px rgba(227,169,85,0.3); position: relative; }
.happy-disc::before { content: ''; position: absolute; inset: 14px; border-radius: 50%; border: 1.5px dashed rgba(243,231,211,0.32); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.happy-disc .hd-top { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ocre-soft); }
.happy-disc .hd-big { font-family: var(--serif); font-weight: 600; font-size: clamp(72px, 12vw, 128px); line-height: 0.9; color: var(--paper); margin: 6px 0; }
.happy-disc .hd-sub { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--cream); text-transform: uppercase; }

/* ===== COCKTAILS (immersive, liquid) ===== */
.cocktails { background: var(--noche-2); color: var(--paper); position: relative; overflow: hidden; }
.cocktails::before { content: ''; position: absolute; top: -10%; left: -5%; width: 40vw; height: 40vw; border-radius: 50%; background: radial-gradient(circle, rgba(110,139,79,0.16), transparent 65%); pointer-events: none; }
.cocktail-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px; }
.ck { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4.4; cursor: pointer; box-shadow: var(--shadow-card); }
.ck img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--expo); }
.ck:hover img { transform: scale(1.07); }
.ck-base { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,8,0.9) 0%, rgba(20,12,8,0.2) 55%, transparent 100%); z-index: 1; }
.ck-liquid { position: absolute; left: 0; right: 0; bottom: 0; height: 100%; z-index: 1; background: linear-gradient(to top, var(--liquid, var(--terra)) 0%, color-mix(in srgb, var(--liquid, var(--terra)) 60%, transparent) 70%, transparent 100%); transform: translateY(78%); transition: transform 0.7s var(--expo); mix-blend-mode: screen; opacity: 0.85; }
.ck:hover .ck-liquid { transform: translateY(34%); }
.ck-liquid::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 14px; transform: translateY(-50%); background: var(--liquid, var(--terra)); filter: blur(5px); opacity: 0.6; border-radius: 50%; }
.ck-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 20px; }
.ck-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--paper); }
.ck-body .ck-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.ck-body .ck-note { font-size: 11.5px; color: var(--cream-dim); letter-spacing: 0.3px; }
.ck-body .ck-price { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--ocre-soft); }
.cocktails-note { margin-top: 40px; text-align: center; font-size: 13.5px; color: var(--cream-dim); }
.cocktails-note a { color: var(--ocre-soft); border-bottom: 1px solid var(--ocre); padding-bottom: 2px; }

/* ===== NOTRE UNIVERS ===== */
.univers { background: var(--sand); }
.univers-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; gap: 18px; margin-top: 56px; }
.uv { position: relative; overflow: hidden; border-radius: 10px; min-height: 200px; box-shadow: var(--shadow-soft); }
.uv img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--expo); }
.uv:hover img { transform: scale(1.06); }
.uv-1 { grid-column: span 7; grid-row: span 2; }
.uv-2 { grid-column: span 5; }
.uv-3 { grid-column: span 5; }
.uv-cap { position: absolute; left: 0; bottom: 0; padding: 22px 24px; z-index: 2; }
.uv-cap span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--paper); text-shadow: 0 3px 16px rgba(0,0,0,0.6); }
.uv::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,19,13,0.6), transparent 55%); opacity: 0; transition: opacity 0.5s; }
.uv:hover::after, .uv.has-cap::after { opacity: 1; }
.univers-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 80px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.univers-feature .uf-media { position: relative; min-height: 420px; overflow: hidden; }
.univers-feature .uf-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.univers-feature .uf-copy { background: var(--brick); color: var(--paper); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.univers-feature .uf-copy .label { color: var(--ocre-soft); }
.univers-feature .uf-copy .label::before { background: var(--ocre); }
.univers-feature .uf-copy h3 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; line-height: 1.08; }
.univers-feature .uf-copy h3 em { font-style: italic; color: var(--ocre-soft); }
.univers-feature .uf-copy p { color: var(--cream-dim); line-height: 1.8; margin-top: 18px; max-width: 440px; }
.uf-terrasse { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-weight: 700; letter-spacing: 0.5px; }
.uf-terrasse svg { width: 20px; height: 20px; color: var(--ocre-soft); }

/* ===== GALLERY MASONRY ===== */
.gallery { background: var(--paper); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.ig-handle { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.5px; color: var(--terra); }
.ig-handle svg { width: 22px; height: 22px; }
.masonry { columns: 4; column-gap: 16px; margin-top: 54px; }
.masonry figure { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; position: relative; box-shadow: var(--shadow-soft); }
.masonry img { width: 100%; transition: transform 1.1s var(--expo), filter 0.6s; }
.masonry figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(140,45,27,0.5), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.masonry figure:hover::after { opacity: 1; }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figure .ig-ico { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; color: var(--paper); opacity: 0; transform: translateY(-6px); transition: all 0.5s var(--expo); z-index: 2; }
.masonry figure:hover .ig-ico { opacity: 0.95; transform: translateY(0); }

/* ===== RESERVATION ===== */
.reserve { position: relative; background: var(--noche); color: var(--paper); overflow: hidden; }
.reserve-bg { position: absolute; inset: 0; z-index: 0; }
.reserve-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.reserve-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--noche) 30%, rgba(32,19,13,0.5)); }
.reserve-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 120px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.reserve h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.05; color: var(--paper); }
.reserve h2 em { font-style: italic; color: var(--ocre-soft); }
.reserve-lead { color: var(--cream-dim); line-height: 1.8; margin-top: 20px; max-width: 460px; }
.reserve-steps { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.reserve-step { display: flex; align-items: center; gap: 12px; }
.reserve-step b { font-family: var(--serif); font-size: 28px; color: var(--ocre-soft); font-weight: 600; }
.reserve-step span { font-size: 13px; color: var(--cream-dim); max-width: 120px; line-height: 1.4; }
.reserve-card { background: var(--paper); border-radius: 14px; padding: 38px 34px; box-shadow: var(--shadow-card); color: var(--ink); }
.reserve-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.reserve-card p.rc-sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; }
.rc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select { width: 100%; background: var(--paper-2); border: 1.5px solid var(--line-soft); border-radius: 8px; padding: 13px 15px; font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.3s, background 0.3s; }
.field input:focus, .field select:focus { border-color: var(--terra); background: var(--paper); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c0532e' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field + .field { margin-top: 14px; }
.rc-row .field + .field { margin-top: 0; }
.reserve-card .btn { width: 100%; justify-content: center; margin-top: 18px; }
.reserve-card .rc-or { text-align: center; margin-top: 18px; font-size: 13px; color: var(--ink-soft); }
.reserve-card .rc-tel { display: block; text-align: center; margin-top: 6px; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--terra); }
.reserve-card .rc-tel:hover { color: var(--brick); }

/* ===== INFOS PRATIQUES ===== */
.infos { background: var(--sand); }
.infos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.info-card { background: var(--paper); border-radius: 12px; padding: 34px 30px; box-shadow: var(--shadow-soft); transition: transform 0.5s var(--expo), box-shadow 0.5s var(--expo); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.info-card .ic-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--terra); }
.info-card .ic-ico svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.info-card .ic-val { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.info-card .ic-val small { display: block; font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0; }
.info-card .ic-tel { color: var(--terra); }
.info-card .pay-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.info-card .pay-row span { font-size: 11px; font-weight: 600; color: var(--ink-soft); background: var(--paper-2); border: 1px solid var(--line-soft); padding: 4px 9px; border-radius: 6px; }
.delivery-row { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.delivery-row a { font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 8px; color: var(--paper); }
.delivery-row a.uber { background: #06c167; }
.delivery-row a.deliveroo { background: #00ccbc; }
#livraison { text-align: center; }
#livraison .ic-ico { margin-left: auto; margin-right: auto; }
#livraison .delivery-row, #livraison .pay-row { justify-content: center; }

/* ===== FAQ ===== */
.faq { background: var(--paper); }
.faq-wrap { max-width: 820px; margin: 54px auto 0; }
.faq-it { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; gap: 20px; }
.faq-q h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); transition: color 0.3s; }
.faq-q:hover h3 { color: var(--terra); }
.faq-plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--terra); border-radius: 2px; transition: transform 0.5s var(--expo); }
.faq-plus::before { width: 22px; height: 2px; top: 10px; left: 0; }
.faq-plus::after { width: 2px; height: 22px; left: 10px; top: 0; }
.faq-it.open .faq-plus::after { transform: rotate(90deg) scaleX(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--expo); }
.faq-it.open .faq-a { max-height: 240px; }
.faq-a p { font-size: 15px; line-height: 1.8; color: var(--ink-soft); padding-bottom: 26px; }
.faq-a a { color: var(--terra); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: var(--noche); color: var(--cream); padding: 0; position: relative; }
.footer .papel { opacity: 0.7; }
.footer-main { max-width: 1240px; margin: 0 auto; padding: 80px 44px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand .nav-logo { margin-bottom: 22px; }
.footer-brand .nav-word { color: var(--paper); text-shadow: none; }
.footer-brand p { color: var(--cream-faint); font-size: 14px; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-cream); display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--expo); }
.footer-social a svg { width: 18px; height: 18px; color: var(--cream-dim); transition: color 0.3s; }
.footer-social a:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-3px); }
.footer-social a:hover svg { color: var(--paper); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ocre-soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col p { font-size: 14px; color: var(--cream-dim); transition: color 0.3s; line-height: 1.6; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid var(--line-cream); max-width: 1240px; margin: 0 auto; padding: 24px 44px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: var(--cream-faint); }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--cream-dim); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 130px 44px 70px; background: var(--brick); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(217,138,53,0.4), transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .label { color: var(--ocre-soft); justify-content: center; }
.page-hero .label::before { background: var(--ocre); }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6.5vw, 84px); color: var(--paper); line-height: 1.02; letter-spacing: -1px; }
.page-hero h1 em { font-style: italic; color: var(--ocre-soft); }
.page-hero p { color: var(--cream-dim); margin-top: 18px; font-size: 16px; line-height: 1.7; }

/* ===== MENU PAGE ===== */
.menu-wrap { max-width: 1080px; margin: 0 auto; padding: 90px 44px 120px; }
.menu-intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 64px; align-items: start; }
.menu-cat { margin-bottom: 46px; break-inside: avoid; }
.menu-cat-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.menu-cat-head h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); font-weight: 500; color: var(--brick); }
.menu-cat-head .mc-line { flex: 1; height: 1px; background: var(--line); }
.menu-cat > .mc-note { font-size: 13px; color: var(--ink-soft); font-style: italic; margin-bottom: 18px; line-height: 1.6; }
.m-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px dotted var(--line); }
.m-row:last-child { border-bottom: none; }
.m-name { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); }
.m-name .m-tagv { font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cactus-deep); background: rgba(110,139,79,0.16); padding: 2px 7px; border-radius: 5px; margin-left: 8px; vertical-align: middle; }
.m-desc { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; line-height: 1.55; max-width: 92%; }
.m-price { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--terra); white-space: nowrap; }
.m-price small { font-size: 12px; color: var(--ink-soft); font-weight: 400; }
.menu-banner { background: var(--brick); color: var(--paper); border-radius: 12px; padding: 30px 34px; margin: 8px 0 46px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.menu-banner .mb-l h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.menu-banner .mb-l h3 em { color: var(--ocre-soft); font-style: italic; }
.menu-banner .mb-l p { color: var(--cream-dim); font-size: 13.5px; margin-top: 4px; }
.menu-banner .mb-big { font-family: var(--serif); font-size: clamp(40px, 7vw, 64px); font-weight: 600; color: var(--ocre-soft); line-height: 1; }
.menu-foot { text-align: center; margin-top: 30px; font-size: 12.5px; color: var(--ink-faint); letter-spacing: 0.5px; }

/* ===== CONTACT PAGE ===== */
.contact-wrap { max-width: 1180px; margin: 0 auto; padding: 90px 44px 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-side h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; color: var(--ink); line-height: 1.1; }
.contact-side h2 em { font-style: italic; color: var(--terra); }
.contact-block { margin-top: 30px; }
.contact-block .cb-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.contact-block .cb-val { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.contact-block .cb-val a { color: var(--terra); }
.contact-map { margin-top: 30px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft); }
.contact-map iframe { width: 100%; height: 280px; border: 0; display: block; filter: saturate(1.05); }
.contact-form { background: var(--paper); border-radius: 14px; padding: 40px 36px; box-shadow: var(--shadow-card); align-self: start; }
.contact-form h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 6px; }
.contact-form .cf-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.field textarea { width: 100%; background: var(--paper-2); border: 1.5px solid var(--line-soft); border-radius: 8px; padding: 13px 15px; font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; min-height: 130px; resize: vertical; transition: border-color 0.3s, background 0.3s; }
.field textarea:focus { border-color: var(--terra); background: var(--paper); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 90px 44px 120px; }
.legal-wrap h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--brick); margin: 44px 0 16px; }
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap p, .legal-wrap li { font-size: 15px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 12px; }
.legal-wrap ul { list-style: none; padding-left: 0; }
.legal-wrap li { padding-left: 18px; position: relative; }
.legal-wrap li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--ocre); border-radius: 50%; }
.legal-wrap a { color: var(--terra); font-weight: 600; }

/* ===== REVEAL ANIMATIONS ===== */
.r { opacity: 0; transform: translateY(48px); transition: opacity 1s var(--expo), transform 1s var(--expo); }
.r.v { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-56px); transition: opacity 1s var(--expo), transform 1s var(--expo); }
.rl.v { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(56px); transition: opacity 1s var(--expo), transform 1s var(--expo); }
.rr.v { opacity: 1; transform: none; }
.rs { opacity: 0; transform: scale(0.94); transition: opacity 1.1s var(--expo), transform 1.1s var(--expo); }
.rs.v { opacity: 1; transform: none; }
[data-delay="1"]{transition-delay:.08s}[data-delay="2"]{transition-delay:.16s}[data-delay="3"]{transition-delay:.24s}[data-delay="4"]{transition-delay:.32s}[data-delay="5"]{transition-delay:.4s}[data-delay="6"]{transition-delay:.48s}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero-media img { transform: scale(1.04); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    .dish-grid { grid-template-columns: repeat(2, 1fr); }
    .dish-grid .dish:nth-child(1) { grid-column: span 2; grid-row: span 1; min-height: 360px; }
    .cocktail-grid { grid-template-columns: repeat(3, 1fr); }
    .cocktail-grid .ck:nth-child(4), .cocktail-grid .ck:nth-child(5) { grid-column: span 1; }
    .masonry { columns: 3; }
    .infos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 920px) {
    .nav-center { display: none; }
    .burger { display: block; }
    .intro-grid { grid-template-columns: 1fr; gap: 60px; }
    .intro-media { max-width: 480px; }
    .intro-media .intro-badge { left: 0; }
    .happy-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .happy-copy .label { justify-content: center; }
    .happy-copy p { margin-left: auto; margin-right: auto; }
    .univers-feature { grid-template-columns: 1fr; }
    .univers-feature .uf-media { min-height: 300px; }
    .reserve-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 760px) {
    .section { padding: 80px 22px; }
    .section.tight { padding: 64px 22px; }
    .nav { padding: 0 20px; height: 70px; }
    .nav.scrolled { height: 60px; }
    .hero-inner { padding: 110px 22px 110px; }
    .hero h1 { letter-spacing: -1px; }
    .hero-cta-wrap { width: 100%; align-items: stretch; }
    .hero-cta-wrap .btn { justify-content: center; min-width: 0; }
    .dish-grid { grid-template-columns: 1fr; gap: 16px; }
    .dish-grid .dish:nth-child(1) { grid-column: span 1; min-height: 320px; }
    .dish { min-height: 300px; }
    .dish-desc { max-height: 90px !important; opacity: 1 !important; }
    .cocktail-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ck-liquid { transform: translateY(40%); }
    .happy-inner { padding: 80px 22px; }
    .reserve-inner { padding: 80px 22px; }
    .happy-bg img { opacity: 0.22; }
    .univers-grid { grid-template-columns: 1fr; }
    .uv-1, .uv-2, .uv-3 { grid-column: span 1; grid-row: span 1; min-height: 230px; }
    .masonry { columns: 2; column-gap: 12px; }
    .masonry figure { margin-bottom: 12px; }
    .infos-grid { grid-template-columns: 1fr; }
    .rc-row { grid-template-columns: 1fr; gap: 0; }
    .rc-row .field + .field { margin-top: 14px; }
    .reserve-card { padding: 30px 24px; }
    .menu-cols { grid-template-columns: 1fr; gap: 0 0; }
    .menu-wrap { padding: 64px 22px 90px; }
    .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 60px 22px 30px; }
    .footer-bottom { padding: 20px 22px; flex-direction: column; text-align: center; }
    .contact-wrap { padding: 64px 22px 90px; }
    .legal-wrap { padding: 64px 22px 90px; }
    .page-hero { min-height: 38vh; padding: 120px 22px 60px; }
    .reserve-steps { justify-content: center; }
}
@media (max-width: 420px) {
    .hero h1 { font-size: 52px; }
    .cocktail-grid { grid-template-columns: 1fr; }
    .masonry { columns: 1; }
    .marquee-text { font-size: 22px; }
}
