/* ============================================
   SEM VERGONHA — v7 · Clean Coastal Luxury
   Inspired by Kailua.pt
   Brand: #755c55 (brown) + #f6ede4 (beige)
   ============================================ */

:root {
  --brown: #755c55;
  --brown-l: #8a6e66;
  --brown-d: #5e4940;
  --beige: #f6ede4;
  --beige-d: #ede0d3;
  --white: #fffaf6;
  --black: #2c2320;
  --text: #3d3330;
  --text2: #7a6b63;
  --text3: #a89890;
  --border: rgba(117, 92, 85, 0.12);

  --logo: 'Bebas Neue', Impact, sans-serif;
  --serif: 'Poppins', -apple-system, sans-serif;
  --display: 'Poppins', -apple-system, sans-serif;
  --sans: 'Poppins', -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--beige); color: var(--text); overflow-x: hidden; }
::selection { background: var(--brown); color: var(--beige); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }




/* ── FLOATING RESERVE BUTTON ── */
.floating-reserve {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  background: rgba(117, 92, 85, 0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 14px 28px; border-radius: 40px;
  box-shadow: 0 4px 24px rgba(94, 73, 64, 0.3);
  transition: all 0.5s var(--ease);
  cursor: pointer;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-reserve--visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.floating-reserve:hover {
  background: rgba(117, 92, 85, 0.92);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(94, 73, 64, 0.4);
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  width: 100%; overflow: hidden; line-height: 0;
  padding: 12px 0;
}
.wave-divider--beige { background: var(--beige); }
.wave-divider--white { background: var(--white); }
.wave-divider svg {
  width: 200%; height: 40px;
  animation: waveFlow 15s linear infinite;
}
@keyframes waveFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SPINNING ICONS ── */
.spin-icon {
  width: 40px; height: 40px; color: var(--brown);
  margin-bottom: 20px;
  animation: spinSlow 12s linear infinite;
}
.spin-icon--small { width: 32px; height: 32px; margin-bottom: 12px; }
.spin-icon--light { color: rgba(255,255,255,0.5); }
.spin-icon svg { width: 100%; height: 100%; }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── SHARED ── */
.label {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 16px;
}
.label--light { color: rgba(255,255,255,0.5); }

/* ── SECTIONS ── */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
}
.section--beige { background: var(--beige); }
.section--white { background: var(--white); }
.section--dark { background: var(--brown-d); color: #fff; }

.section__header { max-width: 640px; margin-bottom: 56px; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__header h2 {
  font-family: var(--display); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; color: var(--text);
  margin-bottom: 16px;
}
.section__header p {
  font-size: 0.92rem; color: var(--text2); line-height: 1.75;
}
.section__header--light h2 { color: #fff; }
.section__header--light p { color: rgba(255,255,255,0.6); }

/* ── LOGO (image-based) ── */
.nav__logo-img {
  height: 28px; width: auto; max-width: 140px; object-fit: contain;
  transition: filter 0.5s var(--ease);
}
.hero__logo-img {
  width: clamp(280px, 50vw, 600px); height: auto;
  filter: brightness(0) invert(1);
  opacity: 0; animation: fadeUp 1s 0.45s var(--ease) forwards;
}
.footer__logo-img {
  height: 48px; width: auto; opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px); height: 72px;
  background: rgba(246, 237, 228, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s, background 0.5s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(117, 92, 85, 0.08); }
.nav--faded { background: rgba(94, 73, 64, 0.65); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom-color: rgba(255,255,255,0.08); }
.nav--faded .nav__logo-img { filter: brightness(0) invert(1); transition: filter 0.5s; }
.nav--faded .nav__links a { color: #fff; transition: color 0.5s; }
.nav--faded .nav__links a:hover { color: rgba(255,255,255,0.7); }
.nav--faded .nav__links a::after { background: var(--beige); }
.nav--faded .nav__link--active { color: var(--beige) !important; }
.nav--faded .nav__cta { opacity: 0; pointer-events: none; transition: opacity 0.5s; }

.nav__logo { display: flex; align-items: center; }

.nav__links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 32px;
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__links a {
  font-size: 0.75rem; font-weight: 500; color: var(--text2);
  letter-spacing: 0.04em; transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--brown);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__link--active { color: var(--text) !important; }
.nav__link--active::after { width: 100% !important; }

.nav__cta {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
  background: var(--brown); padding: 10px 24px; border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover { background: var(--brown-d); transform: translateY(-1px); }

.lang-toggle {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); background: transparent;
  border: 1.5px solid var(--border); padding: 6px 12px;
  border-radius: 4px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover { color: var(--brown); border-color: var(--brown); }
.nav--faded .lang-toggle { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.nav--faded .lang-toggle:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.mob-menu .lang-toggle {
  color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25);
  margin-top: 12px; align-self: center;
}
.mob-menu .lang-toggle:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; z-index: 101;
  position: relative;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  transition: all 0.4s var(--ease);
  position: absolute; left: 11px;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.nav__burger.active span { background: var(--text); }
.nav--faded .nav__burger span { background: #fff; }
.nav--faded .nav__burger.active span { background: #fff; }

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--brown-d);
  transition: clip-path 0.7s var(--ease), visibility 0.7s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at calc(100% - 46px) 36px);
  visibility: hidden;
  transition: clip-path 0.7s var(--ease), visibility 0.7s;
}
.mob-menu.open {
  clip-path: circle(150% at calc(100% - 46px) 36px);
  visibility: visible;
}

.mob-menu__inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.mob-menu__inner a {
  font-family: var(--sans); font-size: 1.3rem; font-weight: 700;
  color: rgba(255,255,255,0.85); transition: color 0.3s, transform 0.3s, opacity 0.3s;
  opacity: 0; transform: translateY(20px);
}
.mob-menu.open .mob-menu__inner a {
  opacity: 1; transform: translateY(0);
}
.mob-menu.open .mob-menu__inner a:nth-child(1) { transition-delay: 0.15s; }
.mob-menu.open .mob-menu__inner a:nth-child(2) { transition-delay: 0.22s; }
.mob-menu.open .mob-menu__inner a:nth-child(3) { transition-delay: 0.29s; }
.mob-menu.open .mob-menu__inner a:nth-child(4) { transition-delay: 0.36s; }
.mob-menu.open .mob-menu__inner a:nth-child(5) { transition-delay: 0.43s; }
.mob-menu__inner a:hover { color: #fff; }
.mob-menu__cta {
  font-family: var(--sans) !important; font-size: 0.85rem !important;
  font-weight: 600 !important; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white) !important;
  background: rgba(255,255,255,0.15); padding: 15px 36px; border-radius: 6px;
  margin-top: 16px; border: 1.5px solid rgba(255,255,255,0.25);
}
.mob-menu__cta:hover { background: rgba(255,255,255,0.25) !important; color: #fff !important; }
.mob-menu__info {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 8px;
  opacity: 0; transform: translateY(20px);
  transition: color 0.3s, transform 0.3s, opacity 0.3s;
}
.mob-menu.open .mob-menu__info {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.5s;
}
.mob-menu__phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  flex-wrap: wrap; justify-content: center;
}
.mob-menu__phone:hover { color: rgba(255,255,255,0.7); }
.mob-menu__phone-note {
  display: block; width: 100%;
  font-size: 0.58rem; font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-align: center; margin-top: -2px;
}
.mob-menu__hours {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.45);
}

/* scrolled mob-menu: beige bg with brown text */
.nav--faded ~ .mob-menu { background: var(--beige); }
.nav--faded ~ .mob-menu .mob-menu__inner a { color: var(--brown-d); }
.nav--faded ~ .mob-menu .mob-menu__inner a:hover { color: var(--brown); }
.nav--faded ~ .mob-menu .mob-menu__cta { color: var(--brown-d) !important; border-color: rgba(94,73,64,0.3); }
.nav--faded ~ .mob-menu .mob-menu__cta:hover { background: rgba(94,73,64,0.12) !important; color: var(--brown-d) !important; }
.nav--faded ~ .mob-menu .mob-menu__phone,
.nav--faded ~ .mob-menu .mob-menu__hours { color: rgba(94,73,64,0.45); }
.nav--faded ~ .mob-menu .mob-menu__phone:hover { color: var(--brown-d); }
.nav--faded ~ .mob-menu .mob-menu__phone-note { color: rgba(94,73,64,0.3); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; height: 100dvh; min-height: 600px;
  overflow: hidden; background: var(--black);
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(44, 35, 32, 0.3) 0%,
    rgba(44, 35, 32, 0.15) 40%,
    rgba(44, 35, 32, 0.5) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; color: #fff;
}
.hero__title { line-height: 1; margin-bottom: 20px; text-align: center; }
.hero__sub {
  font-family: var(--serif); font-size: clamp(1rem, 2.2vw, 1.4rem); font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3);
  opacity: 0; animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}
.hero__tagline {
  font-family: var(--display); font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.8s 1s var(--ease) forwards;
}
.hero__btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 32px; border-radius: 6px;
  transition: all 0.4s var(--ease);
}
.hero__btn--fill {
  background: var(--brown); color: #fff;
  border: 2px solid var(--brown);
}
.hero__btn--fill:hover {
  background: var(--brown-d); border-color: var(--brown-d);
  transform: translateY(-2px);
}
.hero__btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.hero__btn--outline:hover {
  background: #fff; color: var(--text);
  border-color: #fff; transform: translateY(-2px);
}

.hero__dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.hero__dot.active { background: #fff; transform: scale(1.3); }

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

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative; height: 420px;
  overflow: hidden; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.page-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(44, 35, 32, 0.4) 0%,
    rgba(44, 35, 32, 0.6) 100%
  );
}
.page-hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 36px 24px 48px; margin-top: 72px; color: #fff;
  max-width: 700px;
}
.page-hero__content h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  margin-bottom: 16px;
}
.page-hero__content p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7;
}

/* ── HOME GRID (landing page) ── */
.home-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.home-card {
  position: relative; border-radius: 16px; overflow: hidden;
  display: block; min-height: 320px;
}
.home-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.home-card:hover img { transform: scale(1.06); }
.home-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,35,32,0.8) 0%, rgba(44,35,32,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff;
}
.home-card__overlay .label { color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.home-card__overlay h3 {
  font-family: var(--display); font-size: 1.4rem; font-weight: 700;
}

/* ══════════════════════════════════════════
   HOMEPAGE — INTRO
   ══════════════════════════════════════════ */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.intro__text h2 {
  font-family: var(--display); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; color: var(--text);
  margin-bottom: 24px;
}
.intro__text p {
  font-size: 0.92rem; color: var(--text2); line-height: 1.8;
  margin-bottom: 16px;
}
.intro__text em { font-style: italic; color: var(--brown); }
.intro__img { position: relative; }
.intro__img img {
  width: 100%; border-radius: 16px;
  aspect-ratio: 4 / 5; object-fit: cover;
}
.intro__img-badges {
  position: absolute; bottom: -16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.intro__img-badges span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
  background: var(--brown); padding: 8px 16px; border-radius: 20px;
  white-space: nowrap;
}

/* ── GALLERY STRIP ── */
.gallery {
  background: var(--beige); padding: 0;
  overflow: hidden;
}
.gallery__track {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 0 clamp(20px, 5vw, 48px);
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item {
  flex-shrink: 0; width: clamp(200px, 25vw, 300px);
  scroll-snap-align: start;
  border-radius: 12px; overflow: hidden;
}
.gallery__item img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--white);
  padding: clamp(60px, 10vh, 120px) 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.3; color: var(--text);
  max-width: 700px; margin: 0 auto;
}
.quote-section blockquote em {
  color: var(--brown); font-style: italic;
}

/* ── INFO BAR ── */
.info-bar {
  display: flex; justify-content: center; gap: 24px;
  text-align: center; max-width: 500px; margin: 0 auto;
}
.info-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.info-bar__item .spin-icon { margin: 0 auto 8px; }
.info-bar__item span {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text3);
}
.info-bar__item strong {
  font-family: var(--display); font-size: 1.3rem; font-weight: 700;
  color: var(--text);
}

/* ══════════════════════════════════════════
   FOOD & DRINKS
   ══════════════════════════════════════════ */

/* Food gallery */
.food-gallery { margin-bottom: 64px; overflow: hidden; }
.food-gallery__track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.food-gallery__track::-webkit-scrollbar { display: none; }
.food-gallery__item {
  flex-shrink: 0; width: clamp(220px, 30vw, 340px);
  scroll-snap-align: start;
  border-radius: 12px; overflow: hidden;
}
.food-gallery__item img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.food-gallery__item:hover img { transform: scale(1.06); }

/* Menu */
.menu {
  max-width: 900px; margin: 0 auto;
}
.menu__columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.menu__category { margin-bottom: 32px; }
.menu__category h3 {
  font-family: var(--logo); font-size: 1.6rem; color: var(--brown);
  letter-spacing: 0.06em; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--brown);
}
.menu__category h4 {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--text3);
  margin: 20px 0 12px;
}
.menu__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease);
  display: grid; grid-template-columns: 1fr auto;
  gap: 2px 8px; align-items: baseline;
}
.menu__item:hover { padding-left: 10px; }
.menu__item span {
  font-size: 0.88rem; color: var(--text);
  transition: color 0.3s;
}
.menu__item:hover span { color: var(--brown); }
.menu__item strong { font-weight: 600; }
.menu__item em { font-size: 0.75rem; font-style: italic; color: var(--text3); }
.menu__desc {
  grid-column: 1 / -1; font-size: 0.72rem !important; font-weight: 400;
  color: var(--text3) !important; letter-spacing: 0.02em;
  margin-top: -2px;
}
.menu__price {
  font-family: var(--display); font-size: 0.85rem !important;
  font-weight: 600; color: var(--brown) !important;
  white-space: nowrap; text-align: right;
  grid-row: 1; grid-column: 2;
}
/* Menu nav bar */
.menu-nav {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px; position: sticky; top: 72px; z-index: 10;
  background: var(--beige); padding: 12px 0;
}
.menu-nav__link {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text3); padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); transition: all 0.3s var(--ease);
  text-decoration: none; background: transparent; cursor: pointer;
}
.menu-nav__link:hover,
.menu-nav__link.active {
  color: var(--white); background: var(--brown); border-color: var(--brown);
}
.menu__section { display: none; }
.menu__section.active { display: block; }
.menu__badge {
  display: inline-block; font-family: var(--sans); font-size: 0.48rem;
  font-weight: 600; font-style: normal; text-transform: uppercase;
  letter-spacing: 0.06em; color: #fff !important; background: var(--brown);
  padding: 1px 6px; border-radius: 100px; margin-left: 6px;
  vertical-align: middle;
}

/* Sidebar layout for Bar tab */
.menu__sidebar-layout {
  display: flex; gap: 40px; align-items: flex-start;
}
.menu__sidebar {
  position: sticky; top: 130px; flex: 0 0 140px;
  display: flex; flex-direction: column; gap: 2px;
}
.menu__sidebar-link {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  color: var(--text3); background: transparent; border: none;
  text-align: left; padding: 6px 12px; border-radius: 6px;
  cursor: pointer; transition: all 0.25s var(--ease);
  border-left: 2px solid transparent; letter-spacing: 0.02em;
}
.menu__sidebar-link:hover { color: var(--brown); background: rgba(117,92,85,0.06); }
.menu__sidebar-link.active {
  color: var(--brown); font-weight: 600;
  border-left-color: var(--brown); background: rgba(117,92,85,0.08);
}
.menu__sidebar-content { flex: 1; min-width: 0; }

@media (max-width: 768px) {
  .menu__sidebar-layout { flex-direction: column; gap: 20px; }
  .menu__sidebar {
    position: relative; top: auto; flex: none;
    flex-direction: row; flex-wrap: wrap; gap: 6px;
    justify-content: center;
  }
  .menu__sidebar-link {
    border-left: none; border-bottom: 2px solid transparent;
    padding: 4px 10px; font-size: 0.62rem;
  }
  .menu__sidebar-link.active { border-left-color: transparent; border-bottom-color: var(--brown); }
}

.menu__note {
  font-size: 0.75rem; font-style: italic; color: var(--text3);
  margin-top: 6px; display: block; text-align: center;
}
.menu__note:first-of-type { margin-top: 28px; }

/* Allergens */
.menu__allergens {
  display: flex; gap: 3px;
  align-items: center; flex-wrap: wrap;
  grid-column: 1 / -1; margin-top: 2px;
}
.a {
  display: inline-block; width: 20px; height: 20px;
  border-radius: 50%; background: no-repeat center / cover;
  opacity: 0.85; transition: opacity 0.2s;
}
.menu__item:hover .a { opacity: 1; }
.a1  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23D4A843'/%3E%3Cpath d='M20 6v28' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20 10l-5 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 10l5 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 15l-6 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 15l6 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 20l-5 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 20l5 4' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 25l-4 3' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M20 25l4 3' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); }
.a2  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23E05A4A'/%3E%3Cpath d='M20 12v16' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15 28c0-3 2-5 5-5s5 2 5 5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3Cpath d='M13 22c0-2 3-4 7-4s7 2 7 4' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M12 12l-3-5' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M28 12l3-5' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M14 14l-4-2' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M26 14l4-2' stroke='white' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='17' cy='16' r='1.2' fill='white'/%3E%3Ccircle cx='23' cy='16' r='1.2' fill='white'/%3E%3C/svg%3E"); }
.a3  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23F0A030'/%3E%3Cellipse cx='20' cy='21' rx='8' ry='11' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='20' cy='18' r='4.5' fill='white' opacity='0.35'/%3E%3C/svg%3E"); }
.a4  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23319DA0'/%3E%3Cpath d='M8 22c0 0 4-6 12-6s12 6 12 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M8 22c0 0 4 5 12 5s12-5 12-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='13' cy='21' r='1.5' fill='white'/%3E%3Cpath d='M28 17l4-4' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M28 17l2 1' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M30 14l1.5 1' stroke='white' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.a5  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23C49A6C'/%3E%3Cellipse cx='15' cy='17' rx='5' ry='7' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M15 10v14' stroke='white' stroke-width='1.2' stroke-linecap='round'/%3E%3Cellipse cx='25' cy='23' rx='5' ry='7' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M25 16v14' stroke='white' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.a6  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%2368A844'/%3E%3Cellipse cx='15' cy='22' rx='4.5' ry='7' fill='none' stroke='white' stroke-width='1.8'/%3E%3Cellipse cx='25' cy='22' rx='4.5' ry='7' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='15' cy='19' r='2' fill='white' opacity='0.3'/%3E%3Ccircle cx='25' cy='19' r='2' fill='white' opacity='0.3'/%3E%3Ccircle cx='15' cy='24' r='2' fill='white' opacity='0.3'/%3E%3Ccircle cx='25' cy='24' r='2' fill='white' opacity='0.3'/%3E%3Cpath d='M18 12c-2-3-4-4-4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M22 12c2-3 4-4 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); }
.a7  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%2356B4E9'/%3E%3Crect x='13' y='8' width='14' height='6' rx='1' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 14h12v2c0 7-3 13-6 16-3-3-6-9-6-16v-2z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M18 14v10' stroke='white' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M22 14v10' stroke='white' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E"); }
.a8  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23A0764A'/%3E%3Cpath d='M13 20c0-5 3-9 7-9s7 4 7 9c0 5-3 9-7 9s-7-4-7-9z' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M14 18c3-1 5-1 6 1 1 2 0 4-1 5-2 1-4 0-5-2s-1-3 0-4z' fill='white' opacity='0.3'/%3E%3Cpath d='M22 14c2 1 4 0 5-2' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M20 11c0-2 1-4 3-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); }
.a9  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%236BBF59'/%3E%3Cpath d='M20 34V18' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M16 34h8' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20 18c-1-3-4-6-7-7 0 4 3 7 7 7z' fill='white' opacity='0.9'/%3E%3Cpath d='M20 18c1-3 4-6 7-7 0 4-3 7-7 7z' fill='white' opacity='0.9'/%3E%3Cpath d='M20 14c-2-3-5-5-8-5 1 3 4 5 8 5z' fill='white' opacity='0.7'/%3E%3Cpath d='M20 14c2-3 5-5 8-5-1 3-4 5-8 5z' fill='white' opacity='0.7'/%3E%3C/svg%3E"); }
.a10 { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23D4A820'/%3E%3Cpath d='M15 10h10v6l-2 2h-6l-2-2v-6z' fill='none' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Crect x='14' y='8' width='12' height='3' rx='1' fill='none' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M17 18v10c0 2 1.5 3 3 3s3-1 3-3V18' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M15 22h10' stroke='white' stroke-width='1.2' opacity='0.5'/%3E%3C/svg%3E"); }
.a11 { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%2348A89A'/%3E%3Cellipse cx='12' cy='12' rx='2.5' ry='4' transform='rotate(-20 12 12)' fill='white' opacity='0.85'/%3E%3Cellipse cx='22' cy='10' rx='2.5' ry='4' transform='rotate(10 22 10)' fill='white' opacity='0.85'/%3E%3Cellipse cx='30' cy='16' rx='2' ry='3.5' transform='rotate(25 30 16)' fill='white' opacity='0.85'/%3E%3Cellipse cx='10' cy='22' rx='2.5' ry='4' transform='rotate(-5 10 22)' fill='white' opacity='0.85'/%3E%3Cellipse cx='20' cy='20' rx='2.5' ry='4' transform='rotate(15 20 20)' fill='white' opacity='0.85'/%3E%3Cellipse cx='28' cy='25' rx='2' ry='3.5' transform='rotate(-15 28 25)' fill='white' opacity='0.85'/%3E%3Cellipse cx='14' cy='30' rx='2.5' ry='3.5' transform='rotate(10 14 30)' fill='white' opacity='0.85'/%3E%3Cellipse cx='24' cy='31' rx='2' ry='3' transform='rotate(-10 24 31)' fill='white' opacity='0.85'/%3E%3C/svg%3E"); }
.a12 { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23D45050'/%3E%3Crect x='13' y='10' width='14' height='22' rx='3' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M13 15h14' stroke='white' stroke-width='1.6'/%3E%3Cpath d='M18 8c0-1 1-2 2-2s2 1 2 2' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3Ctext x='20' y='27' text-anchor='middle' font-size='8' font-family='Arial,sans-serif' fill='white' font-weight='700'%3ESO%E2%82%82%3C/text%3E%3C/svg%3E"); }
.a13 { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23E8913A'/%3E%3Ccircle cx='14' cy='14' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='26' cy='14' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='20' cy='10' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='14' cy='22' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='26' cy='22' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='20' cy='28' r='4' fill='none' stroke='white' stroke-width='1.8'/%3E%3C/svg%3E"); }
.a14 { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23C87830'/%3E%3Cpath d='M10 28c2-7 5-12 10-12s8 5 10 12' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M13 25c1.5-5 3.5-8 7-8s5.5 3 7 8' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M16 22c1-3 2-4.5 4-4.5s3 1.5 4 4.5' stroke='white' stroke-width='1.3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M10 28h20' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }

.allergen-legend {
  margin-top: 32px; padding: 20px 24px; border-radius: 12px;
  background: rgba(117,92,85,0.04); border: 1px solid var(--border);
}
.allergen-legend h4 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.allergen-legend__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 16px;
}
.allergen-legend__grid > span {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 0.65rem; color: var(--text3);
}
.allergen-legend__grid .a { opacity: 1; width: 22px; height: 22px; }

/* ══════════════════════════════════════════
   EXPERIÊNCIA
   ══════════════════════════════════════════ */

/* Timeline */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 80px;
}
.timeline__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 32px 24px;
  transition: background 0.4s, transform 0.3s var(--ease);
}
.timeline__card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.timeline__time {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--beige-d); margin-bottom: 16px;
}
.timeline__card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  margin-bottom: 10px;
}
.timeline__card p {
  font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6;
}

/* Flow Timeline */
.flow { max-width: 600px; margin: 0 auto 80px; }
.flow__header {
  text-align: center; margin-bottom: 56px;
}
.flow__header h2 {
  font-family: var(--display); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 16px;
}
.flow__header p {
  font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.75;
}
.flow__track {
  position: relative; padding-left: 48px;
}
.flow__track::before {
  content: ''; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom,
    rgba(246,237,228,0.5) 0%,
    rgba(246,237,228,0.25) 50%,
    rgba(246,237,228,0.08) 100%
  );
}
.flow__moment {
  position: relative; padding: 20px 0;
}
.flow__moment::before {
  content: ''; position: absolute; left: -34px; top: 28px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--beige-d);
  box-shadow: 0 0 12px rgba(246,237,228,0.3);
}
.flow__moment--last::before {
  background: rgba(246,237,228,0.3);
}
.flow__hour {
  display: block; font-family: var(--display);
  font-size: 2rem; font-weight: 900;
  color: rgba(255,255,255,0.15); margin-bottom: 4px;
  line-height: 1;
}
.flow__moment h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: #fff; margin-bottom: 8px;
}
.flow__moment p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.flow__bridge {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0 4px 0; margin-left: -2px;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.flow__bridge svg { color: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Spaces */
.spaces__header { margin-top: 0; margin-bottom: 48px; }

.spaces__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spaces__card {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer;
}
.spaces__card--large { grid-row: span 2; }
.spaces__card img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.spaces__card:hover img { transform: scale(1.06); }
.spaces__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(44,35,32,0.85) 0%, transparent 100%);
  color: #fff;
}
.spaces__info h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  margin-bottom: 4px;
}
.spaces__info p {
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   EVENTOS
   ══════════════════════════════════════════ */

/* Event type cards */
.events {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 64px;
}
.events__card {
  background: var(--beige); border-radius: 16px;
  padding: 40px 32px; text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.events__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(117, 92, 85, 0.1);
}
.events__icon {
  width: 48px; height: 48px; margin: 0 auto 24px;
  color: var(--brown);
}
.events__icon svg { width: 100%; height: 100%; }
.events__card h3 {
  font-family: var(--display); font-size: 1.4rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.events__card p {
  font-size: 0.85rem; color: var(--text2); line-height: 1.65;
}

/* Group menus */
.group-menus {
  margin-bottom: 64px;
}
.group-menus h3 {
  font-family: var(--display); font-size: 1.6rem; font-weight: 700;
  color: var(--text); margin-bottom: 32px; text-align: center;
}
.group-menus__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.group-menus__card {
  background: var(--beige); border-radius: 16px;
  padding: 36px 28px; text-align: center;
  border: 1.5px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.group-menus__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(117, 92, 85, 0.1);
}
.group-menus__card--featured {
  border-color: var(--brown);
  background: rgba(117, 92, 85, 0.04);
}
.group-menus__price {
  display: block; font-family: var(--display);
  font-size: 2.2rem; font-weight: 900; color: var(--brown);
  margin-bottom: 8px;
}
.group-menus__price small {
  font-size: 0.85rem; font-weight: 400; color: var(--text3);
}
.group-menus__card h4 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.group-menus__card p {
  font-size: 0.82rem; color: var(--text2); line-height: 1.6;
}

/* Group form */
.group-form {
  background: var(--beige); border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
}
.group-form h3 {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  color: var(--text); margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 2px solid var(--brown);
  text-align: center;
}

/* Form shared */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__row .form__field { margin-bottom: 0; }
.form__field label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text); text-transform: uppercase;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans); font-size: 0.88rem;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--white);
  color: var(--text); transition: border-color 0.3s;
  outline: none; width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--brown); }
.form__field textarea { resize: vertical; min-height: 80px; }
.form__checks { display: flex; flex-wrap: wrap; gap: 12px; }
.form__check {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 0.82rem; color: var(--text2);
  background: var(--white); padding: 10px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); transition: all 0.3s;
}
.form__check:has(input:checked) {
  border-color: var(--brown); background: rgba(117,92,85,0.06);
  color: var(--text);
}
.form__check input { accent-color: var(--brown); }

/* Buttons */
.btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 32px; border-radius: 6px;
  transition: all 0.4s var(--ease); display: inline-block;
  border: none; cursor: pointer;
}
.btn--fill {
  background: var(--brown); color: var(--white);
  border: 2px solid var(--brown);
}
.btn--fill:hover {
  background: var(--brown-d); border-color: var(--brown-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(117, 92, 85, 0.25);
}
.btn--arrow { display: inline-flex; align-items: center; gap: 8px; }
.btn__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.2); font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
}
.btn--arrow:hover .btn__arrow { transform: translate(2px, -2px); }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   CONTACTOS
   ══════════════════════════════════════════ */
.contacts__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.contacts__card {
  background: transparent;
  padding: 36px 24px; text-align: center;
}
.contacts__card:hover {
  /* no card hover effect */
}
a.contacts__card--link { cursor: pointer; }
a.contacts__card--link:hover .contacts__icon { color: var(--brown-d); }
.contacts__icon {
  width: 32px; height: 32px; margin: 0 auto 20px;
  color: var(--brown);
}
.contacts__icon svg { width: 100%; height: 100%; }
.contacts__card h3 {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.contacts__card p {
  font-size: 0.88rem; color: var(--text); line-height: 1.7;
}
.contacts__card a {
  color: var(--brown); transition: color 0.3s;
}
.contacts__card a:hover { color: var(--brown-d); }
.contacts__note {
  display: block; font-size: 0.62rem; font-weight: 400;
  color: var(--text3); margin-top: 4px;
  font-style: normal;
}

.contacts__social {
  display: flex; justify-content: center; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.contacts__social a {
  font-size: 0.82rem; font-weight: 500; color: var(--text2);
  position: relative; transition: color 0.3s;
}
.contacts__social a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--brown);
  transition: width 0.3s var(--ease);
}
.contacts__social a:hover { color: var(--brown); }
.contacts__social a:hover::after { width: 100%; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 0 clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
  background: var(--beige);
}
.footer .wrap { max-width: none; }
.footer__inner {
  background: var(--brown-d); border-radius: 24px;
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px) clamp(32px, 4vw, 48px);
  color: rgba(255,255,255,0.6);
}
.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  text-align: center; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__top .footer__brand {
  text-align: left; margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.footer__logo-img { margin: 0 auto 8px; }
.footer__top .footer__logo-img { margin: 0 0 8px; }
.footer__tagline {
  font-family: var(--display); font-size: 0.88rem; font-style: italic;
  color: rgba(255,255,255,0.35);
}
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 28px;
  justify-content: center; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__top ~ .footer__nav {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.footer__nav a {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__nav a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__col strong {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.footer__col span,
.footer__col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; transition: color 0.3s;
}
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a {
  display: flex; align-items: center; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__social a:hover { color: #fff; }
.footer__social svg { display: block; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.3);
}

/* ── SCROLL REVEAL ── */
[data-r] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-r].visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .intro__img { max-width: 480px; margin: 0 auto; }
  .info-bar { grid-template-columns: 1fr 1fr; gap: 32px; }
  .menu__columns { grid-template-columns: 1fr; gap: 40px; }
  .spaces__grid { grid-template-columns: 1fr 1fr; }
  .spaces__card--large { grid-row: span 1; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 16px; }
  .events { grid-template-columns: 1fr 1fr; }
  .events__card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .group-menus__grid { grid-template-columns: 1fr 1fr; }
  .group-menus__card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .contacts__grid { grid-template-columns: 1fr 1fr; }
  .home-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { flex-direction: column; gap: 20px; text-align: center; }
  .footer__brand { text-align: center; }
  .footer__logo-img { margin: 0 auto 8px; }
  .footer__nav { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .home-grid { grid-template-columns: 1fr; }
  .home-card { min-height: 240px; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__btn { width: 220px; text-align: center; }

  .food-gallery__item { width: clamp(200px, 65vw, 280px); }
  .food-gallery__item img { height: 180px; }

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

  .spaces__grid { grid-template-columns: 1fr; }
  .spaces__card img { min-height: 220px; }

  .events { grid-template-columns: 1fr; }
  .events__card:last-child { max-width: none; }

  .group-menus__grid { grid-template-columns: 1fr; }
  .group-menus__card:last-child { max-width: none; }

  .contacts__grid { grid-template-columns: 1fr; }
  .contacts__social { gap: 20px; }

  .info-bar { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery__item { width: clamp(180px, 55vw, 250px); }
  .gallery__item img { height: 180px; }
  .footer { padding: 0; }
  .footer .wrap { padding: 0; max-width: none; }
  .footer__inner { padding: 32px 20px 24px; border-radius: 20px 20px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__nav { gap: 16px; }
  .floating-reserve { bottom: 20px; right: 20px; padding: 12px 22px; font-size: 0.68rem; }

  .form__row { grid-template-columns: 1fr; }
  .form__checks { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__logo-img { width: clamp(200px, 70vw, 300px); }
}

@media (hover: none) {
  .spaces__card:hover img { transform: none; }
  .food-gallery__item:hover img { transform: none; }
  .menu__item:hover { padding-left: 0; }
  .timeline__card:hover { transform: none; background: rgba(255,255,255,0.06); }
  .events__card:hover { transform: none; box-shadow: none; }
  .group-menus__card:hover { transform: none; box-shadow: none; }
  .contacts__card:hover { transform: none; }
}
