

:root {
  --black: #0e0908;
  --charcoal: #1a1210;
  --ember-dark: #3a0808;
  --ember: #5e0f0f;
  --ember-bright: #a31f1f;
  --flame: #d9622b;
  --flame-light: #f0975a;
  --cream: #efe4d6;
  --cream-dim: #c9bba8;
  --gold: #b8905a;
  --line: rgba(184, 144, 90, 0.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  overflow-x: hidden;
}
h1,
h2,
h3,
.display {
  font-family: "Aref Ruqaa", serif;
}
::selection {
  background: var(--flame);
  color: var(--black);
}

/* scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: var(--charcoal);

}


::-webkit-scrollbar-thumb {
    background: var(--ember);
    border-radius: 5px;
}

a {
  color: inherit;
  text-decoration: none;
}
button{
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: linear-gradient(
    to bottom,
    rgba(14, 9, 8, 0.95),
    rgba(14, 9, 8, 0)
  );
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    backdrop-filter 0.4s ease;
}
header.scrolled {
  background: rgba(14, 9, 8, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 6%;
  border-bottom: 1px solid var(--line);
}
.brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Aref Ruqaa", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.brand-mini img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}
nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--flame);
  transition: width 0.35s ease;
}
nav a:hover {
  color: var(--flame-light);
}
nav a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease;
}
@media (max-width: 900px) {
  header {
    padding: 16px 6%;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 22px;
    z-index: 210;
  }
  .nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--flame-light);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--flame-light);
  }

  /* backdrop overlay */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 9, 8, 0.7);
    backdrop-filter: blur(4px);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(160deg, var(--charcoal), var(--black));
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 44px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    gap: 0;
    border-left: 1px solid var(--line);
    z-index: 200;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
  }
  nav ul::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  nav ul.open {
    transform: translateX(0);
  }
  nav ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px dashed var(--line);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  nav ul.open li {
    opacity: 1;
    transform: translateY(0);
  }
  nav ul.open li:nth-child(1) { transition-delay: 0.12s; }
  nav ul.open li:nth-child(2) { transition-delay: 0.18s; }
  nav ul.open li:nth-child(3) { transition-delay: 0.24s; }
  nav ul.open li:nth-child(4) { transition-delay: 0.3s; }
  nav ul.open li:nth-child(5) { transition-delay: 0.36s; }
  nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 1.15rem;
    font-family: "Aref Ruqaa", serif;
    font-weight: 700;
    color: var(--cream);
  }
  nav ul li a::after {
    display: none;
  }
  nav ul li a:hover {
    color: var(--flame-light);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .menu-panel.active {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    gap: 30px;
  }
  .nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--flame-light);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--flame-light);
}
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  background:
    radial-gradient(
      ellipse at 50% 20%,
      rgba(163, 31, 31, 0.28),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(14, 9, 8, 0.55),
      rgba(14, 9, 8, 0.92) 75%,
      var(--black) 100%
    ),
    url("food.png");
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ember-particle {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 8px 2px rgba(217, 98, 43, 0.8);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 20px));
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 22px;
  animation: fadeDown 1.1s ease both;
  filter: drop-shadow(0 8px 30px rgba(163, 31, 31, 0.5));
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.hero-eyebrow {
  font-size: 0.78rem;
  word-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  animation: fadeDown 1.1s ease 0.15s both;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1.05;
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #fff3e8 10%,
    var(--flame-light) 60%,
    var(--ember-bright) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 1.2s ease 0.25s both;
padding-bottom: 30px;
}
.hero p.tagline {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream-dim);
  max-width: 620px;
  line-height: 1.9;
  animation: fadeUp 1.2s ease 0.4s both;
}
.hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1.2s ease 0.55s both;
}
.btn {
  padding: 15px 38px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-block;
}
.btn-flame {
  background: linear-gradient(135deg, var(--flame), var(--ember-bright));
  color: #160805;
  box-shadow: 0 6px 22px rgba(163, 31, 31, 0.35);
}
.btn-flame:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217, 98, 43, 0.5);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--cream);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

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

.scroll-cue {
  position: absolute;
  bottom: 15px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.75rem;
  animation: fadeUp 1.2s ease 0.9s both;
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulseLine 2s ease-in-out infinite;
}
@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- GRATE DIVIDER (signature motif) ---------- */
.grate {
  height: 34px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ember) 0 3px,
    transparent 3px 26px
  );
  background-position: center;
  position: relative;
  opacity: 0.55;
}
.grate::before,
.grate::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ember);
}
.grate::before {
  top: 6px;
}
.grate::after {
  bottom: 6px;
}

/* ---------- SECTION shared ---------- */
section {
  position: relative;
  padding: 120px 6%;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  font-size: 0.75rem;
  color: var(--flame-light);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 18px;
      margin-top: 35px;
}
.section-head p {
  color: var(--cream-dim);
  line-height: 1.9;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ABOUT ---------- */
.about {
  background: linear-gradient(180deg, var(--black), var(--charcoal));
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: url("./imgs/about.png") center/cover;
  border: 1px solid var(--line);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(163, 31, 31, 0.35),
    rgba(14, 9, 8, 0.65)
  );
}
.est-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(14, 9, 8, 0.75);
  border: 1px solid var(--gold);
  padding: 16px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.est-badge .num {
  font-family: "Aref Ruqaa", serif;
  font-size: 2.1rem;
  color: var(--flame-light);
  line-height: 1;
}
.est-badge .lbl {
  font-size: 0.7rem;
  color: var(--cream-dim);
  margin-top: 4px;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 22px;
  font-weight: 700;
}
.about-text p {
  color: var(--cream-dim);
  line-height: 2.1;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-stats div {
  text-align: center;
}
.about-stats .num {
  font-family: "Aref Ruqaa", serif;
  font-size: 2.2rem;
  color: var(--flame);
}
.about-stats .lbl {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-top: 4px;
}

/* ---------- MENU ---------- */
.menu {
  background: var(--charcoal);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.menu-tab {
  padding: 11px 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--ember-bright);
  color: #fff3e8;
  border-color: var(--ember-bright);
}
.menu-panel {
  display: none;
  max-width: 960px;
  margin: 0 auto;
}
.menu-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 60px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.menu-item:hover .item-name {
  color: var(--flame-light);
}
.item-name {
  font-weight: 700;
  color: var(--cream);
  font-size: 1.08rem;
  transition: color 0.3s;
}
.item-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.6;
}
.item-price {
  font-family: "Aref Ruqaa", serif;
  color: var(--flame);
  font-size: 1.25rem;
  white-space: nowrap;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--charcoal);
  padding-bottom: 100px;
}
.gallery-frame {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-frame img {
  width: 100%;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(14, 9, 8, 0.85), transparent 45%);
  padding: 34px;
}
.gallery-caption p {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
}
/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  position: relative;
  background: var(--black);
  padding: 130px 6%;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.gallery-intro .eyebrow {
  font-size: 0.75rem;
  color: var(--flame-light);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.gallery-intro h2 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--cream);
  margin: 8px 0 18px;
}
.gallery-intro p {
  color: var(--cream-dim);
  line-height: 1.9;
  font-size: 1.05rem;
}

.gallery-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item.span-tall {
  grid-row: span 2;
  grid-column: span 2;
}
.gallery-item.span-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.2) contrast(1.05) brightness(0.85);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(14,9,8,0.15), rgba(14, 9, 8, 0.85));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-plus {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  transform: scale(0.7);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-plus {
  transform: scale(1);
}
.gallery-label {
  color: var(--cream);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 0 16px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 9, 8, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 5%;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 4px;
  border: 1px solid var(--line);
  transform: scale(0.92);
  transition: transform 0.4s ease;
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-caption {
  margin-top: 20px;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: var(--black);
}

@media (max-width: 900px) {
  .gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.span-tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item.span-wide {
    grid-column: span 2;
  }
}
/* ---------- WHY / VALUES ---------- */
.values {
  background: var(--charcoal);
}
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--flame);
  background: rgba(163, 31, 31, 0.08);
}
.value-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.value-card h4 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.value-card p {
  color: var(--cream-dim);
  line-height: 1.85;
  font-size: 0.95rem;
}

/* ---------- CONTACT / FOOTER ---------- */
footer {
  background: var(--black);
  padding: 100px 6% 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}
footer .logo-foot {
  width: 78px;
  margin-bottom: 24px;
  opacity: 0.9;
  border-radius: 50%;
  border: 2px solid var(--line);
}
footer h3 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 14px;
}
footer p.sub {
  color: var(--cream-dim);
  margin-bottom: 36px;
}
.contact-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.contact-item {
  text-align: center;
}
.contact-item .lbl {
  font-size: 0.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.contact-item .val {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.social-row a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--cream-dim);
}
.social-row a:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: var(--black);
  transform: translateY(-4px);
}
footer .copyright {
  color: #5c5049;
  font-size: 0.82rem;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
footer .made-by {
  color: #5c5049;
  font-size: 0.78rem;
  margin-top: 10px;
}
footer .made-by a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .made-by a:hover {
  color: var(--flame);
}
/* responsive */
@media (max-width: 900px) {
  nav ul {
    position: fixed;
    inset: 0 0 0 auto;
    width: 72%;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.45s ease;
    gap: 28px;
    border-left: 1px solid var(--line);
  }
  nav ul.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .menu-panel.active {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    gap: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
