/* ============================================
   K3 TLV - Bar & Kitchen
   Shared Stylesheet
   ============================================ */

/* --- CSS Reset / Normalize --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --- CSS Variables --- */
:root {
  /* Colors */
  --color-bg: #FBF8F2;
  --color-bg-warm: #F7F2EA;
  --color-bg-alt: #F2ECE2;
  --color-bg-dark: #1a1a1a;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-text-muted: #8a8278;
  --color-gold: #c4b5a4;
  --color-gold-light: #d4c8b8;
  --color-gold-dark: #a89880;
  --color-accent: #b8a088;
  --color-border: #e8e0d4;
  --color-border-light: #f0ebe3;
  --color-white: #ffffff;
  --color-black: #111111;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Frank Ruhl Libre', 'David Libre', serif;
  --font-body: 'Cormorant Garamond', 'Frank Ruhl Libre', 'David Libre', serif;
  --font-accent: 'Playfair Display', 'Frank Ruhl Libre', serif;
  --font-hebrew: 'Frank Ruhl Libre', 'David Libre', 'Cormorant Garamond', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
  --transition-slower: 1s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
}

/* --- Base Styles --- */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  direction: rtl;
}

::selection {
  background-color: var(--color-gold-light);
  color: var(--color-text);
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-light);
}

.label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 500;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
}

/* --- Elegant Dividers --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-xl) auto;
  opacity: 0.6;
}

.divider--wide {
  width: 120px;
}

.divider--left {
  margin-right: 0;
  margin-left: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-hebrew);
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  padding: 14px 36px;
  border: 1px solid var(--color-gold);
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color-gold);
  transition: width var(--transition-base);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

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

.btn--filled {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--filled::before {
  background: var(--color-gold-dark);
}

.btn--small {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

.btn--nav {
  padding: 8px 22px;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-3xl);
  z-index: 1000;
  transition: all var(--transition-slow);
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border-light);
  height: 70px;
}

.nav__logo {
  height: 44px;
  width: auto;
  transition: all var(--transition-base);
}

.nav--scrolled .nav__logo {
  height: 38px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-family: var(--font-hebrew);
  font-size: var(--text-sm);
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-gold-dark);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-gold-dark);
}

.nav__link--active::after {
  width: 100%;
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

.nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.nav__mobile-menu--open {
  display: flex;
  opacity: 1;
}

.nav__mobile-menu .nav__link {
  font-size: var(--text-2xl);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Extra bottom padding reserves space for the absolute-positioned
     scroll indicator so the CTA buttons never overlap it. */
  padding: var(--space-4xl) var(--space-xl) calc(var(--space-4xl) + var(--space-5xl));
  position: relative;
  background: var(--color-bg);
}

.hero__logo {
  width: 220px;
  height: auto;
  margin-bottom: var(--space-2xl);
  animation: fadeInDown 1.2s ease forwards;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero__subtitle {
  font-family: var(--font-hebrew);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  animation: fadeInUp 1.2s ease 0.9s forwards;
  opacity: 0;
}

.hero__cta-btn {
  min-width: 170px;
  text-align: center;
}

@media (max-width: 480px) {
  .hero__cta {
    gap: var(--space-md);
    padding: 0 var(--space-xl);
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    margin-top: var(--space-xl);
  }
  /* Double-class bumps specificity above the generic .btn mobile override */
  .hero__cta-btn.hero__cta-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeInUp 1.2s ease 1s forwards, float 3s ease-in-out infinite 2s;
  opacity: 0;
}

.hero__scroll-indicator span {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* --- Desktop-only hero polish (>= 1024px). Mobile layout untouched. --- */
@media (min-width: 1024px) {
  /* Isolation + ::before at z-index 0 creates a soft radial warmth behind
     the logo without affecting the absolute-positioned scroll indicator. */
  .hero { isolation: isolate; }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 52% 48% at 50% 42%, rgba(196, 181, 164, 0.22), transparent 72%),
      radial-gradient(ellipse 90% 60% at 50% 100%, rgba(168, 152, 128, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
  }

  /* Larger logo + restrained tagline with a thin gold divider under it. */
  .hero__logo {
    width: 280px;
    margin-bottom: var(--space-3xl);
  }

  .hero__tagline {
    font-size: calc(var(--text-2xl) * 1.15);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    position: relative;
  }

  .hero__tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.85;
  }

  .hero__subtitle { font-size: calc(var(--text-lg) * 1.05); }

  .hero__cta { margin-top: var(--space-3xl); }

  .hero__cta-btn { min-width: 200px; }
}

/* --- Sections --- */
.section {
  padding: var(--space-4xl) var(--space-xl);
}

.section--alt {
  background: var(--color-bg-warm);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-bg);
}

.section--dark p {
  color: var(--color-gold-light);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--max-width-narrow);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-md);
  display: block;
}

.section__logo {
  display: block;
  height: clamp(36px, 4vw, 48px);
  width: auto;
  margin: 0 auto var(--space-md);
  opacity: 0.9;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

.section__text {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}

/* --- About Section --- */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.about-content p {
  max-width: 650px;
  line-height: 2.1;
  font-size: var(--text-xl);
}

/* --- Happy Hour Section --- */
.happy-hour {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--color-bg-dark);
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.happy-hour::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196, 181, 164, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.happy-hour__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  display: block;
}

.happy-hour__title {
  font-family: var(--font-accent);
  font-size: var(--text-5xl);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
  margin-bottom: var(--space-2xl);
}

.happy-hour__details {
  font-family: var(--font-hebrew);
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  line-height: 2.2;
  max-width: 500px;
  margin: 0 auto;
}

.happy-hour__time {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}

/* --- Featured Menu / Menu Page --- */
.featured-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.menu-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  transition: transform var(--transition-base);
}

.menu-item:hover {
  transform: translateY(-4px);
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.menu-item__description {
  font-family: var(--font-hebrew);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.menu-item__price {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-gold-dark);
  letter-spacing: 0.05em;
}

.menu-item__divider {
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-md) auto;
  opacity: 0.5;
}

/* Menu Page Full Styles */
.menu-page {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
}

/* --- Brand Cloud (drinks menu) --- */
.brand-cloud {
  margin: 0 auto var(--space-4xl);
  max-width: var(--max-width);
  text-align: center;
}

.brand-cloud__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
}

.brand-cloud__track-wrap {
  overflow: hidden;
  padding: var(--space-md) 0;
  /* Force LTR so the oversized track aligns to the LEFT edge of the wrap,
     not the RTL default (right edge) which pushes all items off-screen. */
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.brand-cloud__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  /* Keep visual flow LTR even within an RTL page so animation feels natural */
  direction: ltr;
  animation: brand-cloud-scroll 55s linear infinite;
  will-change: transform;
}

.brand-cloud__track-wrap:hover .brand-cloud__track {
  animation-play-state: paused;
}

.brand-cloud__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-3xl);
  /* Trailing gap so the last item of this group is spaced from the first item
     of the next group by exactly the same --space-3xl — keeps the seam invisible. */
  padding-inline-end: var(--space-3xl);
  margin: 0;
  list-style: none;
}

.brand-cloud__item {
  flex: 0 0 auto;
  font-size: clamp(var(--text-lg), 2.4vw, var(--text-2xl));
  color: var(--color-text-muted);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.75;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.brand-cloud__item:hover {
  color: var(--color-gold-dark);
  opacity: 1;
}

.brand-cloud__item--serif {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: normal;
}

.brand-cloud__item--italic {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
}

.brand-cloud__item--caps {
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
}

/* Real brand logos — normalized to a consistent visual weight */
.brand-cloud__item--logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.brand-cloud__item--logo img {
  display: block;
  height: clamp(22px, 2.6vw, 32px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  /* Force all logos to a uniform dark tone so a red/blue/etc. logo doesn't
     scream over the calm serif wordmarks. Removed on hover for brand accuracy. */
  filter: grayscale(100%) brightness(0) opacity(0.65);
  transition: filter var(--transition-base);
}

.brand-cloud__item--logo:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
}

@keyframes brand-cloud-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-cloud__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-cloud__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline-end: 0;
    gap: var(--space-lg) var(--space-xl);
  }
  /* Show only the first (real) group; hide the a11y-hidden duplicate */
  .brand-cloud__group[aria-hidden="true"] {
    display: none;
  }
  .brand-cloud__track-wrap {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.menu-category {
  margin-bottom: var(--space-4xl);
}

.menu-category__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 300;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.menu-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-fast);
}

.menu-list-item:hover {
  padding-right: var(--space-sm);
}

.menu-list-item:last-child {
  border-bottom: none;
}

.menu-list-item__info {
  flex: 1;
  padding-left: var(--space-xl);
}

.menu-list-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.menu-list-item__desc {
  font-family: var(--font-hebrew);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.menu-list-item__price {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-gold-dark);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.menu-list-item__dots {
  flex: 0 0 auto;
  border-bottom: 1px dotted var(--color-border);
  min-width: 40px;
  margin: 0 var(--space-md);
  align-self: center;
  margin-bottom: 6px;
}

/* --- About Page --- */
.about-page {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
}

.about-hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.about-hero__title {
  font-size: var(--text-5xl);
  font-weight: 300;
  margin-bottom: var(--space-xl);
}

.about-story {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.about-story p {
  font-size: var(--text-lg);
  line-height: 2.2;
  margin-bottom: var(--space-2xl);
  text-align: justify;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.about-value {
  text-align: center;
  padding: var(--space-xl);
}

.about-value__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.about-value__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

/* --- Contact Page --- */
.contact-page {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-info__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.contact-info__value {
  font-family: var(--font-hebrew);
  font-size: var(--text-lg);
  color: var(--color-text);
}

.contact-info__value a {
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--color-gold-dark);
}

/* Contact Strip (homepage) */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  text-align: center;
}

.contact-strip__item {
  padding: var(--space-lg);
}

.contact-strip__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
  display: block;
}

.contact-strip__value {
  font-family: var(--font-hebrew);
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-bg);
  padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
  text-align: center;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin: 0 auto var(--space-2xl);
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-base);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__social-link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  transition: color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--color-gold);
}

.footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(196, 181, 164, 0.3);
  margin: var(--space-2xl) auto;
}

.footer__copyright {
  font-family: var(--font-hebrew);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll-triggered animation classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

.reveal--delay-3 {
  transition-delay: 0.45s;
}

.reveal--delay-4 {
  transition-delay: 0.6s;
}

/* Fade only (no movement) */
.reveal--fade {
  transform: none;
}

/* --- Utility --- */
.text-center {
  text-align: center;
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mt-3xl {
  margin-top: var(--space-3xl);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
  }

  .nav {
    padding: 0 var(--space-xl);
  }

  .section {
    padding: var(--space-4xl) var(--space-xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --text-7xl: 3rem;
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --nav-height: 70px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav {
    padding: 0 var(--space-lg);
  }

  .hero__logo {
    width: 160px;
  }

  .hero__tagline {
    font-size: var(--text-xl);
    letter-spacing: 0.2em;
  }

  .section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .featured-menu {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .happy-hour__title {
    font-size: var(--text-3xl);
    letter-spacing: 0.15em;
  }

  .menu-list-item {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .menu-list-item__dots {
    display: none;
  }

  .menu-list-item__info {
    padding-left: 0;
    flex-basis: 80%;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }

  .hero {
    padding: var(--space-3xl) var(--space-md);
  }

  .hero__logo {
    width: 130px;
  }

  .btn {
    padding: 12px 28px;
    font-size: var(--text-xs);
  }

  .section {
    padding: var(--space-2xl) var(--space-md);
  }
}

/* --- WhatsApp Floating Bubble --- */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.whatsapp-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  background: #2c2c2c;
}

.whatsapp-bubble svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-bubble {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-bubble svg {
    width: 24px;
    height: 24px;
  }
}

/* --- Page Transition Feel --- */
.page-enter {
  animation: pageEnter 0.6s ease forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --- Nav language toggle: regular button on desktop, compact pill next to hamburger on mobile --- */
.nav__lang {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 8px 14px;
  cursor: pointer;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  /* Sits just left of the logo in RTL desktop layout */
  margin-inline-end: var(--space-md);
}

.nav__lang-text {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.nav__lang:hover {
  color: var(--color-text);
  border-color: var(--color-gold);
  background: rgba(196, 181, 164, 0.08);
}

.nav__lang:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .nav__lang {
    /* Compact badge sitting right next to the hamburger */
    padding: 5px 9px;
    min-width: 0;
    margin-inline-end: var(--space-sm);
    margin-inline-start: auto;
    order: 2; /* comes just before the hamburger in flex order */
  }
  .nav__lang-text {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .nav__hamburger {
    order: 3;
  }
}

/* --- LTR overrides (applied when html[lang="en"]) --- */
html[lang="en"] {
  /* Latin copy wants a different default typographic voice */
  font-family: var(--font-heading);
}

html[lang="en"] body,
html[lang="en"] .menu-list-item__desc,
html[lang="en"] .hero__subtitle,
html[lang="en"] .menu-tab,
html[lang="en"] .happy-hour__time,
html[lang="en"] .contact-strip__value {
  font-family: var(--font-heading);
}

/* The brand-cloud eyebrow looks cramped in caps + Latin at xs size */
html[lang="en"] .brand-cloud__eyebrow {
  letter-spacing: 0.18em;
}

/* The menu tabs sit left-to-right; no change needed since flex default is LTR. */

/* Footer & hero keep centered alignment — no overrides required. */
