:root {
  --bg: #faf8f4;
  --bg-alt: #f2ece0;
  --card-bg: #ffffff;
  --accent: #b8841f;
  --accent-soft: rgba(184, 132, 31, 0.12);
  --accent-strong: #c8922a;
  --text: #1c1410;
  --text-muted: #6b5f52;
  --border-soft: rgba(0, 0, 0, 0.09);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container-width: 1100px;
  --transition-fast: 0.2s ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 80px;
  width: auto;
  border-radius: 14px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav a:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.nav-order-btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
}

.lang-switch {
  display: flex;
  gap: 0.25rem;
}

.lang-btn {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.lang-btn.active {
  background: linear-gradient(135deg, #c8922a, #e8b040);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(200, 146, 42, 0.35);
}

/* ── Burger button ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.55rem 0.25rem;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent-strong);
}

.mobile-nav-order {
  margin-top: 0.5rem;
  text-align: center;
}

.mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-soft);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("assets/logo.webp");
  background-position: center;
  background-size: 420px 420px;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.55));
  z-index: 2;
  pointer-events: none;
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
  pointer-events: all;
  z-index: 4;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 1.5rem;
}

.slider-btn.next {
  right: 1.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  pointer-events: all;
  z-index: 4;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
  z-index: 3;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: #fff;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast), border-color var(--transition-fast);
}

.btn.primary {
  background: #d63e2d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 62, 45, 0.35);
}

.btn.primary:hover {
  background: #c0341f;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(214, 62, 45, 0.45);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn.full-width {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Highlight card ── */
.card {
  background: #ffffff;
  border-radius: 26px;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d63e2d, #e8604f);
  border-radius: 26px 26px 0 0;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #d63e2d;
}

.card p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.highlight-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text);
}

.highlight-list li + li {
  margin-top: 0.3rem;
}

/* ── Sections ── */
.section {
  padding: 3.5rem 0;
  background: var(--bg);
}

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

.section-title {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  color: #d63e2d;
}

.section-intro {
  margin: 0 0 2rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.section h2,
.section h3 {
  color: #d63e2d;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.1rem;
}

.about-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.about-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(214, 62, 45, 0.1);
  color: #d63e2d;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.about-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ── Menu ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.menu-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #d63e2d;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-card li + li {
  margin-top: 0.35rem;
}

/* ── Location ── */
.location-info {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.location-info li + li {
  margin-top: 0.5rem;
}

.location-info a {
  color: #d63e2d;
  text-decoration: none;
}

.location-info a:hover {
  text-decoration: underline;
}

.map-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Contact ── */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-list li + li {
  margin-top: 0.6rem;
}

.contact-list a {
  color: #d63e2d;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.8rem 0 1.6rem;
  background: #1c1410;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.footer-meta {
  max-width: 40rem;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .top-bar-inner {
    align-items: center;
  }

  .nav {
    display: none;
  }

  .nav-order-btn {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .top-bar-inner {
    position: relative;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-logo {
    height: 48px;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
    min-height: unset;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .hero-highlight {
    display: none;
  }

  .slider-btn {
    display: none;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .slider-btn.prev {
    left: 1rem;
  }

  .slider-btn.next {
    right: 1rem;
  }

  .slider-dots {
    bottom: 1.5rem;
  }

  .map-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-meta span {
    width: 100%;
  }
}

/* ── RTL support ── */
html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .hero-inner,
html[dir="rtl"] .two-column,
html[dir="rtl"] .menu-grid,
html[dir="rtl"] .about-grid {
  direction: rtl;
}
