/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0 var(--s-8);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out-expo),
              box-shadow 0.2s var(--ease-out-expo),
              background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--gold-500);
  color: var(--ocean-900);
  box-shadow: 0 4px 24px oklch(72% 0.13 75 / 0.45);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px oklch(72% 0.13 75 / 0.55);
}

.btn-ghost {
  background: oklch(100% 0 0 / 0.06);
  color: var(--white);
  border: 1px solid oklch(100% 0 0 / 0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: oklch(100% 0 0 / 0.12);
  border-color: oklch(100% 0 0 / 0.4);
  transform: translateY(-2px);
}

/* ============================================================
   MENU TABS & ITEMS
============================================================ */
.menu-tab {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s-6);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  transition: all var(--t-base) var(--ease-out-expo);
}
.menu-tab:hover {
  border-color: var(--ocean-400);
  color: var(--ocean-700);
  background: var(--ocean-50);
}
.menu-tab.active {
  background: var(--ocean-900);
  color: var(--white);
  border-color: var(--ocean-900);
  box-shadow: 0 4px 16px oklch(18% 0.06 245 / 0.25);
}

/* ── PayPal notice ── */
.menu-paypal-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--s-4);
  opacity: 0.75;
}

/* ── Section note (under active tab, above items) ── */
.menu-section-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--ocean-50);
  border-left: 3px solid var(--gold-500);
  padding: var(--s-3) var(--s-5);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: var(--s-6);
  line-height: 1.5;
}

/* ── Subcategory heading ── */
.menu-sub-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ocean-700);
  padding: var(--s-5) 0 var(--s-2);
  border-bottom: 1.5px solid var(--gold-500);
  margin-bottom: var(--s-2);
  margin-top: var(--s-6);
}
.menu-sub-heading:first-child {
  margin-top: 0;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding var(--t-base) var(--ease-out-expo),
              background var(--t-base);
  border-radius: 0;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover {
  padding-left: var(--s-4);
  padding-right: var(--s-4);
  background: var(--ocean-50);
  border-radius: var(--r-md);
  margin: 0 calc(-1 * var(--s-4));
}

/* ── Row: nr + name + price ── */
.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}

/* ── Item number badge ── */
.menu-item-nr {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-500);
  min-width: 2rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ocean-900);
  flex: 1;
  line-height: 1.3;
}

/* ── Single price ── */
.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-500);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

/* ── Dual price (salads: normal + small) ── */
.menu-item-price-duo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}
.price-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-500);
  white-space: nowrap;
}
.price-small {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.price-small em { font-style: italic; }

/* ── Multi-size prices (drinks, beer, wine) ── */
.menu-item-price-sizes {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.price-size em {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: block;
}
.price-size {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-500);
  white-space: nowrap;
  text-align: center;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.45;
  padding-left: 2rem;
}


/* ============================================================
   GALLERY TILES
============================================================ */
.gallery-tile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}

.tile-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s var(--ease-out-expo);
}
.gallery-tile:hover .tile-bg { transform: scale(1.06); }

/* Rich gradient palettes per tile */
.gallery-tile:nth-child(1) .tile-bg { background: linear-gradient(145deg, oklch(24% 0.09 248) 0%, oklch(42% 0.13 252) 100%); }
.gallery-tile:nth-child(2) .tile-bg { background: linear-gradient(145deg, oklch(28% 0.06 180) 0%, oklch(48% 0.1  165) 100%); }
.gallery-tile:nth-child(3) .tile-bg { background: linear-gradient(145deg, oklch(32% 0.09  30) 0%, oklch(55% 0.14  40) 100%); }
.gallery-tile:nth-child(4) .tile-bg { background: linear-gradient(145deg, oklch(22% 0.07 270) 0%, oklch(50% 0.15 280) 100%); }
.gallery-tile:nth-child(5) .tile-bg { background: linear-gradient(145deg, oklch(40% 0.1   75) 0%, oklch(70% 0.13  70) 100%); }
.gallery-tile:nth-child(6) .tile-bg { background: linear-gradient(145deg, oklch(26% 0.08 210) 0%, oklch(46% 0.12 200) 100%); }

/* Subtle grain on tiles */
.tile-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
}

.tile-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(100% 0 0 / 0.3);
  z-index: 1;
  transition: opacity var(--t-base), transform var(--t-slow) var(--ease-out-expo);
}
.tile-icon svg { width: 36px; height: 36px; }
.gallery-tile:hover .tile-icon { opacity: 0; transform: scale(0.8); }

.tile-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-8) var(--s-5) var(--s-5);
  background: linear-gradient(to top, oklch(18% 0.06 245 / 0.88) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out-expo);
  z-index: 2;
}
.gallery-tile:hover .tile-caption { transform: none; }

/* ============================================================
   CONTACT CARDS
============================================================ */
.contact-card {
  background: oklch(100% 0 0 / 0.04);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--r-md);
  padding: var(--s-6);
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  backdrop-filter: blur(12px);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base) var(--ease-out-expo);
}
.contact-card:hover {
  background: oklch(100% 0 0 / 0.07);
  border-color: oklch(72% 0.13 75 / 0.3);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: oklch(72% 0.13 75 / 0.12);
  border: 1px solid oklch(72% 0.13 75 / 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s-1);
}
.contact-card-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: oklch(96% 0.02 245);
  line-height: 1.5;
}
.contact-card-value a             { color: oklch(96% 0.02 245); transition: color var(--t-fast); }
.contact-card-value a:hover       { color: var(--gold-400); }

/* ============================================================
   EMBEDDED MAP
============================================================ */
.contact-map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px oklch(18% 0.06 245 / 0.45);
  border: 1px solid oklch(100% 0 0 / 0.08);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.3s;
}
.contact-map-iframe:hover { filter: grayscale(0%) contrast(1); }

.contact-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-6);
  background: oklch(18% 0.06 245 / 0.88);
  backdrop-filter: blur(8px);
  color: oklch(96% 0.02 245);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-top: 1px solid oklch(100% 0 0 / 0.1);
  transition: background var(--t-base), color var(--t-base);
}
.contact-map-btn:hover {
  background: oklch(22% 0.08 248 / 0.95);
  color: var(--gold-400);
}
.contact-map-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold-500);
}


/* ============================================================
   INSTAGRAM BUTTON
============================================================ */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  min-height: 52px;
  padding: 0 var(--s-8);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 24px oklch(50% 0.2 310 / 0.35);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px oklch(50% 0.2 310 / 0.5);
}
.btn-instagram svg { width: 18px; height: 18px; flex-shrink: 0; }
