/* ══════════════════════════════════════════
   LUCKY LUKE — BRAND WEBSITE
   Design System based on Killo Studio Manual
══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --red:      #C41E2A;
  --red-dark: #9E1621;
  --black:    #0a0a0a;
  --dark:     #111111;
  --cream:    #EDE5DA;
  --white:    #FFFFFF;
  --grey:     #1c1c1c;
  --grey-mid: #2a2a2a;
  --text-dim: rgba(255,255,255,0.55);

  --font-display:  'Big Shoulders Display', sans-serif;
  --font-western:  'Rye', cursive;
  --font-body:     'Barlow', sans-serif;
  --font-label:    'Barlow Condensed', sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }

/* ─── UTILITY ─── */
.accent { color: var(--red); font-style: normal; }
.hidden { display: none !important; }
.light  { color: var(--white); }

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loader-logo {
  width: clamp(140px, 20vw, 200px);
  height: auto;
  object-fit: contain;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1); }
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  animation: loaderFill 1.6s var(--ease-out) forwards;
}

@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ─── CURSOR ─── */
.cursor {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
}

.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(196, 30, 42, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--red);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
}

.lang-btn {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover { color: var(--white); }

.btn-nav {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-nav:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-links a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1.1;
}

.mobile-links a:hover { color: var(--red); }

.mobile-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-primary.large { padding: 18px 48px; font-size: 14px; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── TYPOGRAPHY ─── */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

.section-title.light { color: var(--white); }

.label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.label.light { color: rgba(255,255,255,0.5); }

.body-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
  max-width: 50ch;
}

.body-text.light  { color: rgba(255,255,255,0.7); }
.body-text.italic { font-style: italic; color: rgba(0,0,0,0.45); }

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

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

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-badge {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  margin-bottom: 8px;
  opacity: 0;
  transform: scale(0.8);
}

.hero-badge img { object-fit: contain; }

.hero-sub {
  font-family: var(--font-western);
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.ht-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.ht-line.accent { color: var(--red); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-mouse {
  width: 24px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  animation: marqueeScroll 22s linear infinite;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-content .star {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── ABOUT ─── */
.about {
  background: var(--cream);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}

.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-images {
  position: relative;
  aspect-ratio: 4/5;
}

.about-img-big {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  overflow: hidden;
}

.about-img-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  overflow: hidden;
  border: 5px solid var(--cream);
}

.about-img-badge {
  position: absolute;
  bottom: 48%;
  left: 60%;
  width: 80px; height: 80px;
  background: var(--cream);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  z-index: 2;
}

.about-img-badge img { object-fit: contain; }

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text .section-title { color: var(--black); }

/* ─── MENU CTA ─── */
.menu-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-cta-bg {
  position: absolute;
  inset: 0;
}

.menu-cta-bg img {
  transform: scale(1.1);
}

.menu-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.65) 100%);
}

.menu-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.menu-cta-content .section-title { line-height: 0.9; }
.menu-cta-content .body-text { margin: 0 auto; text-align: center; }

/* ─── BEERS ─── */
.beers {
  background: var(--cream);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}

.beers-header {
  max-width: 1300px;
  margin: 0 auto 48px;
}

.beers-header .section-title { color: var(--black); }

.beers-tabs {
  max-width: 1300px;
  margin: 0 auto 48px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.tab-btn {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  padding: 12px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: none;
  margin-bottom: -1px;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

.beers-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.beer-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: none;
}

.beer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.beer-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
}

.beer-img-wrap img {
  transition: transform 0.6s var(--ease-out);
  object-fit: contain;
  padding: 16px;
}

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

.beer-card h3 {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  padding: 14px 16px;
  text-align: center;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--dark);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}

.gallery-header {
  max-width: 1300px;
  margin: 0 auto 48px;
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 30, 42, 0);
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(196, 30, 42, 0.15);
}

/* Grid layout - special cells */
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }

/* Assign positions */
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 4; grid-row: 2; }
.gallery-item:nth-child(7) { grid-column: 1; grid-row: 3; }
.gallery-item:nth-child(8) { grid-column: 2; grid-row: 3; }
.gallery-item:nth-child(9) { grid-column: 3 / span 2; grid-row: 3; }

/* ─── RESERVAR ─── */
.reservar {
  background: var(--grey);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reservar-inner {
  max-width: 780px;
  margin: 0 auto;
}

.reservar-header {
  margin-bottom: 52px;
}

.reservar-header .body-text {
  margin-top: 20px;
}

/* Form layout */
.reservar-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder { color: rgba(255,255,255,0.22); }

.form-input:focus { border-color: var(--red); }

.form-input:invalid:not(:placeholder-shown) { border-color: #e05; }

/* Date input — hide native calendar icon on webkit */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.3);
  cursor: pointer;
}

/* Time slot picker */
.hora-group {
  flex: 1;
}

.time-slots-wrap {
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  min-height: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slots-placeholder {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  padding: 8px 0;
}

.slots-placeholder.closed {
  color: #e05060;
}

.slot-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slot-group-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.slot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.slot-pill {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.slot-pill:hover {
  border-color: var(--red);
  color: var(--white);
}

.slot-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Counter */
.counter-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 8px 0;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}

.counter-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.counter-val {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

/* Hint */
.form-hint {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  min-height: 16px;
}

.closed-hint { color: #e05060; }
.open-hint   { color: rgba(255,255,255,0.35); }

/* Preview */
.reserva-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 76px;
  transition: border-color 0.3s;
}

.reserva-preview.ready {
  border-left-color: #25D366;
  background: rgba(37, 211, 102, 0.04);
}

.preview-icon {
  flex-shrink: 0;
  width: 22px;
  color: rgba(255,255,255,0.2);
  margin-top: 1px;
  transition: color 0.3s;
}

.reserva-preview.ready .preview-icon { color: #25D366; }

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

.preview-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  white-space: pre-line;
  transition: color 0.3s;
}

.reserva-preview.ready .preview-text { color: rgba(255,255,255,0.8); }

/* WhatsApp button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, opacity 0.25s;
}

.btn-whatsapp:hover:not(:disabled) {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.btn-whatsapp:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── CONTACT ─── */
.contact {
  background: var(--black);
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info .section-title { color: var(--white); margin-bottom: 36px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

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

.contact-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item p,
.contact-item a {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--red); }

.hours-table {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hours-row span:first-child { color: rgba(255,255,255,0.5); text-transform: uppercase; }
.hours-row span:last-child  { color: var(--white); }
.hours-row.closed span:last-child { color: rgba(255,255,255,0.25); }

.contact-map {
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  filter: grayscale(40%) contrast(0.9);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px clamp(20px, 6vw, 80px) 36px;
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ─── SCROLL ANIMATIONS (initial states) ─── */
.reveal-img { overflow: hidden; }
.reveal-img img { transform: scale(1.1); opacity: 0; }

.reveal-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.reveal-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 220px);
  }

  .gallery-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1; grid-row: 2 / span 2; }
  .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
  .gallery-item:nth-child(6) { grid-column: 2 / span 2; grid-row: 3; }
  .gallery-item:nth-child(7) { grid-column: 1 / span 2; grid-row: 4; }
  .gallery-item:nth-child(8) { grid-column: 3; grid-row: 4; }
  .gallery-item:nth-child(9) { display: none; }
}

@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-images  { aspect-ratio: 3/2; margin-bottom: 40px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-map   { height: 360px; position: static; }
  .nav-links     { display: none; }
  .nav-right     { display: none; }
  .burger        { display: flex; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .hero-title { font-size: clamp(48px, 12vw, 80px); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .gallery-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 1; grid-row: 4; }
  .gallery-item:nth-child(6) { grid-column: 2; grid-row: 4; }
  .gallery-item:nth-child(7) { grid-column: 1 / span 2; grid-row: 5; }
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) { display: none; }

  .beers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (pointer: coarse) {
  .cursor { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}
