﻿@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Roboto+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0f0f10;
  --bg-soft: #181618;
  --surface: #f5f1e9;
  --surface-2: #ede5d8;
  --text: #f3efe6;
  --text-dark: #272220;
  --muted: #bfb7ab;
  --accent: #b71c2f;
  --accent-2: #8f1222;
  --line: rgba(217, 190, 145, 0.3);
  --gold: #d9be91;
  --radius: 18px;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; color: var(--text); background: radial-gradient(circle at 15% -10%, rgba(183, 28, 47, 0.18), transparent 45%), radial-gradient(circle at 110% 30%, rgba(217, 190, 145, 0.12), transparent 50%), var(--bg); line-height: 1.7; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }

.container { width: min(1320px, 94%); margin: 0 auto; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 60; border-bottom: 1px solid var(--line); background: rgba(10, 10, 10, 0.88); backdrop-filter: blur(10px); }
.site-header .container.nav-wrap {
  width: min(1320px, 94%) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.6rem, 1.6vw, 1.4rem);
  position: relative;
}
.logo img { display: block; height: 48px; width: auto; }
.site-nav {
  display: flex;
  gap: 0.9rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-nav a { color: #efe9dc; font-size: 1rem; padding: 0.55rem 0.9rem; border-radius: 999px; border: 1px solid transparent; }
.site-nav a:hover,
.site-nav a.active,
.site-nav a:active,
.site-nav a:focus-visible {
  background: rgba(183, 28, 47, 0.24);
  border-color: rgba(183, 28, 47, 0.55);
  color: #d81f32;
  font-weight: 700;
}
.nav-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: linear-gradient(90deg, var(--accent), #d7364c);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-left: 0.35rem;
  font-size: 1rem;
  line-height: 1;
}
.nav-booking:hover { opacity: 0.86; }
.nav-booking:active { transform: scale(0.97); }
.nav-toggle { display: none; border: 1px solid var(--line); color: var(--surface); background: transparent; border-radius: 10px; font-size: 1.3rem; padding: 0.3rem 0.55rem; }
.header-lang-control {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(217, 190, 145, 0.35);
  background: rgba(20, 20, 21, 0.92);
}

.header-lang-switcher {
  min-height: 38px;
  border: none;
  background: transparent;
  color: #efe9dc;
  padding: 0 0.5rem 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  cursor: pointer;
}

.header-lang-switcher:focus-visible {
  outline: 1px solid rgba(255, 180, 168, 0.8);
  outline-offset: 3px;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-caret {
  color: #d9be91;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.header-lang-control.is-open .lang-caret {
  transform: rotate(180deg);
}

.header-lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0 !important;
  z-index: 1220;
  min-width: 178px;
  padding: 0.35rem;
  border: 1px solid rgba(217, 190, 145, 0.28);
  background: rgba(14, 14, 14, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.header-lang-control.is-open .header-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-lang-option {
  width: 100%;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: #efe9dc;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.65rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.header-lang-option:hover,
.header-lang-option:focus-visible,
.header-lang-option[aria-selected="true"] {
  background: rgba(183, 28, 47, 0.24);
  color: #ffdad4;
  outline: none;
}

.lang-short {
  color: #d9be91;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switcher {
  margin-left: auto;
}

.top-on-page {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(189, 0, 0, 0.55);
  background: rgba(10, 10, 10, 0.85);
  color: #ffb4a8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  z-index: 95;
}
.top-on-page.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.top-on-page:hover {
  border-color: rgba(183, 28, 47, 0.8);
  color: #fff;
}

main, .page-main { padding-top: 84px; }
.section { padding: 4.2rem 0; }
h1, h2, h3, h4 { margin: 0 0 0.8rem; line-height: 1.3; font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; color: var(--surface);  letter-spacing: 0.01em; }
p { margin: 0 0 0.9rem; }

.text-label-sm {
  font-size: 21px !important;
}

.banner-slider.section { padding: 0; }
.banner-slider .slider { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border-radius: 0; box-shadow: none; border-bottom: 1px solid var(--line); will-change: transform; }
.slide img { width: 100%; height: clamp(360px, 56vw, 860px); object-fit: cover; display: block; }
.slide { display: none; }
.slide.active { display: block; }

.hero { padding: 3.2rem 0 2rem; }
.hero-grid { display: grid; gap: 1.4rem; grid-template-columns: 1.35fr 1fr; }
.hero-gallery, .hero-card, .food-card, .branch-card, .contact-box, .about-content, .feature-card, .promo-card, .split-block { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(25, 23, 24, 0.95), rgba(14, 14, 15, 0.95)); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 14px; }
.hero-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; }
.hero-gallery img:first-child { grid-column: span 2; height: 360px; }
.hero-card { padding: 14px; }
.hero-auto-slider { width: 100%; min-height: 560px; border-radius: 12px; overflow: hidden; }
.hero-auto-slide { display: none; }
.hero-auto-slide.active { display: block; }
.hero-auto-slide img { width: 100%; height: 560px; object-fit: cover; display: block; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: 1.2rem; align-items: center; }
.split-block img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; }
.section-head { margin-bottom: 1.4rem; display: flex; justify-content: space-between; align-items: baseline; }
.section-head h1, .section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.section-head a { color: var(--gold); font-size: 1.02rem; }
.menu-group-title { margin: 2.2rem 0 1rem; font-size: 1.5rem; color: var(--gold); }

.feature-grid, .cards-grid, .branch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.feature-card, .food-card, .branch-card, .contact-box, .about-content, .promo-card { padding: 1.1rem; }
.feature-card img, .food-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 0.8rem; background: #111; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.promo-card { display: grid; grid-template-columns: 250px 1fr; gap: 1rem; align-items: center; }
.promo-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.95rem; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }

.food-card h3, .branch-card h3, .feature-card h3, .promo-card h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin-bottom: 0.4rem; }
.food-card p, .branch-card p, .contact-box p, .about-content p, .promo-card p, .split-block p { color: var(--muted); }
.food-card p:last-child { color: #f4d6a4; font-weight: 700; }

.btn { display: inline-block; padding: 0.64rem 1.06rem; border-radius: 999px; font-weight: 600; }
.btn-outline { border: 1px solid rgba(217, 190, 145, 0.56); color: #f6e9d2; }
.btn-outline:hover { background: rgba(217, 190, 145, 0.12); }
.site-footer { margin-top: 3rem; padding: 3rem 0 1.4rem; background: #090909; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.2rem; }
.site-footer h3, .site-footer h4 { color: var(--surface); }
.site-footer p { color: #baaf9f; }
.social-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social-links a { border: 1px solid rgba(217, 190, 145, 0.35); border-radius: 999px; padding: 0.38rem 0.7rem; color: #f0e5d2; }
.copyright { text-align: center; color: #887d6e; margin: 1.2rem 0 0; font-size: 0.95rem; }
.email-text { text-transform: none !important; }
.mobile-booking { display: none; }

.footer-unified {
  position: relative;
  border-top: 1px solid rgba(93, 63, 59, 0.2);
  background: #0e0e0e;
  padding: 88px 0 44px;
  margin-top: 0;
}

.footer-unified-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle at 10px 10px, rgba(189, 0, 0, 0.05) 2px, transparent 0);
  background-size: 20px 20px;
}

.footer-unified-inner {
  position: relative;
  width: min(1280px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  color: #b6aba0;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-copyright {
  position: relative;
  width: min(1280px, 92%);
  margin: 2.6rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(93, 63, 59, 0.24);
  color: #b6aba0;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-block h3 {
  margin: 0 0 0.35rem;
  color: #bd0000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-block p {
  margin: 0;
  color: #efe9dc;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.footer-block a {
  color: inherit;
  text-decoration: none;
}

.footer-block a:hover {
  color: #ffb4a8;
}

.footer-block .footer-muted {
  color: #d1b0aa;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-branches .footer-map-link {
  margin-top: 0.25rem;
}

.footer-block .footer-map-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: linear-gradient(90deg, #b71c2f, #d7364c);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-block .footer-map-link:hover {
  color: #000;
  opacity: 0.86;
}

.footer-block .footer-map-link:active {
  transform: scale(0.97);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(93, 63, 59, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c7b2ac;
  text-decoration: none;
}

.footer-socials a:hover {
  border-color: rgba(183, 28, 47, 0.8);
  color: #ffb4a8;
}

.footer-socials svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  display: block;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .container { width: min(1180px, 94%); }
  .hero-grid, .feature-grid, .cards-grid, .branch-grid, .footer-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body.menu-open .site-header,
  .site-header {
    z-index: 1200;
  }

  .logo img { height: 38px; }
  .nav-wrap {
    min-height: 76px;
    justify-content: space-between;
    gap: 0.55rem;
  }
  .nav-toggle { display: block; z-index: 70; }
  .nav-booking { display: none; }
  .site-nav { display: none; position: fixed; inset: 0; z-index: 65; padding: 92px 8% 24px; background: rgba(8,8,8,0.98); flex-direction: column; gap: 0.9rem; }
  .site-nav a { font-size: 1.08rem; padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid var(--line); }
  .header-lang-control {
    margin-left: auto;
    margin-right: 0.2rem;
    min-height: 36px;
  }
  .header-lang-switcher { font-size: 0.8rem; min-height: 34px; padding: 0 0.42rem 0 0.48rem; }
  .site-nav.open { display: flex; }
  main, .page-main { padding-top: 76px !important; }
  .section { padding: 2.6rem 0; }
  .hero-grid, .feature-grid, .cards-grid, .branch-grid, .footer-grid, .gallery-grid, .split-block { grid-template-columns: 1fr; }
  .footer-unified { padding: 64px 0 36px; }
  .footer-unified-inner { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .footer-brand { align-items: flex-start; }
  .footer-socials { gap: 0.8rem; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-gallery img:first-child { grid-column: span 1; height: 240px; }
  .hero-gallery img, .feature-card img, .food-card img, .gallery-grid img { height: 220px; }
  .hero-auto-slider, .hero-auto-slide img { min-height: 280px; height: 280px; }
  .slide img { height: clamp(220px, 68vw, 420px); }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card img, .split-block img { height: 210px; }
  .mobile-booking { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1210; text-align: center; padding: 0.75rem 1rem; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #d7364c); color: #fff; font-weight: 700; box-shadow: 0 8px 24px rgba(183, 28, 47, 0.45); }
  .top-on-page { right: 12px; bottom: 86px; }
  .site-footer { padding-bottom: 5.5rem; }
}

.brand-story-center {
  padding: 4.8rem 0 3.6rem;
}

.brand-story-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 2.4rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 20, 21, 0.96), rgba(13, 13, 14, 0.96));
  box-shadow: var(--shadow);
}

.brand-story-logo {
  display: block;
  margin: 0 auto 1rem;
  width: min(340px, 72vw);
  height: auto;
}

.brand-story-slogan {
  margin: 0 0 1.2rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--gold);
}

.brand-story-text {
  max-width: 860px;
  margin: 0 auto;
}

.brand-story-text p {
  color: #d3c8b8;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  margin-bottom: 1rem;
}

@media (max-width: 720px) {
  .brand-story-center {
    padding: 3rem 0 2.4rem;
  }

  .brand-story-box {
    padding: 1.5rem 1rem;
  }
}

/* Refinement: remove frames for Brand Story + Special Dishes */
.brand-story-box {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding-top: 1.2rem;
}

.brand-story-logo {
  width: min(220px, 56vw) !important;
}

.feature-card {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.feature-card img {
  border-radius: 12px;
  margin-bottom: 0.55rem;
}

/* Typography + color system aligned to reference */
body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: #ffffff !important;
}

h1, h2, h3, h4 {
  letter-spacing: 0.01em;
}

p,
.food-card p,
.branch-card p,
.contact-box p,
.about-content p,
.promo-card p,
.split-block p,
.brand-story-text p,
.site-footer p {
  color: #ffffff !important;
  opacity: 0.9;
}

.section-head a,
.menu-group-title,
.brand-story-slogan,
.site-nav a.active,
.site-nav a:hover {
  color: #d81f32 !important;
}

.social-links a:hover,
.btn-outline:hover {
  color: #d81f32 !important;
}

.feature-card h3 {
  color: #d81f32 !important;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px;
}

/* Section titles highlighted in red */
.section-head h1,
.section-head h2,
.menu-group-title {
  color: #d81f32 !important;
}

/* Special dishes: no captions, images touch each other */
.feature-grid {
  gap: 0 !important;
}

.feature-card img {
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  display: block;
}

.feature-card h3 {
  display: none !important;
}

/* Revert: keep spacing between special dish images */
.feature-grid {
  gap: 1.2rem !important;
}

.feature-card img {
  margin-bottom: 0.55rem !important;
  border-radius: 12px !important;
}

/* Ingredients section: remove border + rounded corners */
.source-grid {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.source-grid img {
  border-radius: 0 !important;
}


/* KATSUYA mobile burger override */
@media (max-width: 720px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    z-index: 1220;
    border-radius: 999px;
    border: 1px solid rgba(217, 190, 145, 0.36);
    background: rgba(15, 15, 16, 0.78);
    color: #f7efe5;
    font-size: 1.28rem;
    line-height: 1;
    padding: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(183, 28, 47, 0.72);
    background: rgba(183, 28, 47, 0.18);
    color: #ffffff;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 76px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1210;
    padding: 18px 20px 28px;
    background:
      linear-gradient(180deg, rgba(9, 9, 10, 0.98), rgba(9, 9, 10, 0.94)),
      radial-gradient(circle at 50% 0%, rgba(183, 28, 47, 0.22), transparent 36%);
    backdrop-filter: blur(14px);
    transform: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.7rem;
    overflow-y: auto;
  }

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

  .site-nav a {
    width: min(100%, 420px);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 1rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 190, 145, 0.22);
    background: rgba(255, 255, 255, 0.035);
    color: #efe9dc;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .site-nav a::after {
    content: "›";
    color: rgba(217, 190, 145, 0.82);
    font-size: 1.25rem;
    line-height: 1;
  }

  .site-nav a.active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(183, 28, 47, 0.24);
    border-color: rgba(183, 28, 47, 0.62);
    color: #ffffff;
  }
}

body.menu-open .mobile-booking { display: none !important; }


/* KATSUYA mobile menu hard overlay fix */
@media (max-width: 720px) {
  body.menu-open .site-header,
  .site-header { z-index: 10000 !important; }
  .nav-toggle { z-index: 10002 !important; }
  .header-lang-control { z-index: 10001 !important; }
  .site-nav {
    z-index: 9999 !important;
    background: #090909 !important;
    opacity: 1 !important;
    isolation: isolate;
  }
  .site-nav.open { display: flex !important; z-index: 9999 !important; }
  body.menu-open main,
  body.menu-open .page-main { pointer-events: none; }
}

/* KATSUYA mobile nav stacking fix */
@media (max-width: 720px) {
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header,
  .site-header { z-index: 5000 !important; }
  .site-nav.open {
    display: flex !important;
    position: fixed !important;
    top: 76px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    min-height: calc(100dvh - 76px);
    z-index: 5001 !important;
    background: #090909 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-toggle { z-index: 5003 !important; }
  .header-lang-control { z-index: 5002 !important; }
}
