@font-face {
  font-family: "Creative Block BB";
  src: url("fonts/CREABBRG.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Creative Block BB";
  src: url("fonts/CREABBB_.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* PAHO brand palette (menu boards + logo; refine via PAHO_Colorss.pdf when added) */
  --paho-red: #d81824;
  --paho-red-dark: #a8000c;
  --paho-cream: #fcf0d8;
  --paho-cream-soft: #f0e4c8;
  --paho-black: #180000;
  --paho-gold: #d0a060;
  --paho-gold-dark: #b88848;
  --paho-white: #ffffff;
  --paho-muted: #5c4848;

  --bg: var(--paho-cream);
  --bg-soft: var(--paho-cream-soft);
  --primary: var(--paho-red);
  --primary-dark: var(--paho-red-dark);
  --accent: var(--paho-black);
  --text: var(--paho-black);
  --muted: var(--paho-muted);
  --gold: var(--paho-gold);
  --card: rgba(255, 255, 255, 0.82);
  --accent-rgb: 24, 0, 0;
  --primary-rgb: 216, 24, 36;
  --font-family: "Creative Block BB", cursive, sans-serif;
}

html:lang(ru) {
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  font-family: var(--font-family);
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  word-wrap: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

[class^="fa-"],
[class*=" fa-"],
.fa-solid,
.fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(240, 239, 233, 0.88);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0.75rem;
}

.brand {
  color: var(--accent);
  text-decoration: none;
  font: 700 clamp(1.2rem, 4vw, 1.8rem) var(--font-family);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--accent);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.lang-switcher {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: transparent;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--primary);
  color: var(--paho-white);
}

.seo-menu-items {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin: 3px 0;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.18s ease;
  transform-origin: center;
}

.hero-menu-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(252, 240, 216, 0.86);
}

.hero-mobile-nav {
  display: none;
}

.mobile-lang-links {
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(var(--primary-rgb), 0.16), transparent 60%),
    linear-gradient(140deg, var(--paho-cream), var(--paho-cream-soft) 45%, var(--paho-cream));
}

#heroMount {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 11, 8, 0.8), rgba(19, 11, 8, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1rem, 3vw, 3rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  margin: 0.4rem 0 1rem;
}

.hero-text {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--paho-white);
}

.btn-outline {
  border-color: rgba(var(--accent-rgb), 0.35);
  color: var(--accent);
}

.floating-icons {
  position: absolute;
  inset: auto 0 30px 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  animation: floatY 3s ease-in-out infinite;
}

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

/* Vanilla JS Hero Integration */
.hero-complex {
  min-height: 100vh;
  /* German base: warm off-white — precise, breathable */
  background: var(--paho-cream);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-complex .hero-overlay {
  /* Very subtle warm gradient — adds depth without darkness */
  background: linear-gradient(
    150deg,
    rgba(252, 240, 216, 0) 0%,
    rgba(240, 228, 200, 0.18) 60%,
    rgba(224, 210, 180, 0.12) 100%
  );
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  /* German precision grid — thin dark lines at 6% opacity */
  background-image:
    linear-gradient(to right, rgba(var(--accent-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(var(--accent-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.025) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem, 3.5rem 3.5rem, 7rem 7rem;
  pointer-events: none;
}

.hero-complex-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.7rem 1rem 1.7rem clamp(8rem, 24vw, 13rem);
}

.hero-lang-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 25;
}

.hero-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  z-index: 22;
}

.hero-logo-img {
  display: block;
  height: clamp(2.25rem, 6vw, 3.25rem);
  width: auto;
  max-width: min(38vw, 200px);
}

.hero-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0;
}

.hero-top-links {
  display: none;
  gap: 0.4rem;
  justify-content: center;
}

.hero-top-links a {
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s;
}

.hero-top-links a:hover {
  background: rgba(var(--accent-rgb), 0.06);
  border-color: rgba(var(--accent-rgb), 0.4);
}

.hero-wallet-btn {
  min-height: 50px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  background: transparent;
  padding: 0.68rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-wallet-btn:hover {
  background: var(--accent);
  color: var(--paho-cream);
}

.hero-main {
  position: relative;
  z-index: 10;
  width: min(1440px, 100% - 2rem);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-big-stack {
  position: relative;
  text-align: center;
  min-height: 520px;
}

.hero-lines span {
  display: block;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.85;
  margin: 0.15rem 0;
  text-align: center;
  width: 100%;
  text-shadow: none;
}

.hero-lines .line-club {
  color: var(--primary);
  font-size: clamp(3rem, 13vw, 9.5rem);
}

.hero-lines .line-main {
  color: var(--text);
  font-size: clamp(3.4rem, 15vw, 12rem);
}

.hero-lines .line-people {
  color: var(--text);
  font-size: clamp(3rem, 13vw, 9.5rem);
}

.hero-floating-card {
  position: absolute;
  width: min(220px, 40vw);
  aspect-ratio: 3 / 3.5;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 35, 0.08);
  border-radius: 1.5rem;
  backdrop-filter: blur(14px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  color: var(--text);
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-floating-card img {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: var(--paho-cream);
  display: block;
  margin: 0 auto 0.7rem;
  border: 2px solid rgba(var(--accent-rgb), 0.12);
  padding: 0.45rem;
}

.hero-floating-card h3 {
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: rgba(13, 13, 26, 0.65);
  margin: 0.3rem 0 0;
  text-align: center;
}

.hero-card-left {
  left: 3%;
  bottom: 10%;
  transform: rotate(-8deg);
  animation-name: floatLeft;
}

.hero-card-right {
  right: 3%;
  top: 8%;
  transform: rotate(8deg);
  animation-name: floatRight;
  animation-duration: 6s;
  animation-delay: 1s;
}

.hero-deco-arrow {
  position: absolute;
  width: 84px;
  height: 84px;
  color: #ccff00;
}

.hero-arrow-left {
  left: 0;
  bottom: 0;
}

.hero-arrow-right {
  right: 0;
  top: 0;
}

.hero-badge {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 4vh, 3rem);
  width: 106px;
  height: 106px;
  z-index: 15;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.hero-badge:hover {
  transform: scale(1.08);
}

.hero-badge-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-badge-ring {
  animation: badgeSpin 10s linear infinite;
  transform-origin: 100px 100px;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-slide-btn {
  display: none !important;
}

.hero-slide-btn:hover {
  display: none !important;
}

.hero-slide-prev {
  display: none !important;
}

.hero-slide-next {
  display: none !important;
}

.hero-feature-section {
  position: relative;
  z-index: 20;
  background: var(--paho-cream-soft);
  color: var(--text);
  border-radius: 2.2rem 2.2rem 0 0;
  padding: 1.25rem 1rem 1.5rem;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.2);
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
  border-radius: 1.2rem;
  padding: 1rem;
  min-height: 180px;
}

.hero-feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}

.hero-feature-card p {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  color: #333;
}

.hero-pill {
  background: var(--accent);
  color: var(--paho-white);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
}

.hero-pill img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-pill-green {
  background: var(--primary);
  color: var(--paho-white);
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(-7deg); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-14px) rotate(9deg); }
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 0.25rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 0 0 0.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.cards, .gallery-grid, .facts {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-roll-list {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 860px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
}

.menu-roll-item {
  text-align: center;
  cursor: pointer;
  padding: 1rem 1.5rem 1.1rem;
  border-radius: 0;
  transition: background 0.22s ease;
  width: 100%;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  position: relative;
}

.menu-roll-item:hover {
  background: rgba(var(--primary-rgb), 0.04);
}

.menu-roll-item.active {
  background: rgba(var(--primary-rgb), 0.06);
}

.menu-roll-title-wrap {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
}

.menu-roll-index {
  display: none;
}

.text-roll {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  padding-bottom: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  letter-spacing: 0;
  cursor: default;
  will-change: transform;
}

.text-roll-base,
.text-roll-hover {
  display: block;
  white-space: nowrap;
}

.text-roll-hover {
  position: absolute;
  inset: 0;
  color: var(--primary);
}

.text-roll-char {
  display: inline-block;
  transform: translateY(0);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-roll-hover .text-roll-char {
  /* 130% ensures full glyphs including descenders (Q, g, y) stay hidden below */
  transform: translateY(130%);
}

.menu-roll-item:hover .text-roll-base .text-roll-char {
  transform: translateY(-130%);
}

.menu-roll-item:hover .text-roll-hover .text-roll-char {
  transform: translateY(0);
}

.menu-roll-preview {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.menu-inline-details {
  display: none;
  margin-top: 0;
  width: 100%;
}

.menu-inline-details.open {
  display: block;
}

.menu-card-single {
  max-width: 760px;
  margin: 0 auto;
}

.menu-list-plain {
  max-width: 680px;
  margin: 0.9rem auto 0.4rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--accent-rgb), 0.08);
  border-radius: 14px;
  transform-origin: top center;
  animation: menuOpenFromTop 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  backdrop-filter: blur(8px);
}

.menu-list-plain h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  opacity: 0.55;
}

.menu-items-list {
  width: 100%;
}

.menu-item-row {
  width: 100%;
}

@keyframes menuOpenFromTop {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.menu-card, .fact-card {
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.menu-card i, .fact-card i {
  color: var(--primary);
}

.menu-card h3 {
  margin: 0.4rem 0 0.75rem;
}

.menu-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.07);
}

.menu-item-row--with-image {
  align-items: center;
  gap: 1.1rem;
}

.menu-item-photo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  background: rgba(255, 255, 255, 0.6);
}

.menu-item-copy {
  flex: 1;
  min-width: 0;
}

.menu-item-price {
  align-self: flex-start;
}

.menu-item-row--with-image .menu-item-price {
  align-self: center;
}

@media (max-width: 480px) {
  .menu-item-photo {
    width: 88px;
    height: 88px;
    border-radius: 12px;
  }

  .menu-item-row--with-image {
    flex-wrap: wrap;
  }

  .menu-item-row--with-image .menu-item-price {
    width: 100%;
    text-align: right;
    padding-top: 0.35rem;
  }

  .menu-item-row--combo .menu-item-photo {
    width: 64px;
    height: 64px;
  }
}

.menu-item-row--combo {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.menu-item-photos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item-row--combo .menu-item-photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.menu-item-photos-plus {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.menu-item-copy-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item-row:first-child {
  padding-top: 0;
}

.menu-item-row h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--accent);
  font-weight: 700;
}

.menu-item-row p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.menu-item-row .menu-item-price {
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 800;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

/* ── Menu category grid ── */
.menu-category-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 680px) {
  .menu-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.menu-category-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.menu-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(var(--accent-rgb), 0.13);
}

.menu-category-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.menu-category-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  font-size: 2.5rem;
  color: var(--primary);
}

.menu-category-card-footer {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.menu-category-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
}

.menu-category-card-footer .fa-arrow-right {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Menu modal ── */
.menu-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(var(--accent-rgb), 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.menu-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal {
  background: var(--bg);
  width: min(520px, 100%);
  max-height: 88vh;
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(60px);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 -8px 48px rgba(var(--accent-rgb), 0.22);
}

.menu-modal-overlay.open .menu-modal {
  transform: translateY(0);
}

@media (min-width: 540px) {
  .menu-modal-overlay {
    align-items: center;
  }
  .menu-modal {
    border-radius: 24px;
    transform: scale(0.9) translateY(24px);
    box-shadow: 0 24px 72px rgba(var(--accent-rgb), 0.28);
  }
  .menu-modal-overlay.open .menu-modal {
    transform: scale(1) translateY(0);
  }
}

.menu-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.08);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--bg);
}

.menu-modal-title {
  margin: 0;
  font-size: 1.3rem;
  color: var(--accent);
}

.menu-modal-close {
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.menu-modal-close:hover {
  background: var(--primary);
  color: #fff;
}

.menu-modal-body {
  padding: 1rem 1.5rem 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.menu-modal-empty {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
}

#gallery {
  background: #050505;
}

#gallery .container {
  width: min(980px, 100% - 2rem);
}

#gallery .section-head h2 {
  color: #f3f3f3;
}

/* Row-first grid (not CSS columns) so order matches data.json and last rows don’t leave a “missing” column gap */
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

#gallery .gallery-item {
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

#gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  display: block;
}

#gallery .gallery-item p {
  margin: 0;
  padding: 1rem;
  color: #d8d8d8;
}

@media (max-width: 960px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about-wrap, .contact-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.about-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
}

.about-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  object-fit: cover;
  display: block;
}

.about-info {
  /* No "card bg" — let the About section provide background. */
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 2.1rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Full-bleed About background (not limited to the centered container) */
#about {
  position: relative;
  min-height: 100vh;
  padding: 0;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 240, 216, 0.78), rgba(252, 240, 216, 0.78)),
    url("images/photo_2026-04-29_13.19.05__1_-fa3f2c6f-a753-4f7f-a67a-ad9a364b7ae2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

#about .about-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  /* keep existing grid layout from earlier rules */
}

.about-info .about-eyebrow {
  margin: 0 0 0.65rem;
  color: rgba(13, 13, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-info h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.08;
}

#aboutText {
  margin: 0 0 1.4rem;
  color: rgba(13, 13, 26, 0.78);
  line-height: 1.7;
}

.about-info .facts {
  border-top: 1px solid rgba(13, 13, 26, 0.12);
  padding-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-info .fact-card {
  background: transparent;
  border: 0;
  padding: 0 1rem 0 1rem;
  box-shadow: none;
  margin: 0;
}

.about-info .fact-card i {
  display: none;
}

.about-info .fact-card h3 {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: rgba(13, 13, 26, 0.56);
}

.about-info .fact-card p {
  margin: 0.4rem 0 0;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  align-items: center;
}

.contact-list a {
  color: var(--accent);
}

.contact-info-card {
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  width: 100%;
  max-width: 360px; /* Keep contact list card compact */
}

.contact-info-card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.delivery-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.delivery-btn img {
  height: 44px;
  width: auto;
  display: block;
}

.contact-form {
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 16px;
  padding: 1rem;
}

.contact-map {
  background: var(--card);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.65rem;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: #ffffff;
  color: var(--text);
  padding: 0.65rem 0.75rem;
  resize: none;
}

.site-footer {
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
  text-align: center;
  padding: 1rem 0 2rem;
  color: var(--muted);
  background: var(--paho-cream);
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer .footer-inner p {
  margin: 0;
}

.site-footer .footer-credit {
  font-size: 0.9rem;
}

.site-footer .footer-luphar-link {
  color: var(--paho-red);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-luphar-link:hover {
  color: var(--paho-red-dark);
  text-decoration: underline;
}

@media (min-width: 900px) {
  .about-wrap, .contact-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-info-card {
    justify-self: start;
  }

  .contact-info-card {
    grid-column: 1 / -1;
  }

  .about-media {
    min-height: 520px;
  }

  .about-video {
    /* Keep it visually balanced against the text column */
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
  }

  .about-info {
    padding: 2.6rem 2.1rem;
  }

  .about-info .facts .fact-card:nth-child(2) {
    border-left: 1px solid rgba(240, 239, 233, 0.18);
  }

  .hero-top-links {
    display: flex;
  }

  .hero-floating-card img {
    width: 144px;
    height: 144px;
  }

  .hero-deco-arrow {
    width: 110px;
    height: 110px;
  }

  .hero-badge {
    width: 140px;
    height: 140px;
    right: clamp(1.5rem, 4vw, 3rem);
    bottom: clamp(1.5rem, 5vh, 3.5rem);
  }

  .hero-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    width: min(320px, 90vw);
    height: calc(100vh - 72px);
    background: var(--paho-cream);
    flex-direction: column;
    padding: 1rem;
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    z-index: 28;
    box-shadow: -12px 0 30px rgba(var(--accent-rgb), 0.16);
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-lang-switcher {
    display: none;
  }

  .hero-complex-nav {
    justify-content: flex-start;
    padding: 1.1rem 4.25rem 1.1rem 1rem;
    min-height: 72px;
  }

  .hero-logo {
    position: static;
    transform: none;
  }

  .hero-mobile-nav a {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
    font-size: 1.08rem;
    font-weight: 800;
  }

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

  .hero-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .hero-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hero-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-lang-links .lang-btn {
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
    min-width: 48px;
    width: 48px;
    min-height: 48px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  html:lang(hy) .hero-lines .line-main {
    white-space: nowrap;
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  html:lang(ru) .hero-lines .line-main {
    white-space: nowrap;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-big-stack {
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-main {
    justify-content: center;
    align-items: center;
    padding: 2rem 0 4.75rem;
  }

  .hero-lines {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-lines span {
    text-align: center;
    width: 100%;
  }

  #about {
    min-height: auto;
    padding: 2.5rem 0;
  }

  #about .about-wrap {
    min-height: auto;
    gap: 1.25rem;
  }

  .about-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .about-video {
    height: 100%;
    border-radius: 12px;
  }

  .about-info {
    padding: 0.25rem 0 0;
  }

  .about-info h2 {
    font-size: 1.75rem;
  }

  #aboutText {
    line-height: 1.55;
    font-size: 0.95rem;
  }

  .about-info .facts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-info .fact-card {
    padding: 0;
  }

  .about-info .fact-card p {
    font-size: 1.25rem;
  }

  .menu-modal {
    width: 100%;
    max-height: calc(100dvh - env(safe-area-inset-top, 0px));
    border-radius: 18px 18px 0 0;
  }

  .menu-modal-header {
    padding: 0.9rem 1rem 0.75rem;
  }

  .menu-modal-body {
    padding: 1rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}
