/* Design DNA: Asymmetric diagonal hero with skewed food photo; paprika red + chickpea gold; lively street-food mood */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Rubik:wght@400;500;600;700;800&display=swap');

:root {
  --fh-paprika: #C43C2C;
  --fh-paprika-dark: #9E2E22;
  --fh-gold: #E2B84A;
  --fh-gold-light: #F0D078;
  --fh-charcoal: #1E1A17;
  --fh-charcoal-soft: #2E2824;
  --fh-cream: #FFF8EE;
  --fh-cream-dark: #F5EBD8;
  --fh-white: #FFFFFF;
  --fh-text: #1E1A17;
  --fh-text-muted: #5C534C;
  --fh-radius: 6px;
  --fh-radius-lg: 14px;
  --fh-shadow: 0 8px 32px rgba(30, 26, 23, 0.12);
  --fh-shadow-lg: 0 16px 48px rgba(30, 26, 23, 0.18);
  --fh-max: 1200px;
  --fh-header-h: 72px;
  --fh-font: 'Rubik', 'Heebo', sans-serif;
  --fh-font-alt: 'Heebo', 'Rubik', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fh-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fh-text);
  background: var(--fh-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--fh-paprika); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fh-paprika-dark); }

h1, h2, h3, h4 {
  font-family: var(--fh-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fh-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.fh-container {
  width: min(100% - 2rem, var(--fh-max));
  margin-inline: auto;
}

.fh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fh-gold);
  color: var(--fh-charcoal);
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.fh-skip:focus { left: 1rem; top: 1rem; }

/* Header */
.fh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--fh-charcoal);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.fh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--fh-header-h);
  gap: 1.5rem;
}

.fh-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--fh-cream);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.fh-logo:hover { color: var(--fh-gold); }

.fh-logo__mark {
  width: 38px;
  height: 38px;
  background: var(--fh-paprika);
  border-radius: 50% 50% 50% 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transform: rotate(-8deg);
}

.fh-nav { display: flex; align-items: center; gap: 0.25rem; }

.fh-nav__link {
  color: rgba(255,248,238,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--fh-radius);
  transition: background 0.2s, color 0.2s;
}
.fh-nav__link:hover,
.fh-nav__link--active {
  color: var(--fh-gold);
  background: rgba(255,255,255,0.06);
}

.fh-nav__cta {
  background: var(--fh-paprika);
  color: var(--fh-cream) !important;
  margin-left: 0.5rem;
  font-weight: 600;
}
.fh-nav__cta:hover {
  background: var(--fh-paprika-dark);
  color: var(--fh-cream) !important;
}

.fh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.fh-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fh-cream);
  transition: transform 0.3s, opacity 0.3s;
}
.fh-burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fh-burger--open span:nth-child(2) { opacity: 0; }
.fh-burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero — asymmetric diagonal */
.fh-hero {
  position: relative;
  min-height: clamp(420px, 70vh, 620px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--fh-charcoal);
}

.fh-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  background: linear-gradient(135deg, var(--fh-charcoal) 55%, var(--fh-charcoal-soft) 100%);
}

.fh-hero__badge {
  display: inline-block;
  background: var(--fh-gold);
  color: var(--fh-charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.fh-hero__title {
  color: var(--fh-cream);
  margin-bottom: 1rem;
}
.fh-hero__title em {
  font-style: normal;
  color: var(--fh-gold);
}

.fh-hero__text {
  color: rgba(255,248,238,0.78);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2rem;
}

.fh-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--fh-font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--fh-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.fh-btn:hover { transform: translateY(-1px); }

.fh-btn--primary {
  background: var(--fh-paprika);
  color: var(--fh-cream);
}
.fh-btn--primary:hover { background: var(--fh-paprika-dark); color: var(--fh-cream); }

.fh-btn--outline {
  background: transparent;
  color: var(--fh-cream);
  border-color: rgba(255,248,238,0.35);
}
.fh-btn--outline:hover {
  border-color: var(--fh-gold);
  color: var(--fh-gold);
}

.fh-btn--gold {
  background: var(--fh-gold);
  color: var(--fh-charcoal);
}
.fh-btn--gold:hover { background: var(--fh-gold-light); color: var(--fh-charcoal); }

.fh-hero__visual {
  position: relative;
  overflow: hidden;
}

.fh-hero__photo {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: skewX(-4deg) scale(1.08) translateX(-5%);
  transform-origin: center;
  min-height: 420px;
}

.fh-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--fh-charcoal) 0%, transparent 35%);
  pointer-events: none;
}

.fh-hero__accent {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  background: var(--fh-paprika);
  color: var(--fh-cream);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  transform: rotate(3deg);
  box-shadow: var(--fh-shadow-lg);
  line-height: 1.3;
}

/* Page hero (inner pages) */
.fh-page-hero {
  background: var(--fh-charcoal);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.fh-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: var(--fh-paprika);
  opacity: 0.12;
  transform: rotate(-12deg);
}

.fh-page-hero__inner { position: relative; z-index: 1; }

.fh-page-hero__title { color: var(--fh-cream); margin-bottom: 0.5rem; }

.fh-page-hero__sub {
  color: rgba(255,248,238,0.7);
  font-size: 1.05rem;
  max-width: 560px;
}

.fh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255,248,238,0.5);
}
.fh-breadcrumb a { color: var(--fh-gold); }
.fh-breadcrumb span { color: rgba(255,248,238,0.4); }

/* Sections */
.fh-section { padding: clamp(3rem, 7vw, 5rem) 0; }
.fh-section--cream { background: var(--fh-cream); }
.fh-section--dark { background: var(--fh-charcoal); color: var(--fh-cream); }
.fh-section--gold { background: var(--fh-gold-light); }

.fh-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.fh-section__head p {
  color: var(--fh-text-muted);
  margin-top: 0.75rem;
}

.fh-section--dark .fh-section__head h2 { color: var(--fh-cream); }
.fh-section--dark .fh-section__head p { color: rgba(255,248,238,0.65); }

.fh-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fh-paprika);
  margin-bottom: 0.5rem;
}

/* Feature grid */
.fh-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fh-feature {
  background: var(--fh-white);
  padding: 1.75rem;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow);
  border-top: 4px solid var(--fh-gold);
  transition: transform 0.2s;
}
.fh-feature:hover { transform: translateY(-4px); }

.fh-feature__icon {
  width: 48px;
  height: 48px;
  background: var(--fh-cream-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.fh-feature h3 { margin-bottom: 0.5rem; }
.fh-feature p { color: var(--fh-text-muted); font-size: 0.95rem; }

/* About split */
.fh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fh-split__img-wrap {
  position: relative;
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  box-shadow: var(--fh-shadow-lg);
}

.fh-split__img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: var(--fh-paprika);
  opacity: 0.15;
  transform: rotate(-6deg);
  z-index: -1;
}

.fh-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform: skewY(-1.5deg);
}

.fh-split__content h2 { margin-bottom: 1rem; }
.fh-split__content p { color: var(--fh-text-muted); }

.fh-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.fh-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fh-paprika);
  line-height: 1;
}

.fh-stat__label {
  font-size: 0.82rem;
  color: var(--fh-text-muted);
  margin-top: 0.25rem;
}

/* Menu cards */
.fh-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.fh-menu-card {
  background: var(--fh-white);
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  box-shadow: var(--fh-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fh-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fh-shadow-lg);
}

.fh-menu-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.fh-menu-card__body { padding: 1.25rem 1.5rem 1.5rem; }

.fh-menu-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.fh-menu-card__price {
  font-weight: 700;
  color: var(--fh-paprika);
  font-size: 1.1rem;
  white-space: nowrap;
}

.fh-menu-card__desc {
  color: var(--fh-text-muted);
  font-size: 0.9rem;
}

.fh-menu-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--fh-cream-dark);
  color: var(--fh-charcoal);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-top: 0.75rem;
}

.fh-menu-list {
  max-width: 800px;
  margin: 0 auto;
}

.fh-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--fh-cream-dark);
}

.fh-menu-item__name { font-weight: 600; }
.fh-menu-item__desc {
  font-size: 0.88rem;
  color: var(--fh-text-muted);
  flex: 1;
}
.fh-menu-item__price {
  font-weight: 700;
  color: var(--fh-paprika);
  white-space: nowrap;
}

/* Stories gallery */
.fh-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fh-gallery__item {
  position: relative;
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.fh-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.fh-gallery__item:hover img { transform: scale(1.06); }

.fh-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(30,26,23,0.85));
  color: var(--fh-cream);
  font-size: 0.9rem;
  font-weight: 500;
}

.fh-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.fh-quote {
  background: var(--fh-white);
  padding: 2rem;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow);
  border-left: 5px solid var(--fh-gold);
  margin-top: 2rem;
}

.fh-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fh-charcoal);
  margin-bottom: 0.75rem;
}

.fh-quote cite {
  font-size: 0.88rem;
  color: var(--fh-text-muted);
  font-style: normal;
  font-weight: 600;
}

/* CTA band */
.fh-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--fh-radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
}

.fh-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,26,23,0.92) 40%, rgba(196,60,44,0.75) 100%);
}

.fh-cta__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 520px;
}

.fh-cta__content h2 { color: var(--fh-cream); margin-bottom: 0.75rem; }
.fh-cta__content p { color: rgba(255,248,238,0.8); margin-bottom: 1.5rem; }

/* Contact */
.fh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.fh-contact-info h2 { margin-bottom: 1.25rem; }

.fh-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.fh-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--fh-paprika);
  color: var(--fh-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fh-contact-item strong { display: block; margin-bottom: 0.15rem; }
.fh-contact-item span, .fh-contact-item a { color: var(--fh-text-muted); font-size: 0.95rem; }

.fh-form {
  background: var(--fh-white);
  padding: 2rem;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow);
}

.fh-form h3 { margin-bottom: 1.25rem; }

.fh-form__group { margin-bottom: 1.1rem; }

.fh-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.fh-form input,
.fh-form textarea,
.fh-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--fh-cream-dark);
  border-radius: var(--fh-radius);
  font-family: var(--fh-font);
  font-size: 0.95rem;
  background: var(--fh-cream);
  transition: border-color 0.2s;
}

.fh-form input:focus,
.fh-form textarea:focus,
.fh-form select:focus {
  outline: none;
  border-color: var(--fh-gold);
}

.fh-form textarea { min-height: 120px; resize: vertical; }

.fh-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fh-text-muted);
  margin-bottom: 1.25rem;
}

.fh-form__check input { width: auto; margin-top: 0.2rem; }

.fh-map {
  margin-top: 2rem;
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  height: 280px;
  background: var(--fh-cream-dark);
  display: grid;
  place-items: center;
  color: var(--fh-text-muted);
  font-size: 0.9rem;
  border: 2px dashed var(--fh-gold);
}

/* Privacy / legal */
.fh-legal {
  max-width: 780px;
  margin: 0 auto;
}

.fh-legal h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--fh-cream-dark);
}

.fh-legal h2:first-of-type { border-top: none; margin-top: 0; }

.fh-legal p, .fh-legal li {
  color: var(--fh-text-muted);
  font-size: 0.95rem;
}

.fh-legal ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.fh-legal .fh-updated {
  font-size: 0.85rem;
  color: var(--fh-text-muted);
  margin-bottom: 2rem;
}

/* Footer */
.fh-footer {
  background: var(--fh-charcoal);
  color: rgba(255,248,238,0.75);
  padding: 3.5rem 0 0;
}

.fh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.fh-footer__brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fh-cream);
  margin-bottom: 0.75rem;
}

.fh-footer__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fh-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fh-gold);
  margin-bottom: 1rem;
}

.fh-footer__links { list-style: none; }
.fh-footer__links li { margin-bottom: 0.45rem; }
.fh-footer__links a {
  color: rgba(255,248,238,0.7);
  font-size: 0.9rem;
}
.fh-footer__links a:hover { color: var(--fh-gold); }

.fh-footer__contact li {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.fh-footer__bottom {
  border-top: 1px solid rgba(255,248,238,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,248,238,0.45);
}

.fh-footer__bottom a { color: rgba(255,248,238,0.55); font-size: 0.82rem; }

/* Cookie banner */
.fh-cookie {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9000;
  max-width: 360px;
  background: var(--fh-white);
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow-lg);
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--fh-paprika);
  display: none;
}

.fh-cookie--visible { display: block; }

.fh-cookie h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.fh-cookie p {
  font-size: 0.82rem;
  color: var(--fh-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.fh-cookie__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fh-cookie__actions .fh-btn {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* Utilities */
.fh-text-center { text-align: center; }
.fh-mt-2 { margin-top: 2rem; }
.fh-mb-0 { margin-bottom: 0; }

/* Responsive — 900px */
@media (max-width: 900px) {
  .fh-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fh-hero__content {
    clip-path: none;
    padding: 2.5rem 1.5rem;
    order: 2;
  }

  .fh-hero__visual { order: 1; min-height: 260px; }

  .fh-hero__photo {
    transform: none;
    width: 100%;
    min-height: 260px;
  }

  .fh-hero__accent { display: none; }

  .fh-features,
  .fh-menu-grid,
  .fh-gallery { grid-template-columns: 1fr 1fr; }

  .fh-gallery__item--wide { grid-column: span 2; }

  .fh-split,
  .fh-contact-grid { grid-template-columns: 1fr; }

  .fh-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive — 560px */
@media (max-width: 560px) {
  .fh-burger { display: flex; }

  .fh-nav {
    position: fixed;
    top: var(--fh-header-h);
    left: 0;
    right: 0;
    background: var(--fh-charcoal-soft);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .fh-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .fh-nav__link {
    width: 100%;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .fh-nav__cta { margin-left: 0; margin-top: 0.5rem; }

  .fh-features,
  .fh-menu-grid,
  .fh-gallery { grid-template-columns: 1fr; }

  .fh-gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }

  .fh-footer__grid { grid-template-columns: 1fr; }

  .fh-footer__bottom { flex-direction: column; text-align: center; }

  .fh-cookie {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .fh-stats { gap: 1.25rem; }

  .fh-menu-item { flex-direction: column; gap: 0.25rem; }
}
